:root {
  --ink: #11100f;
  --ink-soft: #191714;
  --surface: #211e1a;
  --surface-raised: #2a251f;
  --paper: #f3eee5;
  --paper-muted: #c8bdb0;
  --accent: #d7a865;
  --accent-strong: #e8bd7d;
  --accent-ink: #21170b;
  --line: rgba(232, 189, 125, 0.22);
  --line-light: rgba(243, 238, 229, 0.14);
  --danger: #ff9586;
  --success: #9bcba5;
  --font-display: "Snell Roundhand", "URW Chancery L", "Segoe Script", "Apple Chancery", cursive;
  --font-editorial: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --radius: 16px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --header-height: 76px;
  --z-header: 30;
  --z-dialog: 100;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

body.is-locked { overflow: hidden; }

button, input { font: inherit; }
button, a { touch-action: manipulation; }
a { color: inherit; }
img { display: block; max-width: 100%; }
figure, h1, h2, p { margin: 0; }

h1, h2, .brand-name {
  font-family: var(--font-display);
  font-weight: 400;
}

.benefit-number, .menu-price strong {
  font-family: var(--font-editorial);
  font-weight: 400;
}

h1, h2 {
  padding-bottom: 0.08em;
  line-height: 1.08;
  text-wrap: balance;
}

.heading-lines > span { display: block; white-space: nowrap; }

:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  transition: transform 160ms var(--ease-out);
}

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

.section-shell {
  width: min(100% - 48px, 1360px);
  margin-inline: auto;
}

.hero-copy, .story-copy, .story-image, .menu-photo, .menu-copy, .turnkey-image, .service-list,
.testimonial-copy, .testimonial-image, .reservation-heading, .reservation-form {
  min-width: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px clamp(24px, 4vw, 72px);
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(17, 16, 15, 0.84), rgba(17, 16, 15, 0));
  transition: background-color 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-light);
  background: rgba(17, 16, 15, 0.9);
  backdrop-filter: blur(18px) saturate(125%);
}

.brand {
  width: max-content;
  display: grid;
  justify-items: center;
  color: var(--paper);
  text-decoration: none;
  line-height: 1;
}

.brand-kicker, .brand-note {
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-name {
  margin: 3px 0 5px;
  padding: 0 0.14em 0.1em;
  font-size: 2.15rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
}

.site-nav a, .header-phone {
  position: relative;
  color: rgba(243, 238, 229, 0.8);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav a::after, .header-phone::after, .text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease-out);
}

.header-phone { color: var(--accent-strong); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  overflow: hidden;
  isolation: isolate;
}

.hero-copy {
  z-index: 2;
  align-self: center;
  padding: calc(var(--header-height) + 60px) clamp(24px, 6.5vw, 112px) 90px;
}

