/* =========================================================
   C'EST LA VIE LOUNGE — Design tokens
   ========================================================= */
:root{
  /* Color */
  --black:        #0b0704;
  --espresso:     #15100b;
  --espresso-2:   #1e1610;
  --espresso-3:   #291e16;
  --ivory:        #f4ecdc;
  --ivory-dim:    #cabda3;
  --ivory-faint:  rgba(244,236,220,0.55);
  --gold:         #c9a24e;
  --gold-soft:    #e2c581;
  --gold-dim:     rgba(201,162,78,0.35);
  --burgundy:     #3d1616;
  --burgundy-2:   #59211d;
  --hairline:     rgba(201,162,78,0.26);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:    'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Motion */
  --ease-out:     cubic-bezier(.16,.8,.24,1);
  --dur-fast:     220ms;
  --dur-med:      600ms;
  --dur-slow:     1100ms;

  /* Layout */
  --container:    1240px;
  --gutter:       clamp(1.25rem, 5vw, 4rem);
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; background: var(--black); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body{
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; }

h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ivory);
  margin: 0;
  letter-spacing: 0.01em;
}

.gold-italic{ color: var(--gold-soft); font-style: italic; }

.skip-link{
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: var(--black);
  padding: 0.75rem 1.25rem; z-index: 999; font-family: var(--font-sans);
}
.skip-link:focus{ left: 1rem; top: 1rem; }

:focus-visible{ outline: 2px solid var(--gold-soft); outline-offset: 3px; }

/* =========================================================
   Shared bits
   ========================================================= */
.kicker{
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--gold);
  margin: 0 0 1rem;
}
.eyebrow{
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--gold-soft);
  margin: 0 0 1.5rem;
}
.section-title{
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
}

