:root {
  --bg: #faf8f2;
  --fg: #1a1812;
  --accent: #c97d2a;
  --accent-light: #f5c842;
  --muted: #6b6460;
  --border: #e5dfd4;
  --card: #ffffff;
  --signal-green: #5c8a50;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  padding: 80px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

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

.hero-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.stat-number {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--fg);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

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

/* City Grid SVG */
.city-grid {
  position: relative;
}

.city-svg {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 40px rgba(26, 24, 18, 0.15);
}

.city-grid-label {
  text-align: center;
  margin-top: 12px;
}

.city-label-text {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
}

/* DIVIDER */
.section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.divider-rule {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-text {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 600;
}

/* MANIFESTO */
.manifesto {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto-inner { max-width: 680px; }

.manifesto-headline {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

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

.manifesto-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.6;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-top: 32px;
}

/* REPORTS */
.reports {
  padding: 80px 40px;
  background: var(--fg);
  color: var(--bg);
}

.reports-header, .audience-header, .pricing-header {
  max-width: 1200px;
  margin: 0 auto 48px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
}

.reports .section-sub { color: #a09a90; }

.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.report-card {
  background: #252118;
  border: 1px solid #3a3528;
  border-radius: 10px;
  padding: 28px;
  transition: border-color 0.2s;
}

.report-card:hover { border-color: var(--accent); }

.report-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.report-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--bg);
}

.report-desc {
  font-size: 0.88rem;
  color: #a09a90;
  line-height: 1.6;
}

/* AUDIENCE */
.audience { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--fg);
  transition: border-color 0.2s, transform 0.2s;
}

.audience-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.audience-icon { color: var(--accent); flex-shrink: 0; }

/* PRICING */
.pricing { padding: 80px 40px; background: var(--card); border-top: 1px solid var(--border); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  background: var(--bg);
}

.pricing-card--featured {
  border-color: var(--accent);
  background: var(--fg);
  color: var(--bg);
  transform: scale(1.04);
}

.pricing-card--featured .pricing-tier,
.pricing-card--featured .pricing-price { color: var(--bg); }

.pricing-card--featured .pricing-period { color: #a09a90; }

.pricing-card--featured .pricing-desc { color: #a09a90; }

.pricing-card--featured .pricing-features li { color: #e5dfd4; }

.pricing-tier {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--fg);
  margin-bottom: 8px;
}

.pricing-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 20px;
}

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

.pricing-features li {
  font-size: 0.88rem;
  color: var(--fg);
  padding-left: 18px;
  position: relative;
}

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

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note strong { color: var(--fg); }

/* CLOSING */
.closing {
  padding: 100px 40px;
  background: var(--bg);
}

.closing-inner { max-width: 640px; }

.closing-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.closing-signal {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.signal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

.signal-dot:nth-child(2) { animation-delay: 0.3s; opacity: 0.7; }
.signal-dot:nth-child(3) { animation-delay: 0.6s; opacity: 0.4; }

.closing-cta { margin-top: 40px; }
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.cta-btn:hover { background: #b06e20; transform: translateY(-1px); }

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}

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

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
}

.footer-tagline { font-size: 0.82rem; color: var(--muted); }

.footer-meta { font-size: 0.82rem; color: var(--muted); }

/* MOBILE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .reports-grid, .audience-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 24px; }
  .manifesto, .reports, .audience, .pricing, .closing { padding: 60px 24px; }
  .section-divider { padding: 0 24px; }
  .pricing-card--featured { transform: none; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}