:root {
  --ink: #07111b;
  --ink-deep: #040b12;
  --mineral: #f4f1eb;
  --paper: #fbfaf7;
  --text: #111923;
  --muted: #6e7378;
  --light-text: #edf0ed;
  --light-muted: #b6bec4;
  --copper: #c9784f;
  --copper-bright: #e49a70;
  --border-dark: rgba(226, 235, 238, .16);
  --border-light: rgba(7, 17, 27, .18);
  --gutter: clamp(24px, 5vw, 80px);
  --content: 1440px;
  --display: "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue", sans-serif;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; color: var(--text); background: var(--mineral); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.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; left: 16px; top: -60px; z-index: 100; padding: 12px 16px; color: var(--ink); background: var(--paper); transition: top .2s; }
.skip-link:focus { top: 16px; }
.scroll-progress { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; height: 2px; pointer-events: none; transform: scaleX(var(--scroll-progress, 0)); transform-origin: left; background: var(--copper-bright); box-shadow: 0 0 12px rgba(228,154,112,.48); }

.site-header {
  position: absolute; inset: 0 0 auto; z-index: 20; height: 112px; padding: 0 var(--gutter); display: flex; align-items: center; justify-content: space-between; color: var(--light-text); border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, height .3s;
}
.site-header.is-scrolled { position: fixed; height: 76px; background: rgba(4, 11, 18, .92); border-color: var(--border-dark); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 18px; text-decoration: none; }
.brand-monogram { color: var(--copper-bright); font-family: var(--serif); font-size: 35px; line-height: 1; letter-spacing: -.06em; }
.brand-rule { width: 1px; height: 42px; background: rgba(255,255,255,.32); }
.brand-name { font-family: var(--display); font-size: 15px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; white-space: nowrap; }
.site-nav { display: flex; align-items: center; gap: clamp(28px, 4vw, 60px); }
.site-nav a { position: relative; color: var(--light-text); font-family: var(--display); font-size: 14px; font-weight: 600; letter-spacing: .18em; text-decoration: none; text-transform: uppercase; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--copper-bright); transition: right .25s; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.site-nav a[aria-current="page"]::after { right: 0; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; color: inherit; background: transparent; border: 0; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 1px; margin: 7px auto; background: currentColor; transition: transform .25s; }

