/* ============================================================
   CONTE CAMILLO — Small Batch Cocktails
   The Rooms — shared stylesheet · v3 (photography-led)
   Built to the Conte Camillo CI Exploration 2026 v2 (Brand Bible)
   ------------------------------------------------------------
   Design language: no rules or dividers — separation comes from
   space, surface tone, radius and shadow. Photography carries
   the atmosphere; type carries the voice.
   ------------------------------------------------------------
   TYPE — CI typefaces are Adobe Fonts:
     Display .... IvyPresto Display Bold / Regular
     Body ....... IvyStyle Regular
     Script ..... Millionaire  (signature only, one use per page)
   Swap the three --font-* variables when the Adobe Fonts
   project ID is added; nothing else needs to change.
   ============================================================ */

/* ------- CI typefaces (licensed, supplied) ------- */
@font-face {
  font-family: "IvyPresto Display";
  src: url("../fonts/ivypresto-display-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IvyPresto Display";
  src: url("../fonts/ivypresto-display-400-italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "IvyPresto Display";
  src: url("../fonts/ivypresto-display-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IvyStyle Sans";
  src: url("../fonts/ivystyle-sans-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IvyStyle Sans";
  src: url("../fonts/ivystyle-sans-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-latin-400-normal.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-latin-400-italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-latin-700-normal.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-latin-400-normal.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-latin-500-normal.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-latin-600-normal.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Mrs Saint Delafield";
  src: url("../fonts/mrs-saint-delafield-latin-400-normal.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  /* Umbrella palette — fixed, complete as defined */
  --black-velvet: #1A1209;
  --midnight:     #2C2014;
  --gatsby-gold:  #C9960C;
  --champagne:    #F5D87A;
  --ivory-silk:   #FAF3DC;
  --ash-gray:     #8C8576;
  --teak-shadow:  #3D2E1A;
  --walnut:       #55431F;

  --gold-gradient: linear-gradient(135deg, #FAF3DC 0%, #C9960C 55%, #7A5E10 100%);

  /* Product colour — overridden per page */
  --room-primary:   #1D4490;
  --room-secondary: #EE3043;

  --font-display: "IvyPresto Display", "Playfair Display", Georgia, serif;
  --font-body:    "IvyStyle Sans", "Source Sans 3", "Helvetica Neue", sans-serif;
  --font-script:  "Mrs Saint Delafield", "millionaire-script", cursive;

  --margin-bar: 48px;                 /* darker left bar — CI rule */
  --text-col: 680px;
  --section-gap: clamp(110px, 13vw, 180px);
  --r-lg: 28px;                       /* large surfaces & photos   */
  --r-md: 20px;                       /* cards                     */
  --shadow-lg: 0 30px 80px -20px rgba(8, 5, 2, 0.75);
  --shadow-md: 0 18px 50px -18px rgba(8, 5, 2, 0.65);
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--room-primary, var(--black-velvet));
  color: var(--ivory-silk);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* The darker left bar — a tonal shift, not a line */
body::before {
  content: "";
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--margin-bar);
  background: color-mix(in srgb, var(--room-primary) 70%, #0E0805);
  z-index: 60;
  pointer-events: none;
}

.grain, .vignette { position: fixed; inset: 0; pointer-events: none; }
.grain {
  z-index: 90;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}
.vignette { display: none; }

::selection { background: var(--gatsby-gold); color: var(--black-velvet); }
:focus-visible { outline: 2px solid var(--gatsby-gold); outline-offset: 4px; border-radius: 4px; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #150E06; }
::-webkit-scrollbar-thumb { background: var(--teak-shadow); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--walnut); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .pull-quote { text-wrap: balance; }
p { max-width: var(--text-col); text-wrap: pretty; }
p + p { margin-top: 1.4em; }

/* ============ Type helpers =================================== */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.gold-grad {
  /* solid product-secondary headlines — the label pairing, no gradient */
  color: color-mix(in srgb, var(--room-secondary) 88%, var(--ivory-silk));
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ivory-silk) 62%, transparent);
  line-height: 1.6;
}
.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--ivory-silk);
  padding: 0.1em 0.15em;
}
.muted { color: color-mix(in srgb, var(--ivory-silk) 62%, transparent); }

/* Kicker chip — replaces every rule-and-eyebrow lockup */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: color-mix(in srgb, var(--room-primary) 60%, #0E0805);
  color: color-mix(in srgb, var(--room-secondary) 72%, var(--ivory-silk));
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
}
.chip .chip-idx {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--room-secondary);
}

/* ============ Layout ========================================= */
.frame {
  padding-left: calc(var(--margin-bar) + clamp(28px, 6vw, 96px));
  padding-right: clamp(28px, 6vw, 96px);
}
section { padding-block: calc(var(--section-gap) / 2); position: relative; }

.sec-head { margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head .chip { margin-bottom: 26px; }
.sec-title { font-size: clamp(38px, 5vw, 66px); }

/* ============ Header / navigation ============================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(28px, 5vw, 72px) 14px calc(var(--margin-bar) + clamp(20px, 4vw, 56px));
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--room-primary) 72%, #150E06);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px -18px rgba(8, 5, 2, 0.8);
}

.logo { display: inline-flex; }
.logo img {
  height: clamp(58px, 6vw, 76px);
  width: auto;
  transition: opacity 0.3s ease;
}
.logo:hover img { opacity: 0.85; }

.footer-logo { height: 130px; width: auto; }

.rooms-nav { display: flex; gap: clamp(4px, 0.8vw, 10px); align-items: center; }
.rooms-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ivory-silk) 66%, transparent);
  padding: 9px 15px;
  border-radius: 999px;
  transition: color 0.3s ease, background 0.3s ease;
  white-space: nowrap;
}
.rooms-nav a:hover { color: var(--ivory-silk); background: rgba(250, 243, 220, 0.06); }
.rooms-nav a[aria-current="page"] {
  color: color-mix(in srgb, var(--room-secondary) 75%, var(--ivory-silk));
  background: color-mix(in srgb, var(--room-primary) 55%, #0E0805);
}

.nav-toggle {
  display: none;
  background: var(--midnight);
  border: 0;
  color: var(--champagne);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: 999px;
  cursor: pointer;
}

/* ============ Hero =========================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 156px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: center;
  width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { opacity: 0; animation: rise 1.2s var(--ease-out) forwards; }
  .hero-copy > *:nth-child(1) { animation-delay: 0.12s; }
  .hero-copy > *:nth-child(2) { animation-delay: 0.26s; }
  .hero-copy > *:nth-child(3) { animation-delay: 0.44s; }
  .hero-copy > *:nth-child(4) { animation-delay: 0.58s; }
  .hero-photo { opacity: 0; animation: rise 1.4s 0.4s var(--ease-out) forwards; }
  @keyframes rise { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: none; } }
}

.hero-kicker { margin-bottom: 38px; }

.hero h1 { font-size: clamp(54px, 8.6vw, 136px); margin: 0; }
.h1-the {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 0.34em;
  letter-spacing: 0.02em;
  color: var(--ivory-silk);
  margin-bottom: 0.15em;
}

.hero-script {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  margin-top: -0.12em;
  margin-left: clamp(40px, 8vw, 150px);
  transform: rotate(-2deg);
  transform-origin: left center;
  position: relative;
  z-index: 2;
}

/* Flavour keys as pill chips */
.hero-keys { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.hero-keys span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ivory-silk);
  background: color-mix(in srgb, var(--room-primary) 62%, #0E0805);
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

/* Cocktail photo card */
.hero-photo {
  position: relative;
  justify-self: center;
  width: min(100%, 500px);
  will-change: transform;
}
.hero-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.hero-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(21, 14, 6, 0.72);
  backdrop-filter: blur(10px);
  color: var(--ivory-silk);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: color-mix(in srgb, var(--ivory-silk) 62%, transparent);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-cue { animation: bob 2.8s ease-in-out infinite; }
  @keyframes bob { 0%, 100% { transform: translate(-50%, 0); opacity: 0.55; } 50% { transform: translate(-50%, 8px); opacity: 1; } }
}

/* ============ The Room (feeling) ============================= */
.pull-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.16;
  max-width: 24ch;
}

.world {
  position: relative;
  margin-top: clamp(40px, 5vw, 64px);
  margin-left: calc(-1 * (var(--margin-bar) + clamp(28px, 6vw, 96px)));
  margin-right: calc(-1 * clamp(28px, 6vw, 96px));
}
.world-img {
  width: 100%;
  height: auto;
  aspect-ratio: 12 / 5;
  min-height: 420px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
}
.world-card {
  position: relative;
  max-width: 660px;
  margin: clamp(-110px, -8vw, -70px) clamp(28px, 6vw, 96px) 0
          calc(var(--margin-bar) + clamp(28px, 6vw, 96px));
  background: color-mix(in srgb, var(--room-primary) 55%, rgba(14, 8, 5, 0.94));
  backdrop-filter: blur(14px);
  border-radius: var(--r-md);
  padding: clamp(30px, 3.6vw, 48px);
  box-shadow: var(--shadow-md);
}
.world-card .eyebrow { margin-bottom: 18px; color: color-mix(in srgb, var(--room-secondary) 80%, var(--ivory-silk)); }

/* ============ Tasting notes ================================== */
.profile-intro {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.3;
  max-width: 30ch;
  margin-bottom: clamp(48px, 5vw, 72px);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}
.note-cell {
  background: color-mix(in srgb, var(--room-primary) 68%, #0E0805);
  border-radius: var(--r-md);
  padding: clamp(30px, 3.4vw, 46px);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease-out), background 0.5s ease;
}
.note-cell:hover { transform: translateY(-6px); background: color-mix(in srgb, var(--room-primary) 56%, #0E0805); }
.note-cell::after {
  content: attr(data-num);
  position: absolute;
  right: -6px;
  bottom: -28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 120px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--ivory-silk) 16%, transparent);
  pointer-events: none;
}
.note-label {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--room-secondary) 85%, var(--ivory-silk));
}
.note-label .note-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--ivory-silk) 55%, transparent);
  letter-spacing: 0;
}
.note-cell p { font-size: 16.5px; line-height: 1.6; position: relative; z-index: 1; }

