:root {
  --forest-950: #0a2a1a;
  --forest-900: #103721;
  --forest-800: #17472d;
  --forest-700: #245b3c;
  --ink: #183226;
  --ink-soft: #54665b;
  --cream: #f5eddf;
  --paper: #fffaf1;
  --white: #fffef9;
  --coral: #ec6a51;
  --coral-dark: #c84c37;
  --sun: #f5c84b;
  --blue: #3b78a0;
  --pink: #eaa5b7;
  --line: rgba(19, 62, 39, 0.18);
  --shadow-sm: 0 12px 30px rgba(9, 42, 26, 0.1);
  --shadow-lg: 0 30px 70px rgba(9, 42, 26, 0.17);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shell: min(1180px, calc(100vw - 48px));
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

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

body.menu-open { overflow: hidden; }

img {
  display: block;
  max-width: 100%;
}

a { color: inherit; }

button, input, textarea, select { font: inherit; }

address { font-style: normal; }

h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h2 {
  max-width: 780px;
  font-size: clamp(2.55rem, 5vw, 4.85rem);
}

h3 { font-size: 1.55rem; }

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section { padding: 124px 0; }

.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: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.demo-disclaimer {
  position: relative;
  z-index: 70;
  padding: 8px 18px;
  color: #fff9e9;
  background: #071d12;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1.35;
  text-align: center;
}

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

.notice {
  position: relative;
  z-index: 60;
  color: #fff6dd;
  background: var(--forest-950);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.notice__inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.notice__inner > span { display: inline-flex; align-items: center; gap: 8px; }
.notice__detail { color: rgba(255, 250, 238, 0.68); }
.notice__dot { width: 7px; height: 7px; border-radius: 50%; background: #75c98d; box-shadow: 0 0 0 4px rgba(117, 201, 141, 0.14); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 250, 241, 0.93);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 9px 26px rgba(10, 42, 26, 0.06); }

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--forest-900);
  text-decoration: none;
}

.brand__mark {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.brand span { display: grid; line-height: 1; }
.brand strong { font-family: var(--serif); font-size: 1.45rem; letter-spacing: -0.035em; }
.brand small { margin-top: 5px; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.primary-nav > a:not(.button) {
  position: relative;
  color: var(--forest-900);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--forest-900);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 4px;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.button--small { min-height: 43px; padding: 11px 18px; font-size: 0.86rem; }
.button--coral { color: var(--white); background: var(--coral); }
.button--coral:hover { background: var(--coral-dark); }
.button--sun { color: var(--forest-950); background: var(--sun); }
.button--sun:hover { background: #ffdc69; }
.button--outline { color: var(--white); border-color: rgba(255,255,255,.4); }
.button--outline:hover { background: rgba(255,255,255,.08); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-900);
  font-weight: 700;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translate(2px, -2px); }
.text-link--green { color: var(--forest-700); }
.text-link--light { color: var(--white); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--green { color: var(--forest-700); }
.eyebrow--light { color: #a9d1af; }

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 80px 0 106px;
  overflow: hidden;
  background: var(--cream);
}

.hero::after {
  position: absolute;
  bottom: -170px;
  left: -80px;
  width: 520px;
  height: 280px;
  border: 1px solid rgba(23, 71, 45, 0.16);
  border-radius: 50%;
  content: "";
  transform: rotate(8deg);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.hero h1 {
  max-width: 690px;
  color: var(--forest-950);
  font-size: clamp(3.7rem, 6.7vw, 6.2rem);
}

.hero h1 em { color: var(--coral); font-style: italic; font-weight: 600; }

.hero__intro {
  max-width: 610px;
  margin-top: 28px;
  color: #40584a;
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.hero__actions { display: flex; align-items: center; gap: 25px; margin-top: 34px; }

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero__facts div { padding-inline: 18px; border-left: 1px solid var(--line); }
.hero__facts div:first-child { padding-left: 0; border-left: 0; }
.hero__facts dt { color: var(--ink-soft); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.hero__facts dd { margin-top: 3px; color: var(--forest-900); font-size: 0.88rem; font-weight: 700; }

.hero__visual { position: relative; min-height: 570px; }

.hero__photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  height: 510px;
  overflow: hidden;
  background: var(--forest-800);
  border: 9px solid var(--paper);
  border-radius: 48% 48% 22px 22px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.8deg);
}

.hero__photo img { width: 100%; height: 100%; object-fit: cover; }

.hero__inset {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 41%;
  padding: 8px;
  background: var(--paper);
  border-radius: 50% 50% 18px 18px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-5deg);
}

.hero__inset img { width: 100%; aspect-ratio: 1 / 1.1; object-fit: cover; border-radius: 50% 50% 12px 12px; }
.hero__inset figcaption { padding: 10px 5px 7px; color: var(--forest-900); font-family: var(--serif); font-size: 0.84rem; text-align: center; }

.hero__badge {
  position: absolute;
  z-index: 3;
  right: -12px;
  bottom: 18px;
  width: 136px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  color: var(--forest-950);
  background: var(--sun);
  border: 2px solid var(--forest-950);
  border-radius: 50%;
  box-shadow: 7px 8px 0 var(--forest-950);
  text-align: center;
  transform: rotate(7deg);
}

.hero__badge::before, .hero__badge::after {
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(10,42,26,.5);
  border-radius: 50%;
  content: "";
}

.hero__badge span { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.hero__badge strong { font-family: var(--serif); font-size: 1.35rem; line-height: 1; }

.hero__leaf {
  position: absolute;
  width: 150px;
  height: 72px;
  opacity: .14;
  background: var(--forest-700);
  border-radius: 100% 0 100% 0;
}

.hero__leaf--one { top: 90px; left: -40px; transform: rotate(30deg); }
.hero__leaf--two { right: 38%; bottom: 10px; transform: rotate(-38deg) scale(.7); }

.trust-strip { color: var(--white); background: var(--forest-900); }
.trust-strip__items { min-height: 76px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-strip__items span { display: flex; align-items: center; justify-content: center; gap: 11px; padding: 10px 18px; border-left: 1px solid rgba(255,255,255,.15); font-size: .86rem; font-weight: 650; }
.trust-strip__items span:first-child { border-left: 0; }
.trust-strip__items i { color: #90c99b; font-size: .65rem; font-style: normal; letter-spacing: .08em; }

.favourites { background: var(--paper); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .6fr);
  align-items: end;
  gap: clamp(40px, 7vw, 100px);
  margin-bottom: 58px;
}

.section-heading h2 { color: var(--forest-950); }
.section-heading__aside { padding-bottom: 7px; }
.section-heading__aside p { margin-bottom: 17px; color: var(--ink-soft); font-size: 1.01rem; }

.dish-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr);
  gap: 22px;
}

.dish-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(19, 62, 39, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 38px rgba(19, 62, 39, .055);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.dish-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.dish-card--wide { grid-row: span 2; }
.dish-card__image { position: relative; overflow: hidden; }
.dish-card--wide .dish-card__image { aspect-ratio: 1.42 / 1; }
.dish-card:not(.dish-card--wide) { display: grid; grid-template-columns: 44% 56%; min-height: 290px; }
.dish-card:not(.dish-card--wide) .dish-card__image { min-height: 100%; }
.dish-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.7,.2,1); }
.dish-card:hover .dish-card__image img { transform: scale(1.035); }

.dish-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  color: var(--forest-950);
  background: var(--sun);
  border-radius: 999px;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dish-card__tag--blue { color: var(--white); background: var(--blue); }
.dish-card__tag--pink { color: var(--forest-950); background: var(--pink); }

.dish-card__body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 13px 20px;
  padding: 26px 28px 30px;
}

.dish-card:not(.dish-card--wide) .dish-card__body { display: flex; flex-direction: column; justify-content: center; padding: 22px; }
.dish-card__type { margin-bottom: 6px; color: var(--coral-dark); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.dish-card h3 { color: var(--forest-950); }
.dish-card__price { align-self: start; color: var(--forest-700); font-family: var(--serif); font-size: 1.25rem; }
.dish-card__body > p { grid-column: 1 / -1; color: var(--ink-soft); font-size: .9rem; line-height: 1.55; }

.menu-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest-900);
  border-radius: var(--radius-md);
}

.menu-ribbon > div { position: relative; display: grid; gap: 2px; padding: 26px 28px; border-left: 1px solid rgba(255,255,255,.14); }
.menu-ribbon > div:first-child { border-left: 0; }
.menu-ribbon span { color: #9bcca4; font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.menu-ribbon strong { font-family: var(--serif); font-size: 1.15rem; }
.menu-ribbon small { color: rgba(255,255,255,.7); }

.diet-note { display: flex; align-items: flex-start; justify-content: center; gap: 9px; margin-top: 20px; color: var(--ink-soft); font-size: .76rem; text-align: center; }

.place-story {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest-950);
}

.place-story::after {
  position: absolute;
  right: -110px;
  bottom: -160px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  box-shadow: inset 0 0 0 30px var(--forest-950), inset 0 0 0 31px rgba(255,255,255,.08), inset 0 0 0 65px var(--forest-950), inset 0 0 0 66px rgba(255,255,255,.07);
  content: "";
}

.place-story__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .85fr;
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
  min-height: 760px;
  padding: 110px 0;
}

