:root {
  --green: #1f3e30;
  --green-deep: #153126;
  --green-black: #0d1c16;
  --terracotta: #c5543b;
  --terracotta-dark: #a94834;
  --cream: #f2e8d8;
  --cream-soft: #fbf6ed;
  --gold: #cda96d;
  --brown: #5b3a2a;
  --ink: #171b18;
  --muted: #6c6258;
  --line: rgba(31, 62, 48, .18);
  --line-light: rgba(242, 232, 216, .24);
  --shadow: 0 24px 70px rgba(13, 28, 22, .18);
  --max: 1180px;
  --serif: "Times New Roman", Times, serif;
  --sans: "Poppins", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(205,169,109,.09), transparent 24rem),
    radial-gradient(circle at 88% 32%, rgba(197,84,59,.07), transparent 28rem),
    var(--cream-soft);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open,
body.dialog-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
address { font-style: normal; }
code { font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    radial-gradient(circle, rgba(205,169,109,.42) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(31,62,48,.24) 0 1px, transparent 1.8px);
  background-size: 86px 86px, 132px 132px;
  background-position: 0 0, 34px 58px;
  animation: ambientDrift 24s linear infinite;
}

@keyframes ambientDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-86px, -54px, 0); }
}

main,
.site-footer,
.simple-header,
.legal-content,
.not-found {
  position: relative;
  z-index: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--cream);
  color: var(--green);
  font-weight: 800;
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 16px max(22px, calc((100vw - var(--max)) / 2));
  color: #fff;
  transition: background .22s ease, box-shadow .22s ease, min-height .22s ease;
}
.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(31, 62, 48, .94);
  box-shadow: 0 16px 50px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.brand span { white-space: nowrap; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
}
.site-nav a { opacity: .86; transition: opacity .2s ease, color .2s ease; }
.site-nav a:hover { opacity: 1; color: var(--gold); }
.nav-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--terracotta);
  color: #fff !important;
  opacity: 1 !important;
  box-shadow: 0 12px 34px rgba(197,84,59,.24);
}
.nav-cta::after,
.button::after,
.proof-strip span::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -65%;
  z-index: 0;
  width: 46%;
  pointer-events: none;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.36), transparent);
  opacity: 0;
  transition: transform .55s ease, opacity .25s ease;
}
.nav-cta:hover::after,
.button:hover::after,
.proof-strip span:hover::after {
  opacity: 1;
  transform: translateX(360%) skewX(-18deg);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 6px;
  background: rgba(13,28,22,.24);
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--green);
}
.hero picture,
.hero picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero picture img {
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13,28,22,.92), rgba(13,28,22,.58) 54%, rgba(13,28,22,.22)),
    linear-gradient(0deg, rgba(13,28,22,.78), rgba(13,28,22,.05) 52%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 118px 0 58px;
}
.kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}
h1 {
  max-width: 790px;
  font-size: clamp(3.65rem, 7.6vw, 7.45rem);
  line-height: .88;
}
h1 .h1-kicker {
  display: block;
  font-size: .48em;
  line-height: 1;
}
h1 .h1-main {
  display: block;
  white-space: nowrap;
}
.split-title span {
  display: block;
}
h2 {
  color: var(--green);
  font-size: clamp(2.25rem, 4.9vw, 4.45rem);
  line-height: .94;
}
h3 {
  color: var(--green);
  font-size: 1.2rem;
  line-height: 1.15;
}
.hero-lead {
  max-width: 820px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(.98rem, 1.5vw, 1.16rem);
  line-height: 1.55;
  text-align: justify;
}
.hero-actions,
.inline-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.reservation-card .inline-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.reservation-card .inline-actions .button {
  width: 100%;
}
.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-actions .button {
  width: 100%;
  min-width: 0;
  font-size: .82rem;
  letter-spacing: 0;
  text-transform: none;
}
.contact-actions .button.ghost {
  grid-column: 1 / -1;
}
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(13,28,22,.18);
}
.button:focus-visible,
.nav-cta:focus-visible,
.proof-strip span:focus-visible {
  outline: 3px solid rgba(205,169,109,.72);
  outline-offset: 3px;
}
.button.primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 18px 42px rgba(197,84,59,.26);
}
.button.primary:hover { background: var(--terracotta-dark); }
.button.secondary {
  border-color: var(--line);
  background: var(--green);
  color: #fff;
}
.button.ghost {
  border-color: rgba(255,255,255,.45);
  color: #fff;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.button.ghost.dark {
  border-color: var(--line);
  color: var(--green);
  background: transparent;
}
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(900px, 100%);
  margin: 34px 0 0;
}
.hero-facts div {
  min-height: 88px;
  padding: 15px;
  border: 1px solid rgba(242,232,216,.26);
  border-radius: 8px;
  background: rgba(13,28,22,.48);
  backdrop-filter: blur(12px);
}
.hero-facts dt {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 2.05rem);
  font-weight: 700;
  line-height: .96;
}
.hero-facts dd {
  margin: 9px 0 0;
  color: rgba(255,255,255,.82);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.proof-strip {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  min-height: 96px;
  padding: 24px max(22px, calc((100vw - var(--max)) / 2));
  background: var(--green);
  color: var(--cream);
  scrollbar-width: none;
}
.proof-strip::-webkit-scrollbar { display: none; }
.proof-strip span {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  flex: 0 0 auto;
  padding: 12px 16px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.proof-strip span:hover {
  transform: translateY(-2px);
  border-color: rgba(205,169,109,.7);
  background: rgba(205,169,109,.12);
  box-shadow: 0 14px 36px rgba(0,0,0,.16), inset 0 0 18px rgba(205,169,109,.13);
}

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) 0;
}
.hero[id],
.section[id] {
  scroll-margin-top: 96px;
}
.intro-section,
.reservation-section,
.business-section,
.founders-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(330px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}
.section-copy p,
.section-heading p,
.restaurant-copy p,
.reservation-card p,
.app-card p,
.contact-panel p,
.map-card p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.section-copy strong,
.restaurant-copy strong,
.reservation-card strong,
.app-card strong,
.image-band-copy strong {
  color: var(--green);
}
.text-justify,
.path-card p,
.service-card p,
.restaurant-copy p,
.business-section .section-copy p {
  text-align: justify;
}
.compact-copy {
  max-width: 62ch;
}
.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}
.visual-stack,
.business-visual,
.founders-image {
  position: relative;
}
.visual-stack picture {
  display: block;
}
.visual-stack img,
.business-visual img,
.founders-image,
.image-band > img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.metric-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(250px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(205,169,109,.56);
  border-radius: 8px;
  background: rgba(31,62,48,.92);
  color: var(--cream);
}
.metric-panel strong {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: .85;
}
.metric-panel span {
  display: block;
  margin-top: 8px;
  font-weight: 700;
}