.eyebrow, .section-index {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero-address {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.hero-address svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}
.hero-address a { text-decoration-color: rgba(232, 189, 125, 0.45); text-underline-offset: 5px; }

.hero h1 {
  max-width: 720px;
  margin-top: 22px;
  font-size: clamp(4rem, 6.1vw, 6.9rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.hero h1 span { display: block; white-space: nowrap; }

.hero-lead {
  max-width: 510px;
  margin-top: 28px;
  color: var(--paper-muted);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:active { transform: scale(0.97); }

.button-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-quiet {
  border-color: var(--line-light);
  background: transparent;
  color: var(--paper);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  font-weight: 650;
  text-decoration: none;
}

.text-link span { color: var(--accent-strong); }

.hero-media {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
}

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

.hero-media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(17, 16, 15, 0.38) 32%, rgba(17, 16, 15, 0.06) 65%),
    linear-gradient(0deg, rgba(17, 16, 15, 0.4), transparent 44%);
}

.hero-fact {
  position: absolute;
  right: clamp(24px, 4vw, 72px);
  bottom: 38px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(243, 238, 229, 0.22);
  border-radius: var(--radius);
  background: rgba(17, 16, 15, 0.56);
  backdrop-filter: blur(18px) saturate(125%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.hero-fact strong {
  color: var(--accent-strong);
  font-family: "Iowan Old Style", Baskerville, serif;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
}

.hero-fact span { font-size: 0.74rem; line-height: 1.35; }

.benefits {
  width: min(100% - 48px, 1360px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit {
  min-height: 270px;
  padding: 42px 30px 38px 0;
}

.benefit + .benefit {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.benefit-number {
  display: block;
  margin-bottom: 34px;
  color: var(--accent-strong);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1;
}

.benefit h2 { font-size: 1.05rem; font-family: inherit; font-weight: 700; }
.benefit p { max-width: 250px; margin-top: 12px; color: var(--paper-muted); font-size: 0.9rem; }

.story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.3fr);
  gap: clamp(48px, 6vw, 96px);
  padding-block: clamp(100px, 13vw, 190px);
}

.story-copy { align-self: center; padding-left: clamp(0px, 4vw, 64px); }
.story-copy h2 { margin-top: 28px; font-size: clamp(3rem, 4.75vw, 5.6rem); line-height: 1.07; letter-spacing: -0.018em; }
.story-copy > p:not(.section-index) { max-width: 460px; margin-top: 34px; color: var(--paper-muted); font-size: 1.05rem; }
.story-copy .text-link { margin-top: 30px; }

.story-image {
  height: min(72vw, 900px);
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
}

.story-image img, .story-detail img, .gallery-item img, .menu-photo img, .turnkey-image img, .testimonial-image img, .contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-detail {
  position: absolute;
  right: 7%;
  bottom: 8%;
  width: clamp(190px, 22vw, 350px);
  aspect-ratio: 1 / 0.84;
  overflow: hidden;
  border: 8px solid var(--ink);
  border-radius: var(--radius);
}

.gallery { padding-bottom: clamp(100px, 13vw, 180px); }

.section-heading { max-width: 850px; margin-bottom: 56px; }
.section-heading h2 { font-size: clamp(2.8rem, 4.8vw, 5.3rem); line-height: 1.07; letter-spacing: -0.018em; }
.section-heading p { max-width: 600px; margin-top: 24px; color: var(--paper-muted); font-size: 1.05rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  grid-template-rows: minmax(260px, 430px) minmax(260px, 430px);
  gap: 16px;
}

.gallery-item { overflow: hidden; border-radius: var(--radius); }
.gallery-main { grid-row: 1 / 3; }
.gallery-tall img { object-position: center 63%; }
.gallery-wide img { object-position: center 58%; }

.menu-section {
  width: min(100% - 48px, 1360px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.menu-photo { min-height: 680px; overflow: hidden; }
.menu-photo img { object-position: center; }

.menu-copy {
  align-self: center;
  padding: clamp(48px, 8vw, 116px);
}

.menu-copy h2 { margin-top: 24px; font-size: clamp(3rem, 4.9vw, 5.5rem); line-height: 1.07; letter-spacing: -0.018em; }
.menu-copy > p { max-width: 470px; margin-top: 28px; color: var(--paper-muted); }

.menu-price {
  display: grid;
  margin-block: 46px 36px;
  padding-block: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-price span, .menu-price small { color: var(--paper-muted); }
.menu-price strong { margin-block: 10px 4px; color: var(--accent-strong); font-size: clamp(3.4rem, 6vw, 5.7rem); font-variant-numeric: tabular-nums; line-height: 0.9; white-space: nowrap; }

.turnkey { padding-block: clamp(110px, 14vw, 190px); }
.turnkey-copy { max-width: 720px; margin-bottom: 60px; }
.turnkey-copy h2 { font-size: clamp(3.2rem, 5.6vw, 6.2rem); line-height: 1.06; letter-spacing: -0.018em; }
.turnkey-copy p { max-width: 560px; margin-top: 24px; color: var(--paper-muted); font-size: 1.08rem; }

.turnkey-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.turnkey-image { height: min(66vw, 820px); overflow: hidden; border-radius: var(--radius); }
.turnkey-image img { object-position: center; }

.service-list { border-top: 1px solid var(--line); }
.service { padding: 30px 0; border-bottom: 1px solid var(--line); }
.service span { font-size: 1.05rem; font-weight: 700; }
.service p { max-width: 390px; margin-top: 8px; color: var(--paper-muted); font-size: 0.92rem; }

.testimonial {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 760px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.testimonial-copy {
  align-self: center;
  padding: clamp(46px, 7vw, 100px);
}

.testimonial-copy h2 { margin-top: 30px; font-family: var(--font-editorial); font-size: clamp(2.3rem, 4.1vw, 4.5rem); line-height: 1.08; letter-spacing: -0.025em; }
.testimonial-copy > p:not(.section-index) { margin-top: 32px; color: var(--paper-muted); }
.stars { margin-top: 12px; color: var(--accent-strong); letter-spacing: 0.16em; }
.testimonial-image { min-height: 760px; overflow: hidden; }

.reservation {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(52px, 10vw, 150px);
  padding-block: clamp(110px, 15vw, 210px);
}

.reservation-heading h2 { margin-top: 24px; font-size: clamp(3.2rem, 5.4vw, 5.9rem); line-height: 1.07; letter-spacing: -0.018em; }
.reservation-heading > p:not(.eyebrow) { max-width: 470px; margin-top: 28px; color: var(--paper-muted); }

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 18px;
  align-content: start;
}

.reservation-form .field:first-of-type { grid-column: 1 / -1; }

.field { display: grid; gap: 8px; }
.field label, fieldset legend { color: var(--paper-muted); font-size: 0.82rem; font-weight: 650; }

.field input:not([type="range"]) {
  width: 100%;
  min-height: 56px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(243, 238, 229, 0.32);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font-size: 1.03rem;
  transition: border-color 180ms ease;
}

.field input::placeholder { color: rgba(243, 238, 229, 0.55); }
.field input:focus { border-color: var(--accent-strong); }
.field input[aria-invalid="true"] { border-color: var(--danger); }
.field-error { min-height: 1.25em; color: var(--danger); font-size: 0.78rem; }

.reservation-form .submit-button { align-self: end; justify-self: start; }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip-path: inset(50%) !important; opacity: 0 !important; pointer-events: none !important; }
.consent-field { grid-column: 1 / -1; max-width: 640px; }
.consent-field label { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; color: var(--paper-muted); font-size: 0.78rem; line-height: 1.5; cursor: pointer; }
.consent-field input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--accent); }
.consent-field input[aria-invalid="true"] { outline: 2px solid var(--danger); outline-offset: 2px; }
.consent-field a { color: var(--paper); text-underline-offset: 3px; }
.consent-field .field-error { display: block; margin: 4px 0 0 31px; }
.form-status { grid-column: 1 / -1; min-height: 1.5em; font-weight: 650; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--danger); }

.button-loading { display: none; }
.submit-button.is-loading .button-label { display: none; }
.submit-button.is-loading .button-loading { display: inline; }
.submit-button:disabled { cursor: wait; opacity: 0.72; }

.contacts { padding: clamp(90px, 12vw, 170px) 0 0; background: var(--surface); }
.contact-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.contact-intro h2 { max-width: 900px; font-size: clamp(3.4rem, 6.4vw, 7rem); line-height: 1.04; letter-spacing: -0.02em; }
.contact-intro p { padding-bottom: 10px; color: var(--paper-muted); white-space: nowrap; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 1fr 1.15fr;
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.contact-block { display: grid; align-content: start; gap: 8px; padding: 32px 24px 42px 0; }
.contact-block + .contact-block { padding-left: 24px; border-left: 1px solid var(--line); }
.contact-block span { margin-bottom: 12px; color: var(--paper-muted); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.14em; }
.contact-block a, .contact-block p { width: max-content; font-size: 1.03rem; text-underline-offset: 4px; }

.contact-image { width: min(100% - 48px, 1360px); height: min(65vw, 760px); margin-inline: auto; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.contact-image img { object-position: center 30%; }

.site-footer {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 38px clamp(24px, 4vw, 72px);
  border-top: 1px solid var(--line-light);
  background: var(--surface);
  color: var(--paper-muted);
  font-size: 0.8rem;
}

.footer-brand { justify-self: start; color: var(--paper); }
.site-footer > a:last-child { justify-self: end; }
.footer-copy { max-width: 720px; display: grid; gap: 3px; text-align: center; }
.footer-copy p:last-child { color: rgba(200, 189, 176, 0.72); font-size: 0.72rem; }

.quote-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(232, 189, 125, 0.26);
  border-radius: var(--radius);
  background: var(--surface-raised);
  color: var(--paper);
  opacity: 1;
  transform: scale(1);
  transform-origin: center;
  transition: opacity 250ms var(--ease-out), transform 250ms var(--ease-out), display 250ms allow-discrete, overlay 250ms allow-discrete;
}

.quote-dialog::backdrop {
  background: rgba(9, 8, 7, 0.78);
  backdrop-filter: blur(8px);
  transition: opacity 250ms var(--ease-out), display 250ms allow-discrete, overlay 250ms allow-discrete;
}

.quote-dialog[data-closing] { opacity: 0; transform: scale(0.96); }
.quote-dialog[data-closing]::backdrop { opacity: 0; }

@starting-style {
  .quote-dialog[open] { opacity: 0; transform: scale(0.96); }
  .quote-dialog[open]::backdrop { opacity: 0; }
}

.dialog-panel { position: relative; padding: clamp(30px, 6vw, 64px); }
.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 180ms ease;
}
.dialog-close:active { transform: scale(0.97); }
.dialog-close span { position: absolute; top: 22px; left: 13px; width: 19px; height: 1px; background: currentColor; }
.dialog-close span:first-child { transform: rotate(45deg); }
.dialog-close span:last-child { transform: rotate(-45deg); }

.dialog-heading { padding-right: 50px; }
.dialog-heading h2 { max-width: 560px; margin-top: 18px; font-size: clamp(2.5rem, 5.6vw, 4.4rem); line-height: 1.07; letter-spacing: -0.018em; }
.dialog-heading > p:last-child { max-width: 530px; margin-top: 18px; color: var(--paper-muted); }

.quote-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 18px; margin-top: 40px; }
.event-types { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; border: 0; }
.event-types legend { width: 100%; margin-bottom: 3px; }
.event-types input { position: absolute; opacity: 0; pointer-events: none; }
.event-types span { min-height: 44px; display: inline-flex; align-items: center; padding: 10px 15px; border: 1px solid var(--line-light); border-radius: 999px; cursor: pointer; color: var(--paper-muted); transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 160ms var(--ease-out); }
.event-types input:focus-visible + span { outline: 2px solid var(--accent-strong); outline-offset: 3px; }
.event-types input:checked + span { border-color: var(--accent); background: var(--accent); color: var(--accent-ink); }
.event-types label:active span { transform: scale(0.97); }

.range-field { grid-column: 1 / -1; }
.range-field label { display: flex; justify-content: space-between; }
.range-field output { color: var(--accent-strong); font-size: 1.15rem; font-variant-numeric: tabular-nums; }
.range-field input { width: 100%; accent-color: var(--accent); }
.range-limits { display: flex; justify-content: space-between; color: var(--paper-muted); font-size: 0.75rem; }
.quote-form .submit-button { justify-self: start; }
.quote-form .consent-field, .quote-form .form-status { grid-column: 1 / -1; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.image-reveal {
  overflow: hidden;
}

.image-reveal img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 900ms var(--ease-in-out);
}

.image-reveal.is-visible img { clip-path: inset(0 0 0 0); }

.hero-copy > * { opacity: 0; transform: translateY(14px); }

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: hero-enter 700ms var(--ease-out) forwards; }
  .hero-copy > *:nth-child(2) { animation-delay: 60ms; }
  .hero-copy > *:nth-child(3) { animation-delay: 110ms; }
  .hero-copy > *:nth-child(4) { animation-delay: 160ms; }

  @supports (animation-timeline: view()) {
    .hero-media img {
      animation: hero-parallax linear both;
      animation-timeline: view();
      animation-range: exit 0% exit 100%;
    }
  }
}

@keyframes hero-enter { to { opacity: 1; transform: translateY(0); } }
@keyframes hero-parallax { to { transform: scale(1.035) translateY(7%); } }

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover, .header-phone:hover { color: var(--paper); }
  .site-nav a:hover::after, .header-phone:hover::after, .text-link:hover::after { transform: scaleX(1); transform-origin: left; }
  .button-primary:hover { background: var(--accent-strong); }
  .button-quiet:hover, .dialog-close:hover { background: rgba(243, 238, 229, 0.08); }
  .gallery-item img, .story-image img, .turnkey-image img, .contact-image img { transition: transform 700ms var(--ease-out), clip-path 900ms var(--ease-in-out); }
  .gallery-item:hover img, .story-image:hover img, .turnkey-image:hover img, .contact-image:hover img { transform: scale(1.025); }
}

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 190px 1fr auto; gap: 18px; }
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 0.72rem; }
  .header-phone { display: none; }
  .hero-copy { padding-left: 48px; padding-right: 30px; }
  .benefit { padding-right: 20px; }
  .benefit + .benefit { padding-left: 20px; }
}

