:root {
  --ink: #1b1210;
  --ink-2: #241715;
  --ink-3: #2f1d19;
  --paper: #f8f0e0;
  --paper-2: #fffaf1;
  --sand: #ecdcbd;
  --sage: #e8d6c8;
  --sage-deep: #8a6a52;
  --gold: #c19a55;
  --gold-2: #e4c079;
  --gold-dark: #8a5a2a;
  --maroon: #5c1420;
  --maroon-2: #7c1f2e;
  --text: #2a2119;
  --muted: #6e5f55;
  --line: rgba(43, 30, 15, .15);
  --line-light: rgba(255, 255, 255, .18);
  --white: #fff;
  --danger: #a94131;
  --success: #316a49;
  --shadow-sm: 0 12px 34px rgba(35, 29, 19, .08);
  --shadow-lg: 0 30px 80px rgba(20, 16, 9, .18);
  --radius: 4px;
  --radius-lg: 18px;
  --container: 1280px;
  --header-h: 86px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Jost", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper-2);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
picture { display: block; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
::selection { background: var(--gold); color: var(--ink); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(3rem, 7vw, 7.3rem); }
h2 { font-size: clamp(2.35rem, 4.8vw, 5.2rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 2rem); }
p { max-width: 72ch; }

.sr-only {
  position: absolute !important;
  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; top: 8px; left: 8px; z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 16px; color: var(--ink); background: var(--gold-2);
  border-radius: 3px;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { position: relative; padding: clamp(84px, 10vw, 160px) 0; }
.section--paper { background: var(--paper); }
.section--sand { background: var(--sand); }
.section--sage { background: var(--sage); }
.section--ink, .section--maroon { color: rgba(255,255,255,.75); }
.section--ink { background: var(--ink); }
.section--maroon { background: var(--maroon); color: rgba(255,255,255,.82); }
.section--ink h2, .section--ink h3, .section--maroon h2, .section--maroon h3 { color: var(--white); }
.media-fill { position: absolute; inset: 0; width: 100%; height: 100%; }
.media-fill img, .media-fill video { width: 100%; height: 100%; object-fit: cover; }
.icon { display: inline-grid; place-items: center; width: 1.25em; height: 1.25em; flex: 0 0 auto; }
.icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow--light { color: var(--gold-2); }
.section-heading { max-width: 820px; }
.section-heading h2 { margin-bottom: 24px; }
.section-heading > p:last-child { color: var(--muted); font-size: clamp(1rem, 1.45vw, 1.2rem); }
.section--ink .section-heading > p:last-child, .section--maroon .section-heading > p:last-child { color: rgba(255,255,255,.62); }
.section-heading.center { margin-inline: auto; text-align: center; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* Buttons */
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  min-height: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: 13px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button .icon { width: 18px; height: 18px; }
.button--primary { color: var(--ink); background: var(--gold-2); border-color: var(--gold-2); }
.button--primary:hover { background: #efd598; border-color: #efd598; }
.button--secondary { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button--secondary:hover { background: var(--ink-3); }
.button--light { color: var(--ink); background: var(--paper-2); border-color: var(--paper-2); }
.button--outline-light, .button--ghost-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.42); }
.button--outline-light:hover, .button--ghost-light:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.button--ghost { color: var(--ink); background: transparent; border-color: var(--line); }
.button--text { min-height: auto; padding: 7px 0; border: 0; color: var(--gold-dark); }
.button--full { width: 100%; }
.text-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-dark); font-size: .76rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
}
.text-link .icon { width: 18px; transition: transform .25s; }
.text-link:hover .icon { transform: translateX(5px); }
.text-link--light { color: var(--gold-2); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled, body:not(.home-page) .site-header {
  background: rgba(27, 18, 16, .94);
  border-color: rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}
.header__inner {
  width: min(1440px, calc(100% - 40px));
  height: var(--header-h);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand__mark { width: 48px; height: 48px; display: grid; place-items: center; }
.brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__type strong { color: var(--white); font-family: var(--serif); font-size: 1.48rem; font-weight: 400; letter-spacing: .075em; text-transform: uppercase; }
.brand__type small { margin-top: 5px; color: var(--gold-2); font-size: .55rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); margin-left: auto; }
.desktop-nav a { position: relative; padding: 32px 0; color: rgba(255,255,255,.82); font-size: .72rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 24px; height: 1px; background: var(--gold-2); transition: right .25s; }
.desktop-nav a:hover, .desktop-nav a.is-current { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a.is-current::after { right: 0; }
.header__actions { display: flex; align-items: center; gap: 10px; }
.header-call { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.9); font-size: .75rem; font-weight: 700; }
.header-call .icon { width: 17px; }
.header-wa { min-height: 42px; display: inline-flex; align-items: center; gap: 9px; padding: 8px 15px; color: var(--ink); background: var(--gold-2); border-radius: 2px; font-size: .7rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.header-wa .icon { width: 17px; }
.nav-toggle { display: none; width: 44px; height: 44px; place-items: center; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.24); border-radius: 2px; }
.nav-toggle .icon { width: 22px; }
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; z-index: 1200; width: min(440px, 92vw);
  padding: 22px 28px 34px; color: var(--white); background: var(--ink);
  overflow-y: auto; box-shadow: var(--shadow-lg);
}
.mobile-menu[hidden], .menu-scrim[hidden] { display: none; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--line-light); }
.mobile-menu__top button { width: 44px; height: 44px; display: grid; place-items: center; color: var(--white); background: transparent; border: 1px solid var(--line-light); }
.mobile-menu nav { display: grid; padding: 26px 0; }
.mobile-menu nav a { padding: 10px 0; color: rgba(255,255,255,.9); font-family: var(--serif); font-size: 1.65rem; line-height: 1.2; }
.mobile-menu__actions { display: grid; gap: 10px; }
.menu-scrim { position: fixed; inset: 0; z-index: 1100; background: rgba(0,0,0,.58); backdrop-filter: blur(4px); }

/* Hero */
.home-hero { position: relative; min-height: 100svh; display: grid; align-items: end; color: var(--white); background: var(--ink); overflow: hidden; }
.home-hero__media, .page-hero__media, .not-found__media { position: absolute; inset: 0; }
.home-hero__media img, .home-hero__media video { object-position: center 45%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,6,5,.6) 0%, rgba(10,6,5,0) 24%, rgba(10,6,5,0) 60%, rgba(10,6,5,.82) 100%); }
.home-hero__content { position: relative; z-index: 2; padding: 0 0 110px; }
.home-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; }
.hero-scroll-cue {
  position: absolute; z-index: 2; left: 50%; bottom: 34px; transform: translateX(-50%);
  width: 46px; height: 46px; display: grid; place-items: center;
  color: var(--white); border: 1px solid rgba(255,255,255,.4); border-radius: 50%;
  animation: hero-scroll-bob 2.6s ease-in-out infinite;
}
.hero-scroll-cue:hover { border-color: var(--white); }
.hero-scroll-cue .icon { width: 16px; transform: rotate(90deg); }
@keyframes hero-scroll-bob { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
.home-stats { padding: 70px 0 !important; }
.home-stats .stat-band { margin-top: 0; }

/* Stat band (in-page, e.g. venue.html) */
.stat-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; margin-top: 46px; }
.stat-band > div {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  padding: 42px 26px 36px; text-align: center;
  background: var(--paper-2); border-radius: var(--radius-lg); border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease;
}
.stat-band > div:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stat-band .icon {
  width: 30px; height: 30px; padding: 15px; box-sizing: content-box;
  color: var(--gold-dark); border: 1px solid var(--gold); border-radius: 50%;
}
.stat-band span { display: flex; flex-direction: column; align-items: center; }
.stat-band strong { color: var(--ink); font-family: var(--serif); font-size: 1.75rem; font-weight: 400; line-height: 1.15; }
.stat-band small { margin-top: 8px; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.venue-perks { margin-top: 40px; }
.venue-perks .check-list { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); display: grid; }
.page-hero { position: relative; min-height: 680px; display: grid; align-items: end; color: var(--white); background: var(--ink); overflow: hidden; }
.page-hero__media img { object-position: center 48%; }
.media-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,9,10,.92), rgba(22,9,10,.5) 55%, rgba(22,9,10,.18)), linear-gradient(0deg, rgba(22,9,10,.83), transparent 55%); }
.page-hero__content { position: relative; z-index: 2; padding: 190px 0 92px; }
.page-hero h1 { max-width: 950px; margin: 0 0 22px; color: var(--white); font-size: clamp(3.1rem, 6.3vw, 6.6rem); }
.page-hero__content > p:not(.eyebrow) { max-width: 790px; margin-bottom: 30px; color: rgba(255,255,255,.78); font-size: clamp(1.05rem, 1.45vw, 1.25rem); }
.breadcrumb { padding-top: 24px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 10px; color: var(--gold-dark); }
.breadcrumb a:hover { color: var(--gold-dark); }