.place-story__art { position: relative; min-height: 560px; }
.place-story__main { position: absolute; inset: 0 70px 55px 0; overflow: hidden; border: 9px solid #fff8e9; border-radius: 120px 20px 20px 20px; transform: rotate(-2deg); }
.place-story__main img { width: 100%; height: 100%; object-fit: cover; }
.place-story__mural { position: absolute; right: 0; bottom: 0; width: 43%; overflow: hidden; border: 8px solid var(--sun); border-radius: 50% 50% 12px 12px; box-shadow: var(--shadow-lg); transform: rotate(5deg); }
.place-story__mural img { width: 100%; aspect-ratio: 1 / 1.22; object-fit: cover; }

.place-story__copy h2 { color: var(--paper); }
.place-story__lead { margin-top: 30px; color: #f5ead7; font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 1.7rem); line-height: 1.45; }
.place-story__copy > p:not(.eyebrow):not(.place-story__lead) { margin-top: 20px; color: rgba(255,255,255,.7); }
.place-story__stamp { display: inline-grid; margin-top: 38px; padding: 17px 23px; color: var(--forest-950); background: var(--pink); border: 2px solid var(--paper); box-shadow: 5px 6px 0 var(--paper); transform: rotate(-2deg); }
.place-story__stamp span { font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.place-story__stamp strong { font-family: var(--serif); font-size: 1.15rem; }

.find-us { background: var(--cream); }
.find-us__top { display: grid; grid-template-columns: 1fr minmax(260px, .48fr); align-items: end; gap: 50px; margin-bottom: 52px; }
.section-heading--compact { display: block; margin: 0; }
.find-us__intro { color: var(--ink-soft); font-size: 1.05rem; }

.route-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 600px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(19, 62, 39, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.route-card__steps { display: grid; align-content: center; padding: 54px; }

.route-step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 19px; padding: 25px 0; }
.route-step:not(:last-child)::after { position: absolute; bottom: -3px; left: 27px; width: 2px; height: 30px; background: repeating-linear-gradient(to bottom, var(--coral), var(--coral) 4px, transparent 4px, transparent 8px); content: ""; }
.route-step > span { width: 56px; height: 56px; display: grid; place-items: center; color: var(--paper); background: var(--forest-800); border-radius: 50%; font-family: var(--serif); font-size: 1.25rem; box-shadow: 4px 4px 0 var(--sun); }
.route-step p { color: var(--coral-dark); font-size: .63rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.route-step h3 { margin: 3px 0 6px; color: var(--forest-950); font-size: 1.35rem; }
.route-step small { color: var(--ink-soft); font-size: .83rem; line-height: 1.5; }

.route-card__visual { position: relative; min-height: 600px; overflow: hidden; }
.route-card__visual::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,42,26,.18), transparent 35%); content: ""; }
.route-card__visual img { width: 100%; height: 100%; object-fit: cover; }
.route-card__pin { position: absolute; z-index: 1; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; padding: 11px 16px; color: var(--forest-950); background: var(--sun); border-radius: 999px; box-shadow: var(--shadow-sm); font-size: .78rem; font-weight: 800; }
.route-card__pin span { color: var(--coral-dark); }

.visit-bar {
  display: grid;
  grid-template-columns: 1fr .75fr .75fr;
  align-items: center;
  gap: 35px;
  margin-top: 24px;
  padding: 34px 38px;
  color: var(--paper);
  background: var(--forest-900);
  border-radius: var(--radius-md);
}

.visit-bar .eyebrow { margin-bottom: 8px; }
.visit-bar address { font-family: var(--serif); font-size: 1.13rem; line-height: 1.38; }
.visit-bar__hours { display: grid; border-left: 1px solid rgba(255,255,255,.18); padding-left: 34px; }
.visit-bar__hours span { color: #9bcca4; font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.visit-bar__hours strong { font-family: var(--serif); font-size: 1.55rem; }
.visit-bar__hours small { margin-top: 4px; color: rgba(255,255,255,.65); }
.visit-bar__actions { display: grid; justify-items: start; gap: 12px; }
.visit-bar__actions .text-link { font-size: .73rem; }

.reviews { background: var(--paper); }
.reviews__heading { display: grid; grid-template-columns: 1fr 280px; align-items: end; gap: 60px; margin-bottom: 55px; }
.reviews__heading h2 { color: var(--forest-950); }

.rating-card { padding: 24px 27px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-md); }
.rating-card__stars { color: var(--coral); letter-spacing: .12em; }
.rating-card strong { display: inline-block; margin: 2px 8px 0 0; color: var(--forest-950); font-family: var(--serif); font-size: 3rem; line-height: 1; }
.rating-card span { color: var(--forest-700); font-size: .83rem; font-weight: 700; }
.rating-card small { display: block; margin-top: 5px; color: var(--ink-soft); font-size: .7rem; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { position: relative; min-height: 340px; display: flex; flex-direction: column; justify-content: space-between; padding: 34px; overflow: hidden; border: 2px solid var(--forest-950); border-radius: var(--radius-md); box-shadow: 7px 8px 0 var(--forest-950); }
.review-card--coral { background: #f08a72; }
.review-card--blue { color: var(--white); background: var(--blue); }
.review-card--yellow { background: var(--sun); }
.review-card__icon { position: absolute; top: -20px; right: 18px; color: rgba(255,255,255,.2); font-family: var(--serif); font-size: 9rem; line-height: 1; }
.review-card blockquote { position: relative; z-index: 1; padding-top: 45px; font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.25; letter-spacing: -.025em; }
.review-card figcaption { position: relative; z-index: 1; display: grid; padding-top: 22px; border-top: 1px solid currentColor; }
.review-card figcaption strong { font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; }
.review-card figcaption span { opacity: .72; font-size: .72rem; }
.reviews__links { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 42px; color: var(--ink-soft); font-size: .84rem; }
.reviews__links a { color: var(--forest-800); font-weight: 800; text-underline-offset: 4px; }

.closing-cta { position: relative; overflow: hidden; color: var(--paper); background: var(--forest-950); }
.closing-cta__inner { position: relative; z-index: 1; padding: 115px 0 130px; text-align: center; }
.closing-cta .eyebrow { justify-content: center; }
.closing-cta h2 { margin-inline: auto; color: var(--paper); font-size: clamp(3.6rem, 7vw, 7rem); }
.closing-cta p:not(.eyebrow) { max-width: 560px; margin: 24px auto 0; color: rgba(255,255,255,.7); font-size: 1.08rem; }
.closing-cta__actions { display: flex; justify-content: center; gap: 13px; margin-top: 34px; }
.closing-cta__leaf { position: absolute; top: -130px; left: 50%; width: 500px; height: 500px; border: 1px solid rgba(255,255,255,.1); border-radius: 100% 0 100% 0; transform: translateX(-50%) rotate(45deg); }

.site-footer { padding-bottom: 1px; color: var(--paper); background: #061e13; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 44px 0 38px; }
.brand--footer { color: var(--paper); }
.footer__links { display: flex; gap: 28px; }
.footer__links a { color: rgba(255,255,255,.75); font-size: .84rem; font-weight: 650; text-underline-offset: 4px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0 22px; color: rgba(255,255,255,.45); border-top: 1px solid rgba(255,255,255,.1); font-size: .7rem; }

.mobile-dock { display: none; }

/* Equal, reusable food-card system. */
.dish-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.dish-grid .dish-card,
.dish-grid .dish-card:not(.dish-card--wide) {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.dish-grid .dish-card .dish-card__image,
.dish-grid .dish-card:not(.dish-card--wide) .dish-card__image {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.dish-grid .dish-card .dish-card__body,
.dish-grid .dish-card:not(.dish-card--wide) .dish-card__body {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: start;
  gap: 12px 16px;
  padding: 24px;
}

.dish-grid .dish-card .dish-card__body > p { grid-column: 1 / -1; }

/* Straightforward two-column story: one square photograph and copy. */
.place-story__grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  min-height: 0;
  padding: 112px 0;
}

.place-story__image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--forest-800);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, .22);
}

.place-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Full-bleed hero — follows the proven Bensons demo composition. */
.hero.hero--full {
  position: relative;
  min-height: 620px;
  height: 660px;
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 6vw, 6rem);
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
}

.hero.hero--full::after { display: none; }

.hero-full__image,
.hero-full__shade {
  position: absolute;
  inset: 0;
}

.hero-full__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
  transform: scale(1.01);
}

