:root {
  --bg: #FFF8F0;
  --bg-alt: #F5EDE2;
  --fg: #1A1A1A;
  --fg-muted: #5C5C5C;
  --accent: #1B4332;
  --accent-light: #2D6A4F;
  --amber: #F4A261;
  --amber-dark: #E07B3A;
  --white: #FFFFFF;
  --border: #E5DDD3;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.site-nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  text-decoration: none;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  border-left: 1px solid var(--border);
  padding-left: 12px;
}

/* HERO */
.hero {
  padding: 80px 48px 0;
  background: var(--accent);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,162,97,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 64px;
}
.hero-text { display: flex; flex-direction: column; gap: 20px; }
.hero-overline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  line-height: 1.65;
}
.hero-proof-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

.hero-image-wrap { position: relative; }
.hero-img {
  width: 100%;
  border-radius: 8px;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-bottom-bar {
  background: var(--amber);
  color: var(--accent);
  padding: 14px 48px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

/* PROOF */
.proof { padding: 80px 48px; background: var(--bg); }
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-header { margin-bottom: 48px; }
.section-overline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber-dark);
  font-weight: 600;
  margin-bottom: 12px;
}
.proof-headline h2, .services-header h2, .pricing-header h2, .playbook-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.15;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.proof-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proof-icon { color: var(--amber); }
.proof-card blockquote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg);
  font-style: italic;
}
.proof-card cite {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: normal;
}

/* SERVICES */
.services { padding: 80px 48px; background: var(--bg-alt); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header { margin-bottom: 48px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.service-card { display: flex; flex-direction: column; gap: 14px; }
.service-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.service-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}
.service-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* PRICING */
.pricing { padding: 80px 48px; background: var(--bg); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-header { margin-bottom: 48px; }
.pricing-sub { font-size: 15px; color: var(--fg-muted); margin-top: 12px; max-width: 540px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-card--featured {
  border: 2px solid var(--amber);
  background: #FFFCF8;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 4px;
}
.pricing-price span { font-size: 18px; font-weight: 400; color: var(--fg-muted); }
.pricing-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 20px; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 18px;
  position: relative;
}
.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
}
.pricing-target {
  font-size: 12px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  font-style: italic;
}
.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 32px;
}

/* PLAYBOOK */
.playbook { padding: 80px 48px; background: var(--accent); color: var(--white); }
.playbook-inner { max-width: 1200px; margin: 0 auto; }
.playbook-header { margin-bottom: 56px; }
.playbook-header .section-overline { color: var(--amber); }
.playbook-header h2 { color: var(--white); }
.playbook-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.playbook-step { display: flex; flex-direction: column; gap: 16px; }
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  opacity: 0.8;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-content p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.65; }
.playbook-quote {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 40px;
}
.playbook-quote blockquote {
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 12px;
}
.playbook-quote cite { font-size: 13px; color: rgba(255,255,255,0.5); }

/* CLOSING */
.closing { padding: 100px 48px; background: var(--bg); }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 24px;
}
.closing p { font-size: 16px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 16px; }
.closing-sub { font-size: 15px; }
.closing-tagline {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--amber-dark);
  margin-top: 32px;
  font-weight: 700;
}

/* FOOTER */
.site-footer { padding: 40px 48px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.footer-brand p { font-size: 13px; color: var(--fg-muted); }
.footer-note p { font-size: 13px; color: var(--fg-muted); }

/* MOBILE */
@media (max-width: 768px) {
  .site-nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 0; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; }
  .hero-headline { font-size: 32px; }
  .hero-bottom-bar { padding: 12px 24px; }
  .hero-proof-row { gap: 16px; }
  .proof { padding: 60px 24px; }
  .proof-grid { grid-template-columns: 1fr; }
  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing { padding: 60px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .playbook { padding: 60px 24px; }
  .playbook-steps { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 60px 24px; }
  .site-footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .nav-tagline { display: none; }
}