*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

:root {
  --gold: #B8902A;
  --gold-light: #D4AF5A;
  --gold-faint: #F5EDD8;
  --ink: #0D1117;
  --ink-mid: #1F2937;
  --ink-soft: #374151;
  --slate: #6B7280;
  --line: rgba(184, 144, 42, 0.22);
  --bg: #FAFAF8;
  --card-bg: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
  height: 72px;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
}

.logo-mark {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 18px;
  color: var(--gold);
  letter-spacing: -0.5px;
  transform: rotate(45deg);
}

.logo-mark span {
  transform: rotate(-45deg);
  display: block;
}

.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-mid);
  line-height: 1.3;
}

.logo-text small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--slate);
  font-weight: 400;
}

.nav-links {
  display: flex; gap: 40px; list-style: none;
}

.nav-links a {
  font-size: 13px; font-weight: 400;
  color: var(--ink-soft); text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border: 1px solid var(--gold);
  padding: 9px 24px;
  transition: all 0.25s;
}

.nav-cta:hover {
  background: var(--gold); color: #fff;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 20px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 56px 80px 64px;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.1s;
}

.hero-eyebrow span {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}

.hero-eyebrow::before {
  content: '';
  display: block; width: 40px; height: 1px;
  background: var(--gold);
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.25s;
}

h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 15px; line-height: 1.75;
  color: var(--slate);
  max-width: 440px;
  margin-bottom: 48px;
  font-weight: 300;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.4s;
}

.hero-actions {
  display: flex; align-items: center; gap: 28px;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.55s;
}

.btn-primary {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--ink);
  border: none; padding: 16px 36px;
  text-decoration: none; cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold); }

.btn-ghost {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}

.btn-ghost::after {
  content: '→'; font-size: 14px;
  transition: transform 0.2s;
}

.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover::after { transform: translateX(4px); }

.hero-right {
  position: relative;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-canvas {
  width: 100%; height: 100%;
  position: relative;
}

.ticker-track {
  width: 100%;
  overflow: hidden;
}

.ticker {
  display: flex;
  width: fit-content;
  animation: tickerMove 18s linear infinite;
}

/* Each item */
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px; /* IMPORTANT: forces full width spread */
  padding: 20px 40px;
}

/* TEXT */
.stat-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: var(--gold);
}

.stat-small {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}

/* KEY FIX */
@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── STATS STRIP ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-item {
  padding: 40px 36px;
  border-right: 1px solid var(--line);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300;
  color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--slate);
  font-weight: 400;
}

/* ── SECTIONS ── */
section { padding: 96px 64px; }

.section-header {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 64px;
}

.section-label {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}

.section-label::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400; line-height: 1.12;
  color: var(--ink);
  max-width: 480px;
}

.section-intro {
  font-size: 15px; line-height: 1.75;
  color: var(--slate); max-width: 400px;
  align-self: flex-end; padding-bottom: 6px;
  font-weight: 300;
}

/* ── CAPABILITIES ── */
.capabilities { background: var(--card-bg); }

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.cap-card {
  background: var(--card-bg);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s;
}

.cap-card:hover { background: #FDFBF5; }

.cap-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 400;
  color: var(--gold-light); margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.cap-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}

.cap-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold); fill: none; stroke-width: 1.5;
}

.cap-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500;
  color: var(--ink); margin-bottom: 14px;
  line-height: 1.25;
}

.cap-desc {
  font-size: 13.5px; line-height: 1.7;
  color: var(--slate); font-weight: 300;
}

/* ── APPROACH ── */
.approach { background: var(--ink); }

.approach .section-label { color: var(--gold-light); }
.approach .section-label::before { background: var(--gold-light); }

.approach-h2 { color: #F5F0E8; }
.approach-intro { color: rgba(245, 240, 232, 0.5); }

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.approach-item {
  padding: 40px;
  border: 1px solid rgba(184, 144, 42, 0.2);
  position: relative;
  transition: border-color 0.3s;
}

.approach-item:hover { border-color: rgba(184, 144, 42, 0.5); }

.approach-item::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.approach-item:hover::before { height: 100%; }

.approach-tag {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 20px;
}

.approach-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400;
  color: #F5F0E8; margin-bottom: 16px; line-height: 1.2;
}

.approach-body {
  font-size: 13.5px; line-height: 1.75;
  color: rgba(245, 240, 232, 0.55); font-weight: 300;
}

/* ── CLIENTS ── */
.clients { background: var(--gold-faint); }

.client-types {
  display: flex; gap: 24px; flex-wrap: wrap;
}

.client-pill {
  padding: 14px 28px;
  border: 1px solid rgba(184, 144, 42, 0.35);
  font-size: 13px; color: var(--ink-soft);
  letter-spacing: 0.04em; font-weight: 400;
  background: rgba(255, 255, 255, 0.6);
}


/* ── FOOTER ── */
footer {
  background: var(--ink-mid);
  padding: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 56px 64px;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .logo-text { color: #F5F0E8; }
.footer-brand .logo-text small { color: rgba(245, 240, 232, 0.45); }

.footer-tagline {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.45);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 320px;
  font-weight: 300;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.social-btn {
  width: 44px; height: 44px;
  background: rgba(245, 240, 232, 0.07);
  border: 1px solid rgba(184, 144, 42, 0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transition: all 0.25s;
}

.social-btn:hover {
  background: var(--gold);
  color: #fff;
}

.social-btn svg {
  width: 16px; height: 16px;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  text-align: right;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(184, 144, 42, 0.15);
  padding: 20px 64px;
  text-align: center;
}

.footer-copy {
  font-size: 11px;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.05em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}