.hero-full__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 29, 18, .84) 0%, rgba(7, 29, 18, .42) 49%, rgba(7, 29, 18, .05) 79%),
    linear-gradient(0deg, rgba(7, 29, 18, .53), transparent 58%);
}

.hero-full__copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.hero--full .eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .82);
  letter-spacing: .2em;
}

.hero--full h1 {
  max-width: 790px;
  color: var(--white);
  font-size: clamp(3.6rem, 6vw, 6.2rem);
  font-weight: 600;
  letter-spacing: -.045em;
}

.hero-full__copy > p:not(.eyebrow) {
  max-width: 625px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.62;
}

.hero-full__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero--full .button--light {
  min-height: 52px;
  padding: 15px 22px;
  color: var(--forest-950);
  background: var(--white);
  border-radius: 3px;
}

.hero--full .button--light:hover { background: var(--sun); }

.hero-full__note {
  position: absolute;
  z-index: 2;
  right: clamp(2rem, 6vw, 6rem);
  bottom: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .6);
}

.hero-full__note span {
  color: rgba(255, 255, 255, .78);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-full__note strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(1.2rem, 4vw, 4.5rem);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.quick-info > div,
.quick-info > a {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.quick-info > *:first-child { border-left: 1px solid var(--line); }

.quick-info span {
  overflow: hidden;
  color: var(--ink-soft);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.quick-info strong {
  overflow: hidden;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-info b { color: var(--coral-dark); font-family: var(--sans); }
.quick-info a:hover strong { color: var(--coral-dark); }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.js .reveal--delay { transition-delay: 110ms; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .hero { padding-top: 64px; }
  .hero__grid { grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr); gap: 42px; }
  .hero__facts { grid-template-columns: 1fr; gap: 10px; }
  .hero__facts div, .hero__facts div:first-child { padding: 0; border: 0; display: flex; justify-content: space-between; }
  .dish-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .dish-card:not(.dish-card--wide) { grid-template-columns: 1fr; }
  .dish-card:not(.dish-card--wide) .dish-card__image { min-height: 190px; }
  .place-story__grid { gap: 55px; }
  .route-card__steps { padding: 38px; }
  .visit-bar { grid-template-columns: 1fr 1fr; }
  .visit-bar__actions { grid-column: 1 / -1; grid-template-columns: auto auto; align-items: center; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px, 720px); }
  .section { padding: 88px 0; }
  .header__inner { min-height: 70px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: 105px;
    right: 18px;
    left: 18px;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 22px;
    visibility: hidden;
    opacity: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }
  .primary-nav { top: calc(100% + 8px); }
  .primary-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .primary-nav > a:not(.button) { padding: 15px 5px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.35rem; }
  .primary-nav .button { margin-top: 15px; }

  .hero { padding: 68px 0 90px; }
  .hero__grid { grid-template-columns: 1fr; gap: 55px; }
  .hero__copy { max-width: 700px; }
  .hero h1 { max-width: 760px; }
  .hero__facts { grid-template-columns: repeat(3, 1fr); }
  .hero__facts div, .hero__facts div:first-child { display: block; padding-inline: 12px; border-left: 1px solid var(--line); }
  .hero__facts div:first-child { padding-left: 0; border-left: 0; }
  .hero__visual { width: min(100%, 650px); min-height: 580px; margin-inline: auto; }

  .trust-strip__items { grid-template-columns: repeat(2, 1fr); padding: 10px 0; }
  .trust-strip__items span:nth-child(3) { border-left: 0; }

  .section-heading, .find-us__top, .reviews__heading { grid-template-columns: 1fr; gap: 26px; }
  .section-heading__aside, .find-us__intro { max-width: 620px; }
  .dish-grid { grid-template-columns: 1fr 1fr; }
  .dish-card--wide { grid-column: 1 / -1; grid-row: auto; }
  .dish-card:not(.dish-card--wide) { display: block; }
  .dish-card:not(.dish-card--wide) .dish-card__image { aspect-ratio: 1.15 / 1; }
  .menu-ribbon { grid-template-columns: 1fr; }
  .menu-ribbon > div { border-top: 1px solid rgba(255,255,255,.14); border-left: 0; }
  .menu-ribbon > div:first-child { border-top: 0; }

  .place-story__grid { grid-template-columns: 1fr; min-height: 0; padding: 88px 0; }
  .place-story__image { width: min(100%, 650px); }
  .place-story__art { width: min(100%, 650px); }
  .place-story__copy { max-width: 650px; }

  .route-card { grid-template-columns: 1fr; }
  .route-card__visual { min-height: 440px; }
  .visit-bar { grid-template-columns: 1fr 1fr; }

  .reviews__heading { align-items: start; }
  .rating-card { width: min(100%, 330px); }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .review-card:last-child { grid-column: 1 / -1; min-height: 260px; }

  .hero.hero--full {
    min-height: 680px;
    height: calc(100svh - 101px);
    padding: 2rem 1.2rem 6.4rem;
  }
  .hero-full__image img { object-position: 56% center; }
  .hero-full__shade {
    background:
      linear-gradient(0deg, rgba(7, 29, 18, .9) 0%, rgba(7, 29, 18, .52) 48%, rgba(7, 29, 18, .1) 86%),
      linear-gradient(90deg, rgba(7, 29, 18, .28), transparent 70%);
  }
  .hero-full__copy { max-width: 700px; }
  .hero--full h1 { font-size: clamp(3.2rem, 12vw, 5rem); }
  .hero-full__note { right: auto; bottom: 1.5rem; left: 1.2rem; }
  .quick-info { grid-template-columns: 1fr 1fr; padding: 0; }
  .quick-info > div,
  .quick-info > a { padding: 17px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-info > *:first-child { border-left: 0; }
  .quick-info > *:nth-child(odd) { border-right: 1px solid var(--line); }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  html { scroll-padding-top: 90px; }
  body { padding-bottom: 64px; }
  .notice__inner { min-height: 31px; }
  .notice__detail { display: none !important; }
  .demo-disclaimer { padding: 7px 12px; font-size: .61rem; }
  .brand small { display: none; }
  .brand strong { font-size: 1.35rem; }
  .brand__mark { width: 34px; height: 34px; }

  .section { padding: 76px 0; }
  .hero { min-height: 0; padding: 52px 0 68px; }
  .hero h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .hero__intro { margin-top: 22px; font-size: 1rem; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 16px; margin-top: 28px; }
  .hero__actions .text-link { justify-content: center; }
  .hero__facts { grid-template-columns: 1fr; margin-top: 34px; }
  .hero__facts div, .hero__facts div:first-child { display: flex; justify-content: space-between; padding: 8px 0; border: 0; border-bottom: 1px solid var(--line); }
  .hero__visual { min-height: 425px; }
  .hero__photo { width: 93%; height: 370px; border-width: 6px; border-radius: 42% 42% 18px 18px; }
  .hero__inset { width: 38%; }
  .hero__inset figcaption { display: none; }
  .hero__badge { right: 1px; bottom: 0; width: 100px; box-shadow: 4px 5px 0 var(--forest-950); }
  .hero__badge strong { font-size: 1rem; }
  .hero__badge span { font-size: .5rem; }

  .trust-strip__items { grid-template-columns: 1fr 1fr; }
  .trust-strip__items span { padding: 11px 8px; font-size: .72rem; text-align: center; }

  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .find-us h2, .reviews h2 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .dish-grid { grid-template-columns: 1fr; }
  .dish-card--wide { grid-column: auto; }
  .dish-card--wide .dish-card__image, .dish-card:not(.dish-card--wide) .dish-card__image { aspect-ratio: 1.15 / 1; }
  .dish-card__body, .dish-card:not(.dish-card--wide) .dish-card__body { display: grid; grid-template-columns: 1fr auto; gap: 10px 14px; padding: 22px; }
  .dish-card__body > p { grid-column: 1 / -1; }
  .menu-ribbon > div { padding: 22px; }
  .diet-note { text-align: left; }

  .place-story__grid { padding: 76px 0 84px; }
  .place-story__image { border-radius: 7px; }
  .place-story__art { min-height: 415px; }
  .place-story__main { inset: 0 40px 40px 0; border-width: 6px; border-radius: 80px 16px 16px 16px; }
  .place-story__mural { width: 45%; border-width: 6px; }
  .place-story__copy h2 { font-size: clamp(2.8rem, 13vw, 4.4rem); }

  .find-us__top { margin-bottom: 35px; }
  .route-card { border-radius: 22px; }
  .route-card__steps { padding: 24px; }
  .route-step { grid-template-columns: 47px 1fr; gap: 16px; padding: 22px 0; }
  .route-step > span { width: 47px; height: 47px; font-size: 1rem; }
  .route-step:not(:last-child)::after { left: 23px; }
  .route-step h3 { font-size: 1.18rem; }
  .route-card__visual { min-height: 330px; }
  .visit-bar { grid-template-columns: 1fr; padding: 28px; }
  .visit-bar__hours { padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .visit-bar__actions { grid-column: auto; grid-template-columns: 1fr; }
  .visit-bar__actions .button { width: 100%; }

  .reviews__heading { margin-bottom: 38px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card, .review-card:last-child { grid-column: auto; min-height: 280px; }
  .reviews__links { align-items: flex-start; flex-direction: column; gap: 9px; }

  .closing-cta__inner { padding: 90px 0 100px; }
  .closing-cta h2 { font-size: clamp(3.5rem, 17vw, 5.7rem); }
  .closing-cta__actions { flex-direction: column; }
  .closing-cta__actions .button { width: 100%; }

  .footer__top { align-items: flex-start; flex-direction: column; }
  .footer__links { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
  .footer__bottom { flex-direction: column; gap: 8px; padding-bottom: 28px; }

  .mobile-dock {
    position: fixed;
    z-index: 45;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    min-height: 64px;
    color: var(--paper);
    background: var(--forest-950);
    border-top: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 -8px 24px rgba(10,42,26,.18);
  }
  .mobile-dock a { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .8rem; font-weight: 800; text-decoration: none; }
  .mobile-dock a + a { color: var(--forest-950); background: var(--sun); }

  .hero.hero--full {
    min-height: 660px;
    height: calc(100svh - 101px);
    padding: 2rem 1rem 6.5rem;
  }
  .hero--full .eyebrow { font-size: .62rem; line-height: 1.5; }
  .hero--full h1 { font-size: clamp(3.15rem, 15vw, 4.6rem); }
  .hero-full__copy > p:not(.eyebrow) { margin: 20px 0 25px; font-size: .94rem; }
  .hero-full__actions { align-items: flex-start; flex-direction: column; gap: 15px; }
  .hero-full__actions .text-link { justify-content: flex-start; }
  .hero-full__note { left: 1rem; }
  .quick-info > div,
  .quick-info > a { min-height: 82px; padding: 14px; }
  .quick-info span { font-size: .55rem; }
  .quick-info strong { font-size: .9rem; white-space: normal; }
}

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