/* Home editorial */
.split-intro { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: clamp(60px, 9vw, 140px); align-items: end; }
.editorial-note { padding: 0 0 10px 30px; border-left: 1px solid var(--gold); }
.editorial-note > span { color: var(--gold-dark); font-family: var(--serif); font-size: 3rem; line-height: 1; }
.editorial-note p { margin: 20px 0; color: var(--muted); font-size: 1.05rem; }
.editorial-note strong { color: var(--ink); font-weight: 650; }
.editorial-note a { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-dark); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.visual-triptych { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, 340px); gap: 18px; margin-top: clamp(60px, 8vw, 110px); }
.visual-card { position: relative; display: block; min-height: 340px; overflow: hidden; background: var(--ink); }
.visual-card--large { grid-row: 1 / 3; min-height: 698px; }
.visual-card img { transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.visual-card:hover img { transform: scale(1.035); }
.visual-card__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(21,8,9,.85), transparent 58%); }
.visual-card__copy { position: absolute; inset: auto 30px 28px; color: var(--white); display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 7px 20px; }
.visual-card__copy small { grid-column: 1 / -1; color: var(--gold-2); font-size: .68rem; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.visual-card__copy strong { font-family: var(--serif); font-size: clamp(1.4rem, 2vw, 2.05rem); font-weight: 400; }
.visual-card__copy .icon { width: 24px; color: var(--gold-2); transition: transform .25s; }
.visual-card:hover .visual-card__copy .icon { transform: translateX(5px); }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 60px; }
.split-heading .section-heading { max-width: 760px; }
.event-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.event-card { position: relative; min-height: 400px; padding: 34px 28px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); transition: background-color .3s; }
.event-card:hover { background: rgba(255,255,255,.045); }
.event-card__number { position: absolute; top: 25px; right: 25px; color: rgba(255,255,255,.26); font-size: .7rem; letter-spacing: .14em; }
.event-card > .icon { width: 34px; height: 34px; margin: 88px 0 30px; color: var(--gold-2); }
.event-card h3 { margin-bottom: 18px; color: var(--white); }
.event-card p { color: rgba(255,255,255,.56); font-size: .92rem; }
.event-card__link { position: absolute; left: 28px; bottom: 28px; display: flex; align-items: center; gap: 8px; color: var(--gold-2); font-size: .68rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.event-card__link .icon { width: 16px; }
.process-section { background: var(--paper-2); }
.process-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.process-sticky { position: sticky; top: calc(var(--header-h) + 40px); }
.process-sticky .button { margin-top: 20px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 82px 1fr; gap: 25px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--gold-dark); font-family: var(--serif); font-size: 1.65rem; }
.process-list h3 { margin-bottom: 10px; }
.process-list p { margin: 0; color: var(--muted); }
.gallery-strip { display: grid; grid-template-columns: 1.35fr .8fr .8fr; gap: 14px; }
.gallery-strip a { position: relative; min-height: 480px; overflow: hidden; background: var(--ink); }
.gallery-strip a:nth-child(n+2) { min-height: 390px; margin-top: 90px; }
.gallery-strip img { transition: transform .7s; }
.gallery-strip a:hover img { transform: scale(1.03); }
.gallery-strip a::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(0,0,0,.65),transparent 45%); }
.gallery-strip span { position: absolute; z-index: 2; left: 24px; bottom: 22px; color: var(--white); font-family: var(--serif); font-size: 1.25rem; }
.location-section { background: var(--paper-2); }
.location-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.location-grid h2 { margin-bottom: 25px; }
.location-grid p { color: var(--muted); }
.location-grid address { margin: 28px 0; padding-left: 20px; border-left: 2px solid var(--gold); color: var(--ink); font-weight: 650; }
.map-frame { min-height: 480px; overflow: hidden; background: var(--sand); box-shadow: var(--shadow-sm); }
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 480px; border: 0; filter: saturate(.75) contrast(1.04); }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(50px, 9vw, 130px); }

