/* =====================================================================
   THE BOIL CORNER — styles
   ---------------------------------------------------------------------
   EDIT COLOURS & FONTS HERE (first block). Everything else reads from
   these variables, so changing a colour once updates the whole site.
   ===================================================================== */
/* ---------- Fonts (self-hosted in /assets/fonts, so no Google request is needed) ---------- */
@font-face { font-family: 'Instrument Serif'; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/fonts/instrument-serif-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Instrument Serif'; font-style: italic; font-weight: 400; font-display: swap; src: url('../assets/fonts/instrument-serif-latin-400-italic.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/fonts/plus-jakarta-sans-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('../assets/fonts/plus-jakarta-sans-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('../assets/fonts/plus-jakarta-sans-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url('../assets/fonts/plus-jakarta-sans-latin-700-normal.woff2') format('woff2'); }

:root {
  /* Palette: "Kathmandu Coastal" */
  --teal-950: #052a2f;   /* footer */
  --teal-900: #072f35;   /* deep sections */
  --teal-800: #0b3a40;   /* primary ink + dark sections */
  --teal-700: #124a52;
  --terra:      #d9784f; /* spiced terracotta (headline accent) */
  --terra-btn:  #c2603a; /* darker terracotta for buttons / small text */
  --terra-dark: #a9502d;
  --gold:  #b98b57;      /* patina gold */
  --gold-light: #d9b27c;
  --salt:  #f9f5f0;      /* Himalayan salt (light background) */
  --sand:  #f2ebe2;      /* warmer alternate background */
  --ink:   var(--teal-800);
  --muted: #476268;      /* body text on light */
  --line:  rgba(11, 58, 64, .12);

  /* Fonts */
  --font-display: 'Instrument Serif', 'Times New Roman', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --header-h: 84px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow-card: 0 18px 40px -22px rgba(7, 47, 53, .35);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--muted);
  background: var(--salt);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
p { text-wrap: pretty; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; }
[hidden] { display: none !important; }
section[id] { scroll-margin-top: calc(var(--header-h) - 10px); }

:focus-visible { outline: 3px solid var(--terra); outline-offset: 3px; border-radius: 6px; }

.container { width: min(1200px, 100% - 3rem); margin-inline: auto; }
.skip-link {
  position: fixed; left: 1rem; top: -4rem; z-index: 200;
  background: var(--teal-800); color: #fff; padding: .7rem 1.1rem; border-radius: 999px;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.icon { width: 1.35em; height: 1.35em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon--terra { color: var(--terra-btn); }
.icon--xl { width: 3rem; height: 3rem; }

/* ---------- Type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -.012em;
  color: var(--ink);
  text-wrap: balance;
}
.display--light { color: #fff; }
.display em, .hero__title em { font-style: normal; }
.display em.c-gold, .hero__title em.c-gold { font-style: italic; }
.c-terra { color: var(--terra); }
.c-gold  { color: var(--gold); }
.hero__title .c-gold { color: var(--gold-light); }
strong.c-terra { font-weight: 600; color: var(--terra-btn); }

.lede { font-size: 1.125rem; max-width: 60ch; color: var(--muted); }
.lede--light { color: rgba(255,255,255,.78); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--terra-btn);
}
.eyebrow span { width: 2.6rem; height: 1px; background: currentColor; opacity: .7; }
.eyebrow--left span:last-child:not(:first-child) { display: none; }
.eyebrow--light { color: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.75rem; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 600; font-size: .98rem; line-height: 1.2; text-decoration: none; cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.btn .icon { width: 1.1em; height: 1.1em; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--terra-btn); color: #fff; box-shadow: 0 12px 26px -12px rgba(194, 96, 58, .8); }
.btn--primary:hover { background: var(--terra-dark); }
.btn--ghost { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; }
.btn--dark { background: var(--teal-800); color: #fff; }
.btn--dark:hover { background: var(--teal-700); }
.btn--block { width: 100%; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  color: #fff;
  transition: background-color .3s, box-shadow .3s, color .3s, height .3s;
}
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand__mark {
  position: relative; display: grid; place-items: center; width: 2.4rem; height: 2.4rem;
  border: 1.5px solid var(--terra); border-radius: 50%;
  font-family: var(--font-display); font-size: 1.35rem; line-height: 1; color: var(--terra);
  padding-bottom: .12rem;
}
.brand__mark::after { content: ''; position: absolute; left: 50%; bottom: -.32rem; width: 1.1rem; height: 1px; background: var(--terra); transform: translateX(-50%); }
.brand__name { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: -.01em; line-height: 1; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; align-items: center; gap: 1.9rem; }
.nav__list a {
  position: relative; text-decoration: none; font-size: .95rem; font-weight: 500; padding: .35rem 0;
  opacity: .92; transition: opacity .2s, color .2s;
}
.nav__list a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -.1rem; height: 2px; background: var(--terra); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.nav__list a:hover { opacity: 1; }
.nav__list a:hover::after, .nav__list a.is-current::after { transform: scaleX(1); }
.btn--nav { padding: .8rem 1.5rem; font-size: .92rem; background: #fff; color: var(--teal-800); }
.btn--nav:hover { background: var(--sand); }

.nav-toggle { display: none; width: 2.9rem; height: 2.9rem; border: 0; background: transparent; cursor: pointer; border-radius: 50%; place-items: center; }
.nav-toggle .icon { width: 1.6rem; height: 1.6rem; }
.nav-toggle .icon--close { display: none; }
.nav-open .nav-toggle .icon--open { display: none; }
.nav-open .nav-toggle .icon--close { display: block; }

/* scrolled state (JS adds .is-scrolled) */
.site-header.is-scrolled {
  --header-h: 72px;
  height: 72px; color: var(--teal-800);
  background: rgba(249, 245, 240, .88);
  -webkit-backdrop-filter: saturate(1.4) blur(14px); backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 10px 30px -18px rgba(7, 47, 53, .45);
}
.site-header.is-scrolled .btn--nav { background: var(--teal-800); color: #fff; }
.site-header.is-scrolled .btn--nav:hover { background: var(--teal-700); }

/* =====================================================================
   HERO — split screen
   ===================================================================== */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; background: var(--teal-900); isolation: isolate; }
.hero__media { position: absolute; inset: 0; display: flex; z-index: -1; }
.hero__pane { position: relative; height: 100%; overflow: hidden; }
.hero__pane img { width: 100%; height: 100%; object-fit: cover; }
.hero__pane--food { flex: 0 0 55%; }
.hero__pane--room { flex: 1 1 auto; }
.hero__pane--room::after { content: ''; position: absolute; inset: 0; background: rgba(7, 47, 53, .55); }
.hero__pane--food img { animation: heroDrift 24s ease-out both; }
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 42, 47, .93) 0%, rgba(5, 42, 47, .72) 38%, rgba(5, 42, 47, .25) 72%, rgba(5, 42, 47, .1) 100%),
    linear-gradient(0deg, rgba(5, 42, 47, .75) 0%, transparent 32%);
}

