:root {
  --ink: #070707;
  --ink-soft: #111111;
  --paper: #f1f0eb;
  --dim: #aaa8a1;
  --orange: #ff4d00;
  --line: rgba(241, 240, 235, .16);
  --line-dark: rgba(7, 7, 7, .18);
  --pad: clamp(20px, 4vw, 64px);
  --max: 1440px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; overflow-x: hidden; background: var(--ink); color: var(--paper); font-family: Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--orange); color: var(--ink); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }

.skip { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 12px 16px; background: var(--paper); color: var(--ink); font-weight: 800; transform: translateY(-160%); }
.skip:focus { transform: translateY(0); }

.nav { position: fixed; z-index: 50; top: 0; right: 0; left: 0; min-height: 82px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding: 0 var(--pad); border-bottom: 1px solid var(--line); background: rgba(7,7,7,.78); backdrop-filter: blur(18px); }
.brand { width: max-content; font-size: 17px; font-weight: 300; letter-spacing: .29em; white-space: nowrap; }
.brand span { color: var(--orange); font-weight: 900; }
.nav-links { display: flex; gap: clamp(20px, 3vw, 44px); color: var(--dim); font-size: 12px; font-weight: 800; }
.nav-links a:hover { color: var(--paper); }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 14px; }
.language { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid rgba(245,243,239,.2); border-radius: 999px; background: rgba(245,243,239,.07); color: var(--dim); font-size: 10px; font-weight: 900; letter-spacing: .08em; line-height: 1; white-space: nowrap; }
.language span, .language a { min-width: 34px; min-height: 32px; display: inline-flex; align-items: center; justify-content: center; padding: 0 9px; border-radius: 999px; text-align: center; transition: color .2s, background .2s; }
.language [aria-current="page"] { background: var(--orange); color: var(--ink); }
.language a:hover { background: rgba(245,243,239,.1); color: var(--paper); }
.language a:focus-visible { outline: 2px solid var(--paper); outline-offset: 2px; }

.pill { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 0 22px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 800; transition: transform .3s var(--ease), background .3s, color .3s; }
.pill:hover { transform: translateY(-2px); }
.pill-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.pill-accent { background: var(--orange); color: var(--ink); border-color: var(--orange); }
.pill-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: space-between; padding: 118px var(--pad) 0; overflow: hidden; border-bottom: 1px solid var(--line); isolation: isolate; }
.hero-grid { position: absolute; z-index: -3; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 12.5vw 12.5vw; opacity: .45; }
.signal { position: absolute; z-index: -2; border: 1px solid rgba(255,77,0,.45); border-radius: 50%; filter: drop-shadow(0 0 28px rgba(255,77,0,.28)); animation: drift 9s ease-in-out infinite alternate; }
.signal::before, .signal::after { position: absolute; inset: 12%; content: ""; border: inherit; border-radius: inherit; }
.signal::after { inset: 27%; }
.signal-a { width: min(58vw, 850px); aspect-ratio: 1; top: -20vw; right: -10vw; }
.signal-b { width: min(28vw, 400px); aspect-ratio: 1; bottom: 8%; left: 15%; animation-delay: -4s; opacity: .4; }
@keyframes drift { to { transform: translate3d(-3vw, 3vw, 0) rotate(8deg); } }