.paths-section,
.services-section,
.pricing-section,
.faq-section {
  width: min(var(--max), calc(100% - 44px));
}
.path-grid,
.service-grid,
.pricing-grid {
  display: grid;
  gap: 14px;
}
.path-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.path-card,
.service-card,
.price-card,
.reservation-card,
.app-card,
.menu-preview,
.contact-panel,
.map-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(13,28,22,.08);
}
.path-card,
.service-card,
.price-card {
  min-height: 218px;
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card {
  display: grid;
  align-content: center;
}
.path-card:hover,
.service-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.path-card span {
  color: var(--terracotta);
  font-weight: 900;
  letter-spacing: .12em;
}
.path-card h3,
.service-card h3,
.price-card h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-size: 2rem;
}
.path-card p,
.service-card p,
.price-card p {
  color: var(--muted);
  line-height: 1.55;
  font-size: .94rem;
}
.path-card a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.reservation-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(72px, 9vw, 118px) max(22px, calc((100vw - var(--max)) / 2));
  background: var(--green);
}
.reservation-card,
.app-card {
  background: var(--cream);
  padding: clamp(26px, 4vw, 48px);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.reservation-section {
  align-items: stretch;
}
.reservation-section > * {
  height: 100%;
}
.reservation-card h2 { color: var(--green); }
.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.booking-steps div {
  min-height: 104px;
  padding: 14px;
  border-radius: 8px;
  background: #fff;
}
.booking-steps strong {
  display: block;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: .85;
}
.booking-steps span {
  display: block;
  margin-top: 10px;
  color: var(--green);
  font-weight: 800;
}
.app-card {
  text-align: center;
}
.app-card p {
  text-align: justify;
  text-align-last: left;
}
.app-card img {
  width: min(265px, 82%);
  height: 196px;
  object-fit: contain;
  margin: 0 auto 14px;
}
.app-card h3 {
  font-family: var(--serif);
  font-size: 2.5rem;
}
.store-badge {
  display: grid;
  width: 180px;
  min-height: 58px;
  margin: 0;
  padding: 10px 16px;
  border-radius: 7px;
  background: #080808;
  color: #fff;
  text-align: left;
}
.store-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 22px;
}
.store-badge small { color: rgba(255,255,255,.78); font-size: .68rem; }
.store-badge strong { color: #fff; font-size: 1.25rem; line-height: 1; }
.app-store { opacity: .92; }

.image-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  background: var(--brown);
}
.image-band > img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.image-band-copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 76px);
  color: var(--cream);
}
.image-band-copy h2 { color: var(--cream); }
.image-band-copy p:not(.eyebrow) {
  color: rgba(242,232,216,.78);
  line-height: 1.75;
  max-width: 47ch;
  text-align: justify;
}
.image-band-copy strong { color: var(--gold); }

