/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Colors */
  --forest: #1A3A2A;
  --forest-deep: #0F2318;
  --sage: #6B7F5E;
  --sage-light: #A8B89C;
  --cream: #F4EDE1;
  --cream-warm: #EDE3D3;
  --cream-dark: #DDD0BC;
  --parchment: #FAF6EF;
  --coffee: #3A2318;
  --coffee-medium: #5C3D2E;
  --espresso: #2A1810;
  --wood: #8B6F4E;
  --wood-light: #B89B73;
  --terracotta: #C4502A;
  --terracotta-soft: #D4714F;
  --terracotta-glow: #E8956E;
  --gold: #C9A96E;
  --gold-light: #DBBF8A;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Libre Franklin', 'Helvetica Neue', sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Spacing */
  --section-pad: clamp(3.5rem, 7vw, 7rem);
  --content-max: 1240px;
  --content-narrow: 720px;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--coffee);
  background: var(--parchment);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Subtle grain texture overlay on entire page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 900;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--forest-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-brand {
  position: relative;
  text-align: center;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.loader-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.loader-bar {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: loaderFill 1.8s var(--ease-out-expo) forwards;
}

@keyframes loaderFill {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  background: linear-gradient(to bottom, rgba(15, 35, 24, 0.7) 0%, rgba(15, 35, 24, 0.3) 60%, transparent 100%);
}

.nav.scrolled {
  background: rgba(26, 58, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.nav.scrolled .nav-logo {
  text-shadow: none;
}

.nav-logo .dot {
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.95;
  transition: opacity 0.3s;
  position: relative;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.nav.scrolled .nav-links a {
  text-shadow: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta-soft);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

/* Active nav link */
.nav-links a.active {
  opacity: 1;
}

.nav-links a.active::after {
  width: 100%;
}

/* Nav solid variant (inner pages) */
.nav.nav-solid {
  background: rgba(26, 58, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav.nav-solid .nav-logo {
  text-shadow: none;
}

.nav.nav-solid .nav-links a {
  text-shadow: none;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
  display: block;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(15, 35, 24, 0.8) 0%,
      rgba(15, 35, 24, 0.5) 55%,
      rgba(15, 35, 24, 0.2) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(15, 35, 24, 0.4) 0%,
      rgba(15, 35, 24, 0.25) 30%,
      rgba(15, 35, 24, 0.55) 65%,
      rgba(15, 35, 24, 0.9) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(2rem, 5vw, 4rem) clamp(3rem, 8vw, 6rem);
  max-width: 900px;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--terracotta-glow);
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 0.5s forwards;
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--cream);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  border: 1px solid rgba(244, 237, 225, 0.3);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-cta:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  gap: 1rem;
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s;
}

.hero-cta:hover svg {
  transform: translateX(3px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dark);
  writing-mode: vertical-rl;
}

.hero-scroll .line {
  width: 1px;
  height: 50px;
  background: var(--cream-dark);
  opacity: 0.4;
  position: relative;
  overflow: hidden;
}

.hero-scroll .line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--terracotta-glow);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  position: relative;
  height: 45vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-header .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(15, 35, 24, 0.85) 0%, rgba(15, 35, 24, 0.5) 55%, rgba(15, 35, 24, 0.3) 100%),
    linear-gradient(to bottom, rgba(15, 35, 24, 0.5) 0%, rgba(15, 35, 24, 0.3) 40%, rgba(15, 35, 24, 0.7) 80%, rgba(15, 35, 24, 0.9) 100%);
}

.page-header .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 3.5rem);
}

.page-header .hero-tagline {
  animation-delay: 0.1s;
}

.page-header .hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  animation-delay: 0.2s;
}

.page-header .hero-subtitle {
  animation-delay: 0.3s;
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: var(--forest);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  font-style: italic;
  color: var(--sage-light);
  white-space: nowrap;
  padding: 0 2rem;
  opacity: 0.7;
}

.marquee-track .sep {
  color: var(--terracotta-soft);
  font-style: normal;
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--sage);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--coffee);
  margin-bottom: 2rem;
}

.section-heading em {
  font-style: italic;
  color: var(--terracotta);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s var(--ease-out-quint);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1s var(--ease-out-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 1s var(--ease-out-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   ABOUT / OUR STORY
   ============================================ */
.about {
  background: var(--parchment);
  position: relative;
}

.about-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-image-stack {
  position: relative;
  padding: 2rem;
}

.about-image-main {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  z-index: 2;
}

.about-image-main img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 55%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  z-index: 3;
  border: 4px solid var(--parchment);
}

.about-image-accent img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

/* Decorative frame */
.about-image-stack::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 60%;
  border: 1px solid var(--sage-light);
  opacity: 0.3;
  border-radius: 4px;
  z-index: 1;
}

.about-text .est-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 2rem;
}

