:root {
  --cream: #f6f2eb;
  --sand: #e8decc;
  --beige: #cdbfa8;
  --cedar: #6b4e36;
  --moss: #5e6a49;
  --tea: #a9b78a;
  --ink: #1f1f1f;
  --vermilion: #d24a2f;
  --paper: #fbf8f2;
  --line: rgba(31, 31, 31, 0.17);
  --line-light: rgba(246, 242, 235, 0.3);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --shell: min(1420px, calc(100vw - 72px));
  --section-space: clamp(104px, 11vw, 180px);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 9999;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

body:has(dialog[open]) { overflow: hidden; }

img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--vermilion);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 10001;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--cream);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
  padding: 0 36px;
  color: var(--cream);
  transition: height 0.35s ease, color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.site-header::after {
  position: absolute;
  right: 36px;
  bottom: 0;
  left: 36px;
  height: 1px;
  background: var(--line-light);
  content: "";
}

.site-header.is-scrolled,
.site-header.menu-open,
.site-header.header--solid {
  height: 70px;
  color: var(--ink);
  background: rgba(246, 242, 235, 0.96);
  box-shadow: 0 10px 38px rgba(31, 31, 31, 0.07);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled::after,
.site-header.menu-open::after,
.site-header.header--solid::after { right: 0; left: 0; background: var(--line); }

.header-brand { width: 88px; justify-self: start; transition: opacity 0.3s ease, transform 0.3s ease; }
.header-brand img { width: 100%; filter: brightness(0) invert(1); transition: filter 0.35s ease; }
.site-header:not(.is-scrolled):not(.header--solid) .header-brand { opacity: 0; pointer-events: none; transform: translateY(-5px); }
.site-header.is-scrolled .header-brand img,
.site-header.menu-open .header-brand img,
.site-header.header--solid .header-brand img { filter: none; }

.desktop-nav { display: flex; gap: 34px; }
.desktop-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; justify-self: end; gap: 18px; }
.header-order {
  padding: 11px 18px;
  border: 1px solid currentColor;
  background: transparent;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.header-order:hover { background: var(--cream); color: var(--ink); }
.is-scrolled .header-order:hover,
.header--solid .header-order:hover,
.menu-open .header-order:hover { background: var(--ink); color: var(--cream); }

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

.menu-button[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] > span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  overflow: hidden;
  color: var(--cream);
  background: #314331;
}

.hero-image {
  position: absolute;
  inset: -3%;
  background: url("assets/images/dorle-garden.webp") center 48% / cover no-repeat;
  animation: heroScale 1.4s cubic-bezier(0.22, 0.75, 0.24, 1) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 25, 16, 0.75) 0%, rgba(12, 25, 16, 0.34) 52%, rgba(12, 25, 16, 0.12) 100%),
    linear-gradient(0deg, rgba(10, 18, 12, 0.36), transparent 46%);
}

@keyframes heroScale { from { transform: scale(1.06); filter: saturate(0.8); } to { transform: scale(1); filter: saturate(1); } }

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100vw - 160px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 112px 0 78px;
}

.hero-logo {
  width: clamp(148px, 15vw, 230px);
  margin-bottom: clamp(46px, 7vh, 84px);
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: translateY(18px);
  animation: heroReveal 0.8s 0.2s ease forwards;
}

.hero-copy { max-width: 850px; opacity: 0; transform: translateY(24px); animation: heroReveal 0.9s 0.42s ease forwards; }
@keyframes heroReveal { to { opacity: 1; transform: none; } }