.notes-grid .note-cell:nth-child(2) { transition-delay: 0.1s; }
.notes-grid .note-cell:nth-child(3) { transition-delay: 0.2s; }

/* ============ What you will taste — ingredient cards ========= */
.ingredients-grid {
  /* 4 ingredients → 2 x 2 at the same card width as a 3-across row */
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  max-width: calc(66.666% + clamp(18px, 2vw, 28px) / 3);
}
.ingredients-grid.cols-3,
.ingredients-grid.cols-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
}
.ingredients-grid.cols-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: none; }
.ingredients-grid.cols-5 .ing-body { padding: 18px 20px 22px; }
.ingredients-grid.cols-5 h3 { font-size: clamp(17px, 1.5vw, 20px); }

.ingredient-card {
  background: color-mix(in srgb, var(--room-primary) 68%, #0E0805);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease-out);
}
.ingredient-card:hover { transform: translateY(-8px); }
.ingredient-card .ing-media { overflow: hidden; }
.ing-media--mono {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--room-primary) 44%, #0E0805);
}
.ing-media--mono span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(64px, 6.5vw, 104px);
  line-height: 1;
  color: color-mix(in srgb, var(--room-secondary) 85%, var(--ivory-silk));
}
.ingredient-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.ingredient-card:hover img { transform: scale(1.05); }
.ingredient-card .ing-body { padding: 22px 24px 26px; }
.ingredient-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  margin-bottom: 8px;
}
.ingredient-card .ing-body p { font-size: 14.5px; color: var(--ash-gray); line-height: 1.5; }

