:root {
    --ink: #0a0a09;
    --paper: #f2f0e9;
    --white: #fff;
    --accent: #d8e2ce;
    --line: rgba(10,10,9,.18);
    --font-heading: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --ease: cubic-bezier(.16,1,.3,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.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; }

.nav {
    position: absolute; z-index: 10; top: 0; left: 0; width: 100%; padding: 20px clamp(20px,3vw,48px);
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: #090909;
}
.logo { display: flex; gap: 12px; align-items: center; font-family: var(--font-heading); font-size: clamp(21px,2vw,27px); font-weight: 600; letter-spacing: -.045em; }
.logo sup { font-size: .36em; vertical-align: top; margin-left: 2px; }
.logo i { font-size: 29px; font-style: normal; font-weight: 400; }
.desktop-nav { font-size: clamp(16px,1.55vw,23px); letter-spacing: -.03em; }
.desktop-nav a, .nav-contact { transition: opacity .2s; }
.desktop-nav a:hover, .nav-contact:hover { opacity: .55; }
.nav-contact { justify-self: end; font-size: clamp(16px,1.55vw,23px); text-decoration: underline; text-underline-offset: 3px; }
.menu-toggle { display: none; justify-self: end; width: 44px; height: 44px; padding: 10px; background: none; border: 0; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
    position: fixed; z-index: 9; inset: 0; background: rgba(255,255,255,.96); backdrop-filter: blur(16px);
    display: flex; flex-direction: column; justify-content: center; align-items: stretch; gap: 52px; padding: 88px 32px 40px;
    opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.mobile-menu nav a { font-size: 34px; letter-spacing: -.04em; }
.mobile-contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.mobile-contacts > span { grid-column: 1 / -1; padding: 16px 0 22px; color: #74716a; font: 10px monospace; letter-spacing: .14em; text-transform: uppercase; }
.mobile-contacts a { min-width: 0; padding: 0 14px 0 0; font-size: 18px; letter-spacing: -.025em; overflow-wrap: anywhere; }
.mobile-contacts a + a { padding-left: 14px; border-left: 1px solid var(--line); }
.mobile-contacts small { display: block; margin-bottom: 8px; color: #74716a; font: 9px monospace; letter-spacing: .1em; text-transform: uppercase; }

.hero { position: relative; z-index: 1; min-height: 100svh; display: flex; align-items: center; padding: 100px clamp(20px,3vw,48px) 54px; overflow: hidden; background: #9a9386 url("hero-poster.jpg") 70% center / cover no-repeat; }
.hero-video { position: absolute; z-index: 0; inset: 0; display: block; width: 100%; height: 100%; min-width: 100%; min-height: 100%; object-fit: cover; object-position: 70% center; background: transparent; opacity: 1; visibility: visible; transform: translateZ(0); -webkit-transform: translateZ(0); }
.video-wash { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg,rgba(244,241,232,.76) 0%,rgba(244,241,232,.42) 44%,rgba(255,255,255,.05) 72%); }
.hero-content { position: relative; z-index: 3; width: min(670px,55vw); }
.blur-intro { margin: 0 0 22px; font-size: clamp(18px,2.2vw,27px); line-height: 1.3; filter: blur(2.3px); user-select: none; pointer-events: none; }
.typewriter { min-height: 142px; margin: 0 0 25px; font-size: clamp(30px,4.2vw,66px); line-height: 1.04; letter-spacing: -.05em; font-weight: 400; }
.cursor { display: inline-block; width: 2px; height: 1em; margin-left: 3px; background: var(--ink); vertical-align: -.08em; animation: blink 1s step-end infinite; }
.hero-actions { display: flex; flex-wrap: wrap; opacity: 0; transform: translateY(8px); transition: opacity .4s ease, transform .4s ease; }
.hero-actions.visible { opacity: 1; transform: none; }
.pill {
    min-height: 35px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: .42em 17px;
    margin: 0 5px 7px 0; border-radius: 999px; border: 1px solid rgba(0,0,0,.12); font-size: clamp(13px,1.15vw,16px);
    white-space: nowrap; cursor: pointer; transition: background .2s,color .2s,border-color .2s;
}
.pill-light { background: var(--white); color: var(--ink); }
.pill-light:hover { background: var(--ink); color: var(--white); }
.pill-outline { background: rgba(10,10,9,.72); border-color: rgba(255,255,255,.72); color: var(--white); }
.pill-outline:hover { background: var(--white); color: var(--ink); border-color: var(--ink); }
.pill svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.2; }
.hero-status { position: absolute; z-index: 3; top: 105px; right: clamp(20px,3vw,48px); display: flex; align-items: center; gap: 9px; font: 11px monospace; letter-spacing: .12em; text-transform: uppercase; }
.hero-status i { width: 7px; height: 7px; border-radius: 50%; background: #bcd789; box-shadow: 0 0 11px rgba(123,164,72,.45); }
.scrub-hint { position: absolute; z-index: 3; right: clamp(20px,3vw,48px); bottom: 27px; margin: 0; font: 10px monospace; letter-spacing: .12em; text-transform: uppercase; }

.proof { display: grid; grid-template-columns: repeat(4,1fr); background: #dedbd3; color: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof div { min-height: 210px; padding: 35px clamp(22px,3vw,45px); border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.proof div:last-child { border-right: 0; }
.proof strong { color: var(--ink); font-size: clamp(48px,6vw,90px); font-weight: 400; letter-spacing: -.065em; }
.proof span { max-width: 170px; color: #67655f; font-size: 14px; line-height: 1.4; }

.intro { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; padding: clamp(100px,13vw,190px) clamp(20px,4vw,64px); background: radial-gradient(circle at 82% 40%,rgba(255,255,255,.8),transparent 32%),var(--paper); }
.section-kicker { margin: 7px 0 0; font: 11px monospace; letter-spacing: .14em; text-transform: uppercase; }
.intro h2,.section-head h2,.contact h2 { margin: 0; font-size: clamp(48px,7vw,108px); line-height: .93; letter-spacing: -.07em; font-weight: 400; }
.intro h2 em { color: var(--ink); font-style: normal; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: .1em; }
.intro > div > p { width: min(610px,80%); margin: 55px 0 0 auto; font-size: clamp(17px,1.5vw,21px); line-height: 1.6; color: #555; }
.section-head { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; padding: 0 clamp(20px,4vw,64px) clamp(65px,7vw,100px); }
.section-head h2 span,.contact h2 span { color: #85827a; }

.services { padding: clamp(100px,11vw,160px) 0; background: linear-gradient(180deg,#e8e5de 0%,#f4f2ec 100%); border-top: 1px solid var(--line); }
.service-list { border-top: 1px solid var(--line); }
.service { position: relative; display: grid; grid-template-columns: .5fr 1.5fr 2fr .8fr; gap: 25px; align-items: center; min-height: 160px; padding: 28px clamp(20px,4vw,64px); border-bottom: 1px solid var(--line); transition: background .3s,color .3s,padding .3s var(--ease); }
.service:hover { background: rgba(255,255,255,.7); padding-inline: clamp(30px,5vw,82px); }
.service-num,.service small { font: 11px monospace; letter-spacing: .1em; text-transform: uppercase; }
.service h3 { margin: 0; font-size: clamp(28px,3vw,46px); letter-spacing: -.045em; font-weight: 400; }
.service p { max-width: 580px; margin: 0; color: #666; line-height: 1.55; }
.service:hover p { color: #333; }

.approach { padding: clamp(100px,12vw,180px) 0; background: radial-gradient(circle at 15% 25%,rgba(255,255,255,.9),transparent 28%),#d9d6ce; border-top: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps article { min-height: 300px; padding: 30px clamp(20px,3vw,44px); border-right: 1px solid var(--line); transition: background .25s; }
.steps article:last-child { border-right: 0; }
.steps article:hover { background: rgba(255,255,255,.45); }
.steps span { font: 11px monospace; }
.steps h3 { margin: 120px 0 15px; font-size: clamp(27px,2.8vw,43px); font-weight: 400; letter-spacing: -.045em; }
.steps p { max-width: 250px; color: #65625b; line-height: 1.5; }

.contact { padding: clamp(100px,13vw,190px) clamp(20px,4vw,64px) 80px; background: radial-gradient(circle at 80% 20%,rgba(255,255,255,.85),transparent 30%),#d4d1ca; color: var(--ink); border-top: 1px solid var(--line); }
.contact .section-kicker { color: var(--ink); margin-bottom: 45px; }
.contact-row { margin-top: 90px; border-top: 1px solid var(--line); }
.contact-row a { display: grid; grid-template-columns: 1fr 3fr auto; align-items: center; min-height: 115px; border-bottom: 1px solid var(--line); transition: background .2s,padding .3s var(--ease); }
.contact-row a:hover { background: rgba(255,255,255,.55); padding-inline: 18px; }
.contact-row small { color: #6d6a63; font: 11px monospace; letter-spacing: .12em; text-transform: uppercase; }
.contact-row strong { font-size: clamp(25px,3.5vw,50px); font-weight: 400; letter-spacing: -.045em; }
footer { display: flex; justify-content: space-between; padding: 25px clamp(20px,4vw,64px); background: #d4d1ca; color: #6d6a63; border-top: 1px solid var(--line); font: 10px monospace; letter-spacing: .12em; }
.copy-toast { position: fixed; z-index: 30; left: 50%; bottom: 25px; transform: translate(-50%,20px); padding: 10px 16px; border-radius: 99px; background: var(--ink); color: var(--white); opacity: 0; pointer-events: none; transition: .25s; }
.copy-toast.show { opacity: 1; transform: translate(-50%,0); }
:focus-visible { outline: 2px solid #735cff; outline-offset: 4px; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

@media (max-width: 860px) {
    .nav { grid-template-columns: 1fr auto; }
    .desktop-nav,.nav-contact { display: none; }
    .menu-toggle { display: flex; }
    .hero { align-items: flex-end; padding-bottom: 48px; }
    .hero-content { width: 100%; }
    .hero-video { inset: 0; width: 100%; height: 100%; min-width: 100%; min-height: 100%; object-fit: cover; object-position: 62% center; transform: translateZ(0) scale(1.002); -webkit-transform: translateZ(0) scale(1.002); }
    .video-wash { background: linear-gradient(0deg,rgba(242,240,233,.8),rgba(242,240,233,.06) 75%); }
    .hero-status { top: 92px; left: 20px; right: auto; }
    .scrub-hint { display: none; }
    .proof { grid-template-columns: repeat(2,1fr); }
    .proof div:nth-child(2) { border-right: 0; }
    .proof div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .intro,.section-head { grid-template-columns: 1fr; }
    .intro > div > p { width: 100%; margin-left: 0; }
    .service { grid-template-columns: .3fr 1.3fr 2fr; }
    .service small { display: none; }
    .steps { grid-template-columns: repeat(2,1fr); }
    .steps article:nth-child(2) { border-right: 0; }
    .steps article:nth-child(-n+2) { border-bottom: 1px solid rgba(10,10,9,.22); }
}
@media (max-width: 560px) {
    body,main,.hero,.proof,.intro,.services,.approach,.contact,footer { max-width: 100%; overflow-x: clip; }
    .hero { min-height: 820px; }
    .blur-intro { font-size: 18px; filter: blur(2.3px); }
    .typewriter { min-height: 170px; font-size: 37px; }
    .pill { font-size: 13px; }
    .proof div { min-height: 160px; }
    .proof strong { font-size: 52px; }
    .intro h2,.section-head h2,.contact h2 { font-size: 49px; }
    .service { grid-template-columns: 35px 1fr; gap: 15px; padding-block: 30px; }
    .service h3 { font-size: 29px; }
    .service p { grid-column: 2; }
    .steps { grid-template-columns: 1fr; }
    .steps article { min-height: 230px; border-right: 0; border-bottom: 1px solid rgba(10,10,9,.22); }
    .steps article:last-child { border-bottom: 0; }
    .steps h3 { margin-top: 75px; }
    .contact-row { margin-top: 55px; }
    .contact-row a { grid-template-columns: 1fr auto; padding-block: 16px; }
    .contact-row small { grid-column: 1/-1; }
    .contact-row strong { font-size: 23px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .hero-actions { opacity: 1; transform: none; }
}