.text-link{
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.3rem;
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.text-link:hover{ border-color: var(--gold); color: var(--gold); }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.1rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-gold{ background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover{ background: var(--gold-soft); border-color: var(--gold-soft); }
.btn-lg{ padding: 1.2rem 2.8rem; font-size: 0.82rem; }
.btn-lg:hover{ box-shadow: 0 12px 34px rgba(201,162,78,0.28); }
.btn-outline{ background: transparent; color: var(--ivory); border-color: var(--hairline); }
.btn-outline:hover{ border-color: var(--gold); color: var(--gold-soft); }
.btn-full{ width: 100%; padding: 1.1rem 2rem; }

/* =========================================================
   Scroll reveal system
   ========================================================= */
.reveal-up, .reveal-image{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal-up.in-view, .reveal-image.in-view{ opacity: 1; transform: translateY(0); }
.reveal-up[data-delay="1"]{ transition-delay: 90ms; }
.reveal-up[data-delay="2"]{ transition-delay: 180ms; }
.reveal-up[data-delay="3"]{ transition-delay: 320ms; }
.reveal-up[data-delay="4"]{ transition-delay: 460ms; }

.reveal-image{ overflow: hidden; }
.reveal-image img{ transform: scale(1.12); transition: transform 1.4s var(--ease-out); }
.reveal-image.in-view img{ transform: scale(1); }

@media (prefers-reduced-motion: reduce){
  .reveal-up, .reveal-image, .reveal-image img{ opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   Navigation
   ========================================================= */
.nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out), backdrop-filter var(--dur-med) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled{
  background: rgba(11,7,4,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--hairline);
}
.nav-inner{
  max-width: var(--container); margin: 0 auto;
  padding: 1.4rem var(--gutter);
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-logo{
  font-family: var(--font-display);
  font-size: 1.35rem; letter-spacing: 0.16em;
  color: var(--ivory); margin-right: auto;
}
.nav-links{ display: flex; gap: 2.2rem; }
.nav-links a{
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ivory-dim); position: relative; padding: 0.3rem 0;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-links a::after{
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width var(--dur-fast) var(--ease-out);
}
.nav-links a:hover{ color: var(--ivory); }
.nav-links a:hover::after{ width: 100%; }
.nav-cta{ padding: 0.8rem 1.6rem; }

.hamburger{
  display: none; width: 26px; height: 20px; position: relative;
  background: none; border: none; padding: 0; cursor: pointer;
}
.hamburger span{
  position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ivory);
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out), top var(--dur-fast) var(--ease-out);
}
.hamburger span:nth-child(1){ top: 0; }
.hamburger span:nth-child(2){ top: 9px; }
.hamburger span:nth-child(3){ top: 18px; }
.hamburger[aria-expanded="true"] span:nth-child(1){ top: 9px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ top: 9px; transform: rotate(-45deg); }

.mobile-menu{
  position: fixed; inset: 0; z-index: 99; background: var(--black);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 2rem var(--gutter); gap: 2.5rem;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-med) var(--ease-out), visibility 0s var(--dur-med);
}
.mobile-menu.open{
  transform: translateY(0); opacity: 1; visibility: visible;
  transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-med) var(--ease-out), visibility 0s;
}
.mobile-menu-links{ display: flex; flex-direction: column; gap: 1.1rem; }
.mobile-menu-links a{
  font-family: var(--font-display); font-size: 2.5rem; color: var(--ivory);
  display: flex; align-items: baseline; gap: 1rem;
  opacity: 0; transform: translateY(14px);
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.mobile-menu.open .mobile-menu-links a{ opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-menu-links a:nth-child(1){ transition-delay: 80ms; }
.mobile-menu.open .mobile-menu-links a:nth-child(2){ transition-delay: 140ms; }
.mobile-menu.open .mobile-menu-links a:nth-child(3){ transition-delay: 200ms; }
.mobile-menu.open .mobile-menu-links a:nth-child(4){ transition-delay: 260ms; }
.mobile-menu.open .mobile-menu-links a:nth-child(5){ transition-delay: 320ms; }
.mobile-menu-links a:hover{ color: var(--gold-soft); }
.mobile-menu-links a span{
  font-family: var(--font-sans); font-size: 0.85rem; color: var(--gold); letter-spacing: 0.1em;
}
.mobile-menu-cta{ align-self: stretch; justify-content: center; }

.mobile-sticky-cta{
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90;
  display: none; text-align: center; padding: 1.05rem;
  background: var(--gold); color: var(--black);
  font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem;
  box-shadow: 0 14px 34px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
@media (max-width: 1024px){ .mobile-sticky-cta{ display: block; } }
.mobile-sticky-cta.visible{ opacity: 1; transform: translateY(0); pointer-events: auto; }

/* =========================================================
   Hero
   ========================================================= */
.hero{
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-img{
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%;
  will-change: transform;
}
.hero-overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,7,4,0.45) 0%, rgba(11,7,4,0.35) 30%, rgba(11,7,4,0.55) 60%, rgba(11,7,4,0.96) 100%),
    linear-gradient(90deg, rgba(11,7,4,0.55) 0%, rgba(11,7,4,0.05) 45%, rgba(11,7,4,0.05) 55%, rgba(11,7,4,0.5) 100%);
}

.hero-content{
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--gutter) 6rem; width: 100%;
}
.hero-wordmark{
  display: flex; flex-direction: column;
  font-size: clamp(4.2rem, 15vw, 11.5rem);
  line-height: 0.86;
  letter-spacing: -0.01em;
  margin: 0 0 1.5rem;
}
.hero-wordmark span{ display: block; }

.hero-tagline{
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--ivory-faint);
  margin: 0 0 2.25rem;
}
.hero-actions{ display: flex; gap: 1.1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-address{
  font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ivory-faint); margin: 0;
}

.scroll-cue{
  position: absolute; right: var(--gutter); bottom: 2.4rem; z-index: 1;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ivory-faint); writing-mode: vertical-rl;
}
.scroll-cue-line{
  width: 1px; height: 52px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cueMove 2.2s ease-in-out infinite;
}
@keyframes cueMove{
  0%, 100%{ transform: scaleY(1); opacity: 0.6; }
  50%{ transform: scaleY(0.6); opacity: 1; }
}

/* =========================================================
   Brand moment — typography-led breathing room
   ========================================================= */
.brand-moment{
  background: var(--black);
  padding: clamp(6rem, 16vw, 11rem) var(--gutter);
  text-align: center;
}
.brand-moment-line{
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.4vw, 4.6rem);
  line-height: 1.15;
  margin: 0;
  color: var(--ivory);
}

/* =========================================================
   Prelude / story
   ========================================================= */
.prelude{
  background: var(--espresso);
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
}
.prelude-inner{
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center;
}
.prelude-media img{
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: 50% 18%;
}
.prelude-copy h2{
  font-size: clamp(2.2rem, 4.4vw, 3.3rem); line-height: 1.08; margin-bottom: 1.75rem;
}
.prelude-copy p{ color: var(--ivory-dim); max-width: 34rem; margin: 0 0 1.25rem; }

