:root {
  --paper: #f5ede1;
  --paper-deep: #eadbc8;
  --cream: #fff9ef;
  --ink: #29211d;
  --ink-soft: #6b5c52;
  --olive: #2f4939;
  --olive-deep: #1d2c22;
  --olive-light: #586b58;
  --wine: #8a3f3b;
  --wine-dark: #6b2e31;
  --brass: #b88f56;
  --brass-light: #e5d0a5;
  --line: rgba(41, 33, 29, 0.14);
  --shadow: 0 28px 80px rgba(70, 45, 31, 0.15);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(100% - 64px, 1180px);
  --header-height: 92px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

button, input, select, textarea { color: inherit; font: inherit; }
button { padding: 0; border: 0; background: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; }
svg { display: block; }
h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: .98; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--cream);
  background: var(--wine);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.tricolore { display: grid; height: 4px; grid-template-columns: repeat(3, 1fr); }
.tricolore span:nth-child(1) { background: #246b45; }
.tricolore span:nth-child(2) { background: #f6f0e7; }
.tricolore span:nth-child(3) { background: #a33b3d; }

.utility-bar { color: rgba(255,249,239,.74); background: var(--olive-deep); font-size: 11px; letter-spacing: .055em; }
.utility-bar__inner { display: flex; min-height: 35px; align-items: center; justify-content: space-between; gap: 24px; }
.utility-bar a { transition: color 180ms ease; }
.utility-bar a:hover { color: #fff; }
.utility-bar__right { display: flex; align-items: center; gap: 30px; }
.open-state { display: inline-flex; align-items: center; gap: 8px; }
.open-state__dot { width: 7px; height: 7px; border-radius: 50%; background: #8ec486; box-shadow: 0 0 0 4px rgba(142,196,134,.1); }
.open-state.is-closed .open-state__dot { background: #d59384; box-shadow: 0 0 0 4px rgba(213,147,132,.1); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(245,237,225,.94);
  border-bottom: 1px solid rgba(41,33,29,.1);
  backdrop-filter: blur(16px);
}
.site-header__inner { display: flex; min-height: var(--header-height); align-items: center; gap: 34px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 13px; }
.brand__mark { width: 56px; height: 47px; fill: none; stroke: var(--wine); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.45; }
.brand__wording { display: flex; flex-direction: column; line-height: 1; }
.brand__wording strong { font-family: var(--serif); font-size: 27px; font-weight: 500; }
.brand__wording small { margin-top: 7px; color: var(--olive); font-size: 7px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.brand--feather-lockup { gap: 12px; }
.brand--feather-lockup .brand__feather { width: 29px; height: 45px; flex: 0 0 auto; overflow: visible; fill: var(--wine); }
.brand--feather-lockup .brand__feather-line { fill: none; stroke: var(--paper); stroke-linecap: round; stroke-width: 1.5; }
.brand--feather-lockup .brand__type { display: grid; line-height: .84; }
.brand--feather-lockup .brand__small { margin: 0 0 4px 4px; color: var(--wine); font-size: 8px; font-weight: 800; letter-spacing: .31em; text-transform: uppercase; }
.brand--feather-lockup .brand__name { font-family: var(--serif); font-size: 27px; font-weight: 600; line-height: .95; }
.primary-nav { display: flex; margin-left: auto; align-items: center; gap: 25px; }
.primary-nav a { position: relative; padding-block: 35px 31px; color: #493f39; font-size: 12px; font-weight: 700; }
.primary-nav a::after { position: absolute; right: 0; bottom: 25px; left: 0; height: 1px; background: var(--wine); content: ""; transform: scaleX(0); transition: transform 180ms ease; }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav a[aria-current="page"] { color: var(--wine); }
.mobile-nav, .menu-toggle { display: none; }

.button { display: inline-flex; min-height: 52px; padding: 12px 25px; align-items: center; justify-content: center; border: 1px solid transparent; font-size: 11px; font-weight: 800; letter-spacing: .085em; text-transform: uppercase; transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button--dark { color: var(--cream); background: var(--olive); }
.button--dark:hover { background: var(--olive-deep); }
.button--wine { color: var(--cream); background: var(--wine); }
.button--wine:hover { background: var(--wine-dark); }
.button--cream { color: var(--ink); background: var(--cream); }
.button--cream:hover { background: #fff; }
.button--outline { border-color: rgba(41,33,29,.25); }
.button--outline:hover { color: var(--cream); background: var(--olive); border-color: var(--olive); }
.button--outline-light { color: var(--cream); border-color: rgba(255,249,239,.43); }
.button--outline-light:hover { color: var(--ink); background: var(--cream); border-color: var(--cream); }
.button--wide { width: 100%; }
.header-cta { margin-left: 2px; }

.eyebrow { margin-bottom: 17px; color: var(--wine); font-size: 10px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow--light { color: var(--brass-light); }
.text-link { display: inline-flex; align-items: center; gap: 11px; color: var(--wine); font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.text-link span { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid rgba(138,63,59,.26); border-radius: 50%; transition: transform 180ms ease; }
.text-link:hover span { transform: translate(2px,-2px); }
.link-arrow { display: inline-flex; margin-top: 26px; align-items: center; gap: 10px; color: var(--wine); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.link-arrow::after { content: "↗"; font-size: 17px; transition: transform 180ms ease; }
.link-arrow:hover::after { transform: translate(3px,-3px); }

#main-content { outline: none; }
.route-page { animation: route-in 450ms cubic-bezier(.2,.7,.2,1) both; }
@keyframes route-in { from { opacity: .2; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero::before { position: absolute; z-index: -1; inset: 0; background-image: radial-gradient(rgba(138,63,59,.12) .7px, transparent .7px); background-size: 7px 7px; content: ""; opacity: .16; }
.home-hero { background: linear-gradient(110deg, var(--paper) 0 64%, #eddfcc 64%); }
.home-hero__grid { display: grid; min-height: 720px; padding-block: 82px 94px; align-items: center; gap: 82px; grid-template-columns: minmax(0,1fr) minmax(390px,.73fr); }
.home-hero__copy { position: relative; z-index: 2; }
.home-hero h1 { max-width: 720px; margin-bottom: 30px; font-size: clamp(64px,7.2vw,100px); letter-spacing: -.045em; }
.home-hero h1 em { color: var(--wine); font-weight: 400; }
.home-hero__lead { max-width: 610px; color: var(--ink-soft); font-family: var(--serif); font-size: 21px; line-height: 1.55; }
.hero__actions { display: flex; margin-top: 35px; align-items: center; gap: 24px; }
.hero__today { display: flex; margin-top: 48px; padding-top: 19px; align-items: center; gap: 22px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 12px; }
.hero__today span { color: var(--wine); font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.home-hero__media { position: relative; width: min(100%,500px); justify-self: end; }
.home-hero__frame { aspect-ratio: .77; overflow: hidden; border: 8px solid rgba(255,249,239,.9); border-radius: 250px 250px 20px 20px; box-shadow: var(--shadow); }
.home-hero__frame img { height: 100%; object-fit: cover; object-position: 50% 46%; }
.anniversary-seal { position: absolute; top: 76px; left: -52px; display: grid; width: 126px; height: 126px; padding: 18px; place-content: center; border: 1px solid rgba(138,63,59,.35); border-radius: 50%; color: var(--wine); background: var(--cream); box-shadow: 0 20px 45px rgba(70,45,31,.15); text-align: center; }
.anniversary-seal::before { position: absolute; inset: 7px; border: 1px solid rgba(138,63,59,.24); border-radius: 50%; content: ""; }
.anniversary-seal span, .anniversary-seal small { font-family: var(--serif); font-size: 13px; font-style: italic; }
.anniversary-seal strong { margin: 6px 0 2px; font-family: var(--serif); font-size: 46px; font-weight: 400; line-height: .75; }
.home-hero__caption { position: absolute; right: 0; bottom: -34px; color: var(--wine); font-family: var(--serif); font-size: 16px; font-style: italic; }

.trust-strip { color: var(--cream); background: var(--olive); }
.trust-strip__inner { display: grid; min-height: 112px; grid-template-columns: repeat(4,1fr); }
.trust-strip__inner > div { display: flex; padding: 20px 28px; align-items: center; justify-content: center; gap: 12px; border-right: 1px solid rgba(255,249,239,.16); }
.trust-strip__inner > div:last-child { border-right: 0; }
.trust-strip strong { color: var(--brass-light); font-family: var(--serif); font-size: 34px; font-weight: 400; }
.trust-strip span { font-size: 9px; font-weight: 800; letter-spacing: .105em; line-height: 1.35; text-transform: uppercase; }

.section { padding-block: 118px; }
.section--cream { background: var(--cream); }
.section--warm { background: linear-gradient(135deg,#ead6be 0%,#f5e8d7 58%,#eedcc8 100%); }
.section--olive { color: var(--cream); background: var(--olive); }
.section-heading { display: grid; margin-bottom: 62px; align-items: end; gap: 50px; grid-template-columns: minmax(0,1.1fr) minmax(280px,.55fr); }
.section-heading h2 { max-width: 770px; font-size: clamp(50px,6.5vw,82px); letter-spacing: -.035em; }
.section-heading > p { max-width: 440px; color: var(--ink-soft); font-size: 15px; }
.section-heading--light > p { color: rgba(255,249,239,.67); }

.story-teaser__grid { display: grid; align-items: center; gap: 90px; grid-template-columns: minmax(330px,.78fr) minmax(0,1fr); }
.story-teaser__image { position: relative; }
.story-teaser__image::before { position: absolute; z-index: 0; top: -22px; right: -22px; width: 74%; height: 74%; border: 1px solid rgba(138,63,59,.22); content: ""; }
.story-teaser__image img { position: relative; z-index: 1; aspect-ratio: 1; object-fit: cover; box-shadow: var(--shadow); }
.story-teaser__image figcaption { position: absolute; z-index: 2; right: -30px; bottom: 28px; padding: 13px 19px; color: var(--cream); background: var(--wine); font-family: var(--serif); font-style: italic; }
.story-teaser__copy h2 { max-width: 720px; margin-bottom: 29px; font-size: clamp(50px,6vw,77px); }
.story-teaser__copy .lead { margin-bottom: 20px; color: var(--ink); font-family: var(--serif); font-size: 21px; line-height: 1.52; }
.story-teaser__copy > p:not(.eyebrow):not(.lead) { max-width: 650px; color: var(--ink-soft); }

.route-grid { display: grid; gap: 18px; grid-template-columns: 1.05fr .95fr .95fr; }
.route-card { position: relative; display: flex; min-height: 470px; padding: 36px; overflow: hidden; flex-direction: column; justify-content: flex-end; color: #fff; background: var(--olive); }
.route-card:first-child { min-height: 560px; grid-row: span 2; }
.route-card img { position: absolute; z-index: 0; inset: 0; height: 100%; object-fit: cover; transition: transform 650ms cubic-bezier(.2,.7,.2,1); }
.route-card::after { position: absolute; z-index: 1; inset: 0; background: linear-gradient(0deg,rgba(16,25,19,.9),rgba(16,25,19,.04) 70%); content: ""; }
.route-card__copy { position: relative; z-index: 2; }
.route-card__copy span { color: var(--brass-light); font-size: 9px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.route-card h3 { margin-top: 9px; font-size: 42px; }
.route-card p { max-width: 390px; margin-top: 15px; color: rgba(255,255,255,.74); font-size: 13px; }
.route-card__arrow { position: absolute; z-index: 2; top: 26px; right: 26px; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-size: 19px; transition: background 180ms ease, transform 180ms ease; }
.route-card:hover img { transform: scale(1.035); }
.route-card:hover .route-card__arrow { color: var(--ink); background: var(--cream); transform: rotate(8deg); }
.route-card--plain { min-height: 272px; color: var(--ink); background: #e7d4bc; }
.route-card--plain::after { display: none; }
.route-card--plain .route-card__copy, .route-card--plain .route-card__arrow { color: inherit; }
.route-card--plain p { color: var(--ink-soft); }
.route-card--plain .route-card__copy span { color: var(--wine); }
.route-card--plain .route-card__arrow { border-color: rgba(41,33,29,.3); }
.route-card--plain:hover .route-card__arrow { color: var(--cream); background: var(--wine); }

.garden-banner { position: relative; display: grid; min-height: 660px; place-items: center; overflow: hidden; color: var(--cream); text-align: center; }
.garden-banner img { position: absolute; z-index: -2; inset: 0; height: 100%; object-fit: cover; object-position: center 53%; }
.garden-banner::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg,rgba(20,42,27,.8),rgba(20,42,27,.35),rgba(20,42,27,.68)); content: ""; }
.garden-banner__inner { max-width: 800px; padding-block: 90px; }
.garden-banner h2 { margin-bottom: 26px; font-size: clamp(58px,8vw,102px); }
.garden-banner p:not(.eyebrow) { max-width: 620px; margin: auto; color: rgba(255,255,255,.8); font-size: 17px; }
.garden-banner .button { margin-top: 34px; }

.page-cta { position: relative; overflow: hidden; color: var(--cream); background: var(--wine); }
.page-cta::before, .page-cta::after { position: absolute; top: 50%; width: 310px; height: 310px; border: 1px solid rgba(229,208,165,.16); border-radius: 85% 18% 78% 25%; content: ""; }
.page-cta::before { left: -160px; transform: translateY(-50%) rotate(-34deg); }
.page-cta::after { right: -160px; transform: translateY(-50%) scaleX(-1) rotate(-34deg); }
.page-cta__inner { position: relative; z-index: 1; display: flex; min-height: 420px; padding-block: 70px; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.page-cta h2 { max-width: 790px; margin-bottom: 20px; color: #fff; font-size: clamp(52px,7vw,84px); }
.page-cta p:not(.eyebrow) { max-width: 580px; color: rgba(255,249,239,.74); }
.page-cta__actions { display: flex; margin-top: 30px; justify-content: center; gap: 12px; }

.subhero { position: relative; isolation: isolate; min-height: 620px; overflow: hidden; }
.subhero__inner { display: grid; min-height: 620px; padding-block: 74px 88px; align-items: center; gap: 70px; grid-template-columns: minmax(0,1fr) minmax(390px,.75fr); }
.subhero__copy { position: relative; z-index: 2; }
.subhero h1 { max-width: 800px; margin-bottom: 27px; font-size: clamp(68px,8.6vw,118px); letter-spacing: -.055em; }
.subhero__lead { max-width: 590px; color: var(--ink-soft); font-family: var(--serif); font-size: 21px; line-height: 1.5; }
.subhero__aside { position: relative; }
.subhero__aside img { height: 520px; object-fit: cover; box-shadow: var(--shadow); }
.subhero__aside-note { position: absolute; right: -20px; bottom: 30px; padding: 13px 18px; color: var(--cream); background: var(--wine); font-family: var(--serif); font-style: italic; }
.subhero--menu { background: linear-gradient(110deg,#f5ede1 0 62%,#2f4939 62%); }
.subhero--menu .subhero__aside img { aspect-ratio: .95; border: 7px solid var(--cream); border-radius: 220px 220px 12px 12px; object-position: 50% 47%; }
.subhero--garden { display: grid; min-height: 700px; place-items: end start; color: var(--cream); }
.subhero--garden::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg,rgba(15,34,20,.88) 0%,rgba(15,34,20,.55) 48%,rgba(15,34,20,.16) 100%); content: ""; }
.subhero--garden > img { position: absolute; z-index: -2; inset: 0; height: 100%; object-fit: cover; object-position: center 52%; }
.subhero--garden .subhero__copy { width: min(720px,100%); padding-block: 120px; }
.subhero--garden h1 { color: #fff; }
.subhero--garden .subhero__lead { color: rgba(255,255,255,.78); }
.subhero--garden .garden-count { display: flex; margin-top: 42px; align-items: center; gap: 19px; }
.garden-count strong { color: var(--brass-light); font-family: var(--serif); font-size: 68px; font-weight: 400; line-height: 1; }
.garden-count span { font-size: 10px; font-weight: 850; letter-spacing: .14em; line-height: 1.45; text-transform: uppercase; }
.subhero--story { background: linear-gradient(125deg,#ead5bb,#f4e7d7 62%,#e7d3b9); }
.subhero--story .subhero__aside::before { position: absolute; top: -24px; right: -24px; width: 72%; height: 80%; border: 1px solid rgba(138,63,59,.22); content: ""; }
.subhero--story .subhero__aside img { position: relative; aspect-ratio: 1; object-position: center; }
.subhero--story .story-seal { position: absolute; z-index: 2; right: -32px; bottom: -34px; display: grid; width: 148px; height: 148px; padding: 12px; place-content: center; border-radius: 50%; color: var(--cream); background: var(--wine); box-shadow: 0 20px 45px rgba(70,45,31,.2); text-align: center; }
.story-seal strong { font-family: var(--serif); font-size: 56px; font-weight: 400; line-height: .85; }
.story-seal span { margin-top: 9px; font-size: 8px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.subhero--contact { color: var(--cream); background: var(--olive); }
.subhero--contact::before { position: absolute; z-index: -1; top: -30%; right: -8%; width: 600px; height: 600px; border: 1px solid rgba(229,208,165,.12); border-radius: 50%; content: ""; box-shadow: 0 0 0 70px rgba(229,208,165,.04),0 0 0 140px rgba(229,208,165,.025); }
.subhero--contact .subhero__inner { grid-template-columns: minmax(0,1fr) minmax(340px,.52fr); }
.subhero--contact h1 { color: #fff; }
.subhero--contact .subhero__lead { color: rgba(255,249,239,.67); }
.contact-hero__address { padding: 40px; border: 1px solid rgba(255,249,239,.2); background: rgba(29,44,34,.32); backdrop-filter: blur(6px); }
.contact-hero__address span { color: var(--brass-light); font-size: 9px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.contact-hero__address address { margin: 17px 0 32px; font-family: var(--serif); font-size: 34px; font-style: normal; line-height: 1.2; }
.contact-hero__address a:not(.button) { display: inline-block; margin-bottom: 24px; color: #fff; font-family: var(--serif); font-size: 27px; }

.menu-layout { display: grid; align-items: start; gap: 70px; grid-template-columns: 230px minmax(0,1fr); }
.menu-index { position: sticky; top: 132px; padding: 27px; border: 1px solid var(--line); background: rgba(255,249,239,.5); }
.menu-index > span { color: var(--wine); font-size: 9px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.menu-index nav { display: flex; margin-top: 17px; flex-direction: column; }
.menu-index button { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-family: var(--serif); font-size: 18px; text-align: left; }
.menu-index button:hover, .menu-index button[aria-selected="true"] { color: var(--wine); }
.menu-index p { margin-top: 24px; color: var(--ink-soft); font-size: 10px; line-height: 1.55; }
.menu-category[hidden] { display: none; }
.menu-category__head { display: flex; padding-bottom: 25px; align-items: baseline; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--ink); }
.menu-category__head h2 { font-size: clamp(48px,6vw,72px); }
.menu-category__head span { color: var(--wine); font-family: var(--serif); font-size: 18px; font-style: italic; }
.dish-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); column-gap: 40px; }
.dish { display: grid; min-height: 130px; padding-block: 28px; align-items: start; gap: 20px; border-bottom: 1px solid var(--line); grid-template-columns: 1fr auto; }
.dish h3 { margin-bottom: 8px; font-size: 25px; line-height: 1.15; }
.dish p { color: var(--ink-soft); font-size: 12px; line-height: 1.55; }
.dish > strong { color: var(--wine); font-family: var(--serif); font-size: 18px; font-weight: 400; }
.dish__tag { display: inline-block; margin-bottom: 8px; padding: 3px 7px; color: var(--cream); background: var(--wine); font-size: 7px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.menu-footnote { margin-top: 28px; padding: 18px 20px; color: var(--ink-soft); background: var(--paper-deep); font-size: 11px; }

.garden-story { display: grid; align-items: center; gap: 90px; grid-template-columns: minmax(0,1fr) minmax(350px,.7fr); }
.garden-story__copy h2 { max-width: 700px; margin-bottom: 28px; font-size: clamp(50px,6.5vw,80px); }
.garden-story__copy .lead { margin-bottom: 20px; font-family: var(--serif); font-size: 21px; }
.garden-story__copy > p:not(.eyebrow):not(.lead) { max-width: 650px; color: var(--ink-soft); }
.garden-story__image { position: relative; }
.garden-story__image img { aspect-ratio: .87; object-fit: cover; object-position: 58% center; box-shadow: var(--shadow); }
.garden-story__image figcaption { position: absolute; right: -26px; bottom: 28px; padding: 12px 18px; color: var(--cream); background: var(--olive); font-family: var(--serif); font-style: italic; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.feature { min-height: 320px; padding: 42px; border-right: 1px solid rgba(255,249,239,.15); }
.feature:last-child { border-right: 0; }
.feature__number { display: block; margin-bottom: 65px; color: var(--brass-light); font-family: var(--serif); font-size: 62px; font-weight: 400; line-height: 1; }
.feature h3 { margin-bottom: 17px; color: #fff; font-size: 29px; }
.feature p { color: rgba(255,249,239,.65); font-size: 13px; }

.history-copy { display: grid; gap: 80px; grid-template-columns: minmax(0,.78fr) minmax(0,1fr); }
.history-copy__aside { padding-right: 45px; border-right: 1px solid var(--line); }
.history-copy__aside blockquote { font-family: var(--serif); font-size: clamp(31px,4vw,48px); line-height: 1.18; }
.history-copy__aside cite { display: block; margin-top: 22px; color: var(--wine); font-family: var(--sans); font-size: 9px; font-style: normal; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.history-copy__body h2 { max-width: 680px; margin-bottom: 28px; font-size: clamp(49px,6vw,73px); }
.history-copy__body .lead { margin-bottom: 22px; font-family: var(--serif); font-size: 21px; line-height: 1.5; }
.history-copy__body > p:not(.eyebrow):not(.lead) { margin-bottom: 16px; color: var(--ink-soft); }
.values-grid { display: grid; gap: 16px; grid-template-columns: repeat(3,1fr); }
.value-card { min-height: 340px; padding: 40px; background: rgba(255,249,239,.65); border: 1px solid rgba(138,63,59,.11); }
.value-card > span { display: grid; width: 46px; height: 46px; margin-bottom: 72px; place-items: center; border: 1px solid rgba(138,63,59,.33); border-radius: 50%; color: var(--wine); font-family: var(--serif); }
.value-card h3 { margin-bottom: 17px; font-size: 31px; }
.value-card p { color: var(--ink-soft); font-size: 13px; }
.history-stats { display: grid; grid-template-columns: repeat(3,1fr); }
.history-stats > div { padding: 55px 30px; border-right: 1px solid rgba(255,249,239,.16); text-align: center; }
.history-stats > div:last-child { border-right: 0; }
.history-stats strong { display: block; color: var(--brass-light); font-family: var(--serif); font-size: 68px; font-weight: 400; line-height: 1; }
.history-stats span { display: block; margin-top: 13px; font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }

.visit-grid { display: grid; gap: 20px; grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
.hours-card, .location-card { padding: 48px; background: var(--cream); border: 1px solid var(--line); box-shadow: 0 22px 60px rgba(70,45,31,.09); }
.card-kicker { color: var(--wine); font-size: 9px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.hours-card__head { display: flex; margin-bottom: 32px; align-items: start; justify-content: space-between; gap: 20px; }
.hours-card h2, .location-card h2 { margin-top: 10px; font-size: 35px; line-height: 1.12; }
.hours-card__status { padding: 7px 10px; color: var(--olive); background: rgba(47,73,57,.1); font-size: 8px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; }
.hours-list > div { display: grid; padding: 10px 0; border-bottom: 1px solid var(--line); grid-template-columns: 105px 1fr; font-size: 13px; }
.hours-list dt { color: var(--ink-soft); }
.hours-list dd { text-align: right; }
.hours-list dd span { margin-left: 12px; }
.hours-list > div.is-today { color: var(--wine); font-weight: 750; }
.location-card { position: relative; overflow: hidden; }
.location-card::after { position: absolute; right: -110px; bottom: -130px; width: 300px; height: 300px; border: 1px solid rgba(138,63,59,.1); border-radius: 50%; content: ""; box-shadow: 0 0 0 45px rgba(138,63,59,.035); }
.location-card address { position: relative; z-index: 1; margin: 36px 0 24px; font-family: var(--serif); font-size: clamp(35px,4vw,52px); font-style: normal; line-height: 1.15; }
.location-card__phone { position: relative; z-index: 1; display: inline-block; margin-bottom: 34px; color: var(--wine); font-family: var(--serif); font-size: 27px; }
.location-card__actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 10px; }
.service-row { display: grid; grid-template-columns: repeat(3,1fr); }
.service-row > div { min-height: 200px; padding: 35px; border-right: 1px solid rgba(255,249,239,.15); }
.service-row > div:last-child { border-right: 0; }
.service-row span { color: var(--brass-light); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.service-row h3 { margin: 16px 0 12px; color: #fff; font-size: 27px; }
.service-row p { color: rgba(255,249,239,.62); font-size: 12px; }

.site-footer { padding-block: 75px 22px; color: rgba(255,249,239,.72); background: var(--olive-deep); }
.site-footer__main { display: grid; padding-bottom: 64px; gap: 50px; grid-template-columns: 1.5fr .85fr .65fr .75fr; }
.brand--footer { color: var(--cream); }
.brand--footer .brand__mark { stroke: var(--brass-light); }
.brand--footer .brand__wording small { color: var(--brass-light); }
.brand--footer.brand--feather-lockup .brand__feather { fill: var(--brass-light); }
.brand--footer.brand--feather-lockup .brand__feather-line { stroke: var(--olive-deep); }
.brand--footer.brand--feather-lockup .brand__small { color: var(--brass-light); }
.footer-brand > p { max-width: 280px; margin-top: 24px; color: rgba(255,249,239,.5); font-size: 13px; }
.site-footer h2 { margin-bottom: 19px; color: var(--brass-light); font-family: var(--sans); font-size: 9px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.site-footer address { margin-bottom: 12px; font-style: normal; }
.site-footer__main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; font-size: 13px; }
.site-footer__main a, .site-footer__main button { margin-bottom: 8px; color: inherit; text-align: left; transition: color 180ms ease; }
.site-footer__main a:hover, .site-footer__main button:hover { color: #fff; }
.site-footer__bottom { display: flex; padding-top: 22px; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,249,239,.12); color: rgba(255,249,239,.42); font-size: 10px; }
.site-footer__bottom > div { display: flex; align-items: center; gap: 18px; }
.site-footer__bottom button { color: inherit; }
.site-footer__bottom a { color: var(--brass-light); }
.prototype-pill { display: inline-flex; padding: 5px 9px; border: 1px solid rgba(229,208,165,.3); border-radius: 999px; color: var(--brass-light); font-size: 7px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.mobile-actions { display: none; }

.reservation { width: min(760px,calc(100% - 32px)); max-height: min(90svh,830px); padding: 0; overflow: auto; border: 0; color: var(--ink); background: transparent; }
.reservation::backdrop { background: rgba(18,24,19,.76); backdrop-filter: blur(8px); }
.reservation[open] { animation: dialog-in 230ms ease both; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
.reservation__panel { position: relative; padding: clamp(32px,6vw,62px); border: 1px solid rgba(184,143,86,.48); background: var(--cream); box-shadow: 0 40px 100px rgba(0,0,0,.32); }
.reservation__panel::before { position: absolute; inset: 10px; border: 1px solid rgba(184,143,86,.24); content: ""; pointer-events: none; }
.reservation__close { position: absolute; z-index: 2; top: 21px; right: 22px; display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink-soft); font-size: 26px; line-height: 1; }
.reservation__close:hover { color: var(--cream); background: var(--wine); }
.reservation__intro { max-width: 600px; margin-bottom: 32px; padding-right: 35px; }
.reservation__intro h2, .reservation__success h2 { margin-bottom: 16px; font-size: clamp(39px,5.5vw,58px); }
.reservation__intro > p:last-child, .reservation__success > p:not(.eyebrow) { color: var(--ink-soft); font-size: 13px; }
.reservation__halo { display: block; width: 40px; height: 12px; margin-bottom: 19px; border: 1px solid var(--brass); border-radius: 50%; }
.reservation__form { position: relative; z-index: 1; }
.form-row { display: grid; gap: 14px; grid-template-columns: repeat(2,minmax(0,1fr)); }
.form-row--three { grid-template-columns: 1.2fr 1fr .85fr; }
.reservation__form label { display: block; margin-bottom: 16px; font-size: 10px; font-weight: 800; letter-spacing: .04em; }
.reservation__form label > span { color: var(--ink-soft); font-weight: 400; }
.reservation__form input, .reservation__form select, .reservation__form textarea { width: 100%; min-height: 49px; margin-top: 7px; padding: 11px 13px; border: 1px solid rgba(41,33,29,.2); border-radius: 0; outline: 0; background: #fffdf7; font-size: 14px; }
.reservation__form textarea { min-height: 88px; resize: vertical; }
.reservation__form input:focus, .reservation__form select:focus, .reservation__form textarea:focus { border-color: var(--wine); box-shadow: 0 0 0 3px rgba(138,63,59,.09); }
.form-privacy { margin-top: 14px; color: #817870; font-size: 9px; text-align: center; }
.form-privacy a { color: var(--wine); font-weight: 800; }
.reservation__success { position: relative; z-index: 1; padding-block: 42px 20px; text-align: center; }
.reservation__success[hidden] { display: none; }
.reservation__success svg { width: 72px; margin: 0 auto 27px; fill: none; stroke: var(--olive); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.reservation__success > p:not(.eyebrow) { max-width: 500px; margin: 0 auto 29px; }
.toast { position: fixed; z-index: 500; right: 24px; bottom: 24px; max-width: 360px; padding: 14px 18px; border-left: 3px solid var(--brass); color: var(--cream); background: var(--olive); box-shadow: 0 20px 50px rgba(0,0,0,.24); font-size: 12px; opacity: 0; pointer-events: none; transform: translateY(14px); transition: opacity 180ms ease, transform 180ms ease; }
.toast.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 48px,1040px); }
  .primary-nav { gap: 16px; }
  .header-cta { padding-inline: 17px; }
  .home-hero__grid { gap: 55px; grid-template-columns: minmax(0,1fr) minmax(340px,.72fr); }
  .home-hero h1 { font-size: clamp(60px,7.3vw,82px); }
  .subhero__inner { grid-template-columns: minmax(0,1fr) minmax(350px,.7fr); }
}

@media (max-width: 940px) {
  :root { --header-height: 82px; }
  .primary-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; width: 46px; height: 46px; margin-left: auto; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 50%; }
  .menu-toggle > span:not(.sr-only) { width: 19px; height: 1.5px; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .mobile-nav { position: absolute; z-index: 90; top: 100%; right: 0; left: 0; display: flex; max-height: 0; padding-inline: 24px; overflow: hidden; flex-direction: column; color: var(--cream); background: var(--olive); opacity: 0; transition: max-height 300ms ease,padding 300ms ease,opacity 200ms ease; }
  .mobile-nav.is-open { max-height: calc(100svh - var(--header-height)); padding-block: 22px 30px; opacity: 1; }
  .mobile-nav > a { padding: 13px 4px; border-bottom: 1px solid rgba(255,249,239,.13); font-family: var(--serif); font-size: 23px; }
  .mobile-nav > a[aria-current="page"] { color: var(--brass-light); }
  .mobile-nav .button { margin-top: 20px; }
  .home-hero { background: linear-gradient(180deg,var(--paper) 0 57%,#eddfcc 57%); }
  .home-hero__grid, .subhero__inner { min-height: auto; padding-block: 70px 90px; gap: 74px; grid-template-columns: 1fr; }
  .home-hero__copy, .subhero__copy { max-width: 760px; }
  .home-hero__media { width: min(560px,90%); justify-self: center; }
  .story-teaser__grid, .garden-story { gap: 55px; grid-template-columns: minmax(280px,.65fr) minmax(0,1fr); }
  .route-grid { grid-template-columns: repeat(2,1fr); }
  .route-card:first-child { grid-row: auto; }
  .route-card:last-child { grid-column: span 2; }
  .subhero--menu { background: linear-gradient(180deg,var(--paper) 0 58%,var(--olive) 58%); }
  .subhero--menu .subhero__aside { width: min(580px,90%); justify-self: center; }
  .subhero--story .subhero__aside { width: min(560px,90%); justify-self: center; }
  .subhero--contact .subhero__inner { grid-template-columns: 1fr; }
  .contact-hero__address { width: min(600px,100%); }
  .menu-layout { gap: 42px; grid-template-columns: 190px minmax(0,1fr); }
  .dish-list { grid-template-columns: 1fr; }
  .history-copy { gap: 50px; }
  .site-footer__main { grid-template-columns: 1.4fr 1fr 1fr; }
  .site-footer__main > div:last-child { display: none; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 36px); --header-height: 76px; }
  body { padding-bottom: 68px; }
  .utility-bar__inner { min-height: 35px; justify-content: center; }
  .utility-bar__inner > a, .utility-bar__right > a { display: none; }
  .brand__mark { width: 48px; height: 42px; }
  .brand__wording strong { font-size: 23px; }
  .brand__wording small { font-size: 7px; }
  .brand--feather-lockup .brand__feather { width: 25px; height: 40px; }
  .brand--feather-lockup .brand__name { font-size: 23px; }
  .section { padding-block: 86px; }
  .home-hero__grid { padding-block: 58px 78px; gap: 63px; }
  .home-hero h1 { margin-bottom: 24px; font-size: clamp(51px,15.5vw,70px); }
  .home-hero__lead, .subhero__lead { font-size: 18px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__today { margin-top: 36px; align-items: flex-start; flex-direction: column; gap: 5px; }
  .home-hero__media { width: calc(100% - 20px); }
  .home-hero__frame { border-width: 6px; }
  .anniversary-seal { top: 28px; left: -20px; width: 98px; height: 98px; padding: 12px; }
  .anniversary-seal strong { font-size: 36px; }
  .home-hero__caption { display: none; }
  .trust-strip__inner { min-height: auto; grid-template-columns: repeat(2,1fr); }
  .trust-strip__inner > div { min-height: 86px; padding: 15px 10px; justify-content: flex-start; border-bottom: 1px solid rgba(255,249,239,.16); }
  .trust-strip__inner > div:nth-child(2) { border-right: 0; }
  .trust-strip__inner > div:nth-child(n+3) { border-bottom: 0; }
  .trust-strip strong { font-size: 28px; }
  .story-teaser__grid, .garden-story { gap: 55px; grid-template-columns: 1fr; }
  .story-teaser__image, .garden-story__image { width: calc(100% - 20px); }
  .story-teaser__image figcaption, .garden-story__image figcaption { right: -20px; }
  .story-teaser__copy h2, .garden-story__copy h2 { font-size: clamp(44px,13vw,60px); }
  .route-grid { grid-template-columns: 1fr; }
  .route-card, .route-card:first-child, .route-card--plain { min-height: 410px; grid-column: auto; }
  .route-card--plain { min-height: 300px; }
  .route-card { padding: 27px; }
  .garden-banner { min-height: 720px; }
  .garden-banner h2 { font-size: clamp(54px,16vw,75px); }
  .page-cta__inner { min-height: 520px; }
  .page-cta h2 { font-size: clamp(51px,15vw,70px); }
  .page-cta__actions { width: min(100%,340px); flex-direction: column; }
  .page-cta__actions .button { width: 100%; }
  .subhero, .subhero__inner { min-height: auto; }
  .subhero__inner { padding-block: 64px 78px; gap: 58px; }
  .subhero h1 { font-size: clamp(59px,17vw,78px); }
  .subhero__aside img { height: 430px; }
  .subhero__aside-note { right: -10px; }
  .subhero--garden { min-height: 720px; }
  .subhero--garden::after { background: linear-gradient(0deg,rgba(15,34,20,.9),rgba(15,34,20,.43)); }
  .subhero--garden .subhero__copy { padding-block: 90px 70px; align-self: end; }
  .subhero--story .story-seal { right: -10px; width: 125px; height: 125px; }
  .story-seal strong { font-size: 48px; }
  .contact-hero__address { padding: 30px; }
  .contact-hero__address address { font-size: 29px; }
  .section-heading { margin-bottom: 39px; gap: 20px; grid-template-columns: 1fr; }
  .section-heading h2 { font-size: clamp(45px,13vw,62px); }
  .menu-layout { gap: 38px; grid-template-columns: 1fr; }
  .menu-index { position: static; padding: 19px; overflow-x: auto; }
  .menu-index > span, .menu-index p { display: none; }
  .menu-index nav { margin: 0; flex-direction: row; }
  .menu-index button { min-width: max-content; padding: 10px 18px; border-bottom: 0; border-right: 1px solid var(--line); }
  .menu-category__head { align-items: flex-start; flex-direction: column; }
  .dish { min-height: 0; }
  .feature-grid, .values-grid, .history-stats, .visit-grid, .service-row { grid-template-columns: 1fr; }
  .feature { min-height: 270px; border-right: 0; border-bottom: 1px solid rgba(255,249,239,.15); }
  .feature__number { margin-bottom: 45px; }
  .history-copy { gap: 45px; grid-template-columns: 1fr; }
  .history-copy__aside { padding: 0 0 38px; border-right: 0; border-bottom: 1px solid var(--line); }
  .value-card { min-height: 300px; }
  .history-stats > div { border-right: 0; border-bottom: 1px solid rgba(255,249,239,.16); }
  .hours-card, .location-card { padding: 31px 25px; }
  .hours-card__head { align-items: flex-start; flex-direction: column; }
  .hours-list > div { grid-template-columns: 90px 1fr; font-size: 12px; }
  .hours-list dd span { display: block; margin-left: 0; }
  .service-row > div { border-right: 0; border-bottom: 1px solid rgba(255,249,239,.15); }
  .site-footer__main { gap: 42px 24px; grid-template-columns: repeat(2,1fr); }
  .footer-brand { grid-column: 1/-1; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .site-footer__bottom > div { flex-wrap: wrap; }
  .mobile-actions { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; display: grid; height: 68px; color: var(--cream); background: rgba(29,44,34,.98); border-top: 1px solid rgba(255,249,239,.15); backdrop-filter: blur(14px); grid-template-columns: repeat(3,1fr); }
  .mobile-actions a, .mobile-actions button { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 4px; border-right: 1px solid rgba(255,249,239,.12); color: inherit; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .mobile-actions > :last-child { border-right: 0; }
  .mobile-actions svg { width: 20px; height: 20px; fill: none; stroke: var(--brass-light); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
  .reservation { width: calc(100% - 18px); max-height: calc(100svh - 28px); }
  .reservation__panel { padding: 43px 26px 32px; }
  .reservation__close { top: 15px; right: 15px; }
  .form-row, .form-row--three { grid-template-columns: 1fr; }
  .toast { right: 14px; bottom: 83px; left: 14px; max-width: none; }
}

@media (max-width: 390px) {
  :root { --shell: calc(100% - 28px); }
  .brand { gap: 9px; }
  .brand__mark { width: 43px; }
  .brand__wording strong { font-size: 21px; }
  .brand__wording small { letter-spacing: .12em; }
  .brand--feather-lockup { gap: 9px; }
  .brand--feather-lockup .brand__feather { width: 23px; height: 37px; }
  .brand--feather-lockup .brand__small { font-size: 7px; }
  .brand--feather-lockup .brand__name { font-size: 21px; }
  .home-hero h1 { font-size: 49px; }
  .button { min-height: 50px; padding-inline: 20px; }
  .route-card h3 { font-size: 37px; }
  .subhero h1 { font-size: 56px; }
}

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