.restaurant-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(330px, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}
.menu-preview {
  display: grid;
  gap: 12px;
  padding: 18px;
}
.menu-preview article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  min-height: 92px;
  padding: 18px;
  border-radius: 8px;
  background: var(--cream);
}
.menu-preview span {
  grid-column: 1 / -1;
  color: var(--terracotta);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu-preview strong { color: var(--green); }
.menu-preview em {
  color: var(--brown);
  font-style: normal;
  font-weight: 900;
}

.business-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(72px, 9vw, 126px) max(22px, calc((100vw - var(--max)) / 2));
  background: var(--green);
  color: var(--cream);
}
.business-section h2 { color: var(--cream); }
.business-section .section-copy p,
.business-section .check-list { color: rgba(242,232,216,.76); }
.business-section .section-copy strong { color: var(--gold); }
.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 24px;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.founders-section {
  grid-template-columns: minmax(0, .95fr) minmax(300px, .72fr);
  align-items: center;
}
.founders-picture {
  display: block;
  position: relative;
}
.founders-image {
  aspect-ratio: 8 / 9;
  object-fit: cover;
  object-position: center;
}

.pricing-section {
  text-align: left;
}
.price-action,
.price-card > strong {
  display: inline-flex;
  margin-top: auto;
  color: var(--terracotta);
  font-size: 1.35rem;
  font-weight: 900;
  text-decoration: none;
}
.price-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 330px;
}
.price-card.featured {
  background: var(--green);
  color: var(--cream);
}
.price-card.featured h3,
.price-card.featured .price-action,
.price-card.featured strong { color: var(--gold); }
.price-card.featured p { color: rgba(242,232,216,.78); }
.price-list {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.price-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .46em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}
.price-card.featured .price-list li {
  color: rgba(242,232,216,.78);
}
.price-card.featured .price-list li::before {
  background: var(--gold);
}
.price-action {
  align-items: center;
  min-height: 44px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.price-card.featured .price-action {
  border-top-color: rgba(242,232,216,.22);
}
.terrain-intro strong {
  color: var(--green);
  font-weight: 900;
}
.tariff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.tariff-grid div {
  min-height: 112px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-color: var(--cream);
  background-image: linear-gradient(180deg, #fff8ed 0%, var(--cream) 100%);
  box-shadow: inset 0 0 0 1px rgba(205,169,109,.18), 0 10px 24px rgba(13,28,22,.06);
  display: grid;
  place-items: center;
  text-align: center;
}
.tariff-grid span,
.tariff-grid small {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}
.tariff-grid strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 2.35rem;
  line-height: .9;
}
.tariff-note {
  margin-top: 0;
  padding-top: 2px;
  font-size: .76rem !important;
  line-height: 1.42 !important;
}
.tariff-note span {
  display: block;
}
.tariff-note span + span {
  margin-top: .42rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  padding: 0;
  overflow: hidden;
}
.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--green);
  font-weight: 900;
  cursor: pointer;
}
.faq-list summary::after {
  content: "+";
  color: var(--terracotta);
  font-size: 1.55rem;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.72;
}

