:root {
  --bg: #0c1810;
  --surface: #111f15;
  --surface2: #162118;
  --accent: #c9a84c;
  --accent-dim: #8a6e2f;
  --green: #6fbe8a;
  --green-dim: rgba(111, 190, 138, 0.15);
  --cream: #f0e6d3;
  --cream-dim: rgba(240, 230, 211, 0.6);
  --text: #f0e6d3;
  --text-muted: rgba(240, 230, 211, 0.5);
  --border: rgba(201, 168, 76, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(12,24,16,0.95) 0%, transparent 100%);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.5px;
}
.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-suffix {
  color: var(--accent);
}
.nav-tagline {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.nav-link:hover {
  border-color: var(--accent-dim);
  color: var(--cream);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 40px 100px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-molecule {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(50vw, 600px);
  height: min(50vw, 600px);
  opacity: 0.7;
  animation: rotate-slow 60s linear infinite;
}
@keyframes rotate-slow {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-title em {
  color: var(--accent);
  font-style: italic;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
}
.divider-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--border);
}
.divider-text {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  white-space: nowrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--bg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 12px;
}
.cta-btn:hover {
  background: #dbb85a;
  transform: translateY(-1px);
}

/* ── STATS ── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat { text-align: center; padding: 0 24px; }
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
  margin-left: 12px;
}
.cta-link:hover {
  border-color: var(--accent-dim);
  color: var(--cream);
}

/* ── PHILOSOPHY ── */
.philosophy { padding: 120px 40px; }
.philosophy-inner { max-width: 1200px; margin: 0 auto; }
.philosophy-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.philosophy-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.philosophy-body {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 64px;
  font-weight: 300;
}
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.3s ease;
}
.pillar:hover { border-color: var(--accent-dim); }
.pillar-icon { margin-bottom: 20px; }
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.pillar-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── SERVICES ── */
.services { padding: 100px 40px; background: var(--surface); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.services-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.service-card {
  padding: 36px 28px;
  background: var(--surface2);
  border: 1px solid var(--border);
  position: relative;
}
.service-card-wide { grid-column: span 2; }
.service-num {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.2;
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CASE STUDIES ── */
.casestudies { padding: 100px 40px; }
.cs-inner { max-width: 1200px; margin: 0 auto; }
.cs-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.cs-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.cs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.cs-card {
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}
.cs-card-primary {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(201,168,76,0.06) 100%);
  border-color: var(--accent-dim);
}
.cs-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
}
.cs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.2;
}
.cs-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.cs-outcome {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cs-metric {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.cs-metric-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 32px;
  font-weight: 400;
}
.manifesto-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.manifesto-values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.value {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 20px;
  border: 1px solid var(--border);
}
.value-sep {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* ── CLOSING ── */
.closing {
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-glyph {
  width: 120px;
  height: 120px;
  margin: 0 auto 48px;
}
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 14px;
}
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
}
.footer-info {
  text-align: center;
}
.footer-info p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--accent);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-pillars { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-sep { display: none; }
  .hero-molecule { display: none; }
}
@media (max-width: 600px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 120px 24px 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .cs-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .manifesto-values { flex-direction: column; }
  .value-sep { display: none; }
}