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

:root {
  --bg: #F5F0E8;
  --bg-warm: #EDE8DF;
  --fg: #1C1917;
  --fg-muted: #57534E;
  --accent: #B45309;
  --accent-light: #92400E;
  --surface: #FFFFFF;
  --border: #D6D0C8;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --section-pad: clamp(4rem, 8vw, 7rem);
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* === NAV === */
.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: var(--max-w);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* === HERO === */
.hero {
  padding: clamp(5rem, 12vw, 8rem) 2rem clamp(4rem, 8vw, 6rem);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}
.hero-accent-bar {
  width: 4px;
  height: 100%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.hero-content {
  padding-left: 1.5rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.75rem;
}
.hero-lede {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}
.hero-stat-block {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* === PROBLEM === */
.problem {
  padding: var(--section-pad) 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.problem-inner { max-width: var(--max-w); margin: 0 auto; }
.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  max-width: 600px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.problem-card { padding: 0; }
.problem-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.problem-card p { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.65; }

/* === SERVICES === */
.services {
  padding: var(--section-pad) 2rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.services-inner { max-width: var(--max-w); margin: 0 auto; }
.services-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: box-shadow 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.service-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.service-card > p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; margin-bottom: 1.25rem; }
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* === OUTCOMES === */
.outcomes {
  padding: var(--section-pad) 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.outcomes-inner { max-width: var(--max-w); margin: 0 auto; }
.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.outcomes-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}
.outcomes-column { }
.outcomes-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.outcomes-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.outcomes-list li { font-size: 0.95rem; line-height: 1.5; padding-left: 1.5rem; position: relative; }
.outcomes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.outcomes-before .outcomes-list li::before { background: #A8A29E; }
.outcomes-after .outcomes-list li::before { background: var(--accent); }
.outcomes-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  min-height: 200px;
}

/* === PRICING === */
.pricing {
  padding: var(--section-pad) 2rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.pricing-inner { max-width: var(--max-w); margin: 0 auto; }
.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}
.pricing-card-featured {
  border-color: var(--accent);
  border-width: 2px;
  position: relative;
}
.pricing-tier {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.pricing-dollar { font-size: 1.5rem; font-weight: 600; color: var(--fg-muted); }
.pricing-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--fg);
}
.pricing-period { font-size: 0.9rem; color: var(--fg-muted); margin-left: 0.25rem; }
.pricing-tagline { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 1.5rem; line-height: 1.5; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.pricing-features li { font-size: 0.875rem; color: var(--fg); padding-left: 1.25rem; position: relative; }
.pricing-features li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.pricing-recurring { font-size: 0.8rem; color: var(--fg-muted); padding-top: 1rem; border-top: 1px solid var(--border); }
.pricing-note { font-size: 0.875rem; color: var(--fg-muted); max-width: 600px; line-height: 1.6; }

/* === CLOSING === */
.closing {
  padding: clamp(5rem, 10vw, 8rem) 2rem;
  background: var(--fg);
  color: #F5F0E8;
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #F5F0E8;
}
.closing-body {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #A8A29E;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 2rem;
}
.closing-cta-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent);
  font-style: italic;
}

/* === FOOTER === */
.footer {
  padding: 4rem 2rem 2rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-desc { font-size: 0.875rem; color: var(--fg-muted); max-width: 280px; line-height: 1.6; }
.footer-links { display: flex; gap: 3rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col-head { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 0.25rem; }
.footer-col span:not(.footer-col-head) { font-size: 0.875rem; color: var(--fg); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { flex-direction: row; flex-wrap: wrap; gap: 1.5rem; }
  .hero-stat-block { min-width: 140px; }
  .outcomes-comparison { grid-template-columns: 1fr; }
  .outcomes-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
}
@media (max-width: 600px) {
  .nav-tagline { display: none; }
  .hero-visual { flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; }
}