:root {
  --ink: #0a0a0a;
  --ink-soft: #141414;
  --panel: #181818;
  --paper: #f4f0e7;
  --paper-soft: #e4ded2;
  --muted: #a9a59d;
  --line: rgba(244, 240, 231, .14);
  --accent: #c9bea9;
  --accent-strong: #e3d7bf;
  --max: 1220px;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--paper);
  background:
    radial-gradient(circle at 90% 8%, rgba(201,190,169,.12), transparent 28rem),
    radial-gradient(circle at 5% 35%, rgba(255,255,255,.045), transparent 24rem),
    var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.narrow { width: min(calc(100% - 40px), 850px); margin: 0 auto; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.display {
  margin: 0;
  font-size: clamp(52px, 8.2vw, 122px);
  line-height: .91;
  letter-spacing: -.06em;
  font-weight: 700;
}
.display em, .section-title em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  color: var(--accent-strong);
}
.section-title {
  max-width: 860px;
  margin: 0;
  font-size: clamp(38px, 5.5vw, 74px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 650;
}
.section-copy { max-width: 690px; margin: 24px 0 0; color: var(--paper-soft); font-size: clamp(17px, 1.7vw, 21px); }
.muted { color: var(--muted); }

.topbar {
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--paper-soft);
}
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a:hover { color: white; }

.site-header {
  position: relative;
  z-index: 50;
  background: #0a0a0a;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(244,240,231,.08);
}
.header-inner { min-height: 86px; display: grid; grid-template-columns: 104px 1fr auto; align-items: center; gap: 24px; }
.brand { display: inline-flex; width: 72px; height: 52px; align-items: center; color: var(--paper); overflow: hidden; }
.brand img { width: 100%; max-height: 52px; height: auto; object-fit: contain; display: block; }
.nav { display: flex; justify-content: center; gap: clamp(20px, 3vw, 42px); }
.nav a {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--paper-soft);
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a:hover, .nav a[aria-current="page"] { color: white; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--ink);
  background: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}
.btn:hover { transform: translateY(-2px); background: white; }
.btn.ghost { color: var(--paper); background: transparent; border-color: var(--line); }
.btn.ghost:hover { border-color: var(--paper); background: var(--paper); color: var(--ink); }

.menu-toggle { display: none; color: var(--paper); background: none; border: 0; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 1px; background: currentColor; margin: 6px 0; transition: .2s; }

.hero { min-height: calc(100svh - 120px); display: flex; align-items: flex-end; padding: clamp(90px, 11vw, 155px) 0 72px; overflow: hidden; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(244,240,231,.08);
  border-radius: 50%;
  right: -18vw;
  top: -16vw;
  box-shadow: inset 0 0 120px rgba(201,190,169,.04);
}
.hero::after {
  content: "";
  position: absolute;
  right: clamp(20px, 7vw, 100px);
  bottom: 18%;
  width: min(22vw, 260px);
  height: min(22vw, 260px);
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  border-radius: 50%;
  transform: rotate(-13deg);
  opacity: .25;
}
.hero-grid { display: grid; grid-template-columns: 1fr minmax(250px, 370px); align-items: end; gap: 50px; position: relative; z-index: 2; }
.hero-copy { max-width: 360px; color: var(--paper-soft); font-size: 18px; }
.hero-copy p { margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-item { padding: 18px 24px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.marquee-item::after { content: "✦"; margin-left: 48px; color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: clamp(90px, 11vw, 150px) 0; }
.section.divider { border-top: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 58px; }
.section-head .section-copy { margin: 0; max-width: 430px; }

.story-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(30px, 7vw, 100px); align-items: center; }
.visual-panel {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201,190,169,.18), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0) 45%),
    #080808;
  box-shadow: var(--shadow);
}
.visual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(244,240,231,.05);
  pointer-events: none;
}
.panel-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  right: 14%;
  top: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,215,191,.14) 0%, rgba(201,190,169,.08) 28%, rgba(0,0,0,0) 72%);
  filter: blur(16px);
}
.panel-inner {
  position: absolute;
  inset: 0;
  padding: 34px 36px 28px;
}
.panel-mark {
  position: absolute;
  top: 26px;
  left: 26px;
  width: 52px;
  opacity: .12;
}
.orbit {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid rgba(244,240,231,.68);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  opacity: .92;
}
.orbit-top {
  width: 72%;
  height: 22%;
  top: 24%;
}
.orbit-mid {
  width: 78%;
  height: 26%;
  top: 40%;
}
.orbit-bottom {
  width: 72%;
  height: 22%;
  bottom: 22%;
}
.wordmark {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(68px, 8vw, 110px);
  line-height: .9;
  letter-spacing: -.06em;
  font-weight: 800;
  color: var(--paper);
}
.panel-meta {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.panel-meta span:last-child {
  color: var(--paper-soft);
}

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 34px 24px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: clamp(28px, 3vw, 48px); line-height: 1; margin-bottom: 10px; font-weight: 600; }
.stat span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .15em; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-card {
  position: relative;
  min-height: 350px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), transparent 60%);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(244,240,231,.3); }