.hero-kicker {
  margin: 0 0 25px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(70px, 8.4vw, 142px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.78;
}

.hero h1 em { font-weight: 400; }

.hero-intro {
  max-width: 560px;
  margin: 36px 0 0;
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 27px);
  font-style: italic;
  line-height: 1.32;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero-rail {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -72px;
  display: flex;
  width: 232px;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(90deg);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 1; animation: scrollNudge 1.8s ease-in-out infinite; }
@keyframes scrollNudge { 50% { transform: translateY(5px); } }

/* Shared language */
.atlas-index {
  width: var(--shell);
  height: 54px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.atlas-index i { height: 1px; flex: 1; background: var(--line); }
.section { padding: var(--section-space) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-shell { width: var(--shell); margin: 0 auto; }

.section-label {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding-bottom: 20px;
  margin-bottom: clamp(64px, 8vw, 108px);
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label span:last-child { color: rgba(31, 31, 31, 0.55); }
.eyebrow { margin: 0 0 16px; color: var(--moss); font-size: 10px; font-weight: 600; letter-spacing: 0.23em; text-transform: uppercase; }
.eyebrow--light { color: var(--tea); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 72px;
}

.section-heading .eyebrow { grid-row: 1 / 3; }
.section-heading h2,
.welcome-lead h2,
.place-statement h2,
.drinks-copy h2,
.visit-panel h2,
.interlude-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.section-heading > p:last-child { max-width: 650px; margin: 18px 0 0; color: rgba(31, 31, 31, 0.68); font-size: 14px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 13px 19px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button--light { background: var(--cream); color: var(--ink); }
.button--light:hover { background: var(--tea); }
.button--outline-light { border-color: rgba(246, 242, 235, 0.7); color: var(--cream); }
.button--outline-light:hover { background: var(--cream); color: var(--ink); }
.button--dark { background: var(--ink); color: var(--cream); }
.button--dark:hover { background: var(--moss); }
.button--outline { border-color: var(--ink); }
.button--outline:hover { background: var(--ink); color: var(--cream); }

/* Welcome */
.welcome { padding-top: calc(var(--section-space) - 18px); }
.welcome-lead { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }
.welcome-lead h2 { max-width: 760px; }
.lead-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-top: 12px; }
.lead-copy p { margin: 0; color: rgba(31, 31, 31, 0.72); }

.visit-ribbon {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 28px;
  align-items: end;
  margin-top: clamp(76px, 9vw, 128px);
  padding: 28px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.visit-ribbon > div { display: grid; gap: 4px; }
.meta-label { color: var(--moss); font-size: 9px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.visit-ribbon strong { font-family: var(--serif); font-size: clamp(23px, 2.2vw, 34px); font-weight: 500; }
.visit-ribbon > a { padding: 12px 0; border-bottom: 1px solid var(--ink); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

/* Illustrated brand chapters */
.illustration-chapter {
  position: relative;
  min-height: min(76vw, 850px);
  display: flex;
  align-items: flex-end;
  padding: clamp(52px, 6vw, 86px) max(5vw, calc((100vw - 1420px) / 2));
  overflow: hidden;
  color: var(--cream);
  background: url("assets/images/illustration-willow.webp") center / cover no-repeat;
}

.illustration-chapter__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 27, 17, 0.7), transparent 58%);
}

.illustration-chapter__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.illustration-chapter__content img { width: clamp(130px, 15vw, 210px); filter: brightness(0) invert(1); }
.illustration-chapter__content p { margin: 0; font-family: var(--serif); font-size: clamp(34px, 5vw, 72px); font-style: italic; line-height: 0.98; text-align: right; }

/* Menu */
.menu-section { background: var(--paper); }
.menu-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 78px 22px; }
.dish-card { grid-column: span 4; min-width: 0; }
.dish-card--feature { grid-column: span 8; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 28px; align-items: end; }

.dish-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--sand);
}

.dish-card--feature .dish-image { aspect-ratio: 1.35 / 1; }
.dish-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1), filter 0.5s ease; }
.dish-image:hover img { transform: scale(1.025); filter: saturate(1.05); }
.dish-image--illustrated span {
  position: absolute;
  z-index: 2;
  inset: auto 24px 22px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 43px);
  font-style: italic;
  line-height: 0.9;
}
.dish-image--illustrated::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15, 25, 17, 0.68), transparent 55%); content: ""; }
.dish-copy { padding-top: 22px; }
.dish-card--feature .dish-copy { padding: 0 0 8px; }
.dish-kind { margin: 0 0 12px; color: var(--moss); font-size: 9px; font-weight: 600; letter-spacing: 0.17em; text-transform: uppercase; }
.dish-copy h3 { margin: 0; font-family: var(--serif); font-size: clamp(31px, 3.2vw, 48px); font-weight: 500; line-height: 0.98; }
.dish-copy > p:not(.dish-kind) { max-width: 430px; margin: 16px 0 0; color: rgba(31, 31, 31, 0.68); font-size: 13px; }

.dish-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.dish-links a,
.dish-links button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.dish-links a:hover,
.dish-links button:hover { border-color: currentColor; }
.menu-footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 92px; padding-top: 28px; border-top: 1px solid var(--ink); }
.menu-footer p { margin: 0; font-family: var(--serif); font-size: clamp(24px, 3vw, 40px); font-style: italic; }

