:root {
  color-scheme: light;
  --ink: #16212c;
  --muted: #58697a;
  --bg: #fbfcfd;
  --surface: #f2f5f7;
  --surface-2: #e9eff3;
  --line: #d8e1e7;
  --blue: #9bcdf0;
  --blue-soft: #dceef9;
  --blue-deep: #2c709e;
  --header: rgba(251, 252, 253, 0.9);
  --shadow: rgba(39, 69, 91, 0.14);
  --shadow-soft: 0 18px 46px rgba(40, 82, 111, .14);
  --shadow-deep: 0 30px 75px rgba(35, 78, 108, .2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1380px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--bg); font-family: var(--sans); font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body::before { content: ""; position: fixed; inset: 0; z-index: 100; opacity: .018; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
a { color: inherit; }
img { display: block; width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--blue-deep); outline-offset: 4px; }
::selection { color: var(--ink); background: var(--blue); }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 200; padding: 10px 14px; background: var(--blue); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.wrap { width: min(calc(100% - 80px), var(--max)); margin-inline: auto; }
.section { padding: clamp(100px, 11vw, 180px) 0; }
.section--compact { padding: clamp(68px, 8vw, 116px) 0; }
.section--surface { background: var(--surface); }
.section--line { border-top: 1px solid var(--line); }
.mono { font-family: "Cascadia Mono", Consolas, monospace; }
.small { color: var(--muted); font-size: .84rem; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: .98; letter-spacing: -.045em; }
h1 { margin-bottom: 0; font-size: clamp(3.8rem, 7.6vw, 8.5rem); font-weight: 480; }
h2 { margin-bottom: 28px; font-size: clamp(3rem, 6.3vw, 7rem); font-weight: 470; }
h3 { margin-bottom: 14px; font-size: clamp(1.5rem, 2.4vw, 2.5rem); font-weight: 500; }
h1 em, h2 em { color: var(--blue-deep); font-family: var(--serif); font-weight: 400; }
.lede { max-width: 650px; color: var(--muted); font-size: clamp(1.08rem, 1.5vw, 1.34rem); }
.kicker { display: flex; gap: 15px; align-items: center; margin: 0 0 24px; color: var(--blue-deep); font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.kicker::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.text-link { display: inline-flex; gap: 24px; align-items: center; padding-bottom: 6px; border-bottom: 1px solid var(--ink); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.text-link span { color: var(--blue-deep); transition: transform .35s var(--ease); }
.text-link:hover span { transform: translateX(6px); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; border-bottom: 1px solid var(--line); background: var(--header); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); }
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 82px; }
.brand { display: inline-flex; gap: 13px; align-items: center; width: max-content; text-decoration: none; }
.brand-mark { display: grid; width: 40px; height: 44px; place-items: center; border-right: 1px solid var(--line); color: var(--ink); font-family: var(--serif); font-size: 1.25rem; letter-spacing: -.12em; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; letter-spacing: -.015em; }
.brand-copy span { margin-top: 6px; color: var(--muted); font-size: .54rem; letter-spacing: .2em; text-transform: uppercase; }
.site-nav ul { display: flex; gap: 34px; margin: 0; padding: 0; list-style: none; }
.site-nav a { position: relative; padding: 10px 0; color: var(--muted); font-size: .8rem; text-decoration: none; }
.site-nav a::after { content: ""; position: absolute; inset: auto 0 3px; height: 1px; background: var(--blue-deep); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-contact { justify-self: end; padding: 12px 17px; border: 1px solid var(--line); font-size: .72rem; font-weight: 700; text-decoration: none; transition: border-color .3s var(--ease), background .3s var(--ease); }
.header-contact:hover { border-color: var(--blue-deep); background: var(--blue-soft); }
.header-contact span { margin-left: 15px; color: var(--blue-deep); }
.nav-toggle { display: none; color: var(--ink); border: 0; background: transparent; }

.button-row, .contact-banner-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 34px; }
.button { display: inline-flex; gap: 22px; align-items: center; justify-content: center; min-height: 56px; padding: 14px 25px; color: var(--ink); border: 1px solid var(--blue); border-radius: 999px; background: var(--blue); box-shadow: 0 11px 27px rgba(52, 123, 169, .2); font-size: .84rem; font-weight: 700; text-decoration: none; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease); }
.button:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(45, 112, 157, .27); }
.button:active { transform: translateY(1px); }
.button--ghost { border-color: #9facb8; background: transparent; }
.button--ghost { box-shadow: 0 10px 25px rgba(46, 76, 96, .08); }
.button--ghost:hover { background: #fff; box-shadow: 0 16px 34px rgba(46, 76, 96, .12); }

.home-hero { min-height: 100svh; overflow: hidden; padding: 150px 0 0; background: linear-gradient(135deg, #fff 0 72%, #eef5f9 72%); }
.hero-top { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(260px, .45fr); gap: 70px; align-items: end; padding-bottom: 64px; }
.hero-copy h1 { max-width: 11ch; }
.hero-summary { max-width: 390px; padding: 0 0 12px 32px; border-left: 1px solid var(--line); }
.hero-summary p { margin-bottom: 28px; color: var(--muted); }
.hero-frame { position: relative; width: calc(100% - 80px); height: min(48vw, 640px); min-height: 430px; margin: 0 auto; overflow: hidden; transform-origin: center top; }
.hero-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(13, 31, 43, .34)); }
.hero-media { height: 100%; object-fit: cover; object-position: center 47%; filter: saturate(.65) contrast(.98) brightness(1.04); }
.hero-frame-label { position: absolute; inset: auto 35px 28px; z-index: 2; display: flex; justify-content: space-between; color: white; font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }

.statement { position: relative; min-height: 100svh; overflow: hidden; display: flex; align-items: center; }
.statement-grid { display: grid; grid-template-columns: 130px minmax(0, 1fr); }
.section-number { color: var(--muted); font-size: .68rem; letter-spacing: .14em; }
.statement-copy { position: relative; z-index: 2; }
.statement-copy h2 { max-width: 12ch; }
.statement-detail { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; max-width: 820px; margin: 60px 0 0 auto; }
.statement-detail p { max-width: 480px; margin: 0; color: var(--muted); }
.statement-orbit { position: absolute; top: 50%; left: 52%; width: min(70vw, 960px); aspect-ratio: 1; border: 1px solid rgba(122, 179, 217, .2); border-radius: 50%; transform: translate(-50%, -50%); }
.statement-orbit::before, .statement-orbit::after, .statement-orbit span { content: ""; position: absolute; border: 1px solid rgba(122, 179, 217, .16); border-radius: 50%; }
.statement-orbit::before { inset: 13%; }
.statement-orbit::after { inset: 30%; }
.statement-orbit span:first-child { inset: 45% -10% 45%; border-radius: 0; border-width: 1px 0 0; }
.statement-orbit span:last-child { inset: -10% 50% -10%; border-radius: 0; border-width: 0 0 0 1px; }

.services-stage { min-height: 100svh; padding: clamp(100px, 10vw, 150px) 0; overflow: hidden; border-block: 1px solid var(--line); background: var(--surface); }
.services-heading { display: grid; grid-template-columns: 1fr 430px; gap: 60px; align-items: end; margin-bottom: 74px; }
.services-heading h2 { margin: 0; }
.services-heading > p { margin: 0; color: var(--muted); }
.services-composition { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.05fr) minmax(260px, .75fr); min-height: 590px; border-block: 1px solid var(--line); }
.service-names { display: grid; margin: 0; padding: 0; list-style: none; }
.service-names li { display: grid; }
.service-name { display: grid; grid-template-columns: 42px 1fr; gap: 18px; align-items: center; padding: 20px 24px 20px 0; color: var(--muted); border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; transition: color .3s var(--ease), padding-left .3s var(--ease); }
.service-names li:last-child .service-name { border-bottom: 0; }
.service-name span { font-family: "Cascadia Mono", monospace; font-size: .65rem; }
.service-name.is-active { padding-left: 12px; color: var(--ink); font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.7rem); }
.service-name.is-active span { color: var(--blue-deep); font-family: var(--sans); }
.services-photo { margin: 0; overflow: hidden; }
.services-photo img { height: 100%; object-fit: cover; filter: saturate(.58) brightness(1.06); transition: transform .9s var(--ease), opacity .35s ease; }
.service-panel { display: flex; flex-direction: column; justify-content: end; padding: 50px 0 42px 50px; }
.service-panel .mono { color: var(--blue-deep); font-size: .68rem; letter-spacing: .14em; }
.service-panel h3 { font-family: var(--serif); font-weight: 400; }
.service-panel > p:not(.mono) { max-width: 35ch; color: var(--muted); }
.service-panel .text-link { align-self: start; margin-top: 38px; }