.hero-top, .hero-bottom { width: min(100%, var(--max)); margin-inline: auto; display: flex; justify-content: space-between; gap: 30px; }
.eyebrow, .section-no, .location { color: var(--dim); font-size: 10px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { width: 25px; height: 2px; display: inline-block; margin-right: 10px; content: ""; vertical-align: middle; background: var(--orange); }
.hero-copy { width: min(100%, var(--max)); margin: auto; padding: 5vh 0 7vh; }
.hero h1 { max-width: 1240px; font-size: clamp(62px, 10.7vw, 168px); font-weight: 900; letter-spacing: -.08em; line-height: .75; text-transform: uppercase; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1px rgba(241,240,235,.52); }
.hero-bottom { align-items: flex-end; margin-top: clamp(40px, 6vh, 90px); }
.hero-bottom > p { max-width: 560px; color: #c4c2bb; font-size: clamp(16px, 1.5vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.ticker { margin-inline: calc(var(--pad) * -1); overflow: hidden; border-top: 1px solid var(--line); color: var(--dim); font-size: 10px; font-weight: 900; letter-spacing: .16em; white-space: nowrap; }
.ticker div { width: max-content; padding: 15px 0; animation: ticker 24s linear infinite; }
@keyframes ticker { to { transform: translateX(-50%); } }

.proof-bar { width: min(100%, var(--max)); display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 auto; border-left: 1px solid var(--line); }
.proof-bar div { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-bar strong { font-size: clamp(34px, 4vw, 58px); letter-spacing: -.07em; }
.proof-bar span { color: var(--dim); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.section { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(90px, 12vw, 175px) var(--pad); }
.section-head { display: grid; grid-template-columns: minmax(160px, 1fr) 3fr; align-items: start; gap: 30px; margin-bottom: clamp(60px, 8vw, 110px); }
.section-head h2, .brief h2 { font-size: clamp(48px, 7.5vw, 112px); font-weight: 900; letter-spacing: -.075em; line-height: .86; text-wrap: balance; }
.section-head h2 span, .brief h2 span { color: transparent; -webkit-text-stroke: 1px rgba(241,240,235,.45); }
.section-head.compact h2 { font-size: clamp(48px, 6.7vw, 94px); }

.service-list { border-top: 1px solid var(--line); }
.service-list article { display: grid; grid-template-columns: 70px 1fr minmax(170px, .5fr); gap: 30px; align-items: start; padding: clamp(30px, 5vw, 68px) 0; border-bottom: 1px solid var(--line); }
.service-no { color: var(--orange); font-size: 11px; font-weight: 900; }
.service-list h3 { font-size: clamp(34px, 4.5vw, 70px); letter-spacing: -.06em; line-height: .9; }
.service-list article div p { max-width: 630px; margin-top: 20px; color: var(--dim); font-size: 16px; line-height: 1.7; }
.service-meta { color: var(--dim); font-size: 10px; font-weight: 900; letter-spacing: .1em; line-height: 1.7; text-transform: uppercase; }

.work { width: 100%; max-width: none; background: var(--paper); color: var(--ink); }
.work > * { width: min(100%, calc(var(--max) - var(--pad) * 2)); margin-right: auto; margin-left: auto; }
.work .section-no { color: #686762; }
.work .section-head h2 span { -webkit-text-stroke-color: rgba(7,7,7,.35); }
.edit-stage { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; }
.frame { min-height: 470px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(24px, 4vw, 48px); border: 1px solid var(--line-dark); overflow: hidden; }
.frame-head { display: flex; justify-content: space-between; color: #686762; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.frame p { color: #686762; line-height: 1.5; }
.frame-raw { position: relative; background: #d4d2cb; }
.raw-mark { position: absolute; inset: 25% 17%; border: 1px solid rgba(7,7,7,.25); transform: rotate(-6deg); }
.raw-mark span { position: absolute; inset: 30%; border: inherit; border-radius: 50%; }
.raw-mark i { position: absolute; top: 50%; left: -15%; width: 130%; height: 1px; background: rgba(7,7,7,.25); }
.frame-final { background: var(--ink); color: var(--paper); }
.frame-final .frame-head, .frame-final p { color: var(--dim); }
.final-type small { display: block; margin-bottom: 18px; color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.final-type strong { font-size: clamp(42px, 5.8vw, 86px); letter-spacing: -.075em; line-height: .78; }
.transform { font-size: 34px; }

.package { display: grid; grid-template-columns: 1.2fr 1fr .75fr; gap: 1px; margin-top: 18px; border: 1px solid var(--line-dark); background: var(--line-dark); }
.package > * { padding: clamp(28px, 4vw, 52px); background: var(--paper); }
.package h3 { margin: 30px 0 18px; font-size: clamp(42px, 5vw, 72px); letter-spacing: -.06em; line-height: .9; }
.package-title > p:last-child { max-width: 500px; color: #686762; line-height: 1.6; }
.package ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.package li { padding: 14px 0; border-bottom: 1px solid var(--line-dark); font-size: 14px; }
.package li::before { margin-right: 12px; color: var(--orange); content: "●"; font-size: 8px; }
.price { display: flex; flex-direction: column; align-items: flex-start; background: var(--orange); }
.price > span, .price small { font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.price strong { margin: auto 0 4px; font-size: clamp(56px, 6vw, 92px); letter-spacing: -.08em; line-height: .8; }
.price .pill { margin-top: 30px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.steps article { min-height: 330px; display: flex; flex-direction: column; padding: clamp(28px, 4vw, 48px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps span { color: var(--orange); font-size: 11px; font-weight: 900; }
.steps h3 { margin-top: auto; font-size: clamp(28px, 3vw, 44px); letter-spacing: -.05em; }
.steps p { margin-top: 18px; color: var(--dim); font-size: 14px; line-height: 1.65; }

.brief { width: 100%; max-width: none; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 130px); background: var(--orange); color: var(--ink); }
.brief > * { width: 100%; max-width: 700px; }
.brief-intro { justify-self: end; }
.brief .section-no { color: rgba(7,7,7,.62); }
.brief h2 { margin: 35px 0; }
.brief h2 span { -webkit-text-stroke-color: rgba(7,7,7,.43); }
.brief-intro > p:not(.section-no) { max-width: 580px; color: rgba(7,7,7,.7); font-size: 17px; line-height: 1.65; }
.brief-intro > a { display: inline-block; margin-top: 40px; border-bottom: 1px solid var(--ink); font-weight: 800; }

.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 16px; padding: clamp(26px, 4vw, 48px); background: var(--ink); color: var(--paper); }
.lead-form label { display: grid; gap: 9px; color: var(--dim); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: 13px 0; background: transparent; color: var(--paper); font-size: 15px; letter-spacing: 0; text-transform: none; }
.lead-form textarea { resize: vertical; }
.lead-form select { color-scheme: dark; }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: #666; }
.lead-form .full { grid-column: 1 / -1; }
.lead-form .consent { display: flex; grid-template-columns: auto 1fr; flex-direction: row; align-items: flex-start; gap: 10px; color: #85837d; font-weight: 500; letter-spacing: 0; line-height: 1.5; text-transform: none; }
.consent input { width: 16px; margin: 2px 0 0; accent-color: var(--orange); }
.honey { position: absolute !important; left: -9999px !important; }
.submit { min-height: 58px; border: 0; padding: 0 22px; background: var(--paper); color: var(--ink); font-weight: 900; cursor: pointer; }
.form-note { align-self: center; color: #777; font-size: 11px; line-height: 1.5; }

footer { min-height: 160px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 35px var(--pad); border-top: 1px solid var(--line); }
footer p { color: var(--dim); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero-bottom { align-items: flex-start; flex-direction: column; }
  .hero-actions { justify-content: flex-start; }
  .proof-bar { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; }
  .service-list article { grid-template-columns: 45px 1fr; }
  .service-meta { grid-column: 2; }
  .edit-stage { grid-template-columns: 1fr; }
  .transform { transform: rotate(90deg); text-align: center; }
  .package { grid-template-columns: 1fr; }
  .price strong { margin-top: 60px; }
  .steps { grid-template-columns: 1fr; }
  .steps article { min-height: 260px; }
  .brief { grid-template-columns: 1fr; }
  .brief-intro { justify-self: auto; max-width: 100%; }
  .lead-form { max-width: 100%; }
}

@media (max-width: 620px) {
  .nav { min-height: 70px; }
  .nav-actions { gap: 8px; }
  .nav-actions > .pill { min-height: 42px; padding: 0 15px; font-size: 11px; }
  .language { padding: 2px; }
  .language span, .language a { min-width: 30px; min-height: 28px; padding: 0 7px; }
  .hero { padding-top: 100px; }
  .hero-top { display: block; }
  .location { margin-top: 12px; }
  .hero h1 { font-size: clamp(56px, 19vw, 92px); line-height: .78; }
  .hero-bottom > p { font-size: 15px; }
  .hero-actions { width: 100%; }
  .hero-actions .pill { width: 100%; }
  .proof-bar { grid-template-columns: 1fr; }
  .proof-bar div { min-height: 120px; }
  .section { padding-top: 85px; padding-bottom: 85px; }
  .service-list article { grid-template-columns: 1fr; }
  .service-meta { grid-column: auto; }
  .frame { min-height: 390px; }
  .lead-form { grid-template-columns: 1fr; }
  .lead-form .full { grid-column: auto; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