.contact-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(72px, 9vw, 118px) max(22px, calc((100vw - var(--max)) / 2));
  background: var(--cream);
  align-items: stretch;
}
.contact-panel,
.map-card {
  padding: clamp(26px, 4vw, 44px);
  min-height: 100%;
}
.contact-panel {
  display: grid;
  align-content: center;
}
.contact-panel address {
  margin-top: 22px;
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.45;
}
.map-card {
  min-height: 360px;
  display: grid;
  align-content: center;
  background:
    linear-gradient(rgba(31,62,48,.9), rgba(31,62,48,.9)),
    url("assets/img/hero-exterieur-sm.webp") center/cover;
  color: var(--cream);
}
.map-card-logo {
  width: 136px;
  height: 136px;
  object-fit: contain;
  margin: 0 auto 24px;
}
.map-card > strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: .9;
}
.map-card span {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
}
.map-card p {
  max-width: 54ch;
  color: rgba(242,232,216,.82);
  text-align: justify;
}
.map-card p strong {
  color: var(--gold);
  font-weight: 900;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.social-links a {
  position: relative;
  overflow: hidden;
  padding: 8px 11px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  transition: transform .22s ease, color .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}
.social-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(205,169,109,.28), rgba(242,232,216,.12));
  opacity: 0;
  transform: scale(.88);
  transition: opacity .22s ease, transform .22s ease;
}
.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(205,169,109,.78);
  color: #fff;
  background-color: rgba(255,255,255,.08);
  box-shadow: 0 14px 30px rgba(13,28,22,.22);
}
.social-links a:hover::before,
.social-links a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.menu-dialog {
  width: min(1040px, calc(100% - 28px));
  max-height: min(850px, calc(100vh - 28px));
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(205,169,109,.55);
  border-radius: 8px;
  background: var(--cream-soft);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.menu-dialog::backdrop {
  background: rgba(13,28,22,.72);
  backdrop-filter: blur(8px);
}
.dialog-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  font-size: 1.5rem;
}
.dialog-intro { color: var(--muted); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.menu-grid section {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.menu-grid h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 1.75rem;
}
.menu-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-grid li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: .9rem;
}
.menu-grid li strong {
  color: var(--brown);
  white-space: nowrap;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(190px, .65fr) minmax(260px, .9fr);
  align-items: start;
  gap: clamp(24px, 5vw, 72px);
  padding: 54px max(22px, calc((100vw - var(--max)) / 2)) 104px;
  border-top: 1px solid rgba(205,169,109,.28);
  background:
    radial-gradient(circle at 82% 18%, rgba(205,169,109,.18), transparent 26rem),
    linear-gradient(135deg, rgba(31,62,48,.98), rgba(13,28,22,.98));
  color: rgba(242,232,216,.72);
}
.site-footer img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}
.site-footer .footer-brand p {
  max-width: 58ch;
  font-size: .72rem;
  line-height: 1.45;
}
.footer-nav {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-nav a {
  font-size: .88rem;
  line-height: 1.35;
}
.site-footer a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-footer p {
  margin: 12px 0 0;
  line-height: 1.65;
}
.footer-cta {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(242,232,216,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
}
.footer-cta strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: .96;
  white-space: nowrap;
}
.footer-cta p {
  margin: 0;
  font-size: .68rem;
  line-height: 1.38;
}
.footer-cta p a {
  font-size: .68rem;
}
.back-to-top {
  grid-column: 1 / -1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green) !important;
  font-size: 1.06rem;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.back-to-top:hover {
  transform: translateY(-2px);
  background: #ddbb79;
  box-shadow: 0 20px 42px rgba(0,0,0,.22);
}

.simple-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  background: var(--green);
  color: #fff;
}
.legal-page,
.not-found-page {
  background: var(--cream-soft);
}
.legal-content {
  width: min(900px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}
.legal-content h1,
.not-found h1 {
  color: var(--green);
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  line-height: .9;
}
.legal-content section {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.legal-content h2 {
  font-family: var(--sans);
  color: var(--green);
  font-size: 1.2rem;
  line-height: 1.2;
}
.legal-content p {
  color: var(--muted);
  line-height: 1.75;
}
.legal-content a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.not-found {
  width: min(720px, calc(100% - 44px));
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
  margin: 0 auto;
  padding: 60px 0;
}
.not-found img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}
.not-found p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.mobile-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 48;
  width: min(220px, calc(100% - 28px));
  min-height: 52px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 18px 48px rgba(13,28,22,.3);
  transition: opacity .22s ease, transform .22s ease;
}
.mobile-cta.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 82px 12px auto;
    z-index: 70;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(205,169,109,.4);
    border-radius: 8px;
    background: rgba(31,62,48,.98);
    color: #fff;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-bottom: 1px solid rgba(242,232,216,.12);
    color: #fff;
    opacity: 1;
  }
  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }
  .intro-section,
  .reservation-section,
  .business-section,
  .founders-section,
  .contact-section,
  .restaurant-section,
  .image-band {
    grid-template-columns: 1fr;
  }
  .path-grid,
  .service-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .image-band > img { min-height: 330px; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 74px;
    padding: 12px;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .brand span { font-size: 1rem; }
  .site-nav { inset: 74px 12px auto; }
  .hero {
    min-height: 82vh;
    align-items: end;
  }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(13,28,22,.92), rgba(13,28,22,.32)),
      linear-gradient(90deg, rgba(13,28,22,.84), rgba(13,28,22,.2));
  }
  .hero-inner {
    width: min(100% - 24px, var(--max));
    padding: 92px 0 34px;
  }
  h1 {
    font-size: clamp(2.26rem, 10.6vw, 2.95rem);
    line-height: .9;
  }
  h1 .h1-kicker { font-size: .46em; }
  h2 {
    font-size: clamp(2.35rem, 12.5vw, 3.6rem);
    line-height: .95;
  }
  .hero-lead {
    font-size: .98rem;
    line-height: 1.58;
    text-align: left;
  }
  .text-justify,
  .path-card p,
  .service-card p,
  .restaurant-copy p,
  .business-section .section-copy p,
  .image-band-copy p:not(.eyebrow) {
    text-align: left;
  }
  .button,
  .contact-actions .button {
    width: 100%;
  }
  .reservation-card .inline-actions {
    grid-template-columns: 1fr;
  }
  .contact-actions .button {
    font-size: .7rem;
    padding-right: 8px;
    padding-left: 8px;
  }
  .contact-actions .button.secondary {
    font-size: .62rem;
  }
  .contact-actions {
    grid-template-columns: .72fr 1.28fr;
  }
  .hero-facts,
  .booking-steps,
  .path-grid,
  .service-grid,
  .pricing-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .hero-facts {
    gap: 8px;
    margin-top: 28px;
  }
  .hero-facts div { min-height: 84px; }
  .proof-strip {
    min-height: 90px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .section,
  .paths-section,
  .services-section,
  .pricing-section,
  .faq-section {
    width: min(100% - 24px, var(--max));
    padding: 66px 0;
  }
  .reservation-section,
  .business-section,
  .contact-section {
    padding: 66px 12px;
  }
  .path-card,
  .service-card,
  .price-card {
    min-height: auto;
  }
  .pricing-grid .price-card {
    min-height: 392px;
  }
  .footer-cta strong {
    font-size: 1.28rem;
  }
  .metric-panel {
    position: static;
    width: 100%;
    margin-top: 10px;
  }
  .menu-preview article {
    grid-template-columns: 1fr;
  }
  .mobile-cta { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .ambient-bg { animation: none !important; }
}