.offering-index { display: grid; grid-template-columns: 0.92fr 1.08fr; min-height: 920px; background: var(--sand); }
.offering-art { min-height: 760px; background: url("assets/images/illustration-golden-grove.webp") center / cover no-repeat; }
.offering-copy { align-self: center; padding: clamp(72px, 8vw, 132px); }
.offering-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(52px, 6.3vw, 96px); font-weight: 400; letter-spacing: -0.04em; line-height: 0.9; }
.offering-intro { max-width: 720px; margin: 30px 0 0; font-family: var(--serif); font-size: clamp(19px, 2vw, 27px); font-style: italic; line-height: 1.35; }
.offering-groups { display: grid; grid-template-columns: 1fr 1fr; margin-top: 54px; border-top: 1px solid var(--ink); }
.offering-groups > div { padding: 22px 22px 22px 0; border-bottom: 1px solid var(--line); }
.offering-groups > div:nth-child(odd) { border-right: 1px solid var(--line); }
.offering-groups > div:nth-child(even) { padding-left: 22px; }
.offering-groups h3 { margin: 0; font-size: 9px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.offering-groups p { margin: 10px 0 0; color: rgba(31, 31, 31, 0.67); font-size: 11px; line-height: 1.7; }
.offering-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }

/* Garden interlude */
.garden-interlude {
  position: relative;
  min-height: min(78vw, 880px);
  display: flex;
  align-items: flex-end;
  padding: clamp(56px, 7vw, 104px) max(5vw, calc((100vw - 1420px) / 2));
  overflow: hidden;
  color: var(--cream);
  background: url("assets/images/dorle-garden-path.webp") center 46% / cover no-repeat;
}

.garden-interlude::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 23, 14, 0.78), rgba(11, 23, 14, 0.04) 70%);
  content: "";
}

.interlude-copy { position: relative; z-index: 2; max-width: 850px; }
.interlude-copy h2 { font-size: clamp(62px, 9vw, 142px); }
.interlude-copy > p:last-child { max-width: 520px; margin: 28px 0 0; font-family: var(--serif); font-size: clamp(19px, 2vw, 27px); font-style: italic; }
.interlude-mark { position: absolute; z-index: 2; right: max(5vw, calc((100vw - 1420px) / 2)); bottom: clamp(62px, 8vw, 116px); }
.interlude-mark img { width: clamp(72px, 8vw, 112px); filter: brightness(0) invert(1); opacity: 0.82; }

