:root {
  --ink: #0b1110;
  --ink-soft: #121b19;
  --forest: #17231f;
  --paper: #f1ece3;
  --paper-deep: #e6ded1;
  --white: #fffdf8;
  --gold: #c9a867;
  --gold-light: #e2c98e;
  --stone: #a89e8d;
  --muted: #6d746f;
  --line: rgba(201, 168, 103, .28);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 2px;
  --shadow: 0 24px 70px rgba(6, 13, 11, .18);
  --container: min(1180px, calc(100vw - 48px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
::selection { color: var(--ink); background: var(--gold-light); }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.container { width: var(--container); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #80662f; }
.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.045em;
}
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.035em;
}
.section-title em, .display em { color: var(--gold); font-weight: 400; }
.lead { max-width: 680px; margin: 24px 0 0; color: #c7cbc6; font-size: clamp(1rem, 1.4vw, 1.14rem); }
.lead.dark { color: #505954; }
.fine { color: #7e877f; font-size: .84rem; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.site-header.is-scrolled {
  position: fixed;
  background: rgba(10, 16, 15, .94);
  border-color: rgba(201, 168, 103, .2);
  backdrop-filter: blur(16px);
}
.nav-shell { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 142px; height: 72px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.primary-nav a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, .78);
  font-size: .73rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--white); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { right: 0; }
.nav-cta, .button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--gold);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .12em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.nav-cta:hover, .button:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.button.outline { color: var(--white); background: transparent; border-color: rgba(255, 255, 255, .5); }
.button.outline:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.button.dark { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.button.dark:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.button.link { min-height: auto; padding: 0 0 8px; color: var(--ink); background: transparent; border-width: 0 0 1px; }
.button.link:hover { color: #765e2d; background: transparent; transform: none; }
.button svg, .nav-cta svg { width: 16px; height: 16px; flex: 0 0 auto; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.28); background: transparent; color: white; cursor: pointer; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 21px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero-media, .page-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5,10,9,.92) 0%, rgba(5,10,9,.64) 45%, rgba(5,10,9,.12) 78%), linear-gradient(0deg, rgba(5,10,9,.72), transparent 56%);
}
.hero::after { content: ""; position: absolute; inset: 92px 4vw 0 auto; z-index: 2; width: 1px; background: linear-gradient(var(--line), transparent 72%); }
.hero-content { position: relative; z-index: 3; padding: 180px 0 86px; }
.hero-copy { max-width: 790px; }
.hero .display { max-width: 790px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 650px; margin-top: 68px; border-top: 1px solid rgba(255,255,255,.2); }
.hero-stat { padding: 22px 22px 0 0; }
.hero-stat + .hero-stat { padding-left: 22px; border-left: 1px solid rgba(255,255,255,.16); }
.hero-stat strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: 1.9rem; font-weight: 400; line-height: 1; }
.hero-stat span { display: block; margin-top: 7px; color: rgba(255,255,255,.6); font-size: .68rem; letter-spacing: .11em; text-transform: uppercase; }
.scroll-cue { position: absolute; right: 4vw; bottom: 46px; z-index: 3; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.62); font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right center; }
.scroll-cue::before { content: ""; width: 42px; height: 1px; background: var(--gold); }

