/* Fonts */
:root {
  --bg: #f5f0e8;
  --bg-alt: #ede8dc;
  --fg: #1a2e1a;
  --fg-muted: #3d5c3d;
  --accent: #d4a847;
  --accent-dark: #b8892e;
  --white: #ffffff;
  --border: #d0c9b8;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 60px 80px;
  position: relative;
  background: var(--fg);
  color: var(--bg);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(212,168,71,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(61,92,61,0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Source Serif 4', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 600;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 820px;
  color: var(--bg);
}

.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(245,240,232,0.75);
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 400;
}

.hero-tagline-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-tag {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.hero-dot {
  color: rgba(245,240,232,0.3);
  font-size: 18px;
}

/* Features */
.features {
  padding: 100px 60px;
  background: var(--bg);
}

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

.section-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.features-heading {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 20px;
}

.features-body {
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.7;
}

.features-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 28px 28px 28px;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 4px 0 0 4px;
}

.feature-icon {
  margin-bottom: 14px;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.feature-desc {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Scouting */
.scouting {
  padding: 100px 60px;
  background: var(--fg);
  color: var(--bg);
}

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

.scouting-heading {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bg);
  margin-bottom: 20px;
}

.scouting-body {
  color: rgba(245,240,232,0.7);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.scouting-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid rgba(245,240,232,0.12);
  padding-bottom: 16px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  min-width: 80px;
}

.stat-label {
  font-size: 15px;
  color: rgba(245,240,232,0.6);
}

.scouting-frame {
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: 6px;
  padding: 24px;
}

.frame-inner {
  aspect-ratio: 1;
  background: rgba(212,168,71,0.08);
  border: 1px solid rgba(212,168,71,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.frame-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100%;
  height: 100%;
}

.grid-cell {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  position: relative;
}

.cell-1 { background: rgba(212,168,71,0.3); }
.cell-2 { background: rgba(212,168,71,0.15); }
.cell-3 { background: rgba(212,168,71,0.15); }
.cell-4 { background: rgba(212,168,71,0.25); }

.grid-label {
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--bg);
}

.grid-sub {
  font-size: 11px;
  color: rgba(245,240,232,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.frame-caption {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(245,240,232,0.35);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Why Now */
.why-now {
  padding: 100px 60px;
  background: var(--bg-alt);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 900;
}

.pullquote {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

.quote-source {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: normal;
  letter-spacing: 0.05em;
}

.why-heading {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 24px;
}

.why-body {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Closing */
.closing {
  padding: 100px 60px;
  background: var(--fg);
}

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

.closing-rule {
  width: 80px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 48px;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bg);
  margin-bottom: 20px;
  font-style: italic;
}

.closing-body {
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* Footer */
.footer {
  padding: 40px 60px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  display: block;
}

.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
  display: block;
  margin-top: 2px;
}

.footer-note {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 768px) {
  .hero, .features, .scouting, .why-now, .closing {
    padding: 60px 28px;
  }
  .features-inner,
  .scouting-inner,
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer {
    padding: 32px 28px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .scouting-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .stat {
    flex-direction: column;
    border-bottom: none;
    padding-bottom: 0;
  }
  .stat-num { font-size: 28px; }
  .frame-inner { aspect-ratio: 4/3; }
}