/* 00-tokens.css */
:root {
  --font-display: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;

  --ivory: #f6f1eb;
  --ivory-deep: #ece4dc;
  --paper: #fffdf9;
  --ink: #12182b;
  --ink-soft: #283148;
  --wine: #57213c;
  --wine-dark: #3f172d;
  --copper: #c97c57;
  --copper-soft: #dda98e;
  --muted: #6d6d72;
  --line: rgba(18, 24, 43, 0.14);
  --white-line: rgba(255, 255, 255, 0.25);

  --shadow-sm: 0 10px 30px rgba(18, 24, 43, 0.08);
  --shadow-lg: 0 26px 68px rgba(18, 24, 43, 0.14);

  --radius-sm: 0.75rem;
  --radius-md: 1.15rem;
  --radius-lg: 1.75rem;
  --radius-pill: 999px;

  --shell: min(88rem, calc(100% - clamp(2rem, 5vw, 5rem)));
  --measure: 42rem;
  --section-space: clamp(4rem, 6.5vw, 6.75rem);
  --section-space-tight: clamp(2.75rem, 4.5vw, 4.75rem);
  --section-space-loose: clamp(5rem, 8vw, 8rem);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --header-height: 5.5rem;
}


/* 10-base.css */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100dvh;
  overflow-x: clip;
  color: var(--ink);
  background: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Keep normal page content ivory while the document canvas behind the footer stays navy. */
main { background: var(--ivory); }

body.nav-open { overflow: hidden; }
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4, ul, ol, dl, dd, figure { margin-top: 0; }
address { font-style: normal; }
::selection { color: white; background: var(--wine); }
:focus-visible { outline: 3px solid var(--copper); outline-offset: 4px; }

h1, h2, h3, h4 {
  margin-bottom: 0.65em;
  max-width: 100%;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 { font-size: clamp(3rem, 6.2vw, 7rem); }
h2 { font-size: clamp(2.4rem, 4.75vw, 5.2rem); }
h3 { font-size: clamp(1.45rem, 2.05vw, 2.2rem); letter-spacing: -0.035em; }

p, li, dd, address {
  text-wrap: pretty;
  overflow-wrap: break-word;
}

p { margin-bottom: 1.1rem; }

.shell { width: var(--shell); margin-inline: auto; }
.shell--narrow { max-width: 68rem; text-align: center; }
.shell--legal { max-width: 54rem; }
.section { padding-block: var(--section-space); }
.section--tight { padding-block: var(--section-space-tight); }
.section--soft { background: var(--paper); }
.section--ink { color: var(--ivory); background: var(--ink); }
.overflow-hidden { overflow: clip; }

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  color: white;
  background: var(--wine);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }
.no-js [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }


/* 20-layout.css */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  transition: background 300ms ease, color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.site-header__inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.brand { width: fit-content; }
.brand img { width: 10.75rem; transition: filter 300ms ease; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.35rem, 2.6vw, 3rem);
}

.primary-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}


