:root {
  --bg: #f5f0e8;
  --fg: #141414;
  --accent: #c96b4a;
  --accent-dark: #a85638;
  --muted: #8a8074;
  --card-bg: #ffffff;
  --border: #e0d9cf;
  --hero-img-overlay: rgba(20,20,20,0.25);
}

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

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

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

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Hero ── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

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

.hero-lede {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  gap: 40px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}

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

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* ── Agents Section ── */
.agents {
  background: var(--fg);
  color: #fff;
  padding: 96px 0;
}

.agents-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.agents-header {
  max-width: 560px;
  margin-bottom: 56px;
}

.agents .section-overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.agents-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.agents-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.agent-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 28px;
  transition: background 0.2s;
}

.agent-card:hover {
  background: rgba(255,255,255,0.09);
}

.agent-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}

.agent-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.agent-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ── Features Section ── */
.features {
  padding: 96px 0;
  background: var(--bg);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.section-overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.features-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--fg);
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features-list li {
  font-size: 0.93rem;
  color: #3a3530;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

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

.features-list li strong {
  color: var(--fg);
  font-weight: 600;
}

/* ── Proof Section ── */
.proof {
  background: #1a1714;
  color: #fff;
  padding: 88px 0;
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.proof .section-overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.proof-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  color: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}

.proof-stat {}

.proof-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.proof-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

.proof-source {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.03em;
  margin-top: 0;
}

/* ── Closing ── */
.closing {
  padding: 100px 0 96px;
  background: var(--bg);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.closing-overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
}

/* ── Footer ── */
.footer {
  background: #1a1714;
  color: rgba(255,255,255,0.4);
  padding: 40px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.footer-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid,
  .features-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-img { height: 320px; }
  .features-img { height: 320px; }

  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-meta {
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .hero { padding: 48px 20px 56px; }
  .agents-inner, .features-inner, .proof-inner, .closing-inner, .footer-inner { padding: 0 20px; }

  .agents-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 16px;
  }

  .nav-inner { padding: 16px 20px; }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}