.process { min-height: 1100px; overflow: hidden; background: #f8fafb; }
.process-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 7vw; align-items: start; }
.process-copy { position: sticky; top: 150px; }
.process-copy h2 { max-width: 9ch; }
.process-points { display: flex; gap: 12px; flex-wrap: wrap; margin: 42px 0 0; padding: 0; list-style: none; }
.process-points li { padding: 9px 14px; border: 1px solid var(--line); color: var(--muted); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.document-stack { position: relative; min-height: 800px; padding-top: 50px; perspective: 1400px; }
.document-card { position: absolute; left: 0; width: 100%; min-height: 360px; display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 48px; border: 1px solid #d2dce3; background: rgba(255,255,255,.96); box-shadow: 0 30px 60px rgba(43, 72, 91, .12); transform-origin: center top; }
.document-card:nth-child(1) { top: 40px; transform: translateY(0) scale(.92); }
.document-card:nth-child(2) { top: 210px; transform: translateY(0) scale(.96); }
.document-card:nth-child(3) { top: 390px; }
.document-card::after { content: ""; position: absolute; inset: auto 0 0; height: 90px; background: linear-gradient(165deg, transparent 0 25%, var(--blue-soft) 26% 100%); opacity: .58; }
.document-number { position: relative; z-index: 1; color: #86bce0; font-family: var(--serif); font-size: clamp(4.7rem, 8vw, 8rem); line-height: .85; }
.document-card > div { position: relative; z-index: 1; }
.document-card .kicker { margin-bottom: 16px; }
.document-card h3 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.6rem); font-weight: 400; }
.document-card p:last-child { max-width: 47ch; color: var(--muted); }

.trust { display: grid; grid-template-columns: minmax(420px, .95fr) minmax(560px, 1.05fr); padding: 0; border-block: 1px solid var(--line); }
.trust-visual { position: relative; min-height: 820px; overflow: hidden; }
.trust-visual img { position: absolute; inset: -5% 0; height: 110%; object-fit: cover; filter: saturate(.56) brightness(1.08); }
.trust-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(226,236,242,.35), transparent); }
.trust-visual > span { position: absolute; top: 80px; left: 55px; z-index: 2; max-width: 14ch; font-family: var(--serif); font-size: 1.25rem; }
.trust-content { display: flex; flex-direction: column; justify-content: center; padding: 85px clamp(50px, 7vw, 110px); }
.trust-rule { display: flex; gap: 30px; align-items: center; margin-bottom: 90px; color: var(--muted); font-size: .63rem; letter-spacing: .18em; text-transform: uppercase; }
.trust-rule::before { content: ""; flex: 1; order: 2; height: 1px; background: var(--line); }
.trust-rule span:last-child { order: 3; }
.trust-content h2 { max-width: 12ch; font-size: clamp(3rem, 5.6vw, 6.4rem); }
.trust-pillars { display: grid; grid-template-columns: 1fr 1fr; margin-top: 42px; border-block: 1px solid var(--line); }
.trust-pillars > div { display: grid; grid-template-columns: 48px 1fr; padding: 24px 16px 24px 0; }
.trust-pillars > div + div { padding-left: 28px; border-left: 1px solid var(--line); }
.pillar-icon { grid-row: 1 / 3; color: var(--blue-deep); font-size: 1.7rem; }
.trust-pillars strong { font-family: var(--serif); font-weight: 400; }
.trust-pillars small { color: var(--muted); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; }
.trust-identity { grid-column: 1 / -1; display: grid; grid-template-columns: 1.5fr .7fr .6fr; border-top: 1px solid var(--line); }
.trust-identity > div { min-height: 120px; padding: 28px 40px; border-right: 1px solid var(--line); }
.trust-identity > div:last-child { border-right: 0; }
.trust-identity small { display: block; margin-bottom: 9px; color: var(--muted); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; }
.trust-identity strong { display: block; font-size: .85rem; font-weight: 550; }