.hero__inner { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 6.5rem; }
.hero__copy { max-width: 780px; }
.hero__eyebrow { display: flex; align-items: center; gap: 1rem; font-size: .82rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.6rem; }
.hero__rule { width: 2.6rem; height: 1px; background: var(--gold-light); }
.hero__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.9rem, 6.4vw, 6rem); line-height: .98; letter-spacing: -.015em; margin-bottom: 1.8rem; text-shadow: 0 4px 30px rgba(0,0,0,.35); }
.hero__line { display: block; }
.hero__lead { font-size: 1.15rem; line-height: 1.65; max-width: 44ch; color: rgba(255,255,255,.9); margin-bottom: 2.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero__proof { display: flex; align-items: center; gap: .9rem; font-size: .92rem; color: rgba(255,255,255,.85); }
.stars { display: inline-flex; gap: .15rem; color: var(--gold-light); }
.stars .icon { width: 1rem; height: 1rem; fill: currentColor; stroke: none; }

.hero__scroll { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .7rem; font-size: .7rem; letter-spacing: .32em; text-transform: uppercase; text-decoration: none; color: rgba(255,255,255,.75); }
.hero__scroll i { position: relative; width: 1px; height: 3rem; background: rgba(255,255,255,.25); overflow: hidden; }
.hero__scroll i::after { content: ''; position: absolute; left: 0; top: 0; width: 1px; height: 40%; background: #fff; animation: scrollCue 2.2s ease-in-out infinite; }

/* One orchestrated entrance for the hero */
.hero__eyebrow, .hero__line, .hero__lead, .hero__cta, .hero__proof { animation: heroIn .9s cubic-bezier(.2,.7,.2,1) both; }
.hero__eyebrow { animation-delay: .1s; }
.hero__line:nth-child(1) { animation-delay: .25s; }
.hero__line:nth-child(2) { animation-delay: .4s; }
.hero__lead { animation-delay: .6s; }
.hero__cta { animation-delay: .75s; }
.hero__proof { animation-delay: .9s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes heroDrift { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes scrollCue { 0% { transform: translateY(-100%); } 100% { transform: translateY(260%); } }

/* =====================================================================
   SHARED SECTION STYLES
   ===================================================================== */
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section--salt { background: var(--salt); }
.section--sand { background: var(--sand); }
.section--teal { background: var(--teal-800); color: rgba(255,255,255,.8); }
.section__head { display: grid; gap: 1.2rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--center { justify-items: center; text-align: center; }
.section__head--center .lede { margin-inline: auto; }
.section__head .display { max-width: 18ch; }
.section__head--center .display { max-width: 22ch; }
#restaurant .section__head .display { max-width: 24ch; }

/* =====================================================================
   OUR STORY
   ===================================================================== */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.story__figure { position: relative; margin-bottom: 2rem; }
.story__figure > img { width: 100%; aspect-ratio: 1 / .92; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 30px 60px -30px rgba(7, 47, 53, .55); }
.story__badge {
  position: absolute; right: -1.5rem; bottom: -2rem; width: min(17rem, 70%);
  padding: 1.2rem 1.4rem; border-radius: 20px; display: grid; gap: .2rem;
  background: rgba(249, 245, 240, .82); border: 1px solid rgba(255,255,255,.7);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  box-shadow: 0 24px 40px -22px rgba(7, 47, 53, .5);
}
.story__badge strong { font-family: var(--font-display); font-weight: 400; font-size: 2.2rem; line-height: 1; color: var(--ink); }
.story__badge span { font-size: .92rem; line-height: 1.4; }
.story__copy { display: grid; gap: 1.3rem; }
.story__copy .display { margin-bottom: .6rem; max-width: 20ch; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.2rem; }
.pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.4rem 1.3rem 1.5rem; display: grid; gap: .35rem; align-content: start; }
.pillar .icon { width: 1.5rem; height: 1.5rem; margin-bottom: .9rem; }
.pillar h3 { font-size: 1.08rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.pillar p { font-size: .92rem; line-height: 1.5; }

/* =====================================================================
   MENU
   ===================================================================== */
.tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; margin-bottom: 3rem; }
.tab {
  display: inline-flex; align-items: center; gap: .6rem; padding: .85rem 1.5rem; cursor: pointer;
  border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.7);
  font-size: .92rem; font-weight: 600; color: var(--ink);
  transition: background-color .2s, color .2s, box-shadow .2s, border-color .2s;
}
.tab .icon { width: 1.15rem; height: 1.15rem; }
.tab:hover { border-color: var(--teal-800); }
.tab.is-active { background: var(--teal-800); color: #fff; border-color: var(--teal-800); box-shadow: 0 14px 24px -14px rgba(7, 47, 53, .8); }

.menu-panel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.dish { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s; }
.dish:hover, .dish:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.dish__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.dish__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.dish:hover .dish__img img, .dish:focus-visible .dish__img img { transform: scale(1.06); }
.dish__note {
  position: absolute; inset: auto 0 0 0; padding: 2.6rem 1.4rem 1.2rem; color: #fff; font-size: .92rem; line-height: 1.45;
  background: linear-gradient(0deg, rgba(5, 42, 47, .94) 20%, rgba(5, 42, 47, 0));
  transform: translateY(101%); transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.dish__note b { display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .2rem; }
.dish:hover .dish__note, .dish:focus-visible .dish__note, .dish:focus-within .dish__note { transform: none; }
.dish__body { padding: 1.5rem 1.5rem 1.7rem; display: grid; gap: .4rem; }
.dish__body h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.65rem; line-height: 1.1; color: var(--ink); }
.dish__body p { font-size: .96rem; line-height: 1.55; }
.dish__price { color: var(--terra-btn); font-weight: 600; margin-top: .3rem; }
.menu-foot { text-align: center; margin-top: 2.8rem; font-size: .95rem; }

/* =====================================================================
   RESTAURANT
   ===================================================================== */
.spaces { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.space { border-radius: var(--radius-lg); background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12); overflow: hidden; transition: border-color .3s, background-color .3s; }
.space:hover { border-color: rgba(217, 178, 124, .5); background: rgba(255,255,255,.07); }
.space__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.space__img img { width: 100%; height: 100%; object-fit: cover; }
.space__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, var(--teal-800) 0%, rgba(11, 58, 64, 0) 45%); pointer-events: none; }
.space__badge { position: absolute; top: .9rem; left: .9rem; z-index: 1; width: 2.6rem; height: 2.6rem; display: grid; place-items: center; border-radius: 50%; color: var(--gold-light); background: rgba(11, 58, 64, .7); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.15); }
.space__badge .icon { width: 1.2rem; height: 1.2rem; }
.space__body { padding: 1.4rem 1.6rem 1.9rem; display: grid; gap: .4rem; }
.space__body h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.75rem; line-height: 1.1; color: #fff; }
.space__body p { font-size: .98rem; color: rgba(255,255,255,.72); line-height: 1.55; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid rgba(255,255,255,.14); }
.stats > div { display: flex; flex-direction: column-reverse; gap: .3rem; padding: 2rem 1.5rem 0 0; }
.stats > div + div { padding-left: 2rem; border-left: 1px solid rgba(255,255,255,.14); }
.stats dd { font-family: var(--font-display); font-size: clamp(3rem, 5.5vw, 4.6rem); line-height: 1; color: var(--gold-light); }
.stats dt { font-size: .95rem; color: rgba(255,255,255,.72); }

/* =====================================================================
   EVENTS
   ===================================================================== */
.events { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; }
.events__copy { display: grid; gap: 1.3rem; }
.events__copy .display { max-width: 18ch; }
.event-types { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.2rem; }
.event-type {
  text-align: left; cursor: pointer; display: grid; gap: .3rem; align-content: start;
  padding: 1.3rem 1.3rem 1.4rem; border-radius: var(--radius-md); background: #fff; border: 1.5px solid var(--line);
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.event-type .icon { width: 1.5rem; height: 1.5rem; margin-bottom: .7rem; }
.event-type h3 { font-size: 1.05rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.event-type p { font-size: .9rem; line-height: 1.5; color: var(--muted); }
.event-type:hover { border-color: rgba(194, 96, 58, .5); }
.event-type.is-active { border-color: var(--terra-btn); background: #fffaf6; box-shadow: 0 14px 28px -20px rgba(194, 96, 58, .9); }

.events__visual { position: relative; }
.events__photo img { width: 100%; aspect-ratio: 4 / 4.2; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 30px 60px -30px rgba(7, 47, 53, .55); }
.planner {
  position: relative; z-index: 1; width: calc(100% - 2.4rem); margin: -8.5rem auto 0;
  padding: 1.5rem 1.6rem 1.6rem; border-radius: var(--radius-md); background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.8); box-shadow: 0 30px 50px -28px rgba(7, 47, 53, .6);
  display: grid; gap: .9rem;
}
.planner__row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.planner__row label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.planner__count { font-size: .95rem; color: var(--muted); }
.planner__count b { font-family: var(--font-display); font-weight: 400; font-size: 2.3rem; line-height: 1; color: var(--terra-btn); margin-right: .15rem; }
.planner__ends { display: flex; justify-content: space-between; font-size: .8rem; color: var(--muted); }
.planner__hint { font-size: .92rem; color: var(--ink); font-weight: 500; min-height: 1.5em; }

input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 1.6rem; background: transparent; cursor: pointer; --pct: 16.6%; }
input[type="range"]::-webkit-slider-runnable-track { height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--terra-btn) var(--pct), rgba(11, 58, 64, .14) var(--pct)); }
input[type="range"]::-moz-range-track { height: 6px; border-radius: 999px; background: rgba(11, 58, 64, .14); }
input[type="range"]::-moz-range-progress { height: 6px; border-radius: 999px; background: var(--terra-btn); }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 1.6rem; height: 1.6rem; margin-top: calc((6px - 1.6rem) / 2); border-radius: 50%; background: #fff; border: 5px solid var(--terra-btn); box-shadow: 0 4px 12px rgba(7, 47, 53, .3); }
input[type="range"]::-moz-range-thumb { width: 1.2rem; height: 1.2rem; border-radius: 50%; background: #fff; border: 5px solid var(--terra-btn); box-shadow: 0 4px 12px rgba(7, 47, 53, .3); }

.seats { display: grid; grid-template-columns: repeat(25, 1fr); gap: 5px; }
.seats i { aspect-ratio: 1; border-radius: 50%; background: rgba(11, 58, 64, .12); transition: background-color .25s, transform .25s; }
.seats i.on { background: var(--terra-btn); transform: scale(1.05); }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(150px, 17vw, 230px); gap: 1.1rem; }
.tile { position: relative; padding: 0; border: 0; cursor: zoom-in; overflow: hidden; border-radius: var(--radius-md); background: var(--teal-800); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.tile span {
  position: absolute; inset: auto 0 0 0; padding: 2.4rem 1.2rem 1rem; text-align: left; color: #fff; font-family: var(--font-display); font-size: 1.5rem; line-height: 1;
  background: linear-gradient(0deg, rgba(5, 42, 47, .85), rgba(5, 42, 47, 0));
  opacity: 0; transform: translateY(8px); transition: opacity .35s, transform .35s;
}
.tile:hover img, .tile:focus-visible img { transform: scale(1.06); }
.tile:hover span, .tile:focus-visible span { opacity: 1; transform: none; }
.tile--a { grid-column: 1 / 3; grid-row: 1 / 3; }
.tile--b { grid-column: 3; grid-row: 1; }
.tile--c { grid-column: 4; grid-row: 1 / 3; }
.tile--d { grid-column: 3; grid-row: 2; }
.tile--e { grid-column: 1 / 5; grid-row: 3; }

.lightbox { border: 0; padding: 0; background: transparent; max-width: 92vw; max-height: 92vh; color: #fff; overflow: visible; }
.lightbox::backdrop { background: rgba(4, 30, 34, .88); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.lightbox img { max-width: 92vw; max-height: 80vh; width: auto; height: auto; border-radius: 16px; margin-inline: auto; }
.lightbox p { text-align: center; margin-top: 1rem; font-family: var(--font-display); font-size: 1.6rem; }
.lightbox__close { position: absolute; top: -3.2rem; right: 0; width: 2.6rem; height: 2.6rem; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.1); color: #fff; cursor: pointer; display: grid; place-items: center; }
.lightbox__close:hover { background: rgba(255,255,255,.22); }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact__info { display: grid; gap: 1.3rem; }
.contact__info .display { max-width: 18ch; }
.info-list { display: grid; gap: 1.1rem; margin-top: .6rem; }
.info-list li { display: flex; align-items: flex-start; gap: 1rem; line-height: 1.5; color: var(--ink); }
.info-list .icon { width: 2.8rem; height: 2.8rem; padding: .75rem; border-radius: 50%; background: rgba(194, 96, 58, .1); }
.info-list span { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .1rem; }
.info-list a { text-decoration: none; }
.info-list a:hover { color: var(--terra-btn); }
.map { margin-top: .8rem; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 9; background: var(--sand); }
.map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.85); }

.contact__form { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.form, .form-success { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-card); }
.form { display: grid; gap: 1.1rem; }
.form h3 { font-family: var(--font-display); font-weight: 400; font-size: 2rem; line-height: 1.1; color: var(--ink); margin-bottom: .2rem; }
.field { display: grid; gap: .4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  width: 100%; min-height: 3.25rem; font: inherit; font-size: 1rem; color: var(--ink); background: var(--salt);
  border: 1.5px solid var(--line); border-radius: 14px; padding: .85rem 1rem; transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field textarea { resize: vertical; min-height: 6.5rem; }
.field input::placeholder, .field textarea::placeholder { color: #8fa3a7; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--terra-btn); background: #fff; box-shadow: 0 0 0 4px rgba(194, 96, 58, .16); }
.field.has-error input { border-color: #b3261e; }
.form__error { font-size: .92rem; color: #b3261e; font-weight: 500; }
.form__note { font-size: .85rem; line-height: 1.5; text-align: center; }
.form-success { display: grid; gap: .8rem; justify-items: center; text-align: center; padding-block: 3rem; }
.form-success h3 { font-family: var(--font-display); font-weight: 400; font-size: 2.2rem; color: var(--ink); }
.form-success p { max-width: 34ch; margin-bottom: .6rem; }

/* =====================================================================
   CONSTRUCTION PROGRESS
   ===================================================================== */
#progress .display { max-width: 22ch; }
.progress-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.progress-photos figure { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4 / 3; }
.progress-photos img { width: 100%; height: 100%; object-fit: cover; }
.progress-photos figcaption { position: absolute; inset: auto 0 0 0; padding: 2.4rem 1.3rem 1rem; color: #fff; font-size: .95rem; font-weight: 500; background: linear-gradient(0deg, rgba(5, 42, 47, .9), rgba(5, 42, 47, 0)); }

.milestones { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(2.5rem, 5vw, 4rem); }
.milestones li { position: relative; display: grid; gap: .15rem; padding-top: 2.2rem; padding-right: 1rem; }
.milestones li::before { content: ''; position: absolute; top: .55rem; left: 0; right: 0; height: 2px; background: rgba(255,255,255,.16); }
.milestones li.done::before { background: var(--gold); }
.milestones li.now::before { background: linear-gradient(90deg, var(--gold), rgba(255,255,255,.16)); }
.milestones__dot { position: absolute; top: 0; left: 0; width: 1.1rem; height: 1.1rem; border-radius: 50%; border: 2px solid rgba(255,255,255,.35); background: var(--teal-800); }
.milestones .done .milestones__dot { background: var(--gold); border-color: var(--gold); }
.milestones .now .milestones__dot { background: var(--terra); border-color: var(--terra); box-shadow: 0 0 0 5px rgba(217, 120, 79, .25); }
.milestones b { color: #fff; font-weight: 600; font-size: 1.02rem; }
.milestones small { font-size: .85rem; color: rgba(255,255,255,.65); }
.milestones .now small { color: var(--gold-light); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--teal-950); color: rgba(255,255,255,.7); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.site-footer .brand { color: #fff; margin-bottom: 1.2rem; }
.footer__brand p { max-width: 38ch; font-size: .98rem; }
.footer__badge { display: inline-block; margin-top: 1.2rem; padding: .35rem .9rem; border-radius: 999px; border: 1px solid rgba(217, 178, 124, .5); color: var(--gold-light); font-size: .8rem; font-weight: 600; letter-spacing: .08em; }
.site-footer h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; color: #fff; margin-bottom: 1rem; }
.site-footer li { margin-bottom: .55rem; font-size: .96rem; }
.site-footer a { text-decoration: none; }
.site-footer li a:hover { color: var(--gold-light); }
.footer__legal { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.6rem; font-size: .88rem; }

/* Floating button (phones) */
.fab {
  position: fixed; right: 1rem; bottom: calc(1rem + env(safe-area-inset-bottom, 0px)); z-index: 90;
  display: none; padding: .95rem 1.5rem; border-radius: 999px; background: var(--terra-btn); color: #fff; font-weight: 600; font-size: .95rem; text-decoration: none;
  box-shadow: 0 16px 30px -10px rgba(5, 42, 47, .6);
  transform: translateY(150%); transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.fab.is-visible { transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
  .nav__list { gap: 1.25rem; }
  .nav { gap: 1.25rem; }
  .nav__list a { font-size: .9rem; }
}

@media (max-width: 960px) {
  /* Mobile navigation panel */
  .nav-toggle { display: grid; position: relative; z-index: 2; }
  .nav {
    position: fixed; inset: 0; z-index: 1; padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 1.5rem;
    background: var(--teal-900); color: #fff;
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity .25s, transform .25s, visibility .25s;
    overflow-y: auto;
  }
  .nav-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav-open .site-header { color: #fff; }
  .nav-open .site-header .brand, .nav-open .site-header .nav-toggle { position: relative; z-index: 2; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a { display: block; padding: 1rem 0; font-family: var(--font-display); font-size: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); opacity: 1; }
  .nav__list a::after { display: none; }
  .btn--nav, .site-header.is-scrolled .btn--nav { background: var(--terra-btn); color: #fff; padding: 1.05rem; font-size: 1rem; }
  .site-header.is-scrolled { background: rgba(249, 245, 240, .94); }
  .nav-open .site-header.is-scrolled { background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; color: #fff; }

  .story, .events, .contact { grid-template-columns: 1fr; }
  .story__copy .display, .events__copy .display, .contact__info .display { max-width: 20ch; }
  .contact__form { position: static; }
  .menu-panel, .spaces { grid-template-columns: repeat(2, 1fr); }
  .menu-panel > :last-child:nth-child(odd), .spaces > :last-child:nth-child(odd) { grid-column: 1 / -1; }
  .menu-panel > :last-child:nth-child(odd) .dish__img { aspect-ratio: 16 / 8; }
  .spaces > :last-child:nth-child(odd) .space__img { aspect-ratio: 16 / 8; }
  .events__visual { max-width: 640px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --header-h: 72px; }
  .container { width: min(1200px, 100% - 2rem); }
  .brand__name { font-size: 1.4rem; }

  .hero__pane--room { display: none; }
  .hero__pane--food { flex-basis: 100%; }
  .hero__shade { background: linear-gradient(0deg, rgba(5, 42, 47, .92) 8%, rgba(5, 42, 47, .6) 55%, rgba(5, 42, 47, .55) 100%); }
  .hero__inner { padding-bottom: 5.5rem; }
  .hero__eyebrow { font-size: .72rem; letter-spacing: .24em; }
  .hero__line { display: inline; }
  .hero__lead { font-size: 1.02rem; }
  .hero__cta .btn { flex: 1 1 auto; }
  .hero__scroll { display: none; }

  .story__badge { right: .8rem; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { grid-template-columns: auto 1fr; column-gap: 1rem; align-items: center; padding: 1.1rem 1.2rem; }
  .pillar .icon { grid-row: span 2; margin: 0; }
  .menu-panel, .spaces { grid-template-columns: 1fr; }
  .menu-panel > :last-child:nth-child(odd) .dish__img, .spaces > :last-child:nth-child(odd) .space__img { aspect-ratio: 4 / 3; }
  .tabs { gap: .5rem; }
  .tab { padding: .75rem 1.1rem; font-size: .88rem; }

  .stats { grid-template-columns: 1fr; }
  .stats > div, .stats > div + div { flex-direction: row-reverse; justify-content: flex-end; align-items: baseline; gap: 1.2rem; padding: 1.2rem 0; border-left: 0; }
  .stats > div + div { border-top: 1px solid rgba(255,255,255,.14); }
  .stats dd { min-width: 6.5rem; }

  .event-types { grid-template-columns: 1fr; }
  .planner { margin-top: -5rem; width: calc(100% - 1.4rem); padding: 1.3rem; }
  .events__photo img { aspect-ratio: 4 / 3.3; }

  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: .7rem; }
  .tile--a { grid-column: 1 / 3; grid-row: span 2; }
  .tile--b, .tile--d, .tile--c { grid-column: auto; grid-row: auto; }
  .tile--c { grid-row: span 2; }
  .tile--e { grid-column: 1 / 3; grid-row: auto; }
  .tile span { opacity: 1; transform: none; font-size: 1.2rem; padding: 1.6rem .9rem .7rem; }

  .field-row { grid-template-columns: 1fr; }
  .progress-photos { grid-template-columns: 1fr; }
  .milestones { grid-template-columns: 1fr; gap: 0; }
  .milestones li { padding: 0 0 1.6rem 2.2rem; }
  .milestones li::before { top: 0; bottom: 0; left: .5rem; right: auto; width: 2px; height: auto; }
  .milestones li.now::before { background: linear-gradient(180deg, var(--gold), rgba(255,255,255,.16)); }
  .milestones__dot { top: .2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .fab { display: inline-flex; }
}

/* Touch devices: no hover, so show the chef's note as a caption */
@media (hover: none) {
  .dish__note { transform: none; padding-top: 2rem; }
  .dish:hover { transform: none; box-shadow: none; }
  .tile span { opacity: 1; transform: none; }
}

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