.nav-group { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 1.35rem);
  left: 50%;
  width: 18rem;
  padding: 0.65rem;
  color: var(--ink);
  background: rgba(255,253,249,0.98);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 20px 55px rgba(18,24,43,0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%,-0.45rem);
  transition: opacity 180ms ease, visibility 180ms ease, transform 260ms var(--ease-out);
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translate(-50%,0); }
.nav-dropdown::before { content: ""; position: absolute; right: 0; bottom: 100%; left: 0; height: 1.45rem; }
.nav-dropdown a {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.035em;
  text-transform: none;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a span { color: var(--copper); }
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible { color: var(--wine); background: var(--ivory); }

.home-page .site-header:not(.is-scrolled) .header-cta,
.page-with-hero .site-header:not(.is-scrolled) .header-cta {
  border-color: rgba(255,255,255,0.58);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}

.primary-nav > a::after,
.nav-group > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease-out);
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after,
.nav-group > a:hover::after,
.nav-group > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta { justify-self: end; }
.menu-toggle { display: none; }

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(246, 241, 235, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-page .site-header:not(.is-scrolled),
.page-with-hero .site-header:not(.is-scrolled) { color: white; }

.home-page .site-header:not(.is-scrolled) .brand img,
.page-with-hero .site-header:not(.is-scrolled) .brand img { filter: brightness(0) invert(1); }

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.75rem, 4vw, 4rem);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  color: rgba(246, 241, 235, 0.86);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-kicker {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  padding-bottom: 1.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-kicker .eyebrow {
  margin: 0;
  color: var(--copper-soft);
}
.footer-kicker > p:last-child {
  max-width: 28rem;
  margin: 0;
  color: rgba(246, 241, 235, 0.72);
  text-align: right;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3,minmax(9rem,1fr));
  gap: clamp(2rem, 4vw, 4.5rem);
  padding-block: 2.6rem 2.75rem;
}
.footer-brand p {
  max-width: 29rem;
  margin: 1.25rem 0 0;
  color: rgba(246, 241, 235, 0.72);
}
.brand--footer img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}
.footer-column .eyebrow {
  margin-bottom: 0.35rem;
  color: var(--copper-soft);
}
.footer-column a,
.footer-column address {
  color: rgba(246, 241, 235, 0.82);
}
.footer-column a {
  transition: color 180ms ease;
}
.footer-column a:hover {
  color: white;
}
.footer-column p,
.footer-column address {
  margin: 0;
}
.footer-hours {
  margin-top: 0.7rem !important;
  color: rgba(246, 241, 235, 0.64);
  font-size: 0.82rem;
}
.footer-bottom {
  min-height: 4.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  color: rgba(246, 241, 235, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 1.35rem; }
.footer-bottom a {
  color: rgba(246, 241, 235, 0.68);
  transition: color 180ms ease;
}
.footer-bottom a:hover { color: white; }

.scroll-progress {
  position: fixed;
  z-index: 2000;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
}


/* 30-components.css */
/* Reusable controls and interior-page components. Homepage composition lives in 40-home.css. */

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--wine);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow--light { color: var(--copper-soft); }

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.8rem 1.5rem;
  overflow: hidden;
  border: 1px solid var(--wine);
  border-radius: var(--radius-pill);
  color: white;
  background: var(--wine);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 300ms ease, border-color 300ms ease, transform 300ms var(--ease-out), box-shadow 300ms ease;
}
.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: var(--ink);
  transform: translateY(105%);
  transition: transform 450ms var(--ease-out);
}
.button:hover { border-color: var(--ink); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.button:hover::before { transform: translateY(0); }
.button--compact { min-height: 2.7rem; padding-inline: 1.2rem; font-size: 0.8rem; }
.button--light { color: var(--ink); border-color: white; background: white; }
.button--light::before { background: var(--copper); }
.button--light:hover { color: white; border-color: var(--copper); }
.button--full { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.88rem;
  font-weight: 700;
}
.text-link span { transition: transform 300ms var(--ease-out); }
.text-link:hover span { transform: translate(0.2rem,-0.2rem); }
.text-link--light { color: white; }

.image-frame {
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-sm);
}
.image-frame--hotel { background-image: linear-gradient(rgba(18,24,43,0.08),rgba(18,24,43,0.08)), url('/assets/images/hotel-card.webp'); }
.image-frame--transport { background-image: linear-gradient(rgba(18,24,43,0.08),rgba(18,24,43,0.08)), url('/assets/images/transport-card.webp'); }
.image-frame--dining { background-image: linear-gradient(rgba(18,24,43,0.08),rgba(18,24,43,0.08)), url('/assets/images/dining-card.webp'); }

.values-grid { display: grid; grid-template-columns: minmax(0,0.85fr) minmax(0,1fr); gap: clamp(3rem,6vw,6rem); align-items: start; }
.values-intro { position: sticky; top: calc(var(--header-height) + 3rem); }
.values-intro h2 { font-size: clamp(2.7rem,4.6vw,5.1rem); }
.values-intro > p:not(.eyebrow) { max-width: 38rem; color: rgba(255,255,255,0.68); }
.values-list article { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.35rem; padding-block: 1.8rem; border-top: 1px solid var(--white-line); }
.values-list article:last-child { border-bottom: 1px solid var(--white-line); }
.values-list article > span { color: var(--copper-soft); font-size: 0.8rem; }
.values-list h3 { margin-bottom: 0.5rem; }
.values-list p { margin: 0; color: rgba(255,255,255,0.65); }