.about-text p {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--coffee-medium);
  margin-bottom: 1.5rem;
  line-height: 1.85;
}

.about-text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  float: left;
  line-height: 0.8;
  margin-right: 0.5rem;
  margin-top: 0.15rem;
  color: var(--forest);
  font-weight: 600;
}

.about-quote {
  margin-top: 2.5rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--cream-dark);
}

.about-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.about-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--wood);
  letter-spacing: 0.05em;
}

/* ============================================
   FEATURES STRIP
   ============================================ */
.features {
  background: var(--forest);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.features-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border: 1px solid rgba(168, 184, 156, 0.15);
  border-radius: 4px;
  transition: all 0.4s;
}

.feature-card:hover {
  border-color: rgba(168, 184, 156, 0.3);
  background: rgba(255,255,255,0.03);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
  filter: grayscale(0.2);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--sage-light);
  line-height: 1.6;
  opacity: 0.8;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu {
  background: var(--cream);
  position: relative;
}

.menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--cream-dark), transparent);
}

.menu-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.menu-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.menu-header p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--wood);
  line-height: 1.6;
}

/* Menu tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--cream-dark);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coffee-medium);
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s;
}

.menu-tab:hover {
  border-color: var(--wood);
  color: var(--coffee);
}

.menu-tab.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

/* Menu categories */
.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
  animation: menuFade 0.5s ease;
}

@keyframes menuFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 4rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  gap: 1rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--coffee);
}

.menu-item-desc {
  font-size: 0.82rem;
  color: var(--wood);
  margin-top: 0.2rem;
  line-height: 1.5;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--cream-dark);
  min-width: 30px;
  margin-bottom: 4px;
}

.menu-note {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.menu-note p {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--terracotta);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  background: var(--parchment);
  overflow: hidden;
}

.gallery-header {
  max-width: var(--content-max);
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.gallery-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  max-width: var(--content-max);
  margin: 0 auto;
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 58, 42, 0.4), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item .gallery-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--cream);
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s 0.1s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HOURS & LOCATION
   ============================================ */
.location {
  background: var(--forest-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.location::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 80, 42, 0.08), transparent 70%);
  pointer-events: none;
}

.location-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.location .section-label { color: var(--sage-light); }
.location .section-label::before { background: var(--sage-light); }
.location .section-heading { color: var(--cream); }
.location .section-heading em { color: var(--terracotta-glow); }

.location-info p {
  font-size: 1rem;
  color: var(--sage-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.location-address {
  margin-bottom: 2.5rem;
}

.location-address .addr-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.location-address .addr-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.5;
}

.location-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.location-contact a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--cream-dark);
  transition: color 0.3s;
}

.location-contact a:hover { color: var(--terracotta-glow); }

.location-contact svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
  flex-shrink: 0;
}

/* Hours table */
.hours-table {
  width: 100%;
}

.hours-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hours-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(168, 184, 156, 0.2);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
}

.hours-row .day {
  color: var(--cream-dark);
  font-weight: 400;
}

.hours-row .time {
  color: var(--sage-light);
  font-weight: 300;
}

.hours-row.highlight .day,
.hours-row.highlight .time {
  color: var(--terracotta-glow);
}

.hours-row.highlight .time::after {
  content: ' \2022 Wine & Tapas';
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--terracotta-soft);
}

/* Map placeholder */
.location-map {
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  position: relative;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  filter: saturate(0.7) contrast(1.05);
  border-radius: 4px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}

.testimonials-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--parchment);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--coffee-medium);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--wood);
  letter-spacing: 0.05em;
}

.testimonial-source {
  font-size: 0.7rem;
  color: var(--sage);
  margin-top: 0.2rem;
}

/* ============================================
   CONTACT CTA
   ============================================ */
.contact-cta {
  background: var(--forest);
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 2rem;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 80, 42, 0.1), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.08), transparent 60%);
}

.contact-cta-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.contact-cta .section-heading {
  color: var(--cream);
  margin-bottom: 1rem;
}

.contact-cta p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--sage-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--terracotta-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 80, 42, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244, 237, 225, 0.25);
}

.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(255,255,255,0.05);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--espresso);
  padding: 3rem clamp(1.5rem, 5vw, 4rem) 2rem;
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--sage-light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-social a:hover { color: var(--terracotta-glow); }

.footer-bottom {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--sage);
  opacity: 0.6;
}

.footer-credit {
  font-size: 0.7rem;
  color: var(--sage);
  opacity: 0.4;
}

