:root {
  --bg: #0a0a0c;
  --bg-warm: #111114;
  --fg: #e8e4df;
  --fg-muted: #8a857e;
  --accent: #c9a84c;
  --accent-dim: rgba(201, 168, 76, 0.15);
  --film-grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film grain overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: var(--film-grain);
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 10vw 80px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10vw; right: 10vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.05;
  max-width: 900px;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  margin-top: 28px;
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.6;
}

/* === SERVICES STRIP === */
.services-strip {
  background: var(--bg-warm);
  padding: 80px 10vw;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}

.services-strip .section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  position: sticky;
  top: 100px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.service-card {
  padding: 32px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 4px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.service-card:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.service-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* === STORY SECTION === */
.story {
  padding: 120px 10vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text .section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}

.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.story-text p {
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.story-stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stat {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === QUOTE SECTION === */
.quote-section {
  padding: 100px 10vw;
  background: var(--bg-warm);
  text-align: center;
}

.quote-section blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.35;
  max-width: 800px;
  margin: 0 auto;
  color: var(--fg);
}

.quote-section blockquote em {
  font-style: normal;
  color: var(--accent);
}

.quote-attr {
  margin-top: 28px;
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: 1px;
}

/* === CLOSING === */
.closing {
  padding: 120px 10vw;
  text-align: center;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  max-width: 700px;
  margin: 0 auto 24px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto;
}

/* === FOOTER === */
footer {
  padding: 40px 10vw;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--fg-muted);
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .services-strip {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services-strip .section-label {
    position: static;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 8vw;
  }
  .hero { padding: 100px 8vw 60px; }
  .services-strip { padding: 60px 8vw; }
  .quote-section { padding: 60px 8vw; }
  .closing { padding: 80px 8vw; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 36px; }
}