@media (max-width: 880px) {
  :root { --header-height: 68px; }
  .section-shell, .benefits, .menu-section, .contact-image { width: min(100% - 32px, 1360px); }

  .site-header { grid-template-columns: 1fr auto; padding: 8px 16px; background: rgba(17, 16, 15, 0.9); backdrop-filter: blur(16px); }
  .brand-name { margin-block: 2px 4px; font-size: 1.75rem; }
  .brand-kicker, .brand-note { font-size: 0.5rem; }

  .menu-toggle {
    position: relative;
    width: 48px;
    height: 48px;
    display: block;
    border: 1px solid var(--line-light);
    border-radius: 999px;
    background: transparent;
    color: var(--paper);
    cursor: pointer;
    transition: transform 160ms var(--ease-out), background-color 180ms ease;
  }
  .menu-toggle:active { transform: scale(0.97); }
  .menu-toggle span { position: absolute; right: 13px; width: 20px; height: 1px; background: currentColor; transition: transform 180ms var(--ease-out); }
  .menu-toggle span:first-child { transform: translateY(-4px); }
  .menu-toggle span:last-child { transform: translateY(4px); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 12px 16px 24px;
    border-bottom: 1px solid var(--line-light);
    background: rgba(17, 16, 15, 0.97);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
  }
  .site-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav.is-instant { transition-duration: 0ms; }
  .site-nav a { width: 100%; padding: 14px 2px; border-bottom: 1px solid var(--line-light); font-size: 0.95rem; }

  .hero { min-height: 100dvh; grid-template-columns: 1fr; grid-template-rows: 1fr; }
  .hero-copy { align-self: end; padding: calc(var(--header-height) + 80px) 20px 46px; }
  .hero h1 { max-width: 680px; font-size: clamp(3.4rem, 10.5vw, 5.8rem); }
  .hero-lead { max-width: 430px; }
  .hero-media { position: absolute; inset: 0; min-height: 100%; z-index: -1; }
  .hero-media-shade { background: linear-gradient(0deg, rgba(17, 16, 15, 0.98) 4%, rgba(17, 16, 15, 0.58) 52%, rgba(17, 16, 15, 0.25) 100%); }
  .hero-fact { display: none; }

  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .benefit:nth-child(4) { border-top: 1px solid var(--line); }

  .story { grid-template-columns: 1fr; gap: 44px; }
  .story-copy { padding-left: 0; }
  .story-image { height: 110vw; min-height: 520px; }
  .story-detail { bottom: 5%; right: 4%; width: 42vw; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 65vw 45vw; }
  .gallery-main { grid-column: 1 / -1; grid-row: auto; }

  .menu-section { grid-template-columns: 1fr; }
  .menu-photo { min-height: 0; height: 105vw; max-height: 780px; }
  .menu-copy { padding: 48px 28px 56px; }

  .turnkey-layout { grid-template-columns: 1fr; }
  .turnkey-image { height: 74vw; min-height: 440px; }
  .service-list { display: grid; grid-template-columns: 1fr 1fr; }
  .service:nth-child(odd) { padding-right: 24px; }
  .service:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }

  .testimonial { grid-template-columns: 1fr; min-height: 0; }
  .testimonial-image { min-height: 0; height: 100vw; max-height: 760px; }

  .reservation { grid-template-columns: 1fr; }
  .contact-intro { display: grid; }
  .contact-intro p { padding-bottom: 0; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-block:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .contact-block:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .hero-copy { padding-inline: 16px; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 4.5rem); line-height: 1.02; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 30px; }

  .benefits { grid-template-columns: 1fr; }
  .benefit { min-height: 0; padding: 34px 0; }
  .benefit + .benefit { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .benefit-number { margin-bottom: 22px; }

  .story, .gallery, .turnkey, .reservation { padding-block: 88px; }
  .section-heading h2 { font-size: 2.35rem; }
  .story-copy h2 { font-size: 2.8rem; }
  .story-image { min-height: 0; height: 125vw; }
  .story-detail { width: 48vw; border-width: 5px; }

  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-item { aspect-ratio: 1 / 1; }
  .gallery-main { grid-column: auto; }

  .menu-photo { height: 125vw; }
  .menu-copy h2 { font-size: 2.5rem; }
  .menu-price strong { font-size: 3rem; }

  .turnkey-copy { margin-bottom: 38px; }
  .turnkey-image { height: 100vw; min-height: 0; }
  .service-list { grid-template-columns: 1fr; }
  .service:nth-child(odd), .service:nth-child(even) { padding-inline: 0; border-left: 0; }

  .testimonial-copy { padding: 44px 24px 52px; }
  .testimonial-copy h2 { font-size: 2.1rem; }
  .testimonial-image { height: 122vw; }

  .reservation { gap: 48px; }
  .reservation-heading h2 { font-size: 2.8rem; }
  .reservation-form { grid-template-columns: 1fr; }
  .reservation-form .field:first-of-type, .consent-field, .form-status { grid-column: auto; }

  .contact-intro h2 { font-size: 3.45rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-block + .contact-block, .contact-block:last-child { grid-column: auto; padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .contact-image { height: 108vw; }

  .site-footer { grid-template-columns: 1fr; justify-items: start; min-height: 260px; }
  .site-footer > a:last-child { justify-self: start; }
  .footer-copy { text-align: left; }

  .quote-form { grid-template-columns: 1fr; }
  .event-types, .range-field, .quote-form .consent-field, .quote-form .form-status { grid-column: auto; }
  .dialog-panel { padding: 28px 20px 36px; }
  .dialog-heading { padding-right: 40px; }
  .dialog-heading h2 { font-size: 2.7rem; }

}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .hero-copy > *, .reveal { opacity: 1; transform: none; }
  .image-reveal img { clip-path: none; transition: opacity 200ms ease; }
  .site-nav { transform: none; }
  .hero-media img { transform: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled, .hero-fact { backdrop-filter: none; background: var(--ink-soft); }
  .quote-dialog::backdrop { backdrop-filter: none; }
}

.legal-page { background: var(--ink); }
.legal-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line-light);
}
.legal-shell { width: min(100% - 40px, 900px); margin: 0 auto; padding: clamp(72px, 10vw, 130px) 0; }
.legal-shell > h1 { max-width: 850px; margin-top: 18px; font-size: clamp(3.2rem, 8vw, 6.8rem); line-height: 1.08; }
.legal-lead { max-width: 710px; margin: 56px 0 72px; color: var(--paper-muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.legal-shell section { padding: 38px 0; border-top: 1px solid var(--line); }
.legal-shell section h2 { margin-bottom: 18px; font-family: var(--font-editorial); font-size: clamp(1.65rem, 3vw, 2.3rem); }
.legal-shell section p, .legal-shell section li { color: var(--paper-muted); }
.legal-shell section p + p { margin-top: 14px; }
.legal-shell section ul { display: grid; gap: 10px; padding-left: 22px; }
.legal-shell section a, .legal-footer a { color: var(--paper); text-underline-offset: 4px; }
.legal-footer { display: flex; justify-content: space-between; gap: 24px; padding: 34px clamp(20px, 5vw, 72px); border-top: 1px solid var(--line-light); background: var(--surface); color: var(--paper-muted); }

@media (max-width: 620px) {
  .legal-header { min-height: 78px; }
  .legal-header .text-link { font-size: 0.78rem; }
  .legal-shell { width: min(100% - 32px, 900px); padding-block: 64px 80px; }
  .legal-shell > h1 { font-size: 3.1rem; }
  .legal-lead { margin-bottom: 54px; }
  .legal-footer { display: grid; }
}