.contact-banner { position: relative; min-height: 780px; display: flex; align-items: center; overflow: hidden; }
.contact-banner-inner { position: relative; z-index: 2; }
.contact-banner-inner > div { width: 62%; }
.contact-banner h2 { max-width: 12ch; }
.contact-shape { position: absolute; inset: 0 0 0 55%; background: var(--blue); clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%, 22% 58%, 0 42%); }
.contact-shape span { position: absolute; top: 40%; left: 42%; color: rgba(22,33,44,.58); font-size: .68rem; line-height: 2; letter-spacing: .22em; text-transform: uppercase; }

.page-hero { padding: 200px 0 120px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 82% 24%, rgba(115,184,226,.34), transparent 28%), linear-gradient(135deg, #f8fbfd 0 68%, #d9edf9 68%); }
.page-hero h1 { max-width: 13ch; font-family: var(--serif); font-weight: 400; }
.page-hero .lede { margin: 34px 0 0 auto; }
.page-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(60px, 10vw, 150px); }
.page-aside { color: var(--muted); }
.page-aside p { position: sticky; top: 120px; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }
.editorial-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.editorial-grid--reverse { grid-template-columns: 1.12fr .88fr; }
.editorial-copy { max-width: 620px; }
.editorial-copy h2 { font-family: var(--serif); font-weight: 400; }
.editorial-media { position: relative; min-height: 650px; margin: 0; overflow: hidden; box-shadow: var(--shadow-deep); }
.editorial-media img { position: absolute; inset: -5% 0; height: 110%; object-fit: cover; filter: saturate(.55) brightness(1.05); }
.quote-line { max-width: 25ch; margin: 40px 0 0; padding-left: 22px; border-left: 2px solid var(--blue); font-family: var(--serif); font-size: 1.2rem; }
.method-header { max-width: 780px; margin-bottom: 64px; }
.method-header h2 { font-family: var(--serif); font-weight: 400; }
.method-grid { display: grid; grid-template-columns: 1.2fr .9fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.method-item { min-height: 380px; padding: 36px; background: var(--bg); }
.method-item:nth-child(2) { transform: translateY(44px); }
.method-item:nth-child(3) { transform: translateY(88px); }
.method-item .mono { display: block; margin-bottom: 110px; color: var(--blue-deep); font-size: .7rem; }
.method-item h3 { font-family: var(--serif); font-weight: 400; }
.method-item p { color: var(--muted); }
.value-list { margin-top: 42px; }
.value-item { display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 25px 0; border-top: 1px solid var(--line); }
.value-item:last-child { border-bottom: 1px solid var(--line); }
.value-item .mono { color: var(--blue-deep); font-size: .7rem; }
.value-item h3 { margin-bottom: 7px; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.value-item p { margin: 0; color: var(--muted); }
.prose { max-width: 820px; }
.prose h2 { max-width: 18ch; margin: 70px 0 20px; font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3.8rem); font-weight: 400; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 38px; font-size: 1.2rem; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--ink); text-decoration-color: var(--blue-deep); text-underline-offset: 4px; }
.prose ul { padding-left: 20px; }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.service-detail { min-height: 370px; padding: 42px; background: var(--bg); }
.service-detail h2 { max-width: 14ch; font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3.8rem); font-weight: 400; }
.service-detail p { color: var(--muted); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 120px); }
.contact-direct { display: grid; align-content: start; padding: 10px 30px; background: #e5f1f8; box-shadow: var(--shadow-soft); }
.contact-direct a, .contact-direct address { display: block; padding: 25px 0; border-top: 1px solid rgba(64,112,143,.2); font-style: normal; text-decoration: none; }
.contact-direct small { display: block; margin-bottom: 8px; color: var(--muted); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.contact-direct strong { font-family: var(--serif); font-size: 1.08rem; font-weight: 400; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding: clamp(28px, 4vw, 54px); border: 1px solid rgba(75,119,148,.18); background: rgba(255,255,255,.92); box-shadow: var(--shadow-deep); }
.form-field { display: grid; gap: 8px; }
.form-field--wide { grid-column: 1 / -1; }
.form-field label { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 54px; padding: 13px 15px; color: var(--ink); border: 1px solid var(--line); border-radius: 0; background: #fff; }
.form-field textarea { min-height: 160px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #9aa6b0; }
.phone-field { display: grid; grid-template-columns: 100px 1fr; gap: 10px; }
.form-note { margin: 0; color: var(--muted); font-size: .75rem; }
.form-status { grid-column: 1 / -1; margin: 0; padding: 14px 16px; border-left: 2px solid var(--blue-deep); background: var(--blue-soft); font-size: .84rem; }

.site-footer { padding: 72px 0 28px; border-top: 1px solid var(--line); background: #e9f0f4; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr; gap: 70px; }
.footer-brand { max-width: 560px; }
.footer-brand p { margin-top: 28px; color: var(--muted); font-size: .78rem; }
.footer-col h2 { margin-bottom: 19px; font-family: var(--sans); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-col a { color: var(--muted); font-size: .84rem; text-decoration: none; }
.footer-col a:hover { color: var(--blue-deep); }
.footer-bottom { display: flex; gap: 30px; justify-content: space-between; margin-top: 64px; padding-top: 23px; border-top: 1px solid var(--line); color: var(--muted); font-size: .7rem; }
.cookie-notice { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: grid; width: min(430px, calc(100% - 44px)); gap: 18px; padding: 22px; border: 1px solid var(--line); background: white; box-shadow: 0 28px 70px var(--shadow); opacity: 0; pointer-events: none; transform: translateY(24px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.cookie-notice.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.cookie-notice p { margin: 0; color: var(--muted); font-size: .82rem; }
.cookie-notice button { justify-self: start; padding: 9px 16px; color: var(--ink); border: 0; background: var(--blue); font-size: .76rem; font-weight: 700; cursor: pointer; }

@media (max-width: 1050px) {
  .wrap { width: min(calc(100% - 48px), var(--max)); }
  .hero-frame { width: calc(100% - 48px); }
  .services-composition { grid-template-columns: .75fr 1fr; }
  .service-panel { grid-column: 1 / -1; padding: 34px 0; border-top: 1px solid var(--line); }
  .service-panel > p:not(.mono) { max-width: 55ch; }
  .trust { grid-template-columns: .85fr 1.15fr; }
  .trust-content { padding-inline: 50px; }
}

@media (max-width: 800px) {
  .wrap { width: min(calc(100% - 32px), var(--max)); }
  .header-inner { grid-template-columns: 1fr auto; min-height: 72px; }
  .brand-copy span, .header-contact { display: none; }
  .nav-toggle { display: block; min-height: 44px; padding: 8px 0 8px 16px; }
  .site-nav { position: fixed; inset: 72px 0 auto; padding: 24px 16px 34px; border-bottom: 1px solid var(--line); background: var(--bg); opacity: 0; pointer-events: none; transform: translateY(-14px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav ul { display: grid; gap: 3px; }
  .site-nav a { display: block; padding: 12px 0; font-family: var(--serif); font-size: 1.25rem; }
  body.menu-open { overflow: hidden; }
  .home-hero { padding-top: 120px; }
  .hero-top, .services-heading, .process-grid, .editorial-grid, .editorial-grid--reverse, .page-grid, .contact-layout { grid-template-columns: 1fr; }
  .contact-map-grid { grid-template-columns: 1fr; }
  .contact-map-copy h2 { max-width: 12ch; }
  .contact-map-frame { min-height: 460px; }
  .hero-top { gap: 34px; }
  .hero-summary { padding-left: 0; border-left: 0; }
  .hero-frame { width: calc(100% - 32px); height: 55svh; min-height: 420px; }
  .statement-grid { grid-template-columns: 1fr; gap: 30px; }
  .statement-detail { grid-template-columns: 1fr; gap: 30px; margin-top: 35px; }
  .services-heading { gap: 25px; }
  .services-composition { grid-template-columns: 1fr; }
  .service-names { order: 2; }
  .services-photo { min-height: 500px; }
  .service-panel { order: 3; }
  .process { min-height: auto; }
  .process-copy { position: static; }
  .document-stack { min-height: 920px; }
  .trust { grid-template-columns: 1fr; }
  .trust-visual { min-height: 620px; }
  .trust-content { padding: 80px 32px; }
  .trust-rule { margin-bottom: 60px; }
  .trust-identity { grid-template-columns: 1fr; }
  .trust-identity > div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-banner-inner > div { width: 72%; }
  .contact-shape { left: 60%; }
  .page-aside p { position: static; }
  .method-grid { grid-template-columns: 1fr; }
  .method-item, .method-item:nth-child(2), .method-item:nth-child(3) { min-height: auto; transform: none; }
  .method-item .mono { margin-bottom: 60px; }
  .editorial-media { min-height: 540px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  h2 { font-size: clamp(2.8rem, 13vw, 4.8rem); }
  .section { padding: 90px 0; }
  .hero-frame-label { inset-inline: 20px; }
  .hero-frame-label span:last-child { display: none; }
  .statement { min-height: 760px; }
  .services-stage { padding-block: 90px; }
  .services-photo { min-height: 430px; }
  .service-name { padding-block: 17px; }
  .document-stack { min-height: 760px; }
  .document-card { min-height: 300px; grid-template-columns: 78px 1fr; gap: 16px; padding: 28px 22px; }
  .document-card:nth-child(1) { top: 30px; }
  .document-card:nth-child(2) { top: 175px; }
  .document-card:nth-child(3) { top: 330px; }
  .document-number { font-size: 4rem; }
  .document-card h3 { font-size: 2rem; }
  .trust-visual { min-height: 470px; }
  .trust-content { padding-inline: 20px; }
  .trust-rule { align-items: flex-start; flex-direction: column; gap: 10px; }
  .trust-rule::before { width: 100%; flex: none; order: initial; }
  .trust-pillars { grid-template-columns: 1fr; }
  .trust-pillars > div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .contact-banner { min-height: 760px; align-items: flex-start; padding-top: 100px; }
  .contact-banner-inner > div { width: 100%; }
  .contact-shape { inset: 58% 0 0 0; clip-path: polygon(0 22%, 42% 0, 60% 22%, 100% 0, 100% 100%, 0 100%); }
  .contact-shape span { top: 42%; left: 56%; }
  .contact-banner-actions, .button-row { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .page-hero { padding: 150px 0 90px; }
  .service-detail-grid, .contact-form { grid-template-columns: 1fr; }
  .service-detail { min-height: 320px; padding: 30px; }
  .form-field--wide { grid-column: auto; }
  .phone-field { grid-template-columns: 88px 1fr; }
  .contact-direct { padding-inline: 20px; }
  .contact-map-frame { min-height: 390px; border-width: 5px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-parallax], [data-hero-frame], [data-document-card] { transform: none !important; }
  .section-wash { display: none !important; }
}

@media (prefers-reduced-transparency: reduce) { .site-header { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; } }

/* Homepage art direction: faithful translation of the approved section studies */
.home-page { overflow-x: hidden; background: #fcfdfe; }
.home-page .site-header { background: rgba(252,253,254,.94); }
.home-page .button-sky { border: 0; border-radius: 999px; background: #9ed1f2; padding: 15px 24px; box-shadow: 0 12px 30px rgba(49,124,174,.2); }
.home-page .button-sky:hover { background: #89c5ed; }
.home-page h1, .home-page h2 { text-shadow: 0 14px 34px rgba(47,78,99,.09); }
.color-reveal-section { position: relative; isolation: isolate; }
.section-wash { position: absolute; inset: 0; z-index: 25; display: none; background: #fcfdfe; pointer-events: none; transform-origin: bottom; will-change: transform; }
.has-motion .section-wash { display: block; }
.art-kicker { margin: 0; color: #3b7196; font-size: .7rem; font-weight: 650; letter-spacing: .28em; text-transform: uppercase; }
.art-kicker::before { content: ""; display: inline-block; width: 35px; height: 1px; margin: 0 16px 3px 0; background: currentColor; }
.title-mask { display: block; overflow: hidden; }
.title-mask > span { display: block; }

.art-hero { position: relative; min-height: 1120px; padding: 115px 0 90px; background: #fcfdfe; }
.art-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 270px; grid-template-rows: auto auto; column-gap: clamp(50px, 8vw, 150px); }
.art-hero-main { padding-top: 20px; }
.hero-label { margin-bottom: 35px; color: #5a6e7e; font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; }
.hero-label::before { content: ""; display: inline-block; width: 38px; height: 1px; margin: 0 16px 3px 0; background: #79b9e2; }
.art-hero h1 { max-width: none; font-family: var(--sans); font-size: clamp(4.7rem, 6.2vw, 6rem); font-weight: 450; line-height: .95; letter-spacing: -.065em; }
.art-hero h1 .title-mask + .title-mask { margin-top: 8px; }
.art-hero h1 b { color: #2c7fb7; font-weight: 520; }
.art-hero-lede { max-width: 600px; margin: 40px 0 30px; color: #607180; font-size: clamp(1.25rem, 1.55vw, 1.75rem); line-height: 1.3; }
.button--sky { border-color: #9ed1f2; background: #9ed1f2; }
.hero-notes { align-self: start; display: grid; grid-template-columns: 1px 1fr; gap: 0 38px; margin-top: 80px; color: #607486; }
.hero-notes .vertical-rule { grid-row: 1 / 4; width: 1px; height: 160px; background: #a5b0b9; }
.hero-notes p { margin: 0; font-size: .63rem; line-height: 1.9; letter-spacing: .25em; text-transform: uppercase; }
.hero-notes i { width: 35px; height: 2px; margin: 25px 0; background: #64afe0; }
.hero-notes span { font-size: .85rem; line-height: 1.45; }
.hero-legal { grid-column: 2; display: flex; gap: 20px; align-items: center; justify-self: end; margin-top: 80px; }
.hero-legal strong { color: #64afe0; font-family: var(--sans); font-size: 2.5rem; font-weight: 400; }
.hero-legal span { padding-left: 20px; border-left: 1px solid #aab5bd; color: #687a89; font-size: .58rem; line-height: 1.65; letter-spacing: .22em; text-transform: uppercase; }
.hero-photo-wrap { position: absolute; right: 0; bottom: 0; width: 92%; height: 500px; display: grid; grid-template-columns: 13% 1fr 11%; align-items: stretch; }
.hero-photo { position: relative; margin: 0; overflow: hidden; box-shadow: 0 28px 70px rgba(36,77,104,.19); }
.hero-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(30,51,68,.08); pointer-events: none; }
.hero-photo img { height: 100%; object-fit: cover; }
.hero-photo figcaption { position: absolute; top: 55px; left: 72px; display: grid; color: #132330; font-size: .76rem; letter-spacing: .25em; text-align: center; text-transform: uppercase; }
.hero-photo figcaption span:last-child { margin-top: 16px; font-size: .58rem; }
.hero-photo figcaption span:last-child::before { content: ""; display: inline-block; width: 28px; height: 1px; margin: 0 13px 3px 0; background: currentColor; }
.hero-side-note, .hero-photo-note { display: flex; flex-direction: column; justify-content: flex-end; padding: 0 30px 30px; color: #647889; font-size: .57rem; line-height: 1.8; letter-spacing: .22em; text-transform: uppercase; }
.hero-side-note i, .hero-photo-note::after { content: ""; width: 34px; height: 1px; margin-bottom: 17px; background: #8194a2; }
.hero-photo-note { justify-content: center; gap: 7px; background: #eef5fa; }
.hero-photo-note::after { order: 3; margin: 18px 0 0; background: #5da8d8; }
.scroll-cue { position: absolute; left: 50%; bottom: 16px; z-index: 2; display: flex; flex-direction: column; align-items: center; color: #82909b; font-size: .5rem; letter-spacing: .22em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue i { width: 1px; height: 34px; margin-top: 8px; background: #8abedf; transform-origin: top; animation: scroll-line 1.8s var(--ease-out) infinite; }
@keyframes scroll-line { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); } 100% { transform: scaleY(1) translateY(8px); opacity: 0; } }

.manifesto { position: relative; min-height: 100svh; overflow: hidden; padding: 170px clamp(54px, 6vw, 120px) 90px; background: #e8f3fa; }
.manifesto-index { position: absolute; top: 20%; left: 5%; display: grid; padding-left: 22px; border-left: 1px solid #75b5dd; }
.manifesto-index strong { color: #347ba9; font-size: 1.65rem; font-weight: 400; }
.manifesto-index span { color: #617484; font-size: .8rem; }
.manifesto-copy { position: relative; z-index: 2; width: 75%; margin: 0 auto; }
.manifesto h2 { max-width: none; margin: 0; font-family: var(--serif); font-size: clamp(5rem, 8vw, 9rem); font-weight: 400; line-height: .86; letter-spacing: -.065em; text-wrap: balance; }
.manifesto-detail { width: min(510px, 42%); margin: 100px 4% 0 auto; padding-left: 45px; border-left: 1px solid #78b6dc; }
.manifesto-detail p { margin-bottom: 35px; color: #536778; font-size: 1.25rem; }
.manifesto-geometry { position: absolute; left: -7vw; bottom: -15vw; width: 48vw; aspect-ratio: 1; }
.geo-disc { position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle at 58% 50%, rgba(158,209,242,.72) 0 38%, rgba(158,209,242,.22) 38% 55%, transparent 55%); }
.geo-line { position: absolute; background: #76b4da; transform-origin: left; }
.geo-line-x { top: 50%; left: 8%; width: 135%; height: 1px; }
.geo-line-y { top: -12%; left: 58%; width: 1px; height: 130%; }
.geo-dot { position: absolute; top: calc(50% - 8px); right: -44%; width: 17px; height: 17px; border-radius: 50%; background: #7dbbe1; }
.manifesto-side { position: absolute; right: 3%; top: 42%; color: #748695; font-size: .58rem; line-height: 2; letter-spacing: .27em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.manifesto-keywords { position: absolute; left: 5%; bottom: 7%; color: #708293; font-size: .58rem; line-height: 2.25; letter-spacing: .26em; text-transform: uppercase; }

.service-showcase { min-height: 100svh; background: #eef2f5; }
.service-screen { position: relative; width: 100%; min-height: 100svh; display: grid; grid-template-columns: 27% 30% 43%; padding: 110px 4% 55px; overflow: hidden; }
.service-counter { position: absolute; top: 19%; left: 4%; display: grid; grid-template-columns: auto 25px auto; gap: 10px; align-items: center; color: #607180; }
.service-counter span { color: #347ba9; }
.service-counter i { width: 25px; height: 1px; background: currentColor; }
.service-counter small { font-size: .7rem; }
.service-counter strong { grid-column: 1 / -1; color: #347ba9; font-size: 1rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; }
.service-copy { align-self: center; padding-right: 42px; transform: translateY(48px); }
.service-copy h2 { max-width: 9ch; margin-bottom: 35px; font-family: var(--serif); font-size: clamp(3.3rem, 4.3vw, 5.4rem); font-weight: 400; line-height: .92; }
.service-copy p { max-width: 38ch; color: #647584; }
.service-copy .service-lead { font-family: var(--serif); font-size: 1.18rem; }
.short-rule { display: block; width: 48px; height: 2px; margin: 30px 0; background: #54a2d3; }
.outline-link { display: inline-flex; gap: 65px; align-items: center; margin-top: 25px; padding: 15px 20px; border: 1px solid #4f606d; font-size: .64rem; font-weight: 700; letter-spacing: .22em; text-decoration: none; text-transform: uppercase; }
.service-portrait { position: relative; height: calc(100svh - 165px); margin: 0; overflow: hidden; box-shadow: var(--shadow-deep); }
.service-portrait img { height: 100%; object-fit: cover; }
.service-portrait figcaption { position: absolute; top: 35px; left: 22px; color: #364d5d; font-size: .53rem; letter-spacing: .2em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.service-slices { display: grid; grid-template-columns: repeat(4, 1fr); height: calc(100svh - 220px); align-self: center; margin: 0; padding: 0; list-style: none; }
.service-slices li { display: grid; min-width: 0; }
.service-slice { display: grid; grid-template-rows: auto 85px 1fr; justify-items: start; min-width: 0; padding: 10px 20px; color: #657684; border: 0; border-left: 1px solid #dbe2e7; background: transparent; cursor: pointer; }
.service-slice span { font-size: .76rem; }
.service-slice i { width: 1px; height: 58px; margin-top: 20px; background: currentColor; }
.service-slice strong { align-self: end; justify-self: center; color: inherit; font-family: var(--serif); font-size: clamp(2.25rem, 3.2vw, 4rem); font-weight: 400; line-height: .85; writing-mode: vertical-rl; transform: rotate(180deg); }
.service-slice.is-active { color: #1d2d38; }
.service-slice.is-active span { color: #347ba9; }
.service-slice.is-active i { width: 2px; background: #5aa5d4; }
.service-progress { position: absolute; right: 4%; bottom: 30px; display: flex; gap: 25px; align-items: center; color: #7c8994; font-size: .6rem; letter-spacing: .16em; }
.service-progress > i { display: block; width: 190px; height: 1px; background: #d4dde3; }
.service-progress b { display: block; width: 25%; height: 1px; background: #60a9d7; transform-origin: left; }

.process-showcase { min-height: 100svh; background: #dcecf6; }
.process-screen { position: relative; min-height: 100svh; display: grid; grid-template-columns: 32% 1fr; gap: 4%; align-items: center; padding: 100px 4% 55px; overflow: hidden; }
.process-copy-art { align-self: center; }
.process-copy-art h2 { margin: 36px 0 28px; font-family: var(--serif); font-size: clamp(4rem, 5.7vw, 7rem); font-weight: 400; line-height: .92; }
.process-copy-art > p:not(.art-kicker) { max-width: 400px; color: #607180; }
.process-values { display: grid; gap: 20px; margin-top: 44px; }
.process-values > div { display: grid; grid-template-columns: 45px 1fr; }
.value-glyph { grid-row: 1 / 3; color: #62a9d5; font-size: 1.55rem; }
.process-values strong { font-family: var(--serif); font-weight: 400; }
.process-values small { color: #607180; }
.paper-stage { position: relative; height: 770px; perspective: 1800px; }
.process-paper { position: absolute; left: 0; width: 95%; min-height: 380px; display: grid; grid-template-columns: 150px 1fr 28%; gap: 28px; overflow: hidden; padding: 42px 0 0 42px; border: 1px solid #d6e0e6; background: rgba(255,255,255,.98); box-shadow: 0 28px 65px rgba(41,66,83,.13); transform-origin: center top; }
.paper-3 { top: 0; left: 10%; transform: scale(.91); }
.paper-2 { top: 160px; left: 5%; transform: scale(.955); }
.paper-1 { top: 330px; }
.paper-number { color: #4d91bf; font-family: var(--serif); font-size: clamp(5rem, 7vw, 8rem); line-height: .8; }
.process-paper small { color: #61788a; font-size: .55rem; letter-spacing: .24em; text-transform: uppercase; }
.process-paper h3 { margin: 14px 0; font-family: var(--serif); font-size: clamp(2.3rem, 3.3vw, 4rem); font-weight: 400; }
.process-paper p { color: #607180; }
.process-paper figure { min-height: 338px; margin: -42px 0 0; overflow: hidden; }
.process-paper figure img { height: 100%; object-fit: cover; opacity: .78; }
.process-side-copy { position: absolute; right: 2.5%; top: 16%; color: #607585; font-size: .56rem; line-height: 1.8; letter-spacing: .23em; text-transform: uppercase; writing-mode: vertical-rl; }

.institutional { display: grid; grid-template-columns: 49% 51%; background: #f1f4f6; }
.institutional-photo { position: relative; min-height: 800px; margin: 0; overflow: hidden; }
.institutional-photo img { height: 100%; object-fit: cover; filter: drop-shadow(18px 22px 34px rgba(36,75,101,.14)); }
.institutional-photo figcaption { position: absolute; top: 22%; left: 7%; max-width: 13ch; color: #2b4659; font-family: var(--serif); font-size: 1.05rem; line-height: 1.35; }
.institutional-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px 6vw; }
.institutional-rule { display: flex; gap: 25px; align-items: center; margin-bottom: 70px; color: #5d7181; font-size: .57rem; letter-spacing: .22em; text-transform: uppercase; }
.institutional-rule i { flex: 1; height: 1px; background: #b4c1ca; }
.institutional-copy h2 { max-width: none; font-family: var(--serif); font-size: clamp(3.7rem, 5.1vw, 6.3rem); font-weight: 400; line-height: .9; }
.institutional-copy h2 em { color: #347ba9; }
.institutional-copy > p { max-width: 620px; color: #5e7180; font-family: var(--serif); font-size: 1.25rem; }
.institutional-pillars { display: grid; grid-template-columns: 1fr 1fr; margin: 36px 0; padding: 25px 0; border-block: 1px solid #d8e1e7; }
.institutional-pillars > div { display: grid; grid-template-columns: 50px 1fr; }
.institutional-pillars > div + div { padding-left: 30px; border-left: 1px solid #d8e1e7; }
.institutional-pillars span { grid-row: 1 / 3; color: #5fa7d5; font-size: 1.6rem; }
.institutional-pillars strong { font-family: var(--serif); font-weight: 400; }
.institutional-pillars small { color: #718493; font-size: .54rem; letter-spacing: .2em; text-transform: uppercase; }
.institutional-copy .text-link { align-self: flex-end; }
.institutional-data { grid-column: 1 / -1; display: grid; grid-template-columns: 1.4fr .68fr .68fr .65fr 1fr; border-block: 1px solid #d8e1e7; }
.institutional-data > div { min-width: 0; padding: 24px 34px; border-right: 1px solid #d8e1e7; }
.institutional-data > div:last-child { border-right: 0; }
.institutional-data small { display: block; margin-bottom: 8px; color: #5f7180; font-size: .54rem; letter-spacing: .18em; text-transform: uppercase; }
.institutional-data strong, .institutional-data a { display: block; overflow-wrap: anywhere; font-size: .72rem; font-weight: 550; text-decoration: none; }

.final-cta { position: relative; min-height: 780px; display: flex; align-items: center; overflow: hidden; background: #e9f0f4; }
.final-cta-copy { position: relative; z-index: 2; width: 55%; padding-left: 5%; }
.final-cta-copy h2 { max-width: 13ch; margin: 28px 0; font-family: var(--serif); font-size: clamp(4.2rem, 6vw, 7.4rem); font-weight: 400; line-height: .9; }
.final-cta-copy > p:not(.art-kicker) { max-width: 650px; color: #617382; font-size: 1.2rem; }
.final-actions { display: flex; gap: 18px; margin-top: 38px; }
.button--outline { border-color: #6e7d88; background: transparent; }
.final-cta-shape { position: absolute; inset: 0 17% 0 50%; background: #a6d4f2; clip-path: polygon(30% 0, 100% 0, 75% 47%, 100% 100%, 25% 100%, 0 55%, 23% 39%); }
.final-cta-shape span { position: absolute; top: 28%; left: 42%; color: rgba(31,57,75,.62); font-size: .62rem; line-height: 2; letter-spacing: .24em; text-transform: uppercase; }
.final-cta-building { position: absolute; inset: 16% 0 0 74%; overflow: hidden; box-shadow: -26px 28px 64px rgba(34,72,99,.2); }
.final-cta-building img { height: 100%; object-fit: cover; object-position: 68% center; }

body:not(.home-page) main > .section:nth-of-type(even) { background: #eef2f5; }
body:not(.home-page) main > .section:nth-of-type(odd) { background: #e8f3fa; }
body:not(.home-page) main > .section.section--surface { background: #dcecf6; }
.contact-page .page-hero { background: radial-gradient(circle at 78% 28%, rgba(80,159,207,.32), transparent 26%), linear-gradient(135deg, #f3f8fb 0 64%, #d3e9f7 64%); }
.contact-copy-button { width: 100%; margin: 6px 0 20px; padding: 13px 16px; color: var(--ink); border: 1px solid rgba(47,112,154,.3); background: rgba(255,255,255,.58); box-shadow: 0 8px 20px rgba(43,84,111,.09); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: transform 180ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease); }
.contact-copy-button:active { transform: translateY(1px) scale(.99); }
.contact-map-section { position: relative; overflow: hidden; padding: clamp(90px, 9vw, 145px) 0; background: #cfe5f3; }
.contact-map-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 8% 18%, rgba(255,255,255,.65), transparent 25%), linear-gradient(110deg, rgba(72,148,195,.13), transparent 55%); pointer-events: none; }
.contact-map-grid { position: relative; display: grid; grid-template-columns: minmax(280px,.62fr) minmax(0,1.38fr); gap: clamp(35px,6vw,90px); align-items: center; }
.contact-map-copy { position: relative; z-index: 2; }
.contact-map-copy h2 { max-width: 9ch; font-family: var(--serif); font-weight: 400; text-shadow: 0 12px 30px rgba(43,81,105,.12); }
.contact-map-copy address { max-width: 34ch; margin: 28px 0 34px; color: #405b6e; font-style: normal; }
.contact-map-frame { position: relative; min-height: 560px; overflow: hidden; border: 8px solid rgba(255,255,255,.72); background: #d8e5ed; box-shadow: var(--shadow-deep); }
.contact-map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(.78) contrast(.98); }

@media (hover: hover) and (pointer: fine) {
  .contact-direct a { transition: color 220ms var(--ease), transform 220ms var(--ease); }
  .contact-direct a:hover { color: var(--blue-deep); transform: translateX(5px); }
  .contact-copy-button:hover { background: #fff; box-shadow: 0 14px 30px rgba(43,84,111,.14); transform: translateY(-2px); }
}
.art-footer { background: #fcfdfe; }

@media (hover: hover) and (pointer: fine) {
  .service-slice { transition: color 220ms ease; }
  .service-slice:hover { color: #527a96; }
  .outline-link { transition: color 220ms ease, background 220ms ease, transform 140ms var(--ease-out); }
  .outline-link:hover { color: white; background: #1c2b36; }
  .outline-link:active { transform: translateY(1px) scale(.99); }
}

@media (max-width: 1000px) {
  .art-hero { min-height: 980px; }
  .art-hero-grid { grid-template-columns: 1fr 220px; }
  .art-hero h1 { font-size: clamp(4rem, 8vw, 6rem); }
  .hero-photo-wrap { width: 96%; grid-template-columns: 8% 1fr; }
  .hero-photo-note { display: none; }
  .manifesto-copy { width: 84%; }
  .service-screen { grid-template-columns: 34% 34% 32%; padding-inline: 3%; }
  .service-slices { grid-template-columns: repeat(2, 1fr); height: 74svh; }
  .service-slices li:nth-child(3) .service-slice,
  .service-slices li:nth-child(4) .service-slice { border-top: 1px solid #dbe2e7; }
  .service-slice strong { font-size: 2.1rem; }
  .process-screen { grid-template-columns: 36% 1fr; }
  .process-paper { grid-template-columns: 100px 1fr; padding-right: 28px; }
  .process-paper figure { display: none; }
  .institutional { grid-template-columns: 42% 58%; }
}

@media (max-width: 800px) {
  .home-page .home-header .header-contact { display: none; }
  .art-hero { min-height: 1050px; padding-top: 112px; }
  .art-hero-grid { display: block; }
  .art-hero-main { padding-top: 0; }
  .hero-label { margin-bottom: 38px; }
  .art-hero h1 { font-size: clamp(3.35rem, 14vw, 5rem); line-height: .96; }
  .art-hero-lede { margin-top: 30px; font-size: 1.05rem; }
  .hero-notes, .hero-legal { display: none; }
  .hero-photo-wrap { width: calc(100% - 32px); height: 430px; grid-template-columns: 1fr; bottom: 55px; }
  .hero-side-note { display: none; }
  .hero-photo figcaption { top: 24px; left: 24px; }
  .scroll-cue { display: none; }
  .manifesto { min-height: 900px; padding: 120px 20px 80px; }
  .manifesto-index { position: static; margin-bottom: 60px; }
  .manifesto-copy { width: 100%; }
  .manifesto h2 { font-size: clamp(3.8rem, 15vw, 5.5rem); }
  .manifesto-detail { width: 82%; margin: 70px 0 0 auto; }
  .manifesto-geometry { width: 90vw; left: -42vw; bottom: -10vw; }
  .manifesto-side, .manifesto-keywords { display: none; }
  .service-showcase { min-height: auto; }
  .service-screen { display: grid; grid-template-columns: 1fr; padding: 110px 16px 70px; }
  .service-counter { position: static; margin-bottom: 40px; }
  .service-copy { padding: 0; transform: none; }
  .service-copy h2 { max-width: 8ch; }
  .service-portrait { height: 560px; margin-top: 45px; }
  .service-slices { height: auto; grid-template-columns: 1fr; margin-top: 30px; border-top: 1px solid #dbe2e7; }
  .service-slice { grid-template-columns: 42px 1fr; grid-template-rows: auto; align-items: center; padding: 20px 0; border-right: 0; border-bottom: 1px solid #dbe2e7; }
  .service-slice i { display: none; }
  .service-slice strong { justify-self: start; writing-mode: initial; transform: none; font-size: 1.45rem; }
  .service-progress { display: none; }
  .process-showcase { min-height: auto; }
  .process-screen { display: block; min-height: auto; padding: 110px 16px 90px; }
  .process-copy-art h2 { font-size: clamp(4rem, 15vw, 5.7rem); }
  .process-values { margin-bottom: 60px; }
  .paper-stage { height: 720px; }
  .process-paper { width: 100%; min-height: 285px; grid-template-columns: 66px 1fr; gap: 12px; padding: 25px 18px; }
  .paper-3 { left: 0; }
  .paper-2 { left: 0; top: 145px; }
  .paper-1 { top: 300px; }
  .paper-number { font-size: 3.4rem; }
  .process-paper h3 { font-size: clamp(1.55rem, 6.7vw, 1.9rem); letter-spacing: -.04em; }
  .process-side-copy { display: none; }
  .institutional { grid-template-columns: 1fr; }
  .institutional-photo { min-height: 560px; }
  .institutional-copy { padding: 80px 20px; }
  .institutional-rule { margin-bottom: 55px; }
  .institutional-copy h2 { font-size: clamp(3.5rem, 14vw, 5rem); }
  .institutional-pillars { grid-template-columns: 1fr; }
  .institutional-pillars > div + div { padding: 24px 0 0; margin-top: 24px; border-top: 1px solid #d8e1e7; border-left: 0; }
  .institutional-copy .text-link { align-self: flex-start; }
  .institutional-data { grid-template-columns: 1fr; }
  .institutional-data > div { border-right: 0; border-bottom: 1px solid #d8e1e7; }
  .final-cta { min-height: 940px; align-items: flex-start; padding-top: 100px; }
  .final-cta-copy { width: 100%; padding: 0 20px; }
  .final-cta-copy h2 { font-size: clamp(3.7rem, 15vw, 5.5rem); }
  .final-actions { align-items: stretch; flex-direction: column; width: 100%; }
  .final-cta-shape { inset: 58% 0 0 0; clip-path: polygon(0 20%, 42% 0, 62% 22%, 100% 0, 100% 100%, 0 100%); }
  .final-cta-building { inset: 70% 0 0 58%; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue i { animation: none; }
  .title-mask > span, .hero-fade, .process-paper, .geo-disc, .geo-line, .final-cta-shape, .final-cta-building { transform: none !important; opacity: 1 !important; }
}

@media (max-width: 800px) {
  .contact-map-grid { grid-template-columns: 1fr; }
  .contact-map-copy h2 { max-width: 12ch; }
  .contact-map-frame { min-height: 460px; }
}

@media (max-width: 600px) {
  .contact-map-frame { min-height: 390px; border-width: 5px; }
}

/* Static approval mode: preserve layout and interactive controls without motion. */
html { scroll-behavior: auto; }
*, *::before, *::after {
  animation: none !important;
  transition: none !important;
}
