:root {
  --bg: #0D1F12;
  --surface: #142618;
  --cream: #F6F2EC;
  --gold: #C9A84C;
  --gold-muted: #9A7A30;
  --text: #F6F2EC;
  --text-dim: rgba(246, 242, 236, 0.55);
  --text-muted: rgba(246, 242, 236, 0.35);
  --border: rgba(201, 168, 76, 0.18);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
  background: rgba(13, 31, 18, 0.85);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.nav-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 3rem 6rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 79px,
    rgba(201, 168, 76, 0.025) 79px,
    rgba(201, 168, 76, 0.025) 80px
  );
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 3rem;
}

.hero-sub {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 580px;
  line-height: 1.75;
}

.hero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 30%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ─── Philosophy ─── */
.philosophy {
  background: var(--surface);
  padding: 7rem 3rem;
}

.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  margin-top: 4rem;
}

.philosophy-label:first-child { margin-top: 0; }

.philosophy-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.philosophy-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 680px;
  line-height: 1.85;
}

.philosophy-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 3.5rem 0;
}

/* ─── Services ─── */
.services {
  background: var(--bg);
  padding: 7rem 3rem;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.services-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4rem;
  line-height: 1.25;
}

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

.service-card {
  background: var(--bg);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.3s ease;
}

.service-card:hover {
  background: var(--surface);
}

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.service-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ─── Results ─── */
.results {
  background: var(--surface);
  padding: 7rem 3rem;
}

.results-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.results-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.results-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.result-item {
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
}

.result-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.result-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.4;
}

.results-clients {
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.results-clients-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.results-clients-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.client-name {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-dim);
}

.client-sep {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ─── Closing ─── */
.closing {
  background: var(--bg);
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.35;
  font-style: italic;
  margin-bottom: 2.5rem;
}

.closing-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 3rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.closing-attribution {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* ─── Footer ─── */
.footer {
  background: var(--surface);
  padding: 3rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

.footer-links {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .services-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }
  .hero-headline {
    font-size: clamp(2.75rem, 10vw, 4.5rem);
  }
}

@media (max-width: 600px) {
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .philosophy { padding: 5rem 1.5rem; }
  .services { padding: 5rem 1.5rem; }
  .results { padding: 5rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
}