:root {
  --bg: #050505;
  --surface: #0d0d0f;
  --text: #f0f0f2;
  --dim: #a1a1a6;
  --mute: #727278;
  --line: rgba(255,255,255,.11);
  --max: 1240px;
  --ease: cubic-bezier(.22,1,.36,1);
  --font: -apple-system,BlinkMacSystemFont,"SF Pro Display","Helvetica Neue",Arial,sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--bg); color: var(--text); font-family: var(--font); line-height: 1.5; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; width: 100%; }
.nav { position: relative; z-index: 4; border-bottom: 1px solid var(--line); }
.nav-inner, .wrap { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.nav-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-size: 14px; font-weight: 650; letter-spacing: .02em; }
.nav-links { display: flex; align-items: center; gap: 24px; color: var(--dim); font-size: 13px; }
.nav-links a { transition: color .3s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-quote { color: var(--text); border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.hero { min-height: 72vh; position: relative; display: grid; align-items: end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(0,0,0,.12),rgba(0,0,0,.2) 40%,rgba(0,0,0,.9)); }
.hero-copy { position: relative; z-index: 2; width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 120px 0 64px; max-width: var(--max); }
.eyebrow { color: #d1d1d4; font-size: 11px; font-weight: 650; letter-spacing: .19em; text-transform: uppercase; margin-bottom: 18px; }
h1 { max-width: 920px; font-size: clamp(44px,7vw,96px); font-weight: 680; letter-spacing: -.045em; line-height: .96; text-wrap: balance; }
.lead { max-width: 690px; color: #d0d0d3; font-size: clamp(17px,2vw,22px); line-height: 1.55; margin-top: 26px; }
.gallery { display: grid; grid-template-columns: repeat(12,1fr); gap: 12px; padding: 12px 0; }
.shot { grid-column: span 6; min-height: 620px; overflow: hidden; background: var(--surface); }
.shot:nth-child(3n) { grid-column: span 12; min-height: 680px; }
.shot img, .shot video { height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.shot:hover img, .shot:hover video { transform: scale(1.025); }
.content-section { padding: clamp(78px,10vw,140px) 0; border-top: 1px solid var(--line); }
.section-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(44px,8vw,140px); }
.section-label { color: var(--mute); font-size: 11px; font-weight: 650; letter-spacing: .18em; text-transform: uppercase; }
h2 { font-size: clamp(32px,4vw,58px); line-height: 1.02; letter-spacing: -.035em; font-weight: 650; text-wrap: balance; }
.section-intro { color: var(--dim); font-size: 18px; line-height: 1.7; margin-top: 22px; max-width: 700px; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 62px; border-top: 1px solid var(--line); }
.step { padding: 26px 24px 12px 0; border-right: 1px solid var(--line); }
.step + .step { padding-left: 24px; }
.step:last-child { border-right: 0; }
.step-num { display: block; color: var(--mute); font-size: 11px; letter-spacing: .16em; margin-bottom: 38px; }
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--dim); font-size: 14px; line-height: 1.65; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; padding: 24px 42px 24px 0; font-size: 17px; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 2px; color: var(--dim); font-weight: 300; }
details[open] summary::after { content: "−"; }
details p { color: var(--dim); max-width: 740px; padding: 0 42px 24px 0; }
.cta { text-align: center; padding: clamp(100px,14vw,180px) 24px; border-top: 1px solid var(--line); background: linear-gradient(180deg,#050505,#0b0d12); }
.cta h2 { max-width: 780px; margin-inline: auto; }
.cta-actions { margin-top: 36px; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.button { border: 1px solid var(--line); padding: 15px 22px; font-size: 14px; transition: transform .35s var(--ease),border-color .35s var(--ease),background .35s var(--ease); }
.button.primary { color: #050505; background: var(--text); border-color: var(--text); }
.button:hover { transform: translateY(-2px); border-color: var(--text); }
.service-footer { border-top: 1px solid var(--line); padding: 36px 0 48px; }
.service-footer .wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; }
.service-footer p { color: var(--mute); font-size: 12px; }
.service-links { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 12px 22px; color: var(--dim); font-size: 12px; }
.service-links a:hover { color: var(--text); }
@media (max-width: 760px) {
  .nav-inner, .wrap, .hero-copy { width: min(calc(100% - 32px), var(--max)); }
  .nav-links a:first-child { display: none; }
  .hero { min-height: 68svh; }
  .hero-copy { padding-bottom: 38px; }
  .shot, .shot:nth-child(3n) { grid-column: span 12; min-height: 72svh; }
  .section-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { border-right: 0; border-bottom: 1px solid var(--line); padding: 24px 0; }
  .step-num { margin-bottom: 20px; }
  .service-footer .wrap { grid-template-columns: 1fr; }
  .service-links { justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { transition-duration: .01ms !important; } }
