:root {
    --brand: #f2de26;
    --brand-soft: #fff6a6;
    --ink: #231f20;
    --ink-2: #343031;
    --paper: #f5f4ef;
    --white: #fff;
    --muted: #77736f;
    --line: rgba(35, 31, 32, .18);
    --line-dark: rgba(255, 255, 255, .18);
    --container: 1500px;
    --header-height: 88px;
    --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }
button, input, textarea { font: inherit; }
::selection { color: var(--ink); background: var(--brand); }

.site-container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; padding-inline: 0; }
.section-pad { padding-block: clamp(88px, 10vw, 164px); }
.section-dark { color: var(--white); background: var(--ink); }
.section-brand { color: var(--ink); background: var(--brand); }
.section-white { background: var(--white); }
.section-rule { border-top: 1px solid var(--line); }
.text-brand { color: var(--brand) !important; }
.text-muted-custom { color: var(--muted); }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 10000; padding: 10px 16px; color: var(--ink); background: var(--brand); transition: top .2s; }
.skip-link:focus { top: 16px; }

.micro-label { margin: 0 0 24px; font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 11px; font-weight: 700; line-height: 1.3; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px; font-family: "SFMono-Regular", Consolas, monospace; font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border: 1px solid currentColor; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 5px rgba(242, 222, 38, .12); }
.display-mega { font-size: clamp(56px, 8.8vw, 142px); font-weight: 720; line-height: .85; letter-spacing: -.075em; }
.display-mega em, .display-page em, .editorial-serif { font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-style: italic; }
.display-page { font-size: clamp(56px, 7.4vw, 116px); font-weight: 720; line-height: .88; letter-spacing: -.072em; }
.section-title { font-size: clamp(42px, 5.8vw, 82px); font-weight: 680; line-height: .94; letter-spacing: -.06em; }
.lead-xl { font-size: clamp(21px, 2vw, 31px); line-height: 1.38; letter-spacing: -.035em; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1035; height: var(--header-height); border-bottom: 1px solid var(--line); background: rgba(245, 244, 239, .9); backdrop-filter: blur(18px); transition: height .3s var(--ease), background .3s, border-color .3s; }
.site-header .navbar { height: 100%; padding: 0; }
.site-header.is-scrolled { height: 72px; box-shadow: 0 10px 40px rgba(35, 31, 32, .06); }
.page-home .site-header:not(.is-scrolled) { color: var(--white); border-color: var(--line-dark); background: rgba(35, 31, 32, .3); }
.navbar-brand { position: relative; width: 154px; height: 61px; padding: 0; }
.navbar-brand img { position: absolute; inset: 0; width: 154px; height: 61px; object-fit: contain; object-position: left center; transition: opacity .25s; }
.navbar-brand .logo-light { opacity: 0; }
.page-home .site-header:not(.is-scrolled) .navbar-brand .logo-dark { opacity: 0; }
.page-home .site-header:not(.is-scrolled) .navbar-brand .logo-light { opacity: 1; }
.nav-link { position: relative; margin-inline: 13px; padding: 12px 0 !important; color: inherit; font-size: 13px; font-weight: 650; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 7px; height: 1px; background: currentColor; transition: right .25s; }
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.btn-brand { display: inline-flex; align-items: center; justify-content: space-between; gap: 42px; min-height: 48px; padding: 12px 16px 12px 19px; border: 1px solid var(--ink); border-radius: 0; color: var(--white); background: var(--ink); font-size: 12px; font-weight: 700; transition: color .25s, background .25s, border-color .25s, transform .25s; }
.btn-brand:hover { color: var(--ink); border-color: var(--brand); background: var(--brand); transform: translateY(-2px); }
.page-home .site-header:not(.is-scrolled) .btn-brand { color: var(--ink); border-color: var(--brand); background: var(--brand); }
.navbar-toggler { display: flex; align-items: center; gap: 10px; padding: 8px 0; border: 0; border-radius: 0; color: inherit; font-size: 11px; text-transform: uppercase; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler i { width: 8px; height: 8px; border: 1px solid currentColor; background: var(--brand); }
.mobile-nav { color: var(--ink); background: var(--brand); }
.mobile-nav .offcanvas-header { padding: 22px 24px; border-bottom: 1px solid rgba(35, 31, 32, .2); }
.mobile-nav .offcanvas-body { padding: 42px 24px 30px; }
.mobile-links a { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(35, 31, 32, .22); font-size: clamp(28px, 7vw, 42px); font-weight: 670; line-height: 1; letter-spacing: -.05em; }
.mobile-links a.active { padding-left: 16px; background: rgba(255,255,255,.25); }
.mobile-contact { display: grid; gap: 6px; font-family: "SFMono-Regular", Consolas, monospace; font-size: 12px; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: stretch; padding-top: var(--header-height); color: var(--white); background: var(--ink); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to right, #000 0, transparent 75%); }
.hero::after { content: "d"; position: absolute; right: -3vw; bottom: -18vw; color: rgba(242,222,38,.045); font-family: Arial, sans-serif; font-size: min(82vw, 1100px); font-weight: 300; line-height: 1; }
.hero-inner { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(360px, .68fr); }
.hero-copy { display: flex; flex-direction: column; padding: clamp(64px, 7vw, 110px) 4vw 44px 0; }
.hero h1 { max-width: 980px; margin: 0; font-size: clamp(68px, 9.4vw, 148px); font-weight: 730; line-height: .81; letter-spacing: -.082em; }
.hero h1 em { color: var(--brand); font-family: Georgia, serif; font-weight: 400; }
.hero-subtitle { max-width: 620px; margin: auto 0 0; padding-top: 48px; font-size: clamp(18px, 1.45vw, 23px); line-height: 1.5; letter-spacing: -.025em; }
.hero-actions { display: flex; align-items: center; gap: 18px; margin-top: 32px; }
.hero .btn-brand { color: var(--ink); background: var(--brand); border-color: var(--brand); }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.hero-visual { position: relative; min-height: calc(100svh - var(--header-height)); border-left: 1px solid var(--line-dark); overflow: hidden; }
.hero-visual::before { content: ""; position: absolute; inset: 12% 7% 7%; z-index: 1; border: 1px solid rgba(242,222,38,.55); border-radius: 50% 50% 12px 12px; transform: rotate(7deg); }
.hero-visual::after { content: ""; position: absolute; width: 420px; height: 420px; right: -130px; top: 5%; border-radius: 50%; background: var(--brand); filter: blur(1px); }
.hero-portrait { position: absolute; inset: auto -7% 0 -8%; z-index: 2; width: 115%; max-width: none; height: 92%; object-fit: cover; object-position: 65% center; filter: grayscale(100%) contrast(1.08); mix-blend-mode: luminosity; }
.hero-status { position: absolute; z-index: 3; top: 8%; left: 8%; display: flex; align-items: center; gap: 10px; padding: 10px 12px; color: var(--ink); background: var(--brand); font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.hero-status i { width: 8px; height: 8px; border: 1px solid var(--ink); border-radius: 50%; background: var(--white); animation: pulse 2s infinite; }
.hero-tech { position: absolute; z-index: 3; right: 20px; bottom: 20px; max-width: 300px; padding: 14px 16px; color: var(--ink); background: rgba(242,222,38,.92); font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; line-height: 1.7; text-transform: uppercase; }
.hero-foot { position: absolute; z-index: 4; left: max(24px, calc((100vw - var(--container))/2)); bottom: 18px; display: flex; gap: 30px; font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.proof-strip { border-bottom: 1px solid var(--line); background: var(--brand); }
.proof-item { min-height: 150px; padding: 28px 32px; border-right: 1px solid rgba(35,31,32,.25); display: flex; flex-direction: column; justify-content: space-between; }
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: 0; }
.proof-item strong { font-size: clamp(28px, 3vw, 47px); line-height: 1; letter-spacing: -.06em; }
.proof-item span { font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }

.intro-grid { display: grid; grid-template-columns: .8fr 3.2fr; gap: 7vw; }
.intro-statement { max-width: 1150px; margin: 0; font-size: clamp(45px, 6.4vw, 96px); font-weight: 680; line-height: .96; letter-spacing: -.066em; }
.intro-statement span { color: #aaa6a0; }

.service-list { border-top: 1px solid var(--ink); }
.service-row { position: relative; display: grid; grid-template-columns: .42fr 1.65fr 2.1fr 1.45fr 30px; gap: 26px; align-items: start; min-height: 132px; padding: 34px 0; border-bottom: 1px solid var(--line); overflow: hidden; isolation: isolate; transition: padding-inline .35s var(--ease); }
.service-row::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--brand); transform: translateY(101%); transition: transform .4s var(--ease); }
.service-row:hover { padding-inline: 20px; }
.service-row:hover::before { transform: none; }
.service-number { color: var(--muted); font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; }
.service-row h3 { margin: 0; font-size: clamp(22px, 2.1vw, 34px); font-weight: 650; letter-spacing: -.045em; }
.service-row p { max-width: 520px; margin: 0; color: #55514e; line-height: 1.55; }
.service-stack { font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; line-height: 1.7; text-transform: uppercase; letter-spacing: .06em; }
.service-arrow { font-size: 23px; transition: transform .25s; }
.service-row:hover .service-arrow { transform: translate(5px, -5px); }

.project-feature { position: relative; min-height: 620px; display: flex; flex-direction: column; padding: 22px; color: var(--white); background: #151314; overflow: hidden; }
.project-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .66; transition: transform .8s var(--ease), opacity .4s; }
.project-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,19,.96), rgba(20,18,19,.02) 70%); }
.project-feature:hover img { transform: scale(1.035); opacity: .78; }
.project-meta, .project-copy { position: relative; z-index: 2; }
.project-meta { display: flex; justify-content: space-between; font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.project-copy { margin-top: auto; display: grid; grid-template-columns: 1fr 1.35fr; align-items: end; gap: 32px; padding-top: 100px; }
.project-copy h3 { margin: 0; font-size: clamp(36px, 4.5vw, 68px); line-height: .92; letter-spacing: -.06em; }
.project-copy p { margin: 0; color: rgba(255,255,255,.7); }
.project-accent { background: var(--brand); color: var(--ink); }
.project-accent img { opacity: .88; mix-blend-mode: multiply; }
.project-accent::after { background: linear-gradient(to top, rgba(242,222,38,.98), rgba(242,222,38,.05) 72%); }
.project-accent .project-copy p { color: rgba(35,31,32,.72); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.process-step { min-height: 330px; padding: 26px 28px 28px 0; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.process-step + .process-step { padding-left: 28px; }
.process-step:last-child { border-right: 0; }
.process-step span { color: var(--muted); font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; }
.process-step h3 { margin: auto 0 18px; font-size: 25px; font-weight: 650; letter-spacing: -.045em; }
.process-step p { margin: 0; color: #5f5a57; font-size: 14px; }

.about-teaser { position: relative; min-height: 760px; color: var(--white); background: #151314; overflow: hidden; }
.about-teaser img { position: absolute; right: 0; top: 0; width: 51%; height: 100%; object-fit: cover; object-position: 65% center; filter: grayscale(100%); }
.about-teaser::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #151314 0 45%, transparent 72%); }
.about-teaser-content { position: relative; z-index: 2; width: 55%; padding: clamp(90px, 10vw, 160px) 0; }
.about-teaser .lead-xl { color: rgba(255,255,255,.78); }

.page-hero { position: relative; padding: calc(var(--header-height) + 90px) 0 clamp(90px, 10vw, 150px); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -12vw; bottom: -28vw; width: 62vw; height: 62vw; border: 1px solid rgba(35,31,32,.12); border-radius: 50%; box-shadow: 0 0 0 8vw rgba(242,222,38,.22), 0 0 0 16vw rgba(35,31,32,.035); }
.page-hero .row { position: relative; z-index: 2; }
.page-hero-copy { max-width: 610px; margin: 34px 0 0 auto; font-size: clamp(18px, 1.6vw, 24px); line-height: 1.5; letter-spacing: -.025em; }
.breadcrumb-clean { display: flex; gap: 8px; margin: 0 0 50px; padding: 0; list-style: none; font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.breadcrumb-clean li + li::before { content: "/"; margin-right: 8px; color: var(--muted); }

.detail-section { padding-block: clamp(82px, 9vw, 140px); border-bottom: 1px solid var(--line); }
.detail-number { font-family: "SFMono-Regular", Consolas, monospace; font-size: 11px; }
.detail-section h2 { max-width: 750px; font-size: clamp(42px, 5vw, 76px); line-height: .95; letter-spacing: -.06em; }
.feature-list { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid var(--ink); }
.feature-list li { display: grid; grid-template-columns: 30px 1fr; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); list-style: none; }
.feature-list li::before { content: "✓"; color: var(--ink); font-weight: 800; }

.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 30px; padding: 25px 0; border: 0; color: var(--ink); background: transparent; text-align: left; font-size: clamp(19px, 2vw, 28px); font-weight: 640; letter-spacing: -.035em; }
.faq-question span:last-child { transition: transform .25s; }
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { max-width: 800px; padding: 0 0 28px; color: #625d5a; }

.domain-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.domain-card { min-height: 160px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; transition: color .25s, background .25s, transform .25s; }
.domain-card:nth-child(3n) { border-right: 0; }
.domain-card:hover { color: var(--ink); background: var(--brand); transform: translateY(-4px); }
.domain-card small { color: var(--muted); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.domain-card strong { margin-top: auto; display: flex; justify-content: space-between; align-items: end; font-size: clamp(20px, 2vw, 30px); font-weight: 640; letter-spacing: -.045em; }

.portrait-frame { position: relative; min-height: 700px; background: var(--ink); overflow: hidden; }
.portrait-frame::before { content: ""; position: absolute; inset: 7%; z-index: 1; border: 1px solid var(--brand); border-radius: 50% 50% 0 0; transform: rotate(-5deg); }
.portrait-frame img { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; object-position: 65% center; filter: grayscale(100%); }
.portrait-frame-label { position: absolute; z-index: 3; right: 18px; bottom: 18px; padding: 9px 12px; background: var(--brand); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; text-transform: uppercase; }
.timeline { border-top: 1px solid var(--ink); }
.timeline-row { display: grid; grid-template-columns: .7fr 1.3fr 2.2fr; gap: 25px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.timeline-row span { font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; text-transform: uppercase; }
.timeline-row strong { font-size: 18px; }
.timeline-row p { margin: 0; color: #615c59; }

.contact-card { padding: clamp(30px, 4vw, 64px); color: var(--white); background: var(--ink); }
.contact-card a { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line-dark); font-size: clamp(18px, 2vw, 28px); letter-spacing: -.03em; }
.contact-form label { margin-bottom: 7px; font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.form-control { min-height: 54px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: rgba(255,255,255,.65); }
.form-control:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(242,222,38,.45); }
textarea.form-control { min-height: 170px; resize: vertical; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.alert { border-radius: 0; }

.legal-copy { max-width: 900px; }
.legal-copy h2 { margin-top: 55px; font-size: clamp(28px, 3.5vw, 46px); letter-spacing: -.045em; }
.legal-copy p, .legal-copy li { color: #5e5956; }

.final-cta { padding-block: clamp(100px, 11vw, 180px); }
.circle-cta { width: 170px; height: 170px; margin-left: auto; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; gap: 18px; color: var(--white); font-family: "SFMono-Regular", Consolas, monospace; font-size: 11px; line-height: 1.25; text-transform: uppercase; transition: color .3s, background .3s, transform .4s var(--ease); }
.circle-cta b { font-size: 23px; }
.circle-cta:hover { color: var(--ink); background: var(--brand); transform: rotate(-7deg); }
.site-footer { color: rgba(255,255,255,.78); background: #151314; }
.footer-main { padding-block: 80px; }
.footer-intro { max-width: 470px; margin-top: 28px; color: rgba(255,255,255,.56); }
.footer-links li { margin-bottom: 8px; }
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: var(--brand); }
.footer-meta { color: rgba(255,255,255,.56); font-size: 13px; }
.footer-bottom { padding-block: 20px; border-top: 1px solid var(--line-dark); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); } }

@media (max-width: 1199.98px) {
    .hero-inner { grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr); }
    .service-row { grid-template-columns: .3fr 1.4fr 2fr 1.2fr 26px; gap: 16px; }
    .project-copy { grid-template-columns: 1fr; }
}

@media (max-width: 991.98px) {
    :root { --header-height: 72px; }
    .site-container { width: min(calc(100% - 32px), var(--container)); }
    .hero { min-height: auto; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-copy { min-height: 760px; padding: 70px 0 45px; }
    .hero h1 { font-size: clamp(64px, 14vw, 110px); }
    .hero-visual { min-height: 650px; border-top: 1px solid var(--line-dark); border-left: 0; }
    .hero-foot { display: none; }
    .intro-grid { grid-template-columns: 1fr; gap: 35px; }
    .service-row { grid-template-columns: 40px 1.5fr 2fr 26px; }
    .service-stack { grid-column: 2 / -1; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step:nth-child(2) { border-right: 0; }
    .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .about-teaser { min-height: 1000px; }
    .about-teaser img { top: auto; bottom: 0; width: 100%; height: 56%; }
    .about-teaser::after { background: linear-gradient(180deg, #151314 0 43%, transparent 68%); }
    .about-teaser-content { width: 100%; padding-top: 100px; }
    .domain-grid { grid-template-columns: repeat(2, 1fr); }
    .domain-card:nth-child(3n) { border-right: 1px solid var(--line); }
    .domain-card:nth-child(2n) { border-right: 0; }
    .circle-cta { margin-left: 0; }
}

@media (max-width: 767.98px) {
    .site-container { width: min(calc(100% - 28px), var(--container)); }
    .navbar-brand, .navbar-brand img { width: 137px; height: 54px; }
    .hero-copy { min-height: 690px; padding-top: 60px; }
    .hero h1 { font-size: clamp(55px, 16vw, 78px); line-height: .84; }
    .hero-subtitle { max-width: 94%; font-size: 17px; }
    .hero-actions { align-items: flex-start; flex-direction: column; }
    .hero-visual { min-height: 540px; }
    .hero-portrait { height: 100%; left: -18%; width: 125%; }
    .proof-item { min-height: 118px; padding: 22px 16px; border-bottom: 1px solid rgba(35,31,32,.2); }
    .proof-item:nth-child(2) { border-right: 0; }
    .intro-statement { font-size: 42px; }
    .service-row { grid-template-columns: 36px 1fr 23px; padding: 26px 0; }
    .service-row p, .service-stack { grid-column: 2 / -1; }
    .service-row h3 { font-size: 23px; }
    .service-arrow { grid-column: 3; grid-row: 1; }
    .project-feature { min-height: 520px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-step, .process-step + .process-step { min-height: 245px; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .process-step:last-child { border-bottom: 0; }
    .about-teaser { min-height: 920px; }
    .about-teaser img { height: 50%; }
    .page-hero { padding-top: calc(var(--header-height) + 65px); }
    .page-hero-copy { margin-left: 0; }
    .domain-grid { grid-template-columns: 1fr; }
    .domain-card, .domain-card:nth-child(2n), .domain-card:nth-child(3n) { border-right: 0; }
    .portrait-frame { min-height: 560px; }
    .timeline-row { grid-template-columns: .6fr 1.4fr; }
    .timeline-row p { grid-column: 2; }
    .circle-cta { width: 145px; height: 145px; }
}

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