:root {
  --ink: #171512;
  --black: #11100e;
  --charcoal: #1a1916;
  --paper: #f7f4ee;
  --warm: #ede6d9;
  --white: #fffdf8;
  --gold: #bd9550;
  --gold-light: #d9bb7d;
  --muted: #756f65;
  --line: rgba(23, 21, 18, .16);
  --dark-line: rgba(255, 255, 255, .14);
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: Inter, 'Segoe UI', Arial, sans-serif;
  --max-width: 1180px;
  --header-height: 76px;
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-body); font-size: 1rem; line-height: 1.7; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .2em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(3rem, 10vw, 7.3rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2.25rem, 6vw, 4.6rem); letter-spacing: -.04em; }
h3 { font-size: 1.55rem; }
p:last-child { margin-bottom: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.container { width: min(calc(100% - 2rem), var(--max-width)); margin-inline: auto; }
.narrow { max-width: 790px; }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: .75rem; left: .75rem; padding: .7rem 1rem; transform: translateY(-150%); background: var(--gold); color: var(--black); font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header-height); color: var(--white); transition: background .25s, border-color .25s; }
.site-header.is-scrolled { background: rgba(17, 16, 14, .96); border-bottom: 1px solid var(--dark-line); backdrop-filter: blur(12px); }
.menu-open .site-header { height: 100dvh; background: var(--black); border-bottom: 0; }
.header-inner { height: var(--header-height); display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; font-family: var(--font-display); font-size: 1.1rem; line-height: 1; }
.brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.brand small { display: block; margin-top: .28rem; color: var(--gold-light); font-family: var(--font-body); font-size: .58rem; letter-spacing: .25em; text-transform: uppercase; }
.menu-toggle { display: inline-flex; align-items: center; gap: .65rem; padding: .6rem 0; border: 0; background: none; color: inherit; cursor: pointer; }
.menu-toggle-label { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; }
.menu-icon { width: 24px; display: grid; gap: 5px; }
.menu-icon i { display: block; height: 1px; background: currentColor; transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded='true'] .menu-icon i:first-child { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] .menu-icon i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded='true'] .menu-icon i:last-child { transform: translateY(-6px) rotate(-45deg); }
.main-nav { position: absolute; visibility: hidden; opacity: 0; top: var(--header-height); right: 0; bottom: 0; left: 0; overflow-y: auto; padding: 2rem 1rem; background: var(--black); transition: opacity .2s, visibility .2s; }
.main-nav.is-open { visibility: visible; opacity: 1; }
.main-nav ul { list-style: none; margin: 0; padding: 0; }
.main-nav a { display: block; padding: .85rem 0; border-bottom: 1px solid var(--dark-line); color: var(--white); font-family: var(--font-display); font-size: 2rem; text-decoration: none; }
.main-nav a[aria-current='page'] { color: var(--gold-light); }

.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-charcoal { background: var(--charcoal); color: var(--white); }
.section-light { background: var(--paper); color: var(--ink); }
.section-warm { background: var(--warm); color: var(--ink); }
.section-gold { background: var(--gold); color: var(--black); }
.eyebrow { margin-bottom: 1.1rem; color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.section-gold .eyebrow { color: var(--black); opacity: .68; }
.lead { max-width: 720px; font-size: clamp(1.1rem, 2.2vw, 1.35rem); line-height: 1.65; }
.large-copy { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.15rem); line-height: 1.35; }
.section-heading { max-width: 800px; margin-bottom: clamp(2.5rem, 7vw, 5rem); }
.section-heading h2 { margin-bottom: 1.25rem; }
.section-heading > p:last-child { max-width: 640px; }
.section-action { margin-top: 2.5rem; }
.section-note { max-width: 650px; margin: 2rem auto 0; }
.text-link { display: inline-block; color: inherit; font-weight: 700; text-decoration-color: var(--gold); text-decoration-thickness: 2px; }