.footer-credit a {
  color: var(--sage-light);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.footer-credit a:hover { opacity: 1; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.47s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.54s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15, 35, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: none;
  color: var(--cream);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lightbox-close:hover {
  border-color: var(--cream);
  background: rgba(255,255,255,0.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav {
    padding: 0.75rem 1.75rem;
  }

  .hero {
    align-items: center;
    min-height: 600px;
  }

  .hero-content {
    padding: 3rem clamp(1.5rem, 4vw, 3rem) 2rem;
  }

  .page-header {
    height: 35vh;
    min-height: 260px;
  }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-category-grid { gap: 1rem 3rem; }
  .gallery-scroll { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: clamp(2rem, 4vw, 3.5rem); }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav {
    padding: 0.85rem 1.25rem;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav.scrolled {
    padding: 0.65rem 1.25rem;
    background: rgba(26, 58, 42, 0.97);
  }

  .nav.nav-solid {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-logo {
    font-size: 1.3rem;
    z-index: 1002;
    position: relative;
  }

  .nav-toggle {
    display: flex;
    z-index: 1002;
    position: relative;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    background: var(--forest-deep);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.15rem;
    letter-spacing: 0.2em;
    text-shadow: none;
  }

  /* Hero mobile */
  .hero {
    height: 100svh;
    height: 100vh;
    min-height: 550px;
    align-items: center;
  }

  .hero-bg img {
    object-position: center 60%;
  }

  .hero-content {
    padding: 3rem 1.5rem 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 4rem);
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .hero-cta {
    padding: 0.85rem 1.75rem;
    font-size: 0.7rem;
  }

  .hero-scroll { display: none; }

  /* Page header mobile */
  .page-header {
    height: auto;
    min-height: unset;
    padding-top: 4rem;
  }

  .page-header .hero-bg img {
    object-position: center center;
  }

  .page-header .hero-content {
    padding: 2.5rem 1.5rem 1.75rem;
  }

  .page-header .hero-tagline {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .page-header .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 0;
  }

  .page-header .hero-subtitle {
    display: none;
  }

  /* Sections */
  .section {
    padding: clamp(3rem, 8vw, 5rem) 1.25rem;
  }

  .section-heading {
    font-size: clamp(2rem, 7vw, 3rem);
    margin-bottom: 1.5rem;
  }

  .section-label {
    font-size: 0.65rem;
    margin-bottom: 1rem;
  }

  /* Marquee */
  .marquee-track span {
    font-size: 0.75rem;
    padding: 0 1rem;
  }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-stack { max-width: 100%; margin: 0 auto; padding: 1rem; }
  .about-image-accent { width: 45%; bottom: -0.5rem; right: -0.5rem; }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-text p:first-of-type::first-letter {
    font-size: 2.8rem;
  }

  .about-quote blockquote {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
  }

  /* Features */
  .features {
    padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
  }

  .features-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.75rem;
  }

  /* Menu */
  .menu-tabs {
    gap: 0.35rem;
    margin-bottom: 2.5rem;
  }

  .menu-tab {
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
  }

  .menu-category-grid { grid-template-columns: 1fr; gap: 0; }

  .menu-item {
    padding: 0.9rem 0;
  }

  .menu-item-name {
    font-size: 1.05rem;
  }

  .menu-item-desc {
    font-size: 0.78rem;
  }

  /* Gallery - compact Instagram-style grid */
  .gallery {
    padding-left: 0;
    padding-right: 0;
  }

  .section.gallery {
    padding: 0;
  }
  .gallery-scroll {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-auto-flow: dense;
    gap: 3px;
  }

  .gallery-item {
    border-radius: 2px;
  }

  .gallery-item img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .gallery-item.tall img {
    aspect-ratio: 1 / 1;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-item.wide img {
    aspect-ratio: 1 / 1;
  }

  .gallery-item .gallery-caption {
    font-size: 0.7rem;
    bottom: 0.4rem;
    left: 0.5rem;
    right: 0.5rem;
    opacity: 1;
    transform: translateY(0);
  }

  .gallery-item::after {
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
    opacity: 1;
  }

  /* Location */
  .location-grid { grid-template-columns: 1fr; gap: 2rem; }
  .location-map { min-height: 300px; }
  .location-map iframe { min-height: 300px; }

  .hours-row {
    font-size: 0.85rem;
    padding: 0.7rem 0;
  }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; max-width: 100%; }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  /* Contact CTA */
  .contact-cta {
    padding: clamp(3rem, 8vw, 5rem) 1.25rem;
  }

  .contact-cta .section-heading {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .contact-cta p {
    font-size: 1rem;
  }

  .contact-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .contact-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Footer */
  .footer {
    padding: 2rem 1.25rem 1.5rem;
  }

  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  .footer-social {
    gap: 1rem;
  }

  .footer-social a {
    font-size: 0.7rem;
  }

  /* Lightbox mobile */
  .lightbox img {
    max-width: 95vw;
    max-height: 80vh;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  .page-header .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .features-grid { grid-template-columns: 1fr; }

  .gallery-item.wide { grid-column: span 1; }

  .about-image-stack::before { display: none; }

  .menu-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-tab {
    text-align: center;
    border-radius: 4px;
  }

  .est-badge {
    font-size: 0.6rem;
  }
}