.composition-note {
  margin-top: clamp(36px, 4vw, 56px);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: color-mix(in srgb, var(--room-secondary) 80%, var(--ivory-silk));
}

/* ============ The Serve ====================================== */
.serve-section { padding-block: calc(var(--section-gap) / 2); }
.serve-panel {
  position: relative;
  background: color-mix(in srgb, var(--room-primary) 66%, #0E0805);
  border-radius: calc(var(--r-lg) + 6px);
  padding: clamp(40px, 5.5vw, 88px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.serve-panel > * { position: relative; }
.serve-head-title { max-width: 16ch; }
.in-seconds {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.6em;
  letter-spacing: 0;
  -webkit-text-fill-color: var(--ivory-silk);
  color: var(--ivory-silk);
  white-space: nowrap;
}

.serve-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
  counter-reset: step;
  margin-top: clamp(40px, 5vw, 64px);
}
.serve-step {
  background: color-mix(in srgb, var(--room-primary) 42%, #0E0805);
  border-radius: var(--r-md);
  padding: clamp(26px, 3vw, 40px);
  transition: transform 0.5s var(--ease-out), background 0.5s ease;
}
.serve-step:hover { transform: translateY(-6px); background: color-mix(in srgb, var(--room-primary) 32%, #0E0805); }
.serve-step::before {
  counter-increment: step;
  content: counter(step) ".";
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(60px, 6.4vw, 96px);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--room-secondary) 88%, var(--ivory-silk));
}
.serve-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(19px, 2vw, 23px);
  margin-bottom: 10px;
}
.serve-step p { font-size: 15px; color: var(--ash-gray); max-width: 30ch; }

.serve-note {
  margin-top: clamp(36px, 4.4vw, 56px);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--champagne);
}

/* ============ Next room ====================================== */
.next-room { padding-block: calc(var(--section-gap) / 2); }
.next-room a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(180px, 24vw, 300px);
  align-items: stretch;
  border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--next-primary, var(--room-primary)) 82%, #0E0805);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s var(--ease-out);
}
.next-room a:hover { transform: translateY(-6px); }
.next-room .next-copy {
  padding: clamp(34px, 4.6vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.next-room h2 { font-size: clamp(32px, 4.2vw, 56px); }
.next-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  background: var(--gatsby-gold);
  color: var(--black-velvet);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 999px;
  transition: background 0.35s ease, gap 0.35s var(--ease-out);
}
.next-room a:hover .next-btn { background: var(--champagne); gap: 20px; }
.next-photo { position: relative; min-height: 220px; }
.next-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.next-room a:hover .next-photo img { transform: scale(1.06); }


/* ============ Footer ========================================= */
.site-footer { padding: 96px 0 56px; background: #150E06; margin-top: var(--section-gap); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.footer-tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.25;
  margin-top: 22px;
  max-width: 16ch;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  background: var(--gatsby-gold);
  color: var(--black-velvet);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 999px;
  transition: background 0.35s ease, gap 0.35s var(--ease-out);
}
.footer-cta:hover { background: var(--champagne); gap: 20px; }

.footer-rooms { display: grid; gap: 6px; justify-items: start; }
.footer-rooms .eyebrow { margin-bottom: 12px; color: var(--gatsby-gold); }
.footer-rooms a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash-gray);
  padding: 8px 14px;
  margin-left: -14px;
  border-radius: 999px;
  transition: color 0.3s ease, background 0.3s ease;
}
.footer-rooms a:hover { color: var(--champagne); background: rgba(250, 243, 220, 0.05); }
.footer-legal {
  margin-top: 72px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
}