/* Accordion */
.accordion-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; cursor: pointer; padding: 24px 44px 24px 0; color: var(--ink); font-family: var(--serif); font-size: 1.22rem; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::before, summary::after { content:""; position:absolute; right:7px; top:50%; width:17px; height:1px; background: var(--gold-dark); transition: transform .25s; }
summary::after { transform: rotate(90deg); }
details[open] summary::after { transform: rotate(0); }
details p { padding: 0 44px 24px 0; margin: 0; color: var(--muted); }
.accordion-list--large summary { padding-top: 28px; padding-bottom: 28px; font-size: clamp(1.25rem, 2vw, 1.7rem); }
.accordion-list--large details p { font-size: 1.02rem; }

/* Inquiry */
.inquiry-section { padding: clamp(84px, 10vw, 150px) 0; background: var(--sand); }
.inquiry-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 125px); align-items: start; }
.inquiry-copy h2 { margin-bottom: 24px; }
.inquiry-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-stack { display: grid; margin-top: 42px; border-top: 1px solid var(--line); }
.contact-stack > a { display: flex; align-items: center; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-stack .icon { width: 25px; color: var(--gold-dark); }
.contact-stack span { display: flex; flex-direction: column; }
.contact-stack small { color: var(--muted); font-size: .7rem; }
.contact-stack strong { color: var(--ink); font-size: .95rem; }
.inquiry-form { padding: clamp(26px, 4vw, 50px); background: var(--paper-2); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 18px; margin-bottom: 24px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid label > span { color: var(--ink); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
input, select, textarea { width: 100%; min-height: 50px; padding: 11px 12px; color: var(--text); background: #fff; border: 1px solid rgba(31,28,22,.22); border-radius: 1px; outline: none; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 3px rgba(202,164,95,.14); }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }
.form-status { min-height: 22px; margin-top: 7px; font-size: .78rem; text-align: center; }
.form-status.error { color: var(--danger); }
.form-status.success { color: var(--success); }

/* Interior layouts */
.editorial-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.prose { padding-top: 38px; }
.prose p { color: var(--muted); font-size: 1.08rem; }
.prose p + p { margin-top: 24px; }
.space-grid { display: grid; grid-template-columns: 1fr 1fr; }
.space-card { position: relative; min-height: 560px; padding: clamp(42px, 6vw, 82px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.space-card:nth-child(2n) { border-right: 0; }
.space-card > .icon { width: 42px; height: 42px; margin: 50px 0 35px; color: var(--gold-dark); }
.space-card h2 { font-size: clamp(2rem, 3.4vw, 3.6rem); }
.space-card p { color: var(--muted); }
.space-card__number { color: var(--gold-dark); font-family: var(--serif); font-size: 1.35rem; }
.space-card--image { padding: 0; overflow: hidden; }
.space-card--image::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(20,8,9,.88),transparent 65%); }
.space-card__overlay { position: absolute; z-index: 2; inset: auto 45px 40px; color: rgba(255,255,255,.75); }
.space-card__overlay span { color: var(--gold-2); font-size: .72rem; letter-spacing: .15em; }
.space-card__overlay h2 { margin: 10px 0 14px; color: var(--white); font-size: clamp(2rem, 3vw, 3.2rem); }
.space-card__overlay p { margin: 0; color: rgba(255,255,255,.7); }
.check-list { display: grid; gap: 12px; padding: 0; margin: 28px 0 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--muted); }
.check-list .icon { width: 18px; height: 18px; margin-top: .22em; color: var(--gold-dark); }
.section--ink .check-list li, .section--maroon .check-list li { color: rgba(255,255,255,.72); }
.section--ink .check-list .icon, .section--maroon .check-list .icon { color: var(--gold-2); }
.check-list--inline { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.check-list--inline li {
  align-items: center; gap: 9px; padding: 10px 16px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 100px;
  color: var(--ink); font-size: .86rem; font-weight: 650;
}
.check-list--inline .icon { width: 16px; height: 16px; margin-top: 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-item { min-height: 310px; padding: 35px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-item > .icon { width: 35px; height: 35px; margin-bottom: 70px; color: var(--gold-dark); }
.feature-item h3 { margin-bottom: 15px; }
.feature-item p { margin: 0; color: var(--muted); font-size: .9rem; }
.feature-grid--dark { border-color: var(--line-light); }
.feature-grid--dark .feature-item { border-color: var(--line-light); }
.feature-grid--dark .feature-item > .icon { color: var(--gold-2); }
.feature-grid--dark .feature-item p { color: rgba(255,255,255,.55); }
.comparison-section { background: var(--paper-2); }
.comparison-section .section-heading { margin-bottom: 50px; }
.comparison-table { border-top: 1px solid var(--ink); }
.comparison-table [role="row"] { display: grid; grid-template-columns: .85fr 1fr 1fr; border-bottom: 1px solid var(--line); }
.comparison-table [role="cell"], .comparison-table [role="columnheader"] { padding: 20px; }
.comparison-table [role="cell"]:first-child, .comparison-table [role="columnheader"]:first-child { padding-left: 0; font-weight: 700; }
.comparison-head { color: var(--gold-dark); font-size: .7rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.story-steps { display: grid; grid-template-columns: repeat(4,1fr); }
.story-steps article { position: relative; min-height: 340px; padding: 34px 28px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.story-steps article:last-child { border-right: 0; }
.story-steps span { color: var(--gold-dark); font-family: var(--serif); font-size: 1.5rem; }
.story-steps h3 { margin-top: 100px; }
.story-steps p { color: var(--muted); font-size: .92rem; }
.image-copy-section { background: var(--paper-2); }
.image-copy-section--reverse { background: var(--paper); }
.image-copy-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(50px, 9vw, 130px); align-items: center; }
.image-copy-section--reverse .image-copy__media { order: 2; }
.image-copy__media { position: relative; min-height: 610px; box-shadow: var(--shadow-sm); overflow: hidden; }
.image-copy-grid h2 { margin-bottom: 25px; }
.image-copy-grid > div:last-child > p:not(.eyebrow) { color: var(--muted); }
.image-copy-grid .text-link { margin-top: 30px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 50px; }
.tag-cloud span { padding: 13px 16px; border: 1px solid var(--line-light); color: rgba(255,255,255,.75); font-size: .8rem; }
.prompt-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.prompt-grid .feature-item { min-height: 290px; }
.event-use-grid, .local-value-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.event-use-grid article, .local-value-grid article { min-height: 320px; padding: 36px 28px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.event-use-grid article:last-child, .local-value-grid article:last-child { border-right: 0; }
.event-use-grid .icon, .local-value-grid .icon { width: 34px; height: 34px; margin-bottom: 75px; color: var(--gold-dark); }
.event-use-grid p, .local-value-grid p { color: var(--muted); font-size: .92rem; }
.corporate-brief { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(50px, 9vw, 120px); }
.brief-card { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.brief-card > div { min-height: 170px; padding: 25px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.brief-card span { color: var(--gold-2); font-size: .72rem; }
.brief-card p { margin: 46px 0 0; color: var(--white); font-family: var(--serif); font-size: 1.28rem; }
.occasion-grid, .values-grid, .decision-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.occasion-grid article, .values-grid article, .decision-grid article { min-height: 330px; padding: 32px 28px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.occasion-grid article:last-child, .values-grid article:last-child, .decision-grid article:last-child { border-right: 0; }
.occasion-grid span, .values-grid span, .decision-grid span { color: var(--gold-dark); font-family: var(--serif); font-size: 1.4rem; }
.occasion-grid h3, .values-grid h3, .decision-grid h3 { margin-top: 85px; }
.occasion-grid p, .values-grid p, .decision-grid p { color: var(--muted); font-size: .9rem; }

/* Gallery */
.gallery-intro { display: grid; grid-template-columns: 1fr .55fr; gap: clamp(50px, 9vw, 120px); align-items: end; }
.gallery-intro aside { padding: 28px; border-left: 1px solid var(--gold); background: var(--paper); }
.gallery-intro aside strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.gallery-intro aside p { margin: 12px 0 0; color: var(--muted); font-size: .9rem; }
.gallery-masonry { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 95px; gap: 14px; }
.gallery-tile { position: relative; padding: 0; border: 0; overflow: hidden; cursor: zoom-in; background: var(--ink); text-align: left; }
.gallery-tile:nth-child(1) { grid-column: 1 / 8; grid-row: span 6; }
.gallery-tile:nth-child(2) { grid-column: 8 / 13; grid-row: span 4; }
.gallery-tile:nth-child(3) { grid-column: 8 / 13; grid-row: span 5; }
.gallery-tile:nth-child(4) { grid-column: 1 / 5; grid-row: span 5; }
.gallery-tile:nth-child(5) { grid-column: 5 / 9; grid-row: span 5; }
.gallery-tile:nth-child(6) { grid-column: 9 / 13; grid-row: span 5; }
.gallery-tile img { transition: transform .7s; }
.gallery-tile:hover img { transform: scale(1.035); }
.gallery-tile::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(20,8,9,.8),transparent 48%); }
.gallery-tile > span { position: absolute; z-index: 2; inset: auto 24px 22px; display: grid; grid-template-columns: 1fr auto; align-items: end; color: var(--white); }
.gallery-tile small { grid-column: 1 / -1; color: var(--gold-2); font-size: .63rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.gallery-tile strong { margin-top: 5px; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.gallery-tile .icon { width: 20px; color: var(--gold-2); }
.media-placeholder { display: grid; grid-template-columns: 130px 1fr; gap: 40px; align-items: center; max-width: 950px; padding: 45px; border: 1px solid var(--line); background: var(--paper); }
.media-placeholder > div:first-child { width: 130px; height: 130px; display: grid; place-items: center; color: var(--gold-dark); border: 1px solid var(--gold); border-radius: 50%; }
.media-placeholder > div:first-child .icon { width: 46px; height: 46px; }
.media-placeholder h2 { font-size: clamp(2rem, 3vw, 3.4rem); }
.media-placeholder p:last-child { margin-bottom: 0; color: var(--muted); }
.lightbox { width: min(1200px, calc(100% - 32px)); max-height: 92svh; padding: 0; border: 0; background: var(--ink); box-shadow: var(--shadow-lg); }
.lightbox::backdrop { background: rgba(0,0,0,.84); backdrop-filter: blur(7px); }
.lightbox > button { position: absolute; z-index: 2; top: 12px; right: 12px; width: 44px; height: 44px; display: grid; place-items: center; color: var(--white); background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.25); }
.lightbox img { width: 100%; max-height: 82svh; object-fit: contain; }
.lightbox p { margin: 0; padding: 12px 20px; color: rgba(255,255,255,.75); }

/* Pricing, contact, local pages */
.pricing-factors { display: grid; grid-template-columns: repeat(3,1fr); }
.pricing-factors article { min-height: 290px; padding: 30px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pricing-factors article:nth-child(3n) { border-right: 0; }
.pricing-factors article:nth-child(n+4) { border-top: 0; }
.pricing-factors span { color: var(--gold-dark); font-family: var(--serif); font-size: 1.4rem; }
.pricing-factors h3 { margin-top: 68px; }
.pricing-factors p { color: var(--muted); font-size: .9rem; }
.proposal-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 10vw, 140px); }
.contact-overview { padding-bottom: 20px; }
.contact-hours { display: flex; align-items: center; gap: 10px; margin: 26px 0 0; color: var(--muted); font-size: .85rem; }
.contact-hours .icon { width: 18px; color: var(--gold-dark); }
.contact-card-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.contact-card-grid > a { min-height: 290px; display: flex; flex-direction: column; padding: 32px; background: var(--paper); border: 1px solid transparent; transition: border-color .25s, transform .25s; }
.contact-card-grid > a:hover { border-color: var(--gold); transform: translateY(-3px); }
.contact-card-grid > a > .icon { width: 34px; height: 34px; margin-bottom: auto; color: var(--gold-dark); }
.contact-card-grid small { color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-card-grid strong { margin: 9px 0 28px; color: var(--ink); font-family: var(--serif); font-size: 1.75rem; font-weight: 400; }
.contact-card-grid span { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; color: var(--muted); font-size: .8rem; }
.contact-card-grid span .icon { width: 18px; color: var(--gold-dark); }
.guide-callout { display: flex; align-items: end; justify-content: space-between; gap: 50px; padding: clamp(35px,5vw,70px); background: var(--sage); }
.guide-callout h2 { max-width: 750px; }
.guide-callout p:not(.eyebrow) { color: #5c4a3a; }
.corporate-check { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 9vw, 130px); }

/* Article */
.article { padding: 80px 0 130px; background: var(--paper-2); }
.article-grid { display: grid; grid-template-columns: 260px minmax(0, 820px); gap: clamp(50px, 10vw, 140px); justify-content: center; align-items: start; }
.article-nav { position: sticky; top: calc(var(--header-h) + 40px); display: grid; padding: 25px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-nav .eyebrow { margin-bottom: 12px; }
.article-nav a { padding: 7px 0; color: var(--muted); font-size: .8rem; }
.article-nav a:hover { color: var(--gold-dark); }
.article-body header { padding-bottom: 55px; border-bottom: 1px solid var(--line); }
.article-body header h1 { margin-bottom: 30px; font-size: clamp(2.8rem, 5vw, 5.2rem); }
.article-meta { color: var(--gold-dark); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-lead { color: var(--muted); font-size: 1.2rem; }
.article-body section { padding: 55px 0; border-bottom: 1px solid var(--line); }
.article-body section h2 { margin-bottom: 24px; font-size: clamp(2rem, 3.5vw, 3.25rem); }
.article-body section p { color: var(--muted); font-size: 1.03rem; }
.article-callout { margin: 32px 0 0; padding: 24px 28px; border-left: 3px solid var(--gold); background: var(--paper); }
.article-callout p { margin: 5px 0 0; }
.comparison-table--article { margin-top: 30px; }
.article-end { margin-top: 70px; padding: clamp(35px,6vw,65px); color: rgba(255,255,255,.72); background: var(--maroon); }
.article-end h2 { color: var(--white); }
.article-end p:not(.eyebrow) { margin-bottom: 28px; }

/* Legal / 404 */
.legal-copy { max-width: 850px; }
.legal-copy > h1 { font-size: clamp(2.8rem,5vw,5rem); }
.legal-copy h2 { margin-top: 52px; font-size: 2rem; }
.legal-copy p { color: var(--muted); }
.legal-copy a { color: var(--gold-dark); text-decoration: underline; }
.error-page .site-header, .error-page .site-footer, .error-page .footer-cta, .error-page .floating-wa, .error-page .mobile-action-bar { display: none; }
.not-found { position: relative; min-height: 100svh; display: grid; place-items: center; color: var(--white); background: var(--ink); }
.not-found__content { position: relative; z-index: 2; max-width: 900px; text-align: center; padding: 80px 0; }
.not-found__content > img { width: 105px; margin: 0 auto 30px; }
.not-found h1 { color: var(--white); }
.not-found p:not(.eyebrow) { max-width: 650px; margin: 0 auto 30px; color: rgba(255,255,255,.72); }
.not-found .button-row { justify-content: center; }

/* Footer */
.footer-cta { padding: 70px 0; color: var(--white); background: var(--gold-dark); }
.footer-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.footer-cta .eyebrow { color: rgba(255,255,255,.7); }
.footer-cta h2 { max-width: 800px; margin-bottom: 14px; color: var(--white); font-size: clamp(2.2rem, 4vw, 4.1rem); }
.footer-cta p { margin-bottom: 0; color: rgba(255,255,255,.72); }
.site-footer { padding: 80px 0 24px; color: rgba(255,255,255,.65); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .9fr 1fr; gap: 55px; }
.footer-grid h3 { margin: 0 0 22px; color: var(--white); font-family: var(--sans); font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { font-size: .83rem; }
.footer-grid a:hover { color: var(--gold-2); }
.footer-brand > a { display: block; width: min(330px,100%); }
.footer-brand > a img { width: 100%; }
.footer-brand p { max-width: 420px; margin: 25px 0; font-size: .84rem; }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line-light); }
.social-row .icon { width: 19px; }
.footer-contact address { font-size: .83rem; }
.footer-contact .footer-hours { margin: 10px 0 0; font-size: .78rem; color: rgba(255,255,255,.55); }
.footer-contact a { display: block; margin-top: 8px; font-size: .83rem; }
.footer-contact > a:last-child { display: flex; align-items: center; gap: 8px; color: var(--gold-2); font-weight: 700; }
.footer-contact > a:last-child .icon { width: 16px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 65px; padding-top: 22px; border-top: 1px solid var(--line-light); }
.footer-bottom p { margin: 0; font-size: .68rem; letter-spacing: .04em; }
.floating-wa { position: fixed; z-index: 900; right: 22px; bottom: 24px; min-height: 50px; display: flex; align-items: center; gap: 9px; padding: 11px 16px; color: var(--white); background: #1d7a4d; border-radius: 100px; box-shadow: 0 10px 35px rgba(0,0,0,.25); font-size: .75rem; font-weight: 800; }
.floating-wa .icon { width: 23px; }
.mobile-action-bar { display: none; }

/* Focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid var(--gold-2); outline-offset: 3px; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .nav-toggle { display: grid; }
  .header-call span { display: none; }
  .event-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-item { min-height: 290px; }
  .event-use-grid, .local-value-grid, .occasion-grid, .values-grid, .decision-grid { grid-template-columns: 1fr 1fr; }
  .event-use-grid article:nth-child(2), .local-value-grid article:nth-child(2), .occasion-grid article:nth-child(2), .values-grid article:nth-child(2), .decision-grid article:nth-child(2) { border-right: 0; }
  .event-use-grid article:nth-child(n+3), .local-value-grid article:nth-child(n+3), .occasion-grid article:nth-child(n+3), .values-grid article:nth-child(n+3), .decision-grid article:nth-child(n+3) { border-top: 0; }
  .story-steps { grid-template-columns: 1fr 1fr; }
  .story-steps article:nth-child(2) { border-right: 0; }
  .story-steps article:nth-child(n+3) { border-top: 0; }
  .prompt-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr .8fr .9fr; }
  .footer-contact { grid-column: 2 / -1; }
}

@media (max-width: 900px) {
  :root { --header-h: 74px; }
  .container { width: min(var(--container), calc(100% - 32px)); }
  .section { padding: 78px 0; }
  .header__inner { width: calc(100% - 24px); }
  .header-wa span { display: none; }
  .header-wa { width: 42px; height: 42px; justify-content: center; padding: 0; }
  .home-hero { min-height: 700px; }
  .home-hero__media img, .home-hero__media video { object-position: 68% center; }
  .home-hero__content { padding: 0 0 90px; }
  .hero-scroll-cue { bottom: 26px; width: 40px; height: 40px; }
  .page-hero { min-height: 620px; }
  .page-hero__media img { object-position: 66% center; }
  .page-hero__content { padding: 160px 0 72px; }
  .split-intro, .process-grid, .location-grid, .faq-layout, .inquiry-grid, .editorial-split, .image-copy-grid, .corporate-brief, .gallery-intro, .proposal-grid, .corporate-check { grid-template-columns: 1fr; }
  .process-sticky, .article-nav { position: static; }
  .visual-triptych { grid-template-columns: 1fr 1fr; grid-template-rows: 500px 300px; }
  .visual-card--large { grid-column: 1 / -1; grid-row: auto; min-height: 500px; }
  .visual-card { min-height: 300px; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .gallery-strip a:first-child { grid-column: 1 / -1; }
  .gallery-strip a:nth-child(n+2) { margin-top: 0; }
  .map-frame, .map-frame iframe { min-height: 400px; }
  .space-grid { grid-template-columns: 1fr; }
  .space-card { border-right: 0; }
  .image-copy-section--reverse .image-copy__media { order: initial; }
  .image-copy__media { min-height: 520px; }
  .pricing-factors { grid-template-columns: 1fr 1fr; }
  .pricing-factors article:nth-child(3n) { border-right: 1px solid var(--line); }
  .pricing-factors article:nth-child(2n) { border-right: 0; }
  .pricing-factors article:nth-child(n+3) { border-top: 0; }
  .contact-card-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .article-nav { display: none; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 280px; }
  .gallery-tile:nth-child(n) { grid-column: auto; grid-row: auto; }
  .footer-cta__inner { display: grid; }
  .footer-grid { grid-template-columns: 1.25fr 1fr; }
  .footer-contact { grid-column: auto; }
}

@media (max-width: 640px) {
  body { padding-bottom: 63px; }
  .brand__mark { width: 41px; height: 41px; }
  .brand__type strong { font-size: 1.12rem; }
  .brand__type small { font-size: .43rem; }
  .header-call { display: none; }
  .home-hero { min-height: 620px; }
  .home-hero__content { padding: 0 0 70px; }
  .home-hero__actions { gap: 18px; }
  .hero-scroll-cue { display: none; }
  .home-stats .stat-band { grid-template-columns: 1fr 1fr; }
  .page-hero { min-height: 610px; }
  .page-hero h1 { font-size: clamp(2.75rem, 13vw, 4.4rem); }
  .page-hero__content > p:not(.eyebrow) { font-size: 1rem; }
  .button-row { align-items: stretch; }
  .button-row .button:not(.button--text) { flex: 1 1 100%; }
  .visual-triptych { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .visual-card--large, .visual-card { min-height: 390px; grid-column: auto; }
  .split-heading { align-items: start; flex-direction: column; margin-bottom: 42px; }
  .event-grid, .feature-grid, .event-use-grid, .local-value-grid, .occasion-grid, .values-grid, .decision-grid, .story-steps, .prompt-grid, .pricing-factors { grid-template-columns: 1fr; }
  .event-card { min-height: 350px; }
  .event-card > .icon { margin-top: 65px; }
  .feature-item, .event-use-grid article, .local-value-grid article, .occasion-grid article, .values-grid article, .decision-grid article, .story-steps article { border-right: 0; border-top: 1px solid var(--line); }
  .event-use-grid article:nth-child(n+3), .local-value-grid article:nth-child(n+3), .occasion-grid article:nth-child(n+3), .values-grid article:nth-child(n+3), .decision-grid article:nth-child(n+3), .story-steps article:nth-child(n+3) { border-top: 1px solid var(--line); }
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip a { min-height: 390px !important; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.full { grid-column: auto; }
  .space-card { min-height: 500px; padding: 38px 25px; }
  .space-card__overlay { inset: auto 24px 26px; }
  .image-copy__media { min-height: 430px; }
  .brief-card { grid-template-columns: 1fr; }
  .brief-card > div { min-height: 140px; }
  .comparison-table { overflow-x: auto; }
  .comparison-table [role="row"] { min-width: 660px; }
  .contact-card-grid > a { min-height: 250px; }
  .gallery-masonry { display: grid; grid-template-columns: 1fr; grid-auto-rows: 400px; }
  .media-placeholder { grid-template-columns: 1fr; padding: 28px; }
  .media-placeholder > div:first-child { width: 90px; height: 90px; }
  .guide-callout { align-items: stretch; flex-direction: column; }
  .article { padding-top: 55px; }
  .article-body header h1 { font-size: 2.65rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .floating-wa { display: none; }
  .mobile-action-bar { position: fixed; z-index: 950; left: 0; right: 0; bottom: 0; min-height: 63px; display: grid; grid-template-columns: repeat(3,1fr); padding-bottom: env(safe-area-inset-bottom); color: var(--white); background: rgba(27,18,16,.98); border-top: 1px solid rgba(255,255,255,.14); }
  .mobile-action-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; border-right: 1px solid rgba(255,255,255,.12); font-size: .58rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
  .mobile-action-bar a:last-child { border-right: 0; }
  .mobile-action-bar .icon { width: 20px; height: 20px; color: var(--gold-2); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
.article-body header .article-title { margin-bottom: 30px; font-size: clamp(2.8rem, 5vw, 5.2rem); }
.legal-copy .legal-title { font-size: clamp(2.8rem,5vw,5rem); }
.legal-copy h3 { margin-top: 52px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