.hero { position: relative; min-height: max(820px, 100svh); display: flex; align-items: center; overflow: hidden; color: var(--light-text); background: var(--ink-deep); isolation: isolate; }
.hero-art { position: absolute; inset: -3%; overflow: hidden; transform: translate3d(0, calc(var(--hero-shift, 0) * 1px), 0); animation: hero-enter 1.4s cubic-bezier(.2,.7,.2,1) both; will-change: transform; }
.hero-art::after { content: ""; position: absolute; inset: -2%; background: url("assets/hero-architecture.webp") center / cover no-repeat; transform: translate3d(0, calc(var(--hero-shift, 0) * 1px), 0) scale(1.035); animation: hero-drift 18s 1.4s ease-in-out infinite alternate; will-change: transform; }
.hero-art::before { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg, rgba(4,11,18,.25) 0%, rgba(4,11,18,.1) 38%, rgba(4,11,18,0) 68%), linear-gradient(108deg, transparent 40%, rgba(228,154,112,.11) 49%, transparent 58%); background-size: 100% 100%, 220% 100%; animation: light-sweep 11s 2s ease-in-out infinite; }
.hero-content { position: relative; z-index: 3; width: min(860px, 60vw); margin-left: var(--gutter); padding-top: 86px; opacity: var(--hero-opacity, 1); transform: translate3d(0, calc(var(--hero-shift, 0) * .28px), 0); animation: content-enter 1s .15s cubic-bezier(.2,.7,.2,1) both; will-change: transform, opacity; }
.hero h1 { max-width: 820px; margin: 0 0 30px; font-family: var(--display); font-size: clamp(58px, 5.5vw, 96px); font-weight: 300; line-height: .99; letter-spacing: -.035em; text-transform: uppercase; }
.hero p { max-width: 650px; margin: 0; color: #dce1df; font-size: clamp(18px, 1.5vw, 24px); line-height: 1.58; }
.scroll-cue { position: absolute; z-index: 3; right: var(--gutter); bottom: 34px; display: flex; align-items: center; gap: 13px; color: var(--light-muted); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; animation: cue-float 2.4s ease-in-out infinite; }
.scroll-cue span { display: block; width: 50px; height: 1px; background: var(--copper); transform-origin: left; animation: cue-line 2.4s ease-in-out infinite; }
.scroll-cue b { font: inherit; letter-spacing: inherit; }
.mobile-cue { display: none; }

.section-shell { width: min(var(--content), 100%); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.light-section { background: var(--mineral); }
.dark-section { color: var(--light-text); background: var(--ink); }
.principles { padding: clamp(90px, 11vw, 180px) 0; }
.principles-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(320px, .72fr); gap: clamp(60px, 8vw, 128px); align-items: stretch; }
.principles-copy { padding: 28px 0 16px; }
.principles h2, .approach h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; }
.principles h2 { max-width: 780px; font-size: clamp(48px, 5vw, 78px); line-height: 1.02; }
.section-intro { max-width: 680px; margin: 30px 0 70px; font-size: clamp(18px, 1.6vw, 23px); line-height: 1.55; }
.section-intro::after { content: ""; display: block; width: 58px; height: 2px; margin-top: 42px; background: var(--copper); }
.principle-list { display: grid; grid-template-columns: repeat(3, 1fr); }
.principle-list article { min-width: 0; padding: 0 30px; border-left: 1px solid var(--border-light); }
.principle-list article:first-child { padding-left: 0; border-left: 0; }
.principle-number { color: var(--copper); font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.principle-list h3 { margin: 13px 0 14px; font-family: var(--serif); font-size: clamp(23px, 2vw, 31px); font-weight: 400; line-height: 1.1; }
.principle-list p { margin: 0; color: #41464b; font-size: 15px; line-height: 1.65; }
.material-figure { position: relative; margin: 0; min-height: 650px; overflow: hidden; }
.material-figure img { width: 100%; height: calc(100% + 50px); object-fit: cover; transform: translate3d(0, calc(var(--material-shift, 0) * 1px), 0) scale(1.025); will-change: transform; }
.material-figure figcaption { position: absolute; right: 0; bottom: 0; padding: 24px 28px; color: var(--light-text); background: var(--ink); font-family: var(--display); font-size: 12px; font-weight: 600; line-height: 1.55; letter-spacing: .14em; text-transform: uppercase; }

.standards-section { position: relative; overflow: hidden; padding: clamp(100px, 11vw, 175px) 0; background: #e5e0d8; }
.standards-section::before { content: ""; position: absolute; top: 0; right: 0; width: 42%; height: 1px; background: var(--copper); transform-origin: right; animation: standards-rule 7s ease-in-out infinite alternate; }
.standards-layout { display: grid; grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr); gap: clamp(60px, 10vw, 150px); }
.section-label { display: block; margin-bottom: 32px; color: #8d4d32; font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
.standards-heading h2 { max-width: 650px; margin: 0; font-family: var(--serif); font-size: clamp(48px, 4.8vw, 76px); font-weight: 400; line-height: 1.04; letter-spacing: -.04em; }
.standards-lead { margin: 3px 0 55px; color: #343a3f; font-size: clamp(18px, 1.55vw, 23px); line-height: 1.66; }
.standards-list { border-top: 1px solid var(--border-light); }
.standards-list article { display: grid; grid-template-columns: 58px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--border-light); }
.standards-list article > span { padding-top: 6px; color: #9a5437; font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: .14em; }
.standards-list h3 { margin: 0 0 9px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.standards-list p { max-width: 590px; margin: 0; color: #4d5357; font-size: 15px; line-height: 1.7; }

.approach { padding: clamp(100px, 11vw, 170px) 0 clamp(110px, 12vw, 190px); }
.approach-heading { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: end; padding-bottom: 76px; }
.approach h2 { max-width: 520px; font-size: clamp(52px, 5.1vw, 80px); line-height: 1.02; }
.approach-heading p { max-width: 620px; margin: 0 0 5px; color: var(--light-muted); font-size: 19px; line-height: 1.65; }
.process-rail { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 44px 0 0; list-style: none; border-top: 1px solid var(--copper); }
.process-rail::after { content: ""; position: absolute; right: -2px; top: -5px; width: 9px; height: 9px; border-top: 1px solid var(--copper); border-right: 1px solid var(--copper); transform: rotate(45deg); }
.process-rail li { position: relative; display: grid; grid-template-columns: 54px 1fr; gap: 24px; padding: 0 44px; border-left: 1px solid var(--border-dark); }
.process-rail li:first-child { padding-left: 0; border-left: 0; }
.process-rail li::before { content: ""; position: absolute; top: -50px; left: -3px; width: 6px; height: 11px; background: var(--copper); }
.process-rail li:first-child::before { left: 0; }
.stage { color: var(--copper-bright); font-family: var(--serif); font-size: 36px; }
.process-rail h3 { margin: 3px 0 14px; font-family: var(--serif); font-size: 36px; font-weight: 400; }
.process-rail p { margin: 0; color: var(--light-muted); font-size: 15px; line-height: 1.65; }

.confidentiality { position: relative; overflow: hidden; }
.confidentiality-copy { position: relative; z-index: 2; padding-top: clamp(100px, 10vw, 160px); }
.confidentiality h2 { margin: 0; font-family: var(--display); font-size: clamp(60px, 6.6vw, 108px); font-weight: 300; line-height: .98; letter-spacing: -.035em; text-transform: uppercase; }
.confidentiality h2::after { content: ""; display: block; width: 92px; height: 2px; margin-top: 42px; background: var(--copper); }
.confidentiality-copy > p { max-width: 960px; margin: 32px 0 56px; color: #d5dadd; font-size: clamp(20px, 1.7vw, 25px); line-height: 1.6; }
.confidentiality-line { display: grid; grid-template-columns: 290px 1fr; align-items: center; min-height: 112px; border: 1px solid var(--border-dark); backdrop-filter: blur(6px); background: rgba(7,17,27,.28); }
.confidentiality-line span { padding: 0 42px; color: var(--copper-bright); font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; }
.confidentiality-line p { margin: 0; padding: 0 42px; color: var(--light-muted); font-size: 18px; border-left: 1px solid var(--border-dark); }
.closing-art { position: relative; z-index: 1; height: clamp(300px, 37vw, 590px); margin-top: -20px; background: url("assets/closing-horizon.webp") center bottom / cover no-repeat; transform: translate3d(0, calc(var(--closing-shift, 0) * 1px), 0) scale(1.025); will-change: transform; }

.site-footer { color: #d9dede; background: #07121d; border-top: 1px solid rgba(201,120,79,.75); }
.footer-inner { width: min(var(--content), 100%); min-height: 230px; margin: 0 auto; padding: 48px var(--gutter); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 50px; }
.footer-brand { display: grid; gap: 9px; font-size: 16px; line-height: 1.55; }
.footer-brand strong { font-weight: 500; }
.footer-brand address { color: var(--light-muted); font-style: normal; }
.footer-brand a, .site-footer nav a { color: var(--copper-bright); text-underline-offset: 5px; text-decoration-color: transparent; transition: text-decoration-color .2s; }
.footer-brand a:hover, .site-footer nav a:hover { text-decoration-color: currentColor; }
.site-footer nav { display: flex; gap: 34px; }
.site-footer nav a { text-decoration: none; }
.copyright { justify-self: end; margin: 0; color: var(--light-muted); font-size: 14px; }

.reveal { opacity: 0; transform: translateY(46px); transition: opacity .95s ease, transform .95s cubic-bezier(.16,.8,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger:nth-child(2) { transition-delay: .12s; }
.reveal-stagger:nth-child(3) { transition-delay: .24s; }

.legal-page { min-height: 100vh; color: var(--text); background: var(--mineral); }
.legal-page .site-header { position: relative; color: var(--light-text); background: var(--ink); }
.legal-main { width: min(900px, 100%); margin: 0 auto; padding: 90px var(--gutter) 130px; }
.legal-main h1 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(48px, 7vw, 84px); font-weight: 400; letter-spacing: -.04em; }
.legal-main .updated { margin: 0 0 55px; color: var(--copper); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.legal-main h2 { margin: 46px 0 14px; font-family: var(--serif); font-size: 31px; font-weight: 400; }
.legal-main p, .legal-main li { color: #3e4449; font-size: 17px; line-height: 1.75; }
.legal-main a { color: #8a4428; text-underline-offset: 4px; }

@media (min-width: 981px) {
  body.horizontal-site { height: 100%; overflow: hidden; }
  .site-header { position: fixed; }
  .horizontal-track {
    display: flex;
    width: 100%;
    height: 100svh;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .horizontal-track::-webkit-scrollbar { display: none; }
  .horizontal-track main { display: contents; }
  .horizontal-track [data-panel] {
    position: relative;
    flex: 0 0 100vw;
    width: 100vw;
    height: 100svh;
    min-height: 0;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .horizontal-track [data-panel]::after {
    content: "";
    position: absolute;
    z-index: 8;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 8%, rgba(201,120,79,.7) 50%, transparent 92%);
  }
  .hero { min-height: 0; }
  .hero-art { transform: translate3d(calc(var(--hero-shift, 0) * 1px), 0, 0); }
  .scroll-cue { right: 44px; }
  .scroll-cue::after { content: ""; width: 7px; height: 7px; margin-left: -18px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
  .principles { padding: 112px 0 48px; }
  .principles-layout { height: 100%; gap: clamp(52px, 6vw, 100px); align-items: center; }
  .principles-copy { padding: 0; }
  .principles h2 { font-size: clamp(46px, 4.2vw, 68px); }
  .section-intro { margin: 24px 0 42px; font-size: clamp(17px, 1.35vw, 21px); }
  .section-intro::after { margin-top: 28px; }
  .principle-list article { padding: 0 22px; }
  .principle-list h3 { font-size: clamp(21px, 1.8vw, 28px); }
  .principle-list p { font-size: 14px; }
  .material-figure { height: calc(100svh - 170px); min-height: 0; max-height: 760px; }
  .material-figure img { transform: translate3d(calc(var(--material-shift, 0) * 1px), 0, 0) scale(1.035); }
  .standards-section { padding: 120px 0 55px; }
  .standards-layout { height: 100%; align-items: center; gap: clamp(56px, 8vw, 130px); }
  .standards-heading h2 { font-size: clamp(46px, 4.5vw, 70px); }
  .standards-lead { margin-bottom: 34px; font-size: clamp(17px, 1.35vw, 21px); }
  .standards-list article { padding: 20px 0; }
  .standards-list h3 { font-size: 25px; }
  .approach { padding: 128px 0 64px; }
  .approach .section-shell { display: flex; height: 100%; flex-direction: column; justify-content: center; }
  .approach-heading { padding-bottom: 55px; }
  .approach h2 { font-size: clamp(48px, 4.7vw, 72px); }
  .process-rail { padding-top: 38px; }
  .process-rail li { padding: 0 34px; }
  .confidentiality-copy { padding-top: 122px; }
  .confidentiality h2 { font-size: clamp(58px, 6vw, 94px); }
  .confidentiality h2::after { margin-top: 28px; }
  .confidentiality-copy > p { max-width: 900px; margin: 25px 0 35px; font-size: clamp(18px, 1.45vw, 23px); }
  .confidentiality-line { min-height: 94px; }
  .closing-art { position: absolute; right: 0; bottom: -4%; left: 0; height: 48%; margin: 0; transform: translate3d(calc(var(--closing-shift, 0) * 1px), 0, 0) scale(1.035); }
  .site-footer {
    flex-basis: clamp(650px, 52vw, 820px) !important;
    width: clamp(650px, 52vw, 820px) !important;
    border-top: 0;
    border-left: 1px solid rgba(201,120,79,.75);
    scroll-snap-align: end !important;
  }
  .footer-inner { width: 100%; height: 100%; padding: 120px clamp(55px, 7vw, 110px); grid-template-columns: 1fr; align-content: center; align-items: start; gap: 52px; }
  .footer-brand { font-size: 19px; }
  .site-footer nav { font-size: 17px; }
  .copyright { justify-self: start; }
}

@media (min-width: 981px) and (max-height: 820px) {
  .principles { padding-top: 92px; padding-bottom: 32px; }
  .material-figure { height: calc(100svh - 128px); }
  .principles h2 { font-size: clamp(40px, 3.8vw, 58px); }
  .section-intro { margin: 18px 0 30px; font-size: 17px; }
  .section-intro::after { margin-top: 18px; }
  .standards-section { padding: 96px 0 35px; }
  .standards-heading h2 { font-size: clamp(42px, 4vw, 60px); }
  .standards-lead { margin-bottom: 22px; font-size: 17px; }
  .standards-list article { padding: 14px 0; }
  .standards-list h3 { font-size: 22px; }
  .standards-list p { font-size: 14px; }
  .approach { padding: 100px 0 42px; }
  .approach-heading { padding-bottom: 36px; }
  .approach h2 { font-size: 54px; }
  .process-rail { padding-top: 30px; }
  .confidentiality-copy { padding-top: 100px; }
  .confidentiality h2 { font-size: 66px; }
  .confidentiality-copy > p { margin: 18px 0 26px; font-size: 18px; }
  .confidentiality-line { min-height: 80px; }
  .closing-art { height: 42%; }
}

@keyframes hero-enter { from { opacity: 0; } to { opacity: 1; } }
@keyframes content-enter { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes hero-drift { from { transform: translate3d(-.5%, -.5%, 0) scale(1.035); } to { transform: translate3d(.75%, .5%, 0) scale(1.065); } }
@keyframes light-sweep { 0%, 18% { background-position: 0 0, 120% 0; } 72%, 100% { background-position: 0 0, -120% 0; } }
@keyframes cue-float { 0%, 100% { transform: translateY(0); opacity: .72; } 50% { transform: translateY(-6px); opacity: 1; } }
@keyframes cue-line { 0%, 100% { transform: scaleX(.55); } 50% { transform: scaleX(1); } }
@keyframes standards-rule { from { transform: scaleX(.35); opacity: .4; } to { transform: scaleX(1); opacity: 1; } }

@media (max-width: 980px) {
  .site-header { height: 88px; }
  .brand-rule, .brand-name { display: none; }
  .menu-toggle { display: block; z-index: 22; }
  .site-nav { position: fixed; inset: 0; z-index: 21; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 28px; padding: 100px var(--gutter); visibility: hidden; opacity: 0; background: rgba(4,11,18,.98); transition: opacity .25s, visibility .25s; }
  .site-nav a { font-family: var(--serif); font-size: 42px; font-weight: 400; letter-spacing: -.02em; text-transform: none; }
  .menu-open .site-nav { visibility: visible; opacity: 1; }
  .menu-open .menu-toggle span:not(.sr-only):nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:not(.sr-only):nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .hero-content { width: 76vw; }
  .hero-art { background-position: 57% center; }
  .desktop-cue { display: none; }
  .mobile-cue { display: inline; }
  .principles-layout { grid-template-columns: 1fr; }
  .material-figure { min-height: 660px; }
  .standards-layout { grid-template-columns: 1fr; gap: 55px; }
  .approach-heading { grid-template-columns: 1fr; gap: 28px; }
  .process-rail { grid-template-columns: 1fr; gap: 50px; padding-top: 0; border-top: 0; border-left: 1px solid var(--copper); }
  .process-rail::after { display: none; }
  .process-rail li, .process-rail li:first-child { padding: 0 0 0 40px; border-left: 0; }
  .process-rail li::before, .process-rail li:first-child::before { top: 8px; left: -4px; width: 7px; height: 7px; }
  .footer-inner { grid-template-columns: 1fr auto; }
  .copyright { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 680px) {
  :root { --gutter: 22px; }
  .brand-monogram { font-size: 31px; }
  .site-nav a { font-size: 36px; }
  .hero { min-height: 760px; align-items: flex-end; padding-bottom: 110px; }
  .hero-art { background-position: 62% center; }
  .hero-art::before { background: linear-gradient(180deg, rgba(4,11,18,.04), rgba(4,11,18,.3) 42%, rgba(4,11,18,.88) 80%, rgba(4,11,18,.98)); }
  .hero-content { width: auto; margin: 0 var(--gutter); padding-top: 0; }
  .hero h1 { font-size: clamp(46px, 14.2vw, 66px); }
  .hero p { max-width: 520px; font-size: 17px; line-height: 1.55; }
  .scroll-cue { left: var(--gutter); right: auto; bottom: 32px; }
  .principle-list { grid-template-columns: 1fr; }
  .principle-list article, .principle-list article:first-child { padding: 26px 0; border-left: 0; border-top: 1px solid var(--border-light); }
  .material-figure { min-height: 510px; }
  .approach h2 { font-size: 49px; }
  .process-rail li { grid-template-columns: 45px 1fr; gap: 14px; }
  .stage { font-size: 28px; }
  .process-rail h3 { font-size: 31px; }
  .standards-heading h2 { font-size: 46px; }
  .standards-list article { grid-template-columns: 42px 1fr; gap: 12px; }
  .confidentiality h2 { font-size: 50px; }
  .confidentiality-line { grid-template-columns: 1fr; padding: 28px; }
  .confidentiality-line span, .confidentiality-line p { padding: 0; }
  .confidentiality-line p { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border-dark); border-left: 0; font-size: 16px; }
  .closing-art { height: 290px; margin-top: 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 34px; }
  .copyright { grid-column: auto; }
}

@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; }
  .hero-content, .hero-art::after, .material-figure img, .closing-art { transform: none !important; opacity: 1 !important; }
}
