/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAF7F0;
  --charcoal: #1A1A1A;
  --warm-gray: #6B6560;
  --terracotta: #D4622A;
  --olive: #2D5016;
  --light-olive: #F0F4EC;
  --border: #E5E0D8;
  --white: #FFFFFF;
}

html { font-size: 16px; }

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

/* === TYPOGRAPHY === */
h1, h2, h3, .hero-headline, .section-title, .closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 3rem;
}

/* === NAV === */
.nav {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
}

.nav-tag {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-weight: 400;
}

/* === HERO === */
.hero {
  padding: 5rem 2.5rem 4rem;
  overflow: hidden;
}

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

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-headline {
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

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

.hero-sub {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  max-width: fit-content;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
}

.hero-meta-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

.hero-meta-period {
  font-size: 0.75rem;
  color: var(--warm-gray);
}

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

/* Hero accent block */
.hero-accent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-right: 2rem;
}

.hero-accent-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta) 0%, #B84E1A 100%);
  opacity: 0.15;
}

.hero-accent-lines {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.accent-line {
  height: 4px;
  background: var(--terracotta);
  border-radius: 2px;
}

.accent-line-1 { width: 80px; opacity: 0.7; }
.accent-line-2 { width: 56px; opacity: 0.4; }
.accent-line-3 { width: 36px; opacity: 0.2; }

/* === PROOF === */
.proof {
  padding: 3rem 2.5rem;
  background: var(--charcoal);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.proof-stat {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.proof-label {
  font-size: 0.8rem;
  color: rgba(250,247,240,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.proof-sep {
  width: 1px;
  height: 48px;
  background: rgba(250,247,240,0.2);
}

/* === HOW === */
.how {
  padding: 5rem 2.5rem;
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.how-step:first-child { border-top: 1px solid var(--border); }

.how-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  min-width: 60px;
  opacity: 0.7;
}

.how-step-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.how-step-body p {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.6;
  max-width: 560px;
}

/* === PRICING === */
.pricing {
  padding: 5rem 2.5rem;
  background: var(--light-olive);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 2px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.pricing-card-featured .pricing-tagline { color: rgba(250,247,240,0.7); }
.pricing-card-featured .pricing-features li { color: rgba(250,247,240,0.8); }
.pricing-card-featured .pricing-features li::before { background: var(--terracotta); }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 1px;
}

.pricing-tier {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
  display: block;
}

.pricing-card-featured .pricing-tier { color: var(--cream); opacity: 0.7; }

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
}

.pricing-dollar {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
}

.pricing-card-featured .pricing-dollar { color: var(--cream); }

.pricing-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.pricing-card-featured .pricing-num { color: var(--cream); }

.pricing-per {
  font-size: 1rem;
  color: var(--warm-gray);
}

.pricing-card-featured .pricing-per { color: rgba(250,247,240,0.6); }

.pricing-tagline {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
  font-style: italic;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: auto;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--warm-gray);
  padding-left: 1.5rem;
  position: relative;
}

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

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-top: 2rem;
}

/* === CLOSING === */
.closing {
  padding: 6rem 2.5rem;
  background: var(--cream);
}

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

.closing-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 1rem;
  font-style: italic;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 3rem;
}

.closing-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.closing-rule {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--border);
}

.closing-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* === FOOTER === */
.footer {
  padding: 3rem 2.5rem 2rem;
  background: var(--charcoal);
  color: var(--cream);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(250,247,240,0.1);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(250,247,240,0.5);
  max-width: 300px;
  line-height: 1.5;
}

.footer-links {
  font-size: 0.8rem;
  color: rgba(250,247,240,0.4);
  text-align: right;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(250,247,240,0.3);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-accent { display: none; }
  .proof-inner { flex-direction: column; gap: 2rem; }
  .proof-sep { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-inner { flex-direction: column; }
  .footer-links { text-align: left; }
}

@media (max-width: 600px) {
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .proof { padding: 2.5rem 1.5rem; }
  .how { padding: 3.5rem 1.5rem; }
  .pricing { padding: 3.5rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .footer { padding: 2.5rem 1.5rem 1.5rem; }
  .hero-meta { flex-direction: column; gap: 1rem; }
  .hero-meta-divider { display: none; }
}