.inquiry-grid { display: grid; grid-template-columns: minmax(0,0.8fr) minmax(30rem,1.15fr); gap: clamp(3rem,6vw,6rem); align-items: start; }
.inquiry-copy { position: sticky; top: calc(var(--header-height) + 3rem); }
.inquiry-copy > p:not(.eyebrow) { max-width: 35rem; color: var(--muted); }
.inquiry-form { padding: clamp(1.5rem,3.2vw,3rem); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-grid label { display: grid; gap: 0.5rem; }
.form-grid label > span { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.form-span-2 { grid-column: 1 / -1; }
input, textarea, select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0.8rem 0.15rem;
  color: var(--ink);
  background: transparent;
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { outline: 0; border-bottom-color: var(--wine); box-shadow: 0 1px 0 var(--wine); }
.inquiry-form .button { margin-top: 2rem; }
.form-note { margin: 1rem 0 0; color: var(--muted); font-size: 0.76rem; text-align: center; }
.form-note a { text-decoration: underline; }
.form-hidden { position: absolute; left: -9999px; }

.page-hero {
  position: relative;
  min-height: min(48rem,68svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.page-hero__media,
.page-hero__overlay { position: absolute; inset: 0; }
.page-hero__media { background-position: center; background-size: cover; transform: scale(1.03); }
.page-hero--about .page-hero__media { background-image: url('/assets/images/dining-hero.webp'); }
.page-hero--services .page-hero__media { background-image: url('/assets/images/hotel-hero.webp'); }
.page-hero--contact .page-hero__media { background-image: url('/assets/images/transport-hero.webp'); }
.page-hero__overlay { background: linear-gradient(180deg,rgba(6,9,17,0.45),rgba(6,9,17,0.75)); }
.page-hero__content { position: relative; z-index: 1; padding-top: calc(var(--header-height) + 4rem); padding-bottom: clamp(3.5rem,6vw,5.5rem); }
.page-hero__content h1 { max-width: 70rem; margin-bottom: 1.25rem; font-size: clamp(3rem,6vw,6.8rem); line-height: 0.96; }
.page-hero__content > p:last-child { max-width: 40rem; margin: 0; font-size: 1.08rem; }

.editorial-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(3rem,6vw,6rem); align-items: start; }
.editorial-grid h2 { font-size: clamp(2.65rem,4.5vw,5rem); }
.prose { color: var(--ink-soft); }
.prose--large { font-size: clamp(1.08rem,1.35vw,1.3rem); line-height: 1.68; }
.prose h2 { margin-top: 2.75rem; margin-bottom: 1rem; color: var(--ink); font-size: clamp(1.8rem,3vw,2.8rem); letter-spacing: -0.035em; }
.prose h2:first-child { margin-top: 0; }
.prose a { color: var(--wine); text-decoration: underline; text-underline-offset: 0.2em; }
.prose li { margin-bottom: 0.65rem; }
.prose address { padding: 1.5rem; border-left: 3px solid var(--copper); background: var(--paper); }

.split-feature { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(3rem,6vw,6rem); align-items: center; }
.split-feature__copy p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.split-feature__copy .button { margin-top: 1rem; }
.section-heading { max-width: 65rem; margin-bottom: 2.75rem; }
.feature-list { border-top: 1px solid var(--line); }
.feature-list article { display: grid; grid-template-columns: 4.5rem minmax(0,1fr); gap: 1.5rem; padding-block: 1.8rem; border-bottom: 1px solid var(--line); }
.feature-list article > span { color: var(--copper); padding-top: 0.3rem; }
.feature-list article > div { display: grid; grid-template-columns: minmax(13rem,0.8fr) minmax(0,1.2fr); gap: 2rem; align-items: start; }
.feature-list h3 { margin: 0; }
.feature-list p { margin: 0; color: var(--muted); }

.service-detail { scroll-margin-top: var(--header-height); }
.service-detail__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(3rem,6vw,6rem); align-items: center; }
.service-detail__grid--reverse .service-detail__media { grid-column: 2; }
.service-detail__grid--reverse .service-detail__copy { grid-column: 1; grid-row: 1; }
.service-detail__media { position: relative; min-height: 0; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius-lg); }
.service-detail__media img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.service-detail__media > span { position: absolute; z-index: 1; top: 1.5rem; right: 1.5rem; display: grid; width: 4rem; aspect-ratio: 1; place-items: center; border-radius: 50%; color: white; background: rgba(18,24,43,0.72); backdrop-filter: blur(12px); }
.service-detail__copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1.5rem; margin: 2rem 0 2.5rem; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.5rem; }
.check-list li::before { content: ""; position: absolute; top: 0.65em; left: 0; width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--copper); }
.centered-cta { text-align: center; }
.centered-cta h2 { max-width: 70rem; margin-inline: auto; }
.centered-cta p:not(.eyebrow) { max-width: 42rem; margin: 0 auto 2rem; color: rgba(255,255,255,0.65); }