.button-row { display: flex; flex-direction: column; align-items: flex-start; gap: .8rem; margin-top: 2rem; }
.button-row.centered { align-items: center; }
.button { display: inline-flex; min-height: 51px; align-items: center; justify-content: center; padding: .8rem 1.25rem; border: 1px solid transparent; border-radius: var(--radius); font-size: .78rem; font-weight: 700; letter-spacing: .09em; line-height: 1.2; text-align: center; text-decoration: none; text-transform: uppercase; transition: background .2s, color .2s, border-color .2s, transform .2s; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--black); }
.button-primary:hover { background: var(--gold-light); }
.button-secondary, .button-outline { border-color: rgba(255,255,255,.5); color: var(--white); background: transparent; }
.button-secondary:hover, .button-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.button-dark { background: var(--black); color: var(--white); }
.button-dark:hover { background: #29251f; }
.button-ghost-dark { border-color: rgba(17,16,14,.45); color: var(--black); }
.button:disabled { opacity: .6; cursor: wait; transform: none; }

.hero { position: relative; min-height: max(720px, 100svh); display: flex; align-items: center; overflow: hidden; padding: calc(var(--header-height) + 3.5rem) 0 4rem; }
.hero::after { content: ''; position: absolute; right: -10%; bottom: -35%; width: 70%; aspect-ratio: 1; border: 1px solid rgba(189,149,80,.16); border-radius: 50%; }
.hero-glow { position: absolute; top: 5%; right: -20%; width: 90vw; height: 90vw; max-width: 850px; max-height: 850px; border-radius: 50%; background: radial-gradient(circle, rgba(189,149,80,.17), transparent 68%); filter: blur(20px); }
.hero-grid { position: relative; z-index: 1; display: grid; gap: 2rem; }
.hero h1 { max-width: 850px; margin-bottom: 1.5rem; font-size: clamp(3.3rem, 12vw, 7.7rem); }
.contact-hint { margin-top: 1.5rem; color: rgba(255,255,255,.62); font-size: .88rem; }
.contact-hint a { color: var(--gold-light); }
.hero-mark { order: -1; width: min(62vw, 260px); margin: 0 auto; }
.hero-mark img { width: 100%; border-radius: 50%; filter: drop-shadow(0 24px 45px rgba(0,0,0,.5)); }

.split-layout { display: grid; gap: 2rem; }
.section-number { color: rgba(23,21,18,.28); font-family: var(--font-display); font-size: 1.1rem; }
.prose { max-width: 690px; }
.prose p + p { margin-top: 1.35rem; }
.prose-large { font-size: 1.08rem; }
.principle-grid { display: grid; gap: 1px; background: var(--dark-line); border: 1px solid var(--dark-line); }
.principle-card { padding: 2rem; background: var(--black); }
.principle-card > span { color: var(--gold); font-size: .72rem; letter-spacing: .15em; }
.principle-card h3 { margin: 2.5rem 0 .8rem; font-size: 2rem; }
.principle-card p { color: rgba(255,255,255,.67); }

.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
.process-list li > span, .timeline li > span { color: var(--gold); font-size: .75rem; letter-spacing: .12em; }
.process-list h3 { margin-bottom: .45rem; font-size: 1.5rem; }
.process-list p { color: var(--muted); }

.heading-row { max-width: none; }
.heading-row > p { color: rgba(255,255,255,.65); }
.placeholder-gallery { position: relative; min-height: clamp(360px, 62vw, 680px); overflow: hidden; border: 1px solid var(--dark-line); background: #201d18; }
.gallery-slide { position: absolute; inset: 0; display: flex; visibility: hidden; opacity: 0; flex-direction: column; align-items: center; justify-content: center; padding: 3rem 1.5rem; background: radial-gradient(circle at 50% 45%, rgba(189,149,80,.18), transparent 26%), repeating-radial-gradient(circle at center, transparent 0 80px, rgba(189,149,80,.045) 81px 82px); text-align: center; transition: opacity .45s, visibility .45s; }
.gallery-slide:nth-child(2) { background: linear-gradient(145deg, #24201a, #0f0f0e 65%); }
.gallery-slide:nth-child(3) { background: radial-gradient(ellipse at 20% 20%, rgba(189,149,80,.18), transparent 30%), #141311; }
.gallery-slide.is-active { visibility: visible; opacity: 1; }
.gallery-slide span { font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 5rem); }
.gallery-slide small { margin-top: 1rem; color: rgba(255,255,255,.56); }
.photo-gallery .gallery-slide { padding: 0; background: #111; }
.photo-gallery .gallery-slide::after { content: ''; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.76)); }
.photo-gallery .gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
.photo-gallery .gallery-slide span { position: absolute; z-index: 2; left: clamp(1.2rem, 4vw, 3rem); right: 8rem; bottom: clamp(1.2rem, 4vw, 2.7rem); font-size: clamp(1.5rem, 4vw, 3.3rem); text-align: left; text-shadow: 0 2px 24px rgba(0,0,0,.7); }
.gallery-controls { position: absolute; z-index: 5; right: 1rem; bottom: 1rem; display: flex; align-items: center; gap: 1rem; padding: .35rem; background: rgba(17,16,14,.8); }
.gallery-controls button { width: 44px; height: 44px; border: 1px solid var(--dark-line); background: transparent; color: var(--white); cursor: pointer; }
.gallery-controls p { margin: 0; min-width: 45px; text-align: center; font-size: .78rem; }

.cta-section h2 { margin-bottom: 1.5rem; }
.cta-section p:not(.eyebrow) { max-width: 650px; margin-inline: auto; font-size: 1.08rem; }
.page-hero { padding: calc(var(--header-height) + 6rem) 0 clamp(5rem, 10vw, 9rem); }
.page-hero-inner { max-width: 1000px; }
.page-hero h1 { max-width: 950px; margin-bottom: 1.5rem; }
.editorial-layout { display: grid; gap: 3rem; }
.editorial-note { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; }
.editorial-note span { padding-bottom: .2rem; border-bottom: 1px solid var(--gold); color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

.check-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.check-grid p { position: relative; margin: 0; padding: 1.5rem 1.5rem 1.5rem 3.5rem; background: var(--warm); font-family: var(--font-display); font-size: 1.3rem; }
.check-grid p::before { content: '✓'; position: absolute; left: 1.3rem; color: var(--gold); font-family: var(--font-body); }
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li { display: grid; grid-template-columns: 45px 1fr; gap: 1rem; padding: 1.8rem 0; border-top: 1px solid var(--dark-line); }
.timeline h3 { margin-bottom: .55rem; color: var(--white); }
.timeline p { max-width: 670px; color: rgba(255,255,255,.65); }
.card-grid { display: grid; gap: 1rem; }
.info-card { padding: 2rem; border: 1px solid var(--line); }
.info-card h2 { font-size: 2.4rem; }

.empty-encounters { display: grid; gap: 2rem; align-items: center; min-height: 420px; padding: 2rem; border: 1px solid var(--line); }
.empty-mark { display: grid; width: 150px; aspect-ratio: 1; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: var(--font-display); font-size: 3.5rem; }
.empty-encounters h2 { max-width: 650px; }
.empty-encounters p:last-child { max-width: 650px; }
.encounter-grid { display: grid; gap: 2rem; }
.encounter-card { padding: 2rem; border: 1px solid var(--line); }
.encounter-list { display: grid; gap: 7rem; }
.encounter-intro { display: grid; gap: 1.5rem; align-items: end; margin-bottom: 2.5rem; }
.encounter-intro h2 { margin-bottom: 0; }
.encounter-story { max-width: 560px; color: var(--muted); }
.encounter-credit { margin-top: 1rem; font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.encounter-credit a { color: var(--ink); text-decoration-color: var(--gold); }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.photo-item { min-height: 220px; margin: 0; overflow: hidden; background: #ded8cd; }
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.photo-item:hover img { transform: scale(1.015); }
.photo-item.featured { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.photo-item.portrait { grid-row: span 2; }
.photo-item:not(.portrait):not(.featured) { aspect-ratio: 3 / 2; }

.faq-layout { display: grid; gap: 3rem; }
.faq-intro { max-width: 390px; }
.faq-intro h2 { font-size: 3rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; cursor: pointer; list-style: none; font-family: var(--font-display); font-size: 1.3rem; line-height: 1.25; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { position: relative; flex: 0 0 20px; width: 20px; height: 20px; }
.faq-item summary i::before, .faq-item summary i::after { content: ''; position: absolute; top: 9px; left: 2px; width: 16px; height: 1px; background: var(--gold); }
.faq-item summary i::after { transform: rotate(90deg); transition: transform .2s; }
.faq-item[open] summary i::after { transform: rotate(0); }
.faq-item > p { max-width: 690px; padding: 0 2rem 1.5rem 0; color: var(--muted); }

.contact-layout { display: grid; gap: 3rem; }
.contact-details { max-width: 430px; }
.contact-details ul { list-style: none; margin: 2.5rem 0 0; padding: 0; border-top: 1px solid var(--line); }
.contact-details li { display: flex; flex-direction: column; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-details li span { color: var(--muted); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-details li a, .contact-details li strong { font-weight: 600; }
.form-panel { padding: clamp(1.3rem, 4vw, 3rem); background: var(--white); border: 1px solid var(--line); }
.field-grid { display: grid; gap: 1rem; }
.field { margin-bottom: 1.25rem; }
.field label { display: block; margin-bottom: .35rem; font-size: .82rem; font-weight: 700; }
.field label span { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #afa89c; border-radius: 0; background: var(--paper); color: var(--ink); padding: .8rem .9rem; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: 2px solid rgba(189,149,80,.25); }
.field-help, .required-note { margin-top: .4rem; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.checkbox-field { display: grid; grid-template-columns: 20px 1fr; gap: .65rem; margin: 1.5rem 0; font-size: .82rem; line-height: 1.55; }
.checkbox-field input { width: 18px; height: 18px; margin-top: .2rem; accent-color: var(--gold); }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-message { margin-bottom: 2rem; padding: 1.2rem; border-left: 4px solid; }
.form-message h2 { margin-bottom: .5rem; font-size: 1.5rem; }
.form-message.success { background: #edf4e9; border-color: #638a52; }
.form-message.error { background: #f8e9e6; border-color: #ad5247; }

.legal-hero { padding: calc(var(--header-height) + 5rem) 0 4rem; }
.legal-hero h1 { margin-bottom: 0; }
.legal-copy { max-width: 790px; }
.legal-copy h2 { margin: 3rem 0 .7rem; font-family: var(--font-body); font-size: 1rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.legal-warning { margin-bottom: 3rem; padding: 1.2rem; border: 1px solid #b17834; background: #fff5df; }
.legal-warning strong { display: block; margin-bottom: .25rem; }

.agreement-layout { display: grid; gap: 3rem; align-items: start; }
.agreement-copy h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.agreement-points { list-style: none; margin: 2rem 0 0; padding: 0; border-top: 1px solid var(--line); }
.agreement-points li { position: relative; padding: .85rem 0 .85rem 1.8rem; border-bottom: 1px solid var(--line); }
.agreement-points li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.agreement-preview { position: relative; margin: 0; background: var(--white); border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(23,21,18,.12); }
.agreement-document { padding: clamp(4.5rem, 8vw, 6rem) clamp(1.3rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3rem); }
.agreement-document h2 { margin-bottom: 1.5rem; font-family: var(--font-body); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 650; letter-spacing: -.025em; }
.agreement-document > p, .document-terms p { font-family: var(--font-display); font-size: 1.02rem; line-height: 1.65; }
.document-kicker { margin-bottom: .5rem; color: var(--gold); font-family: var(--font-body) !important; font-size: .68rem !important; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.document-terms { margin-top: 1.8rem; padding: clamp(1.1rem, 3vw, 1.8rem); border-left: 3px solid var(--gold); background: var(--warm); }
.document-terms p + p { margin-top: 1.25rem; }
.document-note { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; }
.sample-label { position: absolute; z-index: 2; top: 1.2rem; left: 1.2rem; padding: .55rem .7rem; background: var(--gold); color: var(--black); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.site-footer { padding: 4.5rem 0 1.5rem; background: #0c0b0a; color: rgba(255,255,255,.65); }
.footer-grid { display: grid; gap: 2.5rem; }
.footer-brand { color: var(--white); font-family: var(--font-display); font-size: 1.55rem; text-decoration: none; }
.site-footer h2 { margin-bottom: 1rem; color: var(--gold-light); font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li + li { margin-top: .4rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { display: flex; flex-direction: column; gap: .3rem; margin-top: 3.5rem; padding-top: 1.3rem; border-top: 1px solid var(--dark-line); font-size: .75rem; }

.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.is-visible { opacity: 1; transform: none; }
}

@media (min-width: 600px) {
  .button-row { flex-direction: row; }
  .button-row.centered { justify-content: center; }
  .field-grid, .check-grid { grid-template-columns: repeat(2, 1fr); }
  .empty-encounters { grid-template-columns: 180px 1fr; padding: 3rem; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 860px) {
  :root { --header-height: 88px; }
  .menu-toggle { display: none; }
  .main-nav { position: static; visibility: visible; opacity: 1; padding: 0; background: none; }
  .main-nav ul { display: flex; align-items: center; gap: 1.8rem; }
  .main-nav a { position: relative; padding: .5rem 0; border: 0; font-family: var(--font-body); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .main-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--gold); transition: right .2s; }
  .main-nav a:hover::after, .main-nav a[aria-current='page']::after { right: 0; }
  .hero-grid { grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); align-items: center; }
  .hero-mark { order: 0; width: 100%; max-width: 480px; }
  .split-layout { grid-template-columns: 50px minmax(280px, .8fr) minmax(360px, 1fr); gap: 3rem; }
  .principle-grid { grid-template-columns: repeat(3, 1fr); }
  .process-list li { grid-template-columns: 75px 1fr; padding: 2rem 0; }
  .heading-row { display: grid; grid-template-columns: 1fr .7fr; gap: 4rem; align-items: end; }
  .editorial-layout { grid-template-columns: 260px 1fr; gap: 5rem; }
  .timeline li { grid-template-columns: 90px 1fr; gap: 2rem; padding: 2.2rem 0; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-layout { grid-template-columns: .65fr 1.35fr; gap: 6rem; align-items: start; }
  .faq-intro { position: sticky; top: calc(var(--header-height) + 2rem); }
  .contact-layout { grid-template-columns: .7fr 1.3fr; gap: 6rem; align-items: start; }
  .agreement-layout { grid-template-columns: .72fr 1.28fr; gap: 5rem; }
  .encounter-intro { grid-template-columns: 1fr .8fr; gap: 4rem; }
  .photo-grid { grid-template-columns: repeat(12, 1fr); gap: .8rem; }
  .photo-item.featured { grid-column: span 8; grid-row: span 2; aspect-ratio: auto; min-height: 650px; }
  .photo-item.portrait { grid-column: span 4; grid-row: span 2; min-height: 650px; }
  .photo-item:not(.portrait):not(.featured) { grid-column: span 6; min-height: 360px; }
}

@media (min-width: 1100px) {
  .hero-copy { padding-top: 2rem; }
  .hero h1 { font-size: clamp(5.4rem, 7.5vw, 7.7rem); }
}

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

@media print {
  .site-header, .site-footer, .button, .gallery-controls { display: none !important; }
  body { background: white; color: black; }
  .section, .page-hero, .legal-hero { padding: 2rem 0; background: white !important; color: black !important; }
}