/* ============ Reveal on scroll =============================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-copy > *, .hero-photo { opacity: 1; animation: none; }
}

/* ============ Responsive ===================================== */
@media (max-width: 1100px) {
  .ingredients-grid, .ingredients-grid.cols-3, .ingredients-grid.cols-5, .ingredients-grid.cols-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}

@media (max-width: 900px) {
  :root { --margin-bar: 14px; --section-gap: 88px; }

  .site-header { padding-top: 10px; padding-bottom: 10px; }
  .logo img { height: 52px; }
  .footer-logo { height: 96px; }
  .nav-toggle { display: block; }
  .rooms-nav {
    position: fixed;
    top: 74px; left: 14px; right: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: color-mix(in srgb, var(--room-primary) 55%, #0E0805);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }
  .rooms-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .rooms-nav a {
    font-size: 13px;
    padding: 16px 18px;
    border-radius: 14px;
    text-align: left;
  }

  .hero { padding-top: 108px; padding-bottom: 48px; }
  .scroll-cue { display: none; }
  .hero-kicker { margin-bottom: 26px; }
  .hero-keys { margin-top: 30px; gap: 8px; }
  .hero-keys span { padding: 9px 16px; }
  .sec-head .chip { margin-bottom: 18px; }
  .serve-panel { border-radius: var(--r-md); }
  .serve-steps { gap: 14px; margin-top: 32px; }
  .next-room .next-copy { gap: 14px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { order: -1; width: min(100%, 380px); }
  .hero-script { margin-left: clamp(12px, 4vw, 40px); }

  .world-img { aspect-ratio: 16 / 10; min-height: 0; }
  .world-card { margin: -48px 16px 0; }

  .notes-grid { grid-template-columns: 1fr; }
  .note-cell { min-height: 0; }
  .notes-grid .note-cell:nth-child(n) { transition-delay: 0s; }

  /* Ingredients become a swipeable rail */
  .ingredients-grid, .ingredients-grid.cols-3, .ingredients-grid.cols-5, .ingredients-grid.cols-6 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    margin-left: calc(-1 * (var(--margin-bar) + 28px));
    margin-right: -28px;
    padding-left: calc(var(--margin-bar) + 28px);
    padding-right: 28px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ingredients-grid::-webkit-scrollbar { display: none; }
  .ingredient-card {
    flex: 0 0 min(68vw, 300px);
    scroll-snap-align: start;
  }
  .ingredient-card .ing-body { padding: 16px 18px 20px; }

  .serve-steps { grid-template-columns: 1fr; }

  .next-room a { grid-template-columns: 1fr; }
  .next-photo { min-height: 200px; order: -1; }

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