.contact-details { margin-top: 2.25rem; }
.contact-details div { display: grid; grid-template-columns: 9rem 1fr; gap: 1rem; padding-block: 1.25rem; border-top: 1px solid var(--line); }
.contact-details div:last-child { border-bottom: 1px solid var(--line); }
.contact-details dt { color: var(--muted); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-details dd { margin: 0; }

.legal-hero { padding-top: calc(var(--header-height) + 5rem); padding-bottom: 3.5rem; background: var(--paper); text-align: center; }
.legal-hero h1 { margin-bottom: 1rem; font-size: clamp(3.5rem,8vw,7rem); }
.legal-page { background: var(--ivory); }
.thank-you { min-height: 68svh; display: grid; place-items: center; padding-top: calc(var(--header-height) + 4rem); text-align: center; }
.thank-you h1 { font-size: clamp(3rem,7vw,6.5rem); }
.thank-you p { max-width: 42rem; margin-inline: auto; color: var(--muted); }


/* 40-home.css */
/* Homepage — V4
   Dense, image-led and intentionally closer to the supplied visual reference.
   Primary content is never hidden behind scroll-triggered effects. */

.home-v4 { background: var(--ivory); }
.home-v4 h1,
.home-v4 h2,
.home-v4 h3 { text-wrap: balance; }
.home-v4 p { text-wrap: pretty; }

/* Hero */
.home-hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.home-hero__slides,
.home-hero__slides .hero__slide,
.home-hero__veil { position: absolute; inset: 0; }
.home-hero__slides .hero__slide {
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  filter: blur(1.75px) brightness(0.82);
  transform: scale(1.08);
  transition: opacity 1000ms ease, transform 7s ease-out, filter 600ms ease;
}
.home-hero__slides .hero__slide.is-active { opacity: 1; transform: scale(1.035); }
.home-hero__veil {
  background:
    linear-gradient(180deg, rgba(7,10,18,0.50) 0%, rgba(7,10,18,0.05) 38%, rgba(7,10,18,0.70) 100%),
    linear-gradient(90deg, rgba(7,10,18,0.28), transparent 55%);
}
.home-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 92svh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  padding-top: calc(var(--header-height) + 4.5rem);
  padding-bottom: clamp(2.25rem, 4vw, 4rem);
}
.home-hero__lead {
  width: min(38rem, 52%);
  align-self: center;
  justify-self: center;
  margin-top: clamp(2rem, 6vh, 6rem);
  text-align: center;
}
.home-hero__intro {
  margin: 0 auto;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 1.1vw, 1.28rem);
  line-height: 1.55;
}
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.home-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 650;
}
.home-hero__link span { transition: transform 220ms ease; }
.home-hero__link:hover span { transform: translate(0.18rem,-0.18rem); }
.home-hero__title-wrap { position: relative; width: 100%; }
.home-hero__title {
  margin: 0;
  font-size: clamp(8rem, 15vw, 24rem);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.085em;
  color: #fff;
  white-space: nowrap;
}
.home-hero__meta {
  position: absolute;
  right: 0;
  bottom: clamp(0.3rem, 1vw, 1.5rem);
  width: min(27rem, 31vw);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.44);
}
.home-hero__meta p { margin: 0; }
.home-hero__meta p:first-child { display: grid; gap: 0.18rem; }
.home-hero__meta span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.home-hero__meta small { color: rgba(255,255,255,0.66); font-size: 0.72rem; }
.home-hero__index { font-size: 0.75rem; letter-spacing: 0.12em; white-space: nowrap; }
.home-hero__controls {
  position: absolute;
  z-index: 4;
  right: 0;
  top: calc(var(--header-height) + 2.2rem);
  display: flex;
  gap: 0.45rem;
}
.home-hero .hero-dot { width: 2.35rem; height: 0.3rem; }

/* Shared homepage section rhythm */
.home-intro,
.home-services,
.home-process,
.home-values,
.home-planner { padding-block: clamp(3.75rem, 5.5vw, 6rem); }
.home-section-heading {
  max-width: 58rem;
  margin-bottom: clamp(2.25rem, 3.5vw, 3.75rem);
}
.home-section-heading--center { margin-inline: auto; text-align: center; }
.home-section-heading h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.9rem, 4.8vw, 5.65rem);
  line-height: 0.98;
}
.home-section-heading > p:last-child {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.04rem;
}

/* Intro */
.home-intro { background: var(--paper); }
.home-intro__grid {
  display: grid;
  grid-template-columns: 0.55fr minmax(0,1.45fr) 0.75fr;
  gap: clamp(2rem, 4.5vw, 5.25rem);
  align-items: end;
}
.home-intro__grid > .eyebrow { align-self: start; margin-top: 0.45rem; }
.home-intro h2 {
  margin: 0;
  font-size: clamp(3rem, 5.15vw, 6rem);
  line-height: 0.96;
}
.home-intro__copy { max-width: 31rem; }
.home-intro__copy p { color: var(--muted); }

