:root {
  --bg: #F4EFE7;
  --bg-dark: #18140F;
  --bg-navy: #0B1C2E;
  --fg: #18140F;
  --fg-inv: #F4EFE7;
  --accent: #C9880A;
  --accent-alt: #0B1C2E;
  --accent-dim: rgba(201, 136, 10, 0.12);
  --muted: #7A6E63;
  --muted-light: rgba(244, 239, 231, 0.45);
  --border: rgba(24, 20, 15, 0.12);
  --border-light: rgba(244, 239, 231, 0.1);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Instrument Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  padding: 8rem 2rem 6rem;
}

.hero-orb {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(201,136,10,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--fg-inv);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(244, 239, 231, 0.55);
  max-width: 520px;
  line-height: 1.7;
}

/* ── STATS ─────────────────────────────────────── */
.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 4rem 2rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 4rem;
}

.stat-number {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
}

/* ── SERVICES ──────────────────────────────────── */
.services {
  padding: 8rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services-header h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 4rem;
  color: var(--fg);
}

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

.service-card {
  background: var(--bg);
  padding: 3rem 2.5rem;
  transition: background 0.2s;
}

.service-card:hover { background: rgba(201,136,10,0.04); }

.service-card.accent-card { background: var(--bg-dark); }
.service-card.accent-card h3,
.service-card.accent-card p { color: var(--fg-inv); }
.service-card.accent-card .service-icon { color: var(--accent); }
.service-card.accent-card:hover { background: #211c14; }

.service-icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── MANIFESTO ─────────────────────────────────── */
.manifesto {
  background: var(--bg-navy);
  padding: 8rem 2rem;
}

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

.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 3vw, 2rem);
  color: var(--fg-inv);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.manifesto-attr {
  font-size: 0.9375rem;
  color: rgba(244,239,231,0.45);
  line-height: 1.6;
}

/* ── CLOSING ───────────────────────────────────── */
.closing {
  padding: 8rem 2rem;
  background: var(--bg);
}

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

.closing-inner h2 {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.closing-inner p {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 4rem;
}

.closing-logos {}

.client-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.logo-row span {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--muted);
  font-style: italic;
  opacity: 0.7;
}

/* ── FOOTER ────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-brand {
  font-family: var(--serif);
  font-style: italic;
  color: var(--fg);
}

.footer-sep { color: var(--border); }

/* ── WHO WE SERVE ─────────────────────────────────── */
.who-we-serve {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}

.wws-inner {
  max-width: 820px;
  margin: 0 auto;
}

.wws-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.wws-headline {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.wws-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.wws-list {
  list-style: none;
  margin-bottom: 2rem;
}

.wws-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  color: var(--fg);
  line-height: 1.5;
}

.wws-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.wws-note {
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
  border-left: 2px solid var(--border);
  padding-left: 1.25rem;
}

/* ── CTA BUTTON ──────────────────────────────────── */
.cta-row {
  margin-top: 3rem;
}

.cta-btn {
  display: inline-block;
  background: var(--bg-dark);
  color: var(--fg-inv);
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.cta-btn:hover {
  background: var(--accent);
  color: var(--fg);
}

/* ── SITE NAV ───────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
}

.nav-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(244,239,231,0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  color: rgba(244,239,231,0.55);
  text-decoration: none;
  font-family: var(--sans);
  transition: color 0.2s;
}
.nav-link:hover { color: rgba(244,239,231,0.9); }

.nav-cta {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  font-family: var(--sans);
  transition: color 0.2s;
}
.nav-cta:hover { color: rgba(201,136,10,0.75); }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 6rem 1.5rem 5rem; }
  .stats { flex-direction: column; gap: 0; }
  .stat-divider { width: 80px; height: 1px; }
  .stat-item { padding: 1.5rem 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .manifesto, .closing, .who-we-serve { padding: 5rem 1.5rem; }
  .wws-headline { font-size: 1.75rem; }
  .cta-row { text-align: center; }
  .logo-row { gap: 1.5rem; }
  .closing-inner h2 { font-size: 2.25rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .hero-orb { display: none; }
  .stat-item { padding: 1.25rem 1rem; }
}