/* Place */
.place-grid { display: grid; grid-template-columns: 1.45fr 0.65fr 0.9fr; gap: 26px; align-items: end; }
.place-photo { margin: 0; }
.place-photo img { width: 100%; height: 100%; object-fit: cover; }
.place-photo--wide img { aspect-ratio: 1.22 / 1; }
.place-photo--portrait img { aspect-ratio: 0.77 / 1; }
.place-photo figcaption,
.drink-photo figcaption { margin-top: 12px; font-size: 9px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.place-statement { align-self: center; padding: 0 18px; }
.place-statement h2 { font-size: clamp(44px, 5.2vw, 78px); }
.place-statement > p:last-child { margin: 28px 0 0; color: rgba(31, 31, 31, 0.67); font-size: 13px; }
.origin-story {
  display: grid;
  grid-template-columns: 0.65fr 1.15fr 1.2fr;
  gap: 40px;
  align-items: start;
  margin-top: clamp(84px, 10vw, 150px);
  padding: 44px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.origin-story h3 { margin: 0; font-family: var(--serif); font-size: clamp(38px, 4.2vw, 62px); font-weight: 400; letter-spacing: -0.03em; line-height: 0.94; }
.origin-story > div { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 5px; }
.origin-story > div p { margin: 0; color: rgba(31, 31, 31, 0.68); font-size: 12px; }

/* Drinks */
.drinks-section { background: var(--sand); }
.drinks-layout { display: grid; grid-template-columns: 0.8fr 1.4fr; gap: clamp(60px, 9vw, 140px); align-items: center; }
.drinks-copy h2 { font-size: clamp(50px, 6.5vw, 96px); }
.drinks-copy > p:not(.eyebrow) { max-width: 460px; margin: 30px 0; color: rgba(31, 31, 31, 0.68); }
.text-button { padding: 12px 0; border: 0; border-bottom: 1px solid var(--ink); background: transparent; font-size: 9px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; }
.drink-gallery { display: grid; grid-template-columns: 1.14fr 0.86fr; gap: 20px; }
.drink-photo { margin: 0; }
.drink-photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.drink-photo--tall { grid-row: span 2; }
.drink-photo--tall img { height: calc(100% - 34px); aspect-ratio: auto; }

/* Visit */
.visit-section { display: grid; grid-template-columns: 1.35fr 1fr; min-height: 820px; background: var(--moss); }
.visit-image { background: url("assets/images/dorle-garden-path.webp") center / cover no-repeat; }
.visit-panel { align-self: center; padding: clamp(70px, 8vw, 126px); color: var(--cream); }
.visit-panel .eyebrow { color: var(--tea); }
.visit-panel h2 { font-size: clamp(54px, 6.2vw, 94px); }
.visit-details { margin: 62px 0 0; }
.visit-details div { display: grid; grid-template-columns: 0.4fr 1fr; gap: 28px; padding: 18px 0; border-top: 1px solid rgba(246, 242, 235, 0.25); }
.visit-details div:last-child { border-bottom: 1px solid rgba(246, 242, 235, 0.25); }
.visit-details dt { font-size: 9px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.visit-details dd { margin: 0; font-family: var(--serif); font-size: 22px; line-height: 1.25; }
.visit-details dd + dd { grid-column: 2; padding-top: 8px; color: rgba(246, 242, 235, 0.72); font-family: var(--sans); font-size: 12px; line-height: 1.5; }
.visit-details a { border-bottom: 1px solid rgba(246, 242, 235, 0.4); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.visit-panel .button--dark { background: var(--cream); color: var(--ink); }
.visit-panel .button--dark:hover { background: var(--tea); }
.visit-panel .button--outline { border-color: rgba(246, 242, 235, 0.6); }
.visit-panel .button--outline:hover { background: var(--cream); color: var(--ink); }

/* Footer */
.site-footer { padding: clamp(76px, 9vw, 132px) max(36px, calc((100vw - 1420px) / 2)) 36px; background: var(--ink); color: var(--cream); }
.footer-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; padding-bottom: clamp(70px, 10vw, 150px); }
.footer-top > img { width: clamp(190px, 25vw, 360px); filter: brightness(0) invert(1); }
.footer-top p { margin: 0; font-family: var(--serif); font-size: clamp(25px, 3vw, 43px); font-style: italic; line-height: 1.05; text-align: right; }
.footer-bottom { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; padding-top: 24px; border-top: 1px solid rgba(246, 242, 235, 0.22); font-size: 9px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.footer-bottom > span:nth-child(2) { text-align: center; }
.footer-meta,
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.footer-meta { justify-content: flex-start; }
.footer-links { justify-content: flex-end; }
.footer-bottom a { border-bottom: 1px solid transparent; }
.footer-bottom a:hover { border-color: currentColor; }

/* Delivery dialog */
.floating-order {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-width: 150px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  border: 1px solid rgba(246, 242, 235, 0.36);
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 12px 34px rgba(31, 31, 31, 0.2);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.floating-order:hover { background: var(--moss); transform: translateY(-2px); }

.order-dialog {
  width: min(620px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(13, 23, 15, 0.34);
}

.order-dialog::backdrop { background: rgba(15, 25, 17, 0.72); backdrop-filter: blur(5px); }
.order-dialog[open] { animation: dialogIn 0.32s cubic-bezier(0.2, 0.75, 0.2, 1); }
@keyframes dialogIn { from { opacity: 0; transform: translateY(20px) scale(0.985); } }
.order-dialog__inner { position: relative; padding: clamp(36px, 7vw, 72px); }
.order-dialog__inner > img { width: 54px; margin-bottom: 28px; }
.dialog-close { position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-family: var(--serif); font-size: 28px; line-height: 1; cursor: pointer; }
.order-dialog h2 { max-width: 450px; margin: 0; font-family: var(--serif); font-size: clamp(44px, 7vw, 68px); font-weight: 400; letter-spacing: -0.035em; line-height: 0.92; }
.order-context { max-width: 440px; margin: 20px 0 32px; color: rgba(31, 31, 31, 0.66); font-size: 13px; }
.delivery-options { border-top: 1px solid var(--ink); }
.delivery-options a { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.delivery-options a span { font-family: var(--serif); font-size: 30px; font-weight: 500; }
.delivery-options a small { grid-row: 2; color: rgba(31, 31, 31, 0.58); font-size: 10px; }
.delivery-options a b { grid-column: 2; grid-row: 1 / 3; font-size: 18px; font-weight: 400; transition: transform 0.2s ease; }
.delivery-options a:hover b { transform: translate(3px, -3px); }
.dialog-note { margin: 20px 0 0; color: rgba(31, 31, 31, 0.5); font-size: 10px; }

/* Menu index and dish pages */
.subpage-main { padding-top: 70px; }
.subpage-hero { padding: clamp(110px, 12vw, 180px) 0 clamp(80px, 10vw, 140px); }
.subpage-hero__inner { width: var(--shell); margin: 0 auto; }
.breadcrumbs { display: flex; gap: 10px; margin: 0 0 48px; color: rgba(31, 31, 31, 0.55); font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.breadcrumbs a { border-bottom: 1px solid var(--line); }
.subpage-hero h1 { max-width: 1150px; margin: 0; font-family: var(--serif); font-size: clamp(70px, 11vw, 160px); font-weight: 400; letter-spacing: -0.05em; line-height: 0.78; }
.subpage-hero__intro { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--ink); }
.subpage-hero__intro p { grid-column: 2; max-width: 720px; margin: 0; font-family: var(--serif); font-size: clamp(21px, 2.5vw, 32px); font-style: italic; line-height: 1.35; }

.menu-directory { padding: 0 0 var(--section-space); }
.menu-directory .menu-grid { width: var(--shell); margin: 0 auto; }
.menu-note { width: var(--shell); margin: 0 auto var(--section-space); padding: 30px 0; display: flex; justify-content: space-between; gap: 28px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.menu-note p { max-width: 800px; margin: 0; color: rgba(31, 31, 31, 0.68); }

.menu-notes-hero { position: relative; overflow: hidden; }
.menu-notes-hero::after {
  position: absolute;
  z-index: -1;
  top: 72px;
  right: -8vw;
  width: clamp(300px, 38vw, 680px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: url("assets/images/illustration-sky-sage.webp") center / cover no-repeat;
  opacity: 0.18;
  content: "";
}

.bestseller-notes { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 850px; background: var(--sand); }
.bestseller-art { background: url("assets/images/illustration-coral-lagoon.webp") center / cover no-repeat; }
.bestseller-copy { align-self: center; padding: clamp(70px, 8vw, 128px); }
.bestseller-copy > h2 { margin: 0 0 54px; font-family: var(--serif); font-size: clamp(52px, 6vw, 92px); font-weight: 400; letter-spacing: -0.04em; line-height: 0.9; }
.bestseller-copy article { display: grid; grid-template-columns: 1fr auto; gap: 16px 28px; padding: 24px 0; border-top: 1px solid var(--ink); }
.bestseller-copy article:last-child { border-bottom: 1px solid var(--ink); }
.bestseller-copy article > div span { color: var(--moss); font-size: 9px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.bestseller-copy article h3 { margin: 5px 0 0; font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 500; line-height: 1; }
.bestseller-copy article p { grid-column: 1; margin: 0; color: rgba(31, 31, 31, 0.66); font-size: 12px; }
.bestseller-copy article > a { grid-column: 2; grid-row: 1 / 3; align-self: end; border-bottom: 1px solid var(--ink); font-size: 9px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; }

.bakery-gallery { display: grid; grid-template-columns: 1.35fr 0.82fr 0.82fr; gap: 18px; padding: 18px; background: var(--ink); color: var(--cream); }
.bakery-gallery figure { margin: 0; min-width: 0; }
.bakery-gallery img { width: 100%; height: 100%; max-height: 720px; object-fit: cover; }
.bakery-gallery__wide img { object-position: center; }
.bakery-gallery figcaption { padding: 14px 2px 4px; font-size: 8px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }

.menu-notes { padding: var(--section-space) 0; background: var(--paper); }
.menu-notes__inner { width: var(--shell); margin: 0 auto; }
.menu-notes-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 36px; margin-bottom: var(--section-space); }
.menu-notes-heading .eyebrow { grid-row: 1 / 3; }
.menu-notes-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(52px, 7vw, 102px); font-weight: 400; letter-spacing: -0.04em; line-height: 0.9; }
.menu-notes-heading > p:last-child { max-width: 680px; margin: 8px 0 0; color: rgba(31, 31, 31, 0.68); }
.menu-category { display: grid; grid-template-columns: 0.64fr 1.36fr; gap: clamp(40px, 8vw, 120px); padding: 82px 0; border-top: 1px solid var(--ink); }
.menu-category:last-child { border-bottom: 1px solid var(--ink); }
.menu-category__heading > span { color: var(--moss); font-size: 9px; font-weight: 600; letter-spacing: 0.17em; text-transform: uppercase; }
.menu-category__heading h2 { max-width: 500px; margin: 24px 0 0; font-family: var(--serif); font-size: clamp(46px, 5vw, 76px); font-weight: 400; letter-spacing: -0.035em; line-height: 0.92; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.menu-list article { position: relative; min-height: 174px; padding: 24px 70px 24px 0; border-bottom: 1px solid var(--line); }
.menu-list article:nth-child(odd) { padding-right: 90px; border-right: 1px solid var(--line); }
.menu-list article:nth-child(even) { padding-left: 24px; }
.menu-list h3 { margin: 0; font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1.08; }
.menu-list p { margin: 12px 0 0; color: rgba(31, 31, 31, 0.64); font-size: 11px; line-height: 1.6; }
.menu-list button,
.menu-list article > a:not(:first-child) { position: absolute; right: 18px; bottom: 24px; padding: 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; font-size: 8px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; cursor: pointer; }
.menu-list article:nth-child(even) button,
.menu-list article:nth-child(even) > a:not(:first-child) { right: 0; }
.menu-list__favorite { background: rgba(169, 183, 138, 0.14); }
.menu-list__favorite::before { position: absolute; top: 0; right: 0; width: 7px; height: 7px; background: var(--vermilion); content: ""; }

.menu-order-banner {
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  padding: clamp(62px, 8vw, 116px) max(5vw, calc((100vw - 1420px) / 2));
  color: var(--cream);
  background: linear-gradient(0deg, rgba(13, 24, 16, 0.8), rgba(13, 24, 16, 0.04)), url("assets/images/illustration-vermilion-night.webp") center / cover no-repeat;
}
.menu-order-banner__content { max-width: 820px; }
.menu-order-banner h2 { margin: 0; font-family: var(--serif); font-size: clamp(58px, 8vw, 112px); font-weight: 400; letter-spacing: -0.04em; line-height: 0.9; }
.menu-order-banner p:not(.eyebrow) { max-width: 530px; margin: 24px 0 34px; font-family: var(--serif); font-size: 21px; font-style: italic; }

.product-page { padding-top: 70px; }
.product-hero { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.88fr); min-height: calc(100svh - 70px); }
.product-hero__image { min-height: 720px; background: var(--sand); }
.product-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.product-hero__image--art { position: relative; margin: 0; }
.product-hero__image--art::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18, 28, 18, 0.5), transparent 44%); content: ""; }
.product-hero__image--art figcaption { position: absolute; z-index: 2; right: 30px; bottom: 26px; color: var(--cream); font-size: 9px; font-weight: 600; letter-spacing: 0.17em; text-transform: uppercase; }
.product-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(64px, 8vw, 124px); }
.product-hero__copy .breadcrumbs { margin-bottom: clamp(54px, 7vw, 90px); }
.product-hero__copy h1 { margin: 0; font-family: var(--serif); font-size: clamp(62px, 8vw, 118px); font-weight: 400; letter-spacing: -0.045em; line-height: 0.82; }
.product-deck { max-width: 530px; margin: 32px 0 0; font-family: var(--serif); font-size: clamp(20px, 2vw, 28px); font-style: italic; line-height: 1.35; }
.product-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }

.product-details { padding: var(--section-space) 0; }
.product-details__inner { width: var(--shell); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.product-details__body { max-width: 800px; }
.product-details__body h2 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 6vw, 84px); font-weight: 400; letter-spacing: -0.035em; line-height: 0.92; }
.product-details__body > p { margin: 28px 0 0; color: rgba(31, 31, 31, 0.72); }
.product-facts { display: grid; grid-template-columns: 1fr 1fr; margin-top: 58px; border-top: 1px solid var(--ink); }
.product-facts div { padding: 22px 18px 22px 0; border-bottom: 1px solid var(--line); }
.product-facts div:nth-child(odd) { border-right: 1px solid var(--line); }
.product-facts div:nth-child(even) { padding-left: 22px; }
.product-facts span { display: block; color: var(--moss); font-size: 9px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.product-facts strong { display: block; margin-top: 7px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.allergen-note { margin-top: 34px; padding: 20px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font-size: 11px; }

.more-menu { padding: var(--section-space) 0; background: var(--sand); }
.more-menu__inner { width: var(--shell); margin: 0 auto; }
.more-menu__header { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 46px; }
.more-menu__header h2 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 6vw, 82px); font-weight: 400; line-height: 0.92; }
.more-menu__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.more-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.more-card p { margin: 16px 0 0; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1; }

/* Responsive */
@media (max-width: 1100px) {
  :root { --shell: min(100% - 48px, 1420px); }
  .site-header { grid-template-columns: 1fr auto; padding: 0 24px; }
  .site-header::after { right: 24px; left: 24px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    padding: 28px 24px 34px;
    background: var(--cream);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(31, 31, 31, 0.08);
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a,
  .mobile-nav button { padding: 15px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; font-family: var(--serif); font-size: 28px; cursor: pointer; }
  .hero-content { width: calc(100vw - 96px); }
  .dish-card--feature { grid-column: span 12; }
  .dish-card { grid-column: span 6; }
  .place-grid { grid-template-columns: 1.2fr 0.8fr; }
  .place-statement { padding: 20px 0 54px; }
  .place-photo--portrait { grid-column: 2; }
  .drinks-layout { grid-template-columns: 1fr; }
  .drinks-copy { max-width: 720px; }
  .visit-section { grid-template-columns: 1fr; }
  .visit-image { min-height: 62vw; }
  .offering-index { grid-template-columns: 0.8fr 1.2fr; }
  .offering-copy { padding: 72px 54px; }
  .bestseller-notes { grid-template-columns: 0.8fr 1.2fr; }
  .bestseller-copy { padding: 72px 54px; }
  .menu-category { grid-template-columns: 0.55fr 1.45fr; }
  .product-hero { grid-template-columns: 1fr 1fr; }
  .product-hero__copy { padding: 64px 48px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 36px); --section-space: 88px; }
  body { font-size: 14px; }
  .site-header { height: 70px; padding: 0 18px; }
  .site-header::after { right: 18px; left: 18px; }
  .header-brand { width: 78px; }
  .header-order { display: none; }
  .hero { min-height: 730px; }
  .hero-image { background-position: 61% 48%; }
  .hero-shade { background: linear-gradient(90deg, rgba(12, 25, 16, 0.78), rgba(12, 25, 16, 0.25)), linear-gradient(0deg, rgba(10, 18, 12, 0.46), transparent 55%); }
  .hero-content { width: calc(100vw - 48px); padding-top: 92px; }
  .hero-logo { width: 128px; margin-bottom: 54px; }
  .hero h1 { font-size: clamp(59px, 18vw, 82px); line-height: 0.82; }
  .hero-kicker { font-size: 8px; letter-spacing: 0.15em; }
  .hero-intro { max-width: 390px; margin-top: 28px; font-size: 19px; }
  .hero-actions { display: grid; align-items: start; justify-content: start; }
  .hero-actions .button { justify-content: space-between; min-width: 228px; }
  .hero-rail { display: none; }
  .scroll-cue { left: 24px; bottom: 22px; }
  .atlas-index { gap: 10px; font-size: 8px; letter-spacing: 0.12em; }
  .section-label { grid-template-columns: 1fr; gap: 7px; margin-bottom: 56px; }
  .welcome-lead,
  .section-heading,
  .product-details__inner { grid-template-columns: 1fr; gap: 30px; }
  .section-heading .eyebrow { grid-row: auto; }
  .welcome-lead h2,
  .section-heading h2 { font-size: clamp(50px, 15vw, 72px); }
  .lead-copy { grid-template-columns: 1fr; gap: 18px; }
  .visit-ribbon { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .visit-ribbon > a { justify-self: start; }
  .illustration-chapter { min-height: 640px; padding: 48px 24px; background-position: 62% center; }
  .illustration-chapter__content { align-items: flex-start; flex-direction: column; }
  .illustration-chapter__content p { text-align: left; }
  .menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 58px 14px; }
  .dish-card,
  .dish-card--feature { grid-column: auto; display: block; }
  .dish-card--feature { grid-column: 1 / -1; }
  .dish-card--feature .dish-image { aspect-ratio: 1.16 / 1; }
  .dish-card--feature .dish-copy { padding-top: 22px; }
  .dish-copy h3 { font-size: 31px; }
  .dish-copy > p:not(.dish-kind) { font-size: 12px; }
  .dish-links { align-items: flex-start; flex-direction: column; gap: 11px; }
  .menu-footer { align-items: flex-start; flex-direction: column; margin-top: 70px; }
  .offering-index { grid-template-columns: 1fr; }
  .offering-art { min-height: 130vw; background-position: center 42%; }
  .offering-copy { padding: 78px 24px 88px; }
  .offering-copy h2 { font-size: clamp(52px, 15vw, 75px); }
  .offering-groups { grid-template-columns: 1fr; }
  .offering-groups > div:nth-child(odd) { border-right: 0; }
  .offering-groups > div:nth-child(even) { padding-left: 0; }
  .garden-interlude { min-height: 720px; padding: 62px 24px; background-position: 58% center; }
  .interlude-copy h2 { font-size: clamp(64px, 19vw, 92px); }
  .interlude-mark { right: 24px; top: 38px; bottom: auto; }
  .interlude-mark img { width: 64px; }
  .place-grid { grid-template-columns: 1fr; gap: 30px; }
  .place-statement { grid-row: 1; padding: 0 0 18px; }
  .place-photo--portrait { grid-column: auto; width: 78%; margin-left: auto; }
  .origin-story { grid-template-columns: 1fr; gap: 28px; }
  .origin-story > div { grid-template-columns: 1fr; gap: 18px; }
  .drinks-layout { gap: 58px; }
  .drink-gallery { gap: 12px; }
  .drink-photo figcaption { font-size: 8px; }
  .visit-image { min-height: 78vw; }
  .visit-panel { padding: 74px 24px 92px; }
  .visit-details div { grid-template-columns: 0.42fr 1fr; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-top p { text-align: left; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom > span:nth-child(2) { text-align: left; }
  .footer-links { justify-content: flex-start; }
  .floating-order { right: 12px; bottom: 12px; min-width: 132px; padding: 13px 15px; }
  .subpage-hero { padding-top: 100px; }
  .subpage-hero h1 { font-size: clamp(64px, 19vw, 94px); }
  .subpage-hero__intro { grid-template-columns: 1fr; }
  .subpage-hero__intro p { grid-column: 1; }
  .bestseller-notes { grid-template-columns: 1fr; }
  .bestseller-art { min-height: 100vw; }
  .bestseller-copy { padding: 74px 24px 88px; }
  .bakery-gallery { grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px; }
  .bakery-gallery__wide { grid-column: 1 / -1; }
  .bakery-gallery img { max-height: none; aspect-ratio: 1 / 1.15; }
  .bakery-gallery__wide img { aspect-ratio: 1.35 / 1; }
  .menu-notes-heading,
  .menu-category { grid-template-columns: 1fr; }
  .menu-notes-heading .eyebrow { grid-row: auto; }
  .menu-category { gap: 52px; padding: 72px 0; }
  .menu-list { grid-template-columns: 1fr; }
  .menu-list article,
  .menu-list article:nth-child(odd),
  .menu-list article:nth-child(even) { min-height: 148px; padding: 22px 70px 22px 0; border-right: 0; }
  .menu-list article:nth-child(even) button,
  .menu-list article:nth-child(even) > a:not(:first-child) { right: 18px; }
  .menu-note { align-items: flex-start; flex-direction: column; }
  .product-hero { grid-template-columns: 1fr; }
  .product-hero__image { min-height: auto; aspect-ratio: 1 / 1; }
  .product-hero__copy { padding: 64px 24px 82px; }
  .product-hero__copy .breadcrumbs { margin-bottom: 52px; }
  .product-hero__copy h1 { font-size: clamp(62px, 17vw, 88px); }
  .product-facts { grid-template-columns: 1fr; }
  .product-facts div:nth-child(odd) { border-right: 0; }
  .product-facts div:nth-child(even) { padding-left: 0; }
  .more-menu__header { align-items: flex-start; flex-direction: column; }
  .more-menu__grid { grid-template-columns: 1fr 1fr; gap: 36px 14px; }
  .more-card p { font-size: 24px; }
}

@media (max-width: 430px) {
  .menu-grid { grid-template-columns: 1fr; }
  .dish-card--feature { grid-column: auto; }
}

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