/* Services */
.home-services { background: var(--ivory); }
.home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(1rem, 1.8vw, 1.75rem);
}
.home-service-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(18,24,43,0.055);
  transition: transform 320ms var(--ease-out), box-shadow 320ms ease;
}
.home-service-card:hover { transform: translateY(-0.4rem); box-shadow: 0 22px 56px rgba(18,24,43,0.1); }
.home-service-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ivory-deep);
}
.home-service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.home-service-card:hover .home-service-card__media img { transform: scale(1.035); }
.home-service-card__media > span {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.8rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(63,23,45,0.84);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 700;
}
.home-service-card__body { padding: clamp(1.4rem, 2.2vw, 2rem); }
.home-service-card__body .eyebrow { margin-bottom: 0.65rem; }
.home-service-card__body h3 { margin-bottom: 0.7rem; font-size: clamp(1.65rem, 2.2vw, 2.45rem); line-height: 1.04; }
.home-service-card__body > p:not(.eyebrow) { min-height: 4.9em; margin-bottom: 1.15rem; color: var(--muted); }

/* Process */
.home-process { background: var(--paper); }
.home-process__list { border-top: 1px solid var(--line); }
.home-process-row {
  display: grid;
  grid-template-columns: minmax(4.6rem,0.22fr) minmax(15rem,0.76fr) minmax(20rem,1.1fr);
  grid-template-areas: "number copy image";
  gap: clamp(1.5rem, 3.5vw, 4rem);
  align-items: center;
  padding-block: clamp(2rem, 3.4vw, 3.25rem);
  border-bottom: 1px solid var(--line);
}
.home-process-row--reverse {
  grid-template-columns: minmax(20rem,1.1fr) minmax(15rem,0.76fr) minmax(4.6rem,0.22fr);
  grid-template-areas: "image copy number";
}
.home-process-row__number {
  grid-area: number;
  align-self: start;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: clamp(4.3rem, 6vw, 7rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.07em;
}
.home-process-row__copy { grid-area: copy; max-width: 31rem; }
.home-process-row__copy .eyebrow { margin-bottom: 0.6rem; }
.home-process-row__copy h3 { margin-bottom: 0.7rem; font-size: clamp(1.9rem, 2.7vw, 3rem); line-height: 1.01; }
.home-process-row__copy > p:last-child { margin: 0; color: var(--muted); }
.home-process-row__image {
  grid-area: image;
  width: min(100%, 38rem);
  aspect-ratio: 4 / 3;
  justify-self: end;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.home-process-row--reverse .home-process-row__image { justify-self: start; }

/* Full-width visual reset */
.home-feature {
  position: relative;
  min-height: clamp(30rem, 58svh, 42rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.home-feature__image,
.home-feature__veil { position: absolute; inset: 0; }
.home-feature__image {
  background: url('/assets/images/dining-hero.webp') center 56% / cover no-repeat;
  transform: scale(1.01);
}
.home-feature__veil { background: linear-gradient(90deg, rgba(8,13,26,0.79) 0%, rgba(8,13,26,0.43) 52%, rgba(8,13,26,0.16) 100%); }
.home-feature__content { position: relative; z-index: 1; max-width: 100%; }
.home-feature__content h2 {
  max-width: 58rem;
  margin-bottom: 1rem;
  font-size: clamp(3.6rem, 6.4vw, 7.5rem);
  line-height: 0.94;
}
.home-feature__content > p:not(.eyebrow) { max-width: 37rem; margin-bottom: 1.5rem; color: rgba(255,255,255,0.82); font-size: 1.08rem; }

/* Values */
.home-values { background: var(--ivory); }
.home-values__grid {
  display: grid;
  grid-template-columns: minmax(24rem,0.9fr) minmax(0,1.1fr);
  gap: clamp(2.5rem, 5.5vw, 6rem);
  align-items: center;
}
.home-values__visual { overflow: hidden; border-radius: var(--radius-lg); }
.home-values__visual img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.home-values__content h2 { max-width: 48rem; margin-bottom: 1rem; font-size: clamp(3rem, 4.7vw, 5.5rem); line-height: 0.97; }
.home-values__lede { max-width: 41rem; color: var(--muted); }
.home-values__list { margin: 2rem 0 1.5rem; border-top: 1px solid var(--line); }
.home-values__list article {
  display: grid;
  grid-template-columns: 3rem minmax(0,1fr);
  gap: 1.2rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.home-values__list article > span { padding-top: 0.2rem; color: var(--copper); font-size: 0.78rem; font-weight: 700; }
.home-values__list h3 { margin-bottom: 0.3rem; font-size: 1.35rem; letter-spacing: -0.025em; }
.home-values__list p { margin: 0; color: var(--muted); }

/* Planner */
.home-planner { background: var(--paper); }
.home-planner__grid {
  display: grid;
  grid-template-columns: minmax(20rem,0.72fr) minmax(34rem,1.28fr);
  gap: clamp(2.5rem,5.5vw,6rem);
  align-items: start;
}
.home-planner__intro { padding-top: 1rem; }
.home-planner__intro h2 { max-width: 40rem; margin-bottom: 1rem; font-size: clamp(3rem,4.8vw,5.6rem); line-height: 0.97; }
.home-planner__intro > p:not(.eyebrow) { max-width: 35rem; color: var(--muted); }
.home-planner__contact { display: grid; gap: 0.85rem; margin-top: 2rem; }
.home-planner__contact p { display: grid; gap: 0.2rem; margin: 0; padding-top: 0.8rem; border-top: 1px solid var(--line); }
.home-planner__contact span { color: var(--muted); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.home-planner__form {
  padding: clamp(1.5rem, 3vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 18px 50px rgba(18,24,43,0.07);
}
.home-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem 1.4rem; }
.home-form-grid label,
.home-form-notes { display: grid; gap: 0.45rem; }
.home-form-grid label > span,
.home-form-notes > span,
.home-service-choices legend { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.home-form-span-2 { grid-column: 1 / -1; }
.home-service-choices { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; margin: 1.5rem 0; padding: 0; border: 0; }
.home-service-choices legend { grid-column: 1 / -1; margin-bottom: 0.1rem; }
.home-service-choices label { position: relative; cursor: pointer; }
.home-service-choices input { position: absolute; opacity: 0; pointer-events: none; }
.home-service-choices label > span {
  display: grid;
  min-height: 3.15rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--ivory);
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.home-service-choices input:checked + span { color: #fff; border-color: var(--wine); background: var(--wine); }
.home-service-choices input:focus-visible + span { outline: 3px solid var(--copper); outline-offset: 3px; }
.home-form-notes { margin-bottom: 1.25rem; }
.home-planner__form .button { margin-top: 0; }

@media (max-width: 1100px) {
  .home-hero__lead { width: min(38rem, 65%); }
  .home-hero__title { font-size: clamp(7rem, 16vw, 13rem); }
  .home-hero__meta { width: min(24rem, 36vw); }
  .home-intro__grid { grid-template-columns: 0.4fr 1.25fr 0.8fr; gap: 2rem; }
  .home-values__grid { grid-template-columns: 0.85fr 1.15fr; gap: 3rem; }
  .home-planner__grid { grid-template-columns: 0.75fr 1.25fr; gap: 3rem; }
}

@media (max-width: 840px) {
  .home-hero { min-height: 82svh; }
  .home-hero__inner { min-height: 82svh; padding-top: calc(var(--header-height) + 3.5rem); }
  .home-hero__lead { width: min(34rem, 100%); align-self: center; margin-top: 3rem; }
  .home-hero__title { font-size: clamp(5.8rem, 20vw, 9rem); line-height: 0.78; }
  .home-hero__meta { position: static; width: 100%; margin-top: 1.2rem; }
  .home-hero__controls { top: auto; right: 0; bottom: 2.2rem; }

  .home-intro,
  .home-services,
  .home-process,
  .home-values,
  .home-planner { padding-block: clamp(3.25rem, 8vw, 4.5rem); }
  .home-intro__grid { grid-template-columns: 1fr; gap: 1.3rem; }
  .home-intro__grid > .eyebrow { margin: 0; }
  .home-intro h2 { font-size: clamp(2.8rem, 8vw, 4.6rem); }
  .home-intro__copy { max-width: 38rem; }

  .home-service-grid { grid-template-columns: 1fr; max-width: 42rem; }
  .home-service-card { display: grid; grid-template-columns: minmax(13rem,0.9fr) minmax(0,1.1fr); }
  .home-service-card__media { aspect-ratio: auto; min-height: 19rem; }
  .home-service-card__body > p:not(.eyebrow) { min-height: 0; }

  .home-process-row,
  .home-process-row--reverse {
    grid-template-columns: 4.5rem minmax(0,1fr);
    grid-template-areas: "number copy" ". image";
    gap: 1rem 1.25rem;
  }
  .home-process-row__image,
  .home-process-row--reverse .home-process-row__image { width: 100%; justify-self: stretch; }

  .home-feature { min-height: 34rem; }
  .home-feature__content h2 { font-size: clamp(3.2rem, 10vw, 5.2rem); }

  .home-values__grid,
  .home-planner__grid { grid-template-columns: 1fr; }
  .home-values__visual { max-width: 42rem; }
  .home-values__visual img { aspect-ratio: 16 / 10; }
  .home-values__content h2,
  .home-planner__intro h2 { font-size: clamp(2.8rem, 8.5vw, 4.8rem); }
}

@media (max-width: 600px) {
  /* Keep every homepage content shell centered with a deliberate mobile gutter. */
  .home-v4 .shell {
    width: calc(100% - 3.5rem);
    margin-inline: auto;
  }
  .home-hero { min-height: 78svh; }
  .home-hero__inner { min-height: 78svh; padding-bottom: 1.6rem; }
  .home-hero__lead {
    width: 100%;
    align-self: end;
    margin-bottom: 5.4rem;
    padding-inline: 0.15rem;
    text-align: left;
  }
  .home-hero__intro {
    max-width: 20rem;
    font-size: 1rem;
    line-height: 1.62;
  }
  .home-hero__actions {
    justify-content: flex-start;
    gap: 0.85rem 1rem;
  }
  .home-hero__link { padding-bottom: 0.45rem; }
  .home-hero__title-wrap,
  .home-hero__title,
  .home-hero__meta { display: none; }
  /* Keep the slide indicators centered in their own lane on mobile. */
  .home-hero__controls {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 1.8rem;
    transform: translateX(-50%);
    justify-content: center;
  }
  .home-hero .hero-dot { width: 2.2rem; height: 0.28rem; }

  .home-section-heading { margin-bottom: 2rem; text-align: left; }
  .home-section-heading--center { margin-inline: auto; }
  .home-section-heading h2 { font-size: clamp(2.65rem, 11vw, 3.8rem); }
  .home-section-heading > p:last-child { margin-inline: 0; }

  .home-service-card { display: block; }
  .home-service-card__media { aspect-ratio: 4 / 3; min-height: 0; }

  .home-process-row,
  .home-process-row--reverse {
    grid-template-columns: 4.1rem minmax(0,1fr);
    gap: 0.85rem 1rem;
    padding-block: 1.8rem;
  }
  .home-process-row__number { font-size: 3.9rem; }
  .home-process-row__copy h3 { font-size: clamp(1.8rem, 8vw, 2.35rem); }
  .home-process-row__image { border-radius: var(--radius-md); }

  .home-feature { min-height: 31rem; }
  .home-feature__veil { background: linear-gradient(180deg, rgba(8,13,26,0.48), rgba(8,13,26,0.84)); }
  .home-feature__content { align-self: end; padding-bottom: 3rem; }
  .home-feature__content h2 { font-size: clamp(3rem, 13vw, 4.35rem); }

  .home-values__grid,
  .home-planner__grid { gap: 2rem; }
  .home-values__visual img { aspect-ratio: 4 / 3; }
  .home-values__list article { grid-template-columns: 2.3rem minmax(0,1fr); gap: 0.85rem; }

  .home-planner__form { padding: 1.15rem; border-radius: var(--radius-md); }
  .home-form-grid { grid-template-columns: 1fr; }
  .home-form-span-2 { grid-column: auto; }
  .home-service-choices { grid-template-columns: 1fr 1fr 1fr; gap: 0.45rem; }
  .home-service-choices label > span { min-height: 2.9rem; font-size: 0.88rem; }
}


/* 80-motion.css */
/* Motion never hides primary content. This keeps full-page captures, slow devices,
   and interrupted scripts visually complete while retaining polished interaction. */
[data-reveal],
.js [data-reveal],
.js [data-reveal="soft"],
.js [data-reveal="mask"],
.js [data-reveal="title"] {
  opacity: 1;
  transform: none;
  clip-path: none;
}

@keyframes page-enter {
  from { opacity: 0.94; }
  to { opacity: 1; }
}
main { animation: page-enter 360ms ease both; }

@keyframes fade-out { to { opacity: 0; } }
@keyframes fade-in { from { opacity: 0; } }
::view-transition-old(root) { animation: 180ms ease both fade-out; }
::view-transition-new(root) { animation: 260ms ease both fade-in; }

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

@view-transition { navigation: auto; }


/* 90-responsive.css */
/* Shared responsive behavior for navigation, interior pages and footer.
   Homepage-specific responsive rules live beside the homepage in 40-home.css. */

/* Ultra-wide displays and zoomed-out desktop layouts need a stronger global scale. */
@media (min-width: 1800px) {
  :root { --shell: min(91vw, 110rem); }
}
@media (min-width: 2400px) {
  html { font-size: 112.5%; }
  :root { --shell: min(89vw, 126rem); }
}
@media (min-width: 3200px) {
  html { font-size: 137.5%; }
  :root { --shell: min(88vw, 138rem); }
}
@media (min-width: 3900px) { html { font-size: 155%; } }

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 2.5rem, 88rem);
    --section-space: clamp(3.5rem, 6.5vw, 5rem);
  }

  .site-header__inner { grid-template-columns: 1fr auto; }
  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    width: 2.9rem;
    height: 2.9rem;
    place-content: center;
    gap: 0.42rem;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 1.1rem;
    height: 1px;
    background: currentColor;
    transition: transform 300ms ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(0.22rem) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-0.22rem) rotate(-45deg); }

  .primary-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.2rem;
    padding:
      calc(var(--header-height) + clamp(1.5rem, 5vh, 3rem))
      max(2rem, env(safe-area-inset-right))
      max(2rem, env(safe-area-inset-bottom))
      max(2rem, env(safe-area-inset-left));
    overflow-y: auto;
    overscroll-behavior: contain;
    color: white;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 0s linear 180ms;
  }
  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 180ms ease, visibility 0s linear 0s;
  }
  .primary-nav > a,
  .nav-group > a {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 6vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    text-transform: none;
  }
  .primary-nav > a::after,
  .nav-group > a::after { display: none; }
  .header-cta { display: none; }

  /* Do not use backdrop-filter on mobile at all. iOS Safari can use a filtered
     fixed ancestor as the containing block for its fixed descendants, which is
     what caused the closing navigation to collapse into a thin strip. */
  .site-header.is-scrolled {
    background: rgba(246, 241, 235, 0.98);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* A scrolled header uses backdrop-filter on desktop. On iOS Safari that filter
     can become the containing block for a fixed descendant and clip the mobile
     navigation to the header. Remove it while the menu is open so the nav always
     fills the actual viewport, regardless of scroll position or page. */
  body.nav-open .site-header,
  body.nav-open .site-header.is-scrolled {
    color: white !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  body.nav-open .brand img { position: relative; z-index: 1002; filter: brightness(0) invert(1) !important; }

  .nav-group { width: 100%; }
  /* Keep the mobile menu intentionally simple: Home / About / Services / Contact.
     Service sub-navigation remains available on desktop and on the Services page. */
  .nav-dropdown { display: none !important; }

  .values-grid { gap: 3.5rem; }
  .inquiry-grid { gap: 3.5rem; }
  .site-footer .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .site-footer .footer-column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 840px) {
  :root {
    --header-height: 5rem;
    --shell: min(100% - 2.5rem, 88rem);
    --section-space: clamp(3.25rem, 8vw, 4.5rem);
  }

  h1 { font-size: clamp(2.9rem, 9vw, 5.5rem); }
  h2 { font-size: clamp(2.35rem, 7.8vw, 4.5rem); }
  .brand img { width: 9.5rem; }

  .values-grid,
  .inquiry-grid,
  .editorial-grid,
  .split-feature,
  .service-detail__grid { grid-template-columns: 1fr; }
  .values-intro,
  .inquiry-copy { position: static; }

  .page-hero { min-height: min(40rem, 62svh); }
  .page-hero__content { padding-bottom: 3.25rem; }
  .page-hero__content h1 { font-size: clamp(2.9rem, 9vw, 5.25rem); line-height: 1; }

  .service-detail__grid--reverse .service-detail__media,
  .service-detail__grid--reverse .service-detail__copy { grid-column: 1; grid-row: auto; }
  .service-detail__media,
  .split-feature__media { min-height: 0; aspect-ratio: 4 / 3; }

  .feature-list article { grid-template-columns: 3rem minmax(0,1fr); }
  .feature-list article > div { grid-template-columns: 1fr; gap: 0.65rem; }

  .footer-kicker { align-items: flex-start; flex-direction: column; gap: 0.8rem; }
  .footer-kicker > p:last-child { text-align: left; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer .footer-brand { grid-column: 1 / -1; }
  .site-footer .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 1.15rem; gap: 0.6rem; }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 3.25rem);
    --section-space: clamp(3rem, 10vw, 4rem);
  }

  body { font-size: 0.96rem; }
  h1 { font-size: clamp(2.65rem, 12vw, 4.2rem); }
  h2 { font-size: clamp(2.25rem, 10vw, 3.8rem); }

  .primary-nav > a,
  .nav-group > a { font-size: clamp(2.35rem, 11vw, 3.8rem); }

  .page-hero { min-height: min(35rem, 58svh); }
  .page-hero__content { padding-bottom: 2.5rem; }
  .page-hero__content h1 { font-size: clamp(2.6rem, 11.5vw, 4rem); }
  .page-hero__content > p:last-child { font-size: 1rem; }

  .form-grid { grid-template-columns: 1fr; }
  .form-span-2 { grid-column: auto; }
  .check-list { grid-template-columns: 1fr; }
  .contact-details { margin-top: 2rem; }
  .contact-details div { grid-template-columns: 1fr; gap: 0.35rem; }

  .site-footer .footer-grid { grid-template-columns: 1fr; padding-block: 2.25rem; }
  .footer-brand,
  .site-footer .footer-brand,
  .footer-column:last-child,
  .site-footer .footer-column:last-child { grid-column: auto; }
  .footer-bottom div { flex-direction: column; gap: 0.35rem; }

  .legal-hero { padding-top: calc(var(--header-height) + 4rem); padding-bottom: 3rem; }
  .legal-hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .thank-you h1 { font-size: clamp(2.75rem, 12vw, 4.5rem); }
}