.fact-row{
  display: flex; gap: clamp(1.5rem, 4vw, 3rem);
  margin: 2.5rem 0 0; padding-top: 2rem; border-top: 1px solid var(--hairline);
}
.fact dt{ font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.fact dd{ margin: 0; font-family: var(--font-display); font-size: 1.3rem; color: var(--ivory); }

/* Motif divider — echoes the brand's own emblem divider */
.motif-divider{
  display: flex; align-items: center; justify-content: center;
  padding: 3.25rem var(--gutter); background: var(--espresso);
}
.motif-divider::before, .motif-divider::after{
  content: ''; flex: 1; max-width: 220px; height: 1px; background: var(--hairline);
}
.motif-diamond{ width: 7px; height: 7px; margin: 0 1.1rem; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* =========================================================
   Experience — asymmetric editorial, then a typography break
   ========================================================= */
.experience{ background: var(--black); padding: clamp(5rem, 10vw, 9rem) 0 0; }
.experience-head{ padding: 0 var(--gutter) clamp(3rem, 6vw, 5rem); max-width: var(--container); margin: 0 auto; }
.experience-head .section-title{ max-width: 30rem; }

.exp-item{
  position: relative; display: grid; grid-template-columns: 1.3fr 1fr;
  align-items: stretch; min-height: 62vh; margin-bottom: 2px;
}
.exp-item.exp-bar{ grid-template-columns: 1fr 1.3fr; }
.exp-item.exp-bar .exp-media{ order: 2; }
.exp-item.exp-bar .exp-copy{ order: 1; align-items: flex-end; text-align: right; }
.exp-item.exp-bar .exp-copy p{ margin-left: auto; }

.exp-media{ position: relative; overflow: hidden; }
.exp-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.exp-kitchen .exp-media img{ object-position: 50% 35%; }
.exp-bar .exp-media img{ object-position: 62% 30%; }
.exp-item:hover .exp-media img{ transform: scale(1.06); }

.exp-copy{
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem); background: var(--espresso); position: relative;
}
.exp-num{
  font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 6rem);
  color: transparent; -webkit-text-stroke: 1px var(--gold-dim); line-height: 1; margin-bottom: 0.25rem;
}
.exp-label{ font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 0.5rem; }
.exp-copy h3{ font-size: clamp(2rem, 3.4vw, 3rem); margin-bottom: 1rem; }
.exp-copy p{ color: var(--ivory-dim); max-width: 26rem; margin: 0; }

/* Private — typography-only band, breaks the image/text pattern */
.exp-item.exp-private{
  display: block; min-height: auto;
  background: linear-gradient(155deg, var(--burgundy) 0%, var(--espresso) 65%);
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
  position: relative; overflow: hidden;
}
.exp-item.exp-private::before{
  content: '';
  position: absolute; top: -20%; right: -8%;
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  border: 1px solid var(--gold-dim);
  transform: rotate(45deg);
  opacity: 0.35;
  pointer-events: none;
}
.exp-item.exp-private .exp-copy{
  padding: 0; background: none; max-width: 38rem; margin: 0 auto; text-align: center; align-items: center;
}
.exp-item.exp-private .exp-copy p{ text-align: center; }

/* =========================================================
   Food showcase — editorial gallery, mixed sizes
   ========================================================= */
.food{ background: var(--espresso); padding: clamp(5rem, 10vw, 9rem) var(--gutter); }
.food-head{ max-width: var(--container); margin: 0 auto clamp(3rem, 6vw, 5rem); text-align: center; }
.food-head .section-title{ margin: 0 auto 0.75rem; }
.food-sub{ font-family: var(--font-display); font-style: italic; color: var(--ivory-faint); font-size: 1.2rem; margin: 0; }

.food-gallery{
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr;
  grid-auto-rows: 1fr; gap: clamp(1.25rem, 3vw, 2rem);
}
.food-card{ margin: 0; position: relative; display: flex; flex-direction: column; }
.food-card img{ width: 100%; object-fit: cover; }

.food-card-lg{ grid-row: span 2; }
.food-card-lg img{ aspect-ratio: 3/4; object-position: 50% 38%; }
.food-card-lg figcaption{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.25rem 1.75rem 1.75rem;
  background: linear-gradient(0deg, rgba(11,7,4,0.92) 10%, rgba(11,7,4,0.35) 60%, transparent 100%);
}
.food-card-lg figcaption h3{ color: var(--ivory); font-size: clamp(1.6rem, 2.6vw, 2.1rem); }

.food-card-md img{ aspect-ratio: 16/10; }
.food-card-md figcaption{ padding: 1.25rem 0.25rem 0; }
.food-card-md figcaption h3{ font-size: 1.4rem; color: var(--ivory); }