.intro { padding: clamp(90px, 12vw, 160px) 0; }
.intro-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(48px, 8vw, 120px); align-items: center; }
.intro-copy .section-title { max-width: 680px; }
.intro-copy p:not(.eyebrow) { color: #515a55; }
.signature { margin-top: 42px; display: flex; align-items: center; gap: 18px; color: #80662f; font-family: var(--serif); font-style: italic; font-size: 1.2rem; }
.signature::before { content: ""; width: 50px; height: 1px; background: var(--gold); }
.framed-image { position: relative; padding: 24px 0 0 24px; }
.framed-image::before { content: ""; position: absolute; inset: 0 22px 22px 0; border: 1px solid var(--gold); }
.framed-image img { position: relative; width: 100%; min-height: 580px; object-fit: cover; box-shadow: var(--shadow); }

.dark-section { padding: clamp(90px, 10vw, 140px) 0; color: var(--white); background: var(--ink-soft); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
.section-head .section-title { max-width: 760px; }
.section-head p { max-width: 420px; margin: 0; color: #aeb6af; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,103,.18); border: 1px solid rgba(201,168,103,.18); }
.service-card { position: relative; min-height: 390px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; color: white; text-decoration: none; background: var(--forest); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; filter: saturate(.72); transition: transform .6s ease, opacity .4s ease; }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,9,8,.97), rgba(4,9,8,.02) 78%); }
.service-card-content { position: relative; z-index: 2; padding: 32px; }
.service-no { color: var(--gold); font-size: .7rem; letter-spacing: .16em; }
.service-card h3 { margin: 12px 0 10px; font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1.02; }
.service-card p { max-width: 320px; margin: 0; color: #b8bfba; font-size: .9rem; }
.card-arrow { position: absolute; z-index: 3; top: 26px; right: 26px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; transition: background .25s ease, color .25s ease, transform .25s ease; }
.card-arrow svg { width: 17px; height: 17px; }
.service-card:hover img { transform: scale(1.05); opacity: .5; }
.service-card:hover .card-arrow { color: var(--ink); background: var(--gold); border-color: var(--gold); transform: rotate(45deg); }

.split-feature { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 730px; background: var(--paper-deep); }
.split-media { min-height: 620px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-content { display: flex; align-items: center; padding: clamp(60px, 8vw, 120px); }
.split-content-inner { max-width: 540px; }
.split-content p { color: #4f5752; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 36px; }
.pill { padding: 8px 12px; border: 1px solid rgba(11,17,16,.16); color: #4c534f; font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }

.trust { padding: clamp(82px, 9vw, 120px) 0; background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 9vw, 120px); align-items: center; }
.rating-box { padding: 46px; color: white; background: var(--forest); box-shadow: var(--shadow); }
.rating-number { font-family: var(--serif); font-size: clamp(4.5rem, 10vw, 8rem); font-weight: 400; line-height: .8; }
.stars { margin: 24px 0 10px; color: var(--gold-light); letter-spacing: .24em; }
.rating-box p { margin: 0; color: #bac2bc; }
.quote { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 3.7rem); line-height: 1.13; letter-spacing: -.025em; }
.quote em { color: #856a36; font-weight: 400; }
.quote-source { margin-top: 28px; color: #6a726d; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; }

.gift-banner { position: relative; padding: clamp(90px, 12vw, 150px) 0; overflow: hidden; color: white; background: var(--ink); }
.gift-banner::before { content: ""; position: absolute; inset: -40% -12% auto auto; width: 560px; height: 560px; border: 1px solid rgba(201,168,103,.26); border-radius: 50%; }
.gift-banner::after { content: ""; position: absolute; inset: auto auto -50% -10%; width: 460px; height: 460px; border: 1px solid rgba(201,168,103,.16); border-radius: 50%; }
.gift-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: end; }
.gift-inner p { max-width: 530px; color: #abb4ad; }
.gift-action { justify-self: end; }

.contact-strip { padding: 64px 0; background: var(--gold); }
.contact-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.contact-strip h2 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.8rem); font-weight: 400; line-height: 1.03; }

.page-hero { position: relative; min-height: 72svh; display: flex; align-items: end; overflow: hidden; color: white; background: var(--ink); }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(5,10,9,.9), rgba(5,10,9,.35)), linear-gradient(0deg, rgba(5,10,9,.8), transparent 55%); }
.page-hero-content { position: relative; z-index: 2; max-width: 900px; padding: 180px 0 78px; }
.page-hero .display { font-size: clamp(3.4rem, 7vw, 7.2rem); }
.page-hero .lead { max-width: 620px; }
.page-intro { padding: 90px 0 64px; }
.page-intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 9vw, 120px); align-items: start; }
.page-intro-copy { max-width: 660px; color: #505953; font-size: 1.05rem; }
.page-intro-copy p:first-child { margin-top: 0; }

.treatment-section { padding: 52px 0 120px; }
.treatment-list { border-top: 1px solid rgba(11,17,16,.2); }
.treatment-row { display: grid; grid-template-columns: 70px minmax(220px, .8fr) minmax(300px, 1.2fr) auto; gap: 28px; align-items: center; padding: 34px 0; border-bottom: 1px solid rgba(11,17,16,.16); }
.treatment-index { color: #90723b; font-family: var(--serif); font-size: 1.2rem; }
.treatment-row h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.55rem, 2.4vw, 2.25rem); font-weight: 400; line-height: 1.05; }
.treatment-row p { max-width: 520px; margin: 0; color: #616963; font-size: .92rem; }
.treatment-row .button { white-space: nowrap; }
.note-panel { margin-top: 54px; padding: 30px; border-left: 2px solid var(--gold); background: var(--paper-deep); color: #525a55; }
.note-panel strong { color: var(--ink); }

.editorial-feature { padding: 110px 0; color: white; background: var(--ink); }
.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.editorial-image { position: relative; }
.editorial-image img { width: 100%; min-height: 620px; object-fit: cover; }
.editorial-image::after { content: ""; position: absolute; inset: 20px -20px -20px 20px; z-index: -1; border: 1px solid var(--gold); }
.editorial-copy p { color: #b1b9b3; }
.fact-list { margin: 34px 0; border-top: 1px solid rgba(255,255,255,.17); }
.fact { display: flex; justify-content: space-between; gap: 24px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.fact span:first-child { color: #9ea7a0; }
.fact span:last-child { color: var(--gold-light); text-align: right; }

.cards-section { padding: 110px 0; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.info-card { min-height: 300px; padding: 34px; border: 1px solid rgba(11,17,16,.14); background: rgba(255,255,255,.26); transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.info-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 18px 50px rgba(11,17,16,.08); }
.info-card-no { display: block; margin-bottom: 42px; color: #8d7038; font-size: .7rem; letter-spacing: .16em; }
.info-card h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1.05; }
.info-card p { margin: 0; color: #606863; }

.space-gallery { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, 330px); gap: 10px; }
.space-gallery figure { margin: 0; overflow: hidden; }
.space-gallery figure:first-child { grid-row: 1 / 3; }
.space-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.space-gallery figure:hover img { transform: scale(1.025); }

.contact-page { padding: 110px 0; }
.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 70px; }
.contact-details { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid rgba(11,17,16,.16); }
.contact-item { display: grid; grid-template-columns: 28px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid rgba(11,17,16,.16); }
.contact-item svg { width: 19px; height: 19px; margin-top: 4px; color: #8d7038; }
.contact-item strong { display: block; margin-bottom: 3px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-item a { text-decoration-color: rgba(11,17,16,.3); text-underline-offset: 4px; }
.map-wrap { min-height: 600px; background: var(--paper-deep); box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 600px; border: 0; filter: grayscale(1) sepia(.12) contrast(.92); }
.hours { width: 100%; margin: 24px 0 34px; border-collapse: collapse; }
.hours td { padding: 10px 0; border-bottom: 1px solid rgba(11,17,16,.12); }
.hours td:last-child { text-align: right; color: #725d32; font-weight: 650; }

.legal { padding: 170px 0 110px; }
.legal-content { max-width: 820px; }
.legal h1 { margin-bottom: 42px; }
.legal h2 { margin: 38px 0 10px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.legal p, .legal li { color: #555e58; }

.site-footer { padding: 76px 0 24px; color: white; background: #080d0c; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr .9fr; gap: 50px; padding-bottom: 56px; }
.footer-brand img { width: 160px; height: 92px; object-fit: contain; margin-bottom: 20px; }
.footer-brand p { max-width: 330px; margin: 0; color: #909a93; }
.footer-col h3 { margin: 0 0 22px; color: var(--gold); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { width: fit-content; color: #b7beb9; font-size: .88rem; text-decoration: none; }
.footer-links a:hover { color: var(--gold-light); }
.footer-address { color: #b7beb9; font-size: .88rem; }
.footer-address p { margin: 0 0 14px; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); color: var(--gold-light); }
.socials a:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.socials svg { width: 16px; height: 16px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #7c857f; font-size: .75rem; }
.footer-bottom a { color: #aab2ad; text-underline-offset: 4px; }
.footer-bottom .credit { color: var(--gold-light); font-weight: 750; text-decoration: none; }

.floating-book { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: none; box-shadow: 0 12px 35px rgba(5,10,9,.35); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 1180px) {
  :root { --container: min(920px, calc(100% - 36px)); }
  .brand, .nav-toggle { position: relative; z-index: 121; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 110px max(24px, calc((100vw - 920px) / 2));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: rgba(8,13,12,.985);
    transition: opacity .25s ease, visibility .25s ease;
  }
  .primary-nav.is-open { visibility: visible; opacity: 1; }
  .primary-nav a:not(.nav-cta) { font-family: var(--serif); font-size: clamp(1.65rem, 5vw, 2.7rem); font-weight: 400; letter-spacing: 0; text-transform: none; }
  .primary-nav .nav-cta { margin-top: 12px; }
  .intro-grid, .trust-grid, .page-intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .framed-image { max-width: 720px; }
  .split-feature { grid-template-columns: 1fr; }
  .split-content { order: 1; }
  .split-media { order: 2; }
  .service-grid, .info-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1.2fr repeat(2, .8fr); }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
  .treatment-row { grid-template-columns: 50px minmax(210px,.8fr) 1.2fr; }
  .treatment-row .button { grid-column: 2 / -1; justify-self: start; }
}

@media (max-width: 720px) {
  :root { --container: calc(100% - 32px); }
  .nav-shell { min-height: 78px; }
  .primary-nav { justify-content: flex-start; gap: 18px; padding: 118px 24px 42px; }
  .brand img { width: 116px; height: 60px; }
  .hero::after, .scroll-cue { display: none; }
  .hero::before { background: linear-gradient(0deg, rgba(5,10,9,.96), rgba(5,10,9,.38) 82%); }
  .hero-content { padding: 142px 0 54px; }
  .hero .display { font-size: clamp(3.2rem, 16vw, 5.3rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-stats { margin-top: 48px; }
  .hero-stat { padding-right: 8px; }
  .hero-stat + .hero-stat { padding-left: 12px; }
  .hero-stat strong { font-size: 1.5rem; }
  .hero-stat span { font-size: .58rem; letter-spacing: .07em; }
  .section-head { display: block; }
  .section-head p { margin-top: 20px; }
  .service-grid, .info-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 360px; }
  .split-feature { min-height: 0; }
  .split-media { min-height: 450px; }
  .split-content { padding: 72px 24px; }
  .gift-inner { grid-template-columns: 1fr; }
  .gift-action { justify-self: start; }
  .contact-strip-inner { display: block; }
  .contact-strip .button { margin-top: 26px; }
  .page-hero { min-height: 70svh; }
  .page-hero-content { padding: 145px 0 58px; }
  .page-hero .display { font-size: clamp(3.1rem, 15vw, 5.2rem); }
  .treatment-row { grid-template-columns: 42px 1fr; gap: 14px; padding: 28px 0; }
  .treatment-row p, .treatment-row .button { grid-column: 2; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-image { margin-right: 18px; }
  .editorial-image img { min-height: 470px; }
  .space-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(3, 310px); }
  .space-gallery figure:first-child { grid-row: auto; }
  .map-wrap, .map-wrap iframe { min-height: 430px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-brand, .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span, .footer-bottom a { display: block; margin-bottom: 10px; }
  .floating-book { display: inline-flex; }
}

@media (max-width: 420px) {
  .display { font-size: 3rem; }
  .section-title { font-size: 2.6rem; }
  .hero-stat strong { font-size: 1.3rem; }
  .hero-stat span { max-width: 90px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid .footer-col:last-child { grid-column: auto; }
}