.service-card .num { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.service-card h3 { margin: 110px 0 14px; font-size: clamp(30px, 3vw, 48px); letter-spacing: -.04em; line-height: 1; }
.service-card p { max-width: 480px; margin: 0; color: var(--muted); }
.service-card .arrow { position: absolute; top: 30px; right: 30px; font-size: 30px; color: var(--paper-soft); transition: transform .3s ease; }
.service-card:hover .arrow { transform: translate(4px,-4px); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.audience-card { min-height: 540px; padding: clamp(32px, 5vw, 62px); border-radius: var(--radius); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; border: 1px solid var(--line); }
.audience-card.light { background: var(--paper); color: var(--ink); }
.audience-card.dark { background: #121212; }
.audience-card h3 { margin: 0; font-size: clamp(44px, 5vw, 72px); letter-spacing: -.05em; line-height: .95; }
.audience-card p { max-width: 500px; font-size: 18px; opacity: .78; }
.audience-card.light .btn.ghost { border-color: rgba(10,10,10,.22); color: var(--ink); }
.audience-card.light .btn.ghost:hover { background: var(--ink); color: white; }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.why-item { background: var(--ink); padding: clamp(30px, 5vw, 58px); min-height: 250px; }
.why-item .icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--accent); margin-bottom: 58px; }
.why-item h3 { margin: 0 0 12px; font-size: 27px; }
.why-item p { margin: 0; color: var(--muted); max-width: 470px; }

.cta { padding: clamp(90px, 13vw, 180px) 0; text-align: center; }
.cta .section-title { margin: 0 auto; max-width: 970px; }
.cta .section-copy { margin-left: auto; margin-right: auto; }
.cta .hero-actions { justify-content: center; margin-top: 34px; }

.page-hero { padding: 130px 0 80px; border-bottom: 1px solid var(--line); }
.page-hero .section-copy { max-width: 780px; }
.breadcrumb { margin-bottom: 30px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.breadcrumb a:hover { color: white; }

.content-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(40px, 8vw, 110px); }
.content-grid h2 { margin: 0; font-size: clamp(32px, 4vw, 54px); letter-spacing: -.04em; line-height: 1; }
.prose { color: var(--paper-soft); font-size: 18px; }
.prose p:first-child { margin-top: 0; }
.prose p { margin: 0 0 22px; }
.prose h3 { color: var(--paper); font-size: 24px; margin: 45px 0 12px; }
.prose ul { padding-left: 20px; }
.prose li { margin: 8px 0; }

.process { counter-reset: process; display: grid; gap: 0; border-top: 1px solid var(--line); }
.process-item { counter-increment: process; display: grid; grid-template-columns: 100px 1fr 1.4fr; gap: 30px; padding: 36px 0; border-bottom: 1px solid var(--line); align-items: start; }
.process-item::before { content: "0" counter(process); color: var(--accent); font-size: 12px; letter-spacing: .15em; font-weight: 800; }
.process-item h3 { margin: 0; font-size: 25px; }
.process-item p { margin: 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 8vw, 110px); }
.contact-meta { margin-top: 50px; display: grid; gap: 24px; }
.contact-meta small { display: block; color: var(--muted); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 5px; }
.contact-meta a:hover { color: var(--accent-strong); }
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { color: var(--paper-soft); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  width: 100%;
  color: var(--paper);
  background: #111;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { min-height: 170px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { margin: 0; font-size: 12px; color: var(--muted); }

.legal { padding: 100px 0 140px; }
.legal h1 { font-size: clamp(44px, 7vw, 82px); letter-spacing: -.055em; line-height: .95; margin: 0 0 18px; }
.legal .updated { color: var(--muted); margin-bottom: 55px; }
.legal h2 { margin: 48px 0 12px; font-size: 27px; }
.legal p, .legal li { color: var(--paper-soft); }

.site-footer { border-top: 1px solid var(--line); padding: 64px 0 30px; }
.footer-main { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; padding-bottom: 60px; }
.footer-brand { width: 108px; margin-bottom: 22px; height: auto; object-fit: contain; }
.footer-copy { color: var(--muted); max-width: 420px; }
.footer-col h4 { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin: 0 0 17px; }
.footer-col a { display: block; margin: 10px 0; color: var(--paper-soft); }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; align-items: center; padding-top: 25px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.footer-legal { display: flex; gap: 22px; }
.disclaimer { margin-top: 25px; color: #77736d; font-size: 10px; max-width: 760px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 980px) {
  .topbar { display: none; }
  .header-inner { grid-template-columns: 1fr auto; min-height: 72px; height: 72px; }
  .brand { width: 64px; height: 46px; }
  .brand img { max-height: 46px; }
  .nav, .header-inner > .btn { display: none; }
  .menu-toggle { display: block; }
  .nav.open {
    position: fixed;
    inset: 76px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 55px 30px;
    gap: 26px;
    background: rgba(10,10,10,.98);
  }
  .nav.open a { font-size: 25px; letter-spacing: -.02em; text-transform: none; }
  .hero-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-copy { max-width: 600px; }
  .section-head { display: block; }
  .section-head .section-copy { margin-top: 24px; }
  .visual-panel { min-height: 420px; }
  .content-grid { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 70px 1fr; }
  .process-item p { grid-column: 2; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .display { font-size: clamp(50px, 17vw, 78px); }
  .hero::after { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .services-grid, .split, .why-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; padding: 28px; }
  .service-card h3 { margin-top: 85px; }
  .audience-card { min-height: 440px; }
  .form-row { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 50px 1fr; gap: 14px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; }
}

@media (max-width: 900px) {
  .panel-meta { left: 24px; right: 24px; bottom: 24px; gap: 10px; }
  .orbit-top, .orbit-bottom { width: 82%; }
  .orbit-mid { width: 88%; }
}
@media (max-width: 700px) {
  .visual-panel { min-height: 430px; border-radius: 28px; }
  .panel-mark { width: 40px; top: 18px; left: 18px; }
  .panel-glow { width: 180px; height: 180px; right: 12%; top: 20%; }
  .orbit-top { width: 84%; height: 24%; top: 24%; }
  .orbit-mid { width: 92%; height: 26%; top: 42%; }
  .orbit-bottom { width: 84%; height: 24%; bottom: 18%; }
  .wordmark { font-size: clamp(52px, 15vw, 78px); top: 48%; }
  .panel-meta { font-size: 10px; letter-spacing: .14em; }
}