.food-card-plate{ background: var(--espresso-2); border: 1px solid var(--hairline); }
.food-card-plate img{ aspect-ratio: 16/10; object-fit: contain; padding: 1.25rem; }
.food-card-plate figcaption{ padding: 0 1.25rem 1.25rem; }

.food-tag{
  display: inline-block; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 0.5rem;
}
.food-card figcaption p{ color: var(--ivory-dim); font-size: 0.92rem; margin: 0.4rem 0 0; max-width: 26rem; }

.food-cta{ text-align: center; margin-top: clamp(2.5rem, 5vw, 4rem); }

/* =========================================================
   The Night — cinematic immersive transition
   ========================================================= */
.the-night{
  position: relative; min-height: 82vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.tn-media{ position: absolute; inset: 0; z-index: 0; }
.tn-img{ width: 100%; height: 120%; object-fit: cover; object-position: 60% 40%; will-change: transform; }
.tn-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,7,4,0.82), rgba(11,7,4,0.5) 40%, rgba(11,7,4,0.92));
}
.tn-content{ position: relative; z-index: 1; text-align: center; max-width: 46rem; padding: 0 var(--gutter); }
.tn-content h2{ font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.06; margin-bottom: 1.5rem; }
.tn-content p{ color: var(--ivory-faint); font-size: 1.05rem; max-width: 32rem; margin: 0 auto; }

/* =========================================================
   Private events — sells hard, typography-led
   ========================================================= */
.events{
  position: relative;
  background: radial-gradient(120% 100% at 15% 0%, var(--burgundy-2) 0%, var(--black) 55%);
  padding: clamp(6rem, 12vw, 10rem) var(--gutter);
  overflow: hidden;
}
.events::after{
  content: '';
  position: absolute; bottom: -25%; left: -10%;
  width: 50vw; height: 50vw; max-width: 640px; max-height: 640px;
  border: 1px solid var(--gold-dim);
  transform: rotate(45deg);
  opacity: 0.28;
  pointer-events: none;
}
.events-inner{ position: relative; max-width: 44rem; margin: 0 auto; text-align: center; }
.events-inner h2{ font-size: clamp(2.6rem, 7vw, 5.2rem); line-height: 1.05; margin: 0 0 1.75rem; }
.events-copy{ color: var(--ivory-dim); max-width: 34rem; margin: 0 auto 2.25rem; }

.events-list{
  list-style: none; margin: 0 0 2.75rem; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0 1.75rem;
  font-family: var(--font-display); font-size: 1.15rem; color: var(--ivory);
}
.events-list li{ position: relative; padding: 0.35rem 0; }
.events-list li:not(:last-child)::after{
  content: '/'; margin-left: 1.75rem; color: var(--gold-dim); font-family: var(--font-sans);
}

/* =========================================================
   Reservations
   ========================================================= */
.reserve{ background: var(--black); padding: clamp(5rem, 10vw, 9rem) var(--gutter); }
.reserve-inner{
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.reserve-head h2{ font-size: clamp(2.2rem, 4.4vw, 3.3rem); margin: 0 0 1.5rem; line-height: 1.08; }
.reserve-note{ color: var(--ivory-dim); max-width: 26rem; margin: 0 0 2rem; }
.reserve-phone{
  display: inline-block; font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-soft);
  border-bottom: 1px solid var(--gold-dim); padding-bottom: 0.2rem;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.reserve-phone:hover{ border-color: var(--gold); }

.reserve-form{ background: var(--espresso); padding: clamp(1.75rem, 4vw, 3rem); border: 1px solid var(--hairline); }
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field{ margin-bottom: 1.25rem; }
.field label{
  display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ivory-dim); margin-bottom: 0.55rem;
}
.field .optional{ text-transform: none; letter-spacing: 0; opacity: 0.7; }

.field input, .field select, .field textarea{
  width: 100%; background: var(--espresso-2); border: 1px solid var(--hairline);
  color: var(--ivory); font-family: var(--font-sans); font-size: 0.95rem;
  padding: 0.85rem 1rem; min-height: 44px;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.field textarea{ resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--gold); outline: none; }
.field select{
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23c9a24e'%3E%3Cpath d='M5 7l5 5 5-5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px;
}
.field input::placeholder, .field textarea::placeholder{ color: var(--ivory-faint); }

.form-consent{ margin: 1rem 0 0; font-size: 0.78rem; color: var(--ivory-faint); }
.form-status{ margin: 0.5rem 0 0; font-size: 0.85rem; color: var(--gold-soft); min-height: 1.2em; }

/* =========================================================
   Location
   ========================================================= */
.location{ background: var(--espresso); padding: clamp(5rem, 10vw, 9rem) var(--gutter); }
.location-inner{
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center;
}
.location-copy h2{ font-size: clamp(2.2rem, 4.4vw, 3.3rem); margin: 0 0 1.75rem; line-height: 1.08; }
.location-copy address{ font-style: normal; color: var(--ivory-dim); line-height: 1.8; margin-bottom: 1.75rem; }
.location-copy address strong{
  display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--ivory);
  letter-spacing: 0.06em; margin-bottom: 0.5rem;
}
.contact-list{ list-style: none; padding: 0; margin: 0 0 2.25rem; }
.contact-list a{
  display: inline-block; color: var(--gold-soft); border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem; margin-bottom: 0.4rem; transition: border-color var(--dur-fast) var(--ease-out);
}
.contact-list a:hover{ border-color: var(--gold); }

.location-map{ aspect-ratio: 4/5; border: 1px solid var(--hairline); filter: grayscale(0.4) sepia(0.12) contrast(1.05); max-width: 380px; margin-left: auto; }
.location-map iframe{ width: 100%; height: 100%; border: 0; display: block; }

/* =========================================================
   Footer
   ========================================================= */
.footer{ background: var(--black); border-top: 1px solid var(--hairline); padding: clamp(3rem, 6vw, 4.5rem) var(--gutter) 2rem; }
.footer-inner{
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 2.5rem; align-items: start;
}
.footer-mark{ height: 46px; width: auto; margin: 0 0 0.75rem; }
.footer-tagline{ color: var(--ivory-dim); font-size: 0.85rem; margin: 0; }
.footer-nav{ display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav a, .footer-contact a{ color: var(--ivory-dim); font-size: 0.9rem; transition: color var(--dur-fast) var(--ease-out); }
.footer-nav a:hover, .footer-contact a:hover{ color: var(--gold-soft); }
.footer-contact{ display: flex; flex-direction: column; gap: 0.75rem; }
.footer-social{ display: flex; gap: 0.9rem; margin-top: 0.4rem; }
.footer-social a{
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--hairline); color: var(--ivory-dim);
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.footer-social a:hover{ color: var(--gold-soft); border-color: var(--gold); }
.footer-social svg{ width: 16px; height: 16px; }
.footer-cta{ align-self: center; }
.footer-bottom{
  max-width: var(--container); margin: 3rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid var(--hairline); color: var(--ivory-faint); font-size: 0.78rem;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px){
  .nav-links{ display: none; }
  .nav-cta{ display: none; }
  .hamburger{ display: block; }

  .prelude-inner, .reserve-inner, .location-inner{ grid-template-columns: 1fr; }
  .prelude-media{ order: -1; }
  .location-map{ order: -1; aspect-ratio: 16/10; max-width: none; }

  .exp-item, .exp-item.exp-bar{ grid-template-columns: 1fr; min-height: auto; }
  .exp-item.exp-bar .exp-media{ order: -1; }
  .exp-item.exp-bar .exp-copy{ align-items: flex-start; text-align: left; }
  .exp-item.exp-bar .exp-copy p{ margin-left: 0; }
  .exp-media{ aspect-ratio: 5/4; }
  .exp-copy{ padding: 2.5rem var(--gutter); }

  .food-gallery{ grid-template-columns: 1fr; }
  .food-card-lg{ grid-row: auto; }
  .food-card-lg img{ aspect-ratio: 4/5; }

  .footer-inner{ grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .footer-cta{ grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 640px){
  .hero{ align-items: center; }
  .hero-content{ padding-bottom: 6rem; }
  .hero-wordmark{ font-size: clamp(3.6rem, 18vw, 5.5rem); }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ width: 100%; }
  .scroll-cue{ display: none; }

  .fact-row{ flex-direction: column; gap: 1.25rem; }

  .exp-item.exp-private::before{ width: 80vw; height: 80vw; top: -30%; right: -30%; }
  .events::after{ width: 90vw; height: 90vw; }
  .events-list{ flex-direction: column; gap: 0.75rem; }
  .events-list li::after{ display: none; }

  .form-row{ grid-template-columns: 1fr; gap: 0; }

  .footer-inner{ grid-template-columns: 1fr; }
  .footer-cta{ justify-self: stretch; text-align: center; }
}
