/* ── Tokens ── */
:root {
  --cream: #faf7f0;
  --cream-dark: #f0ebe0;
  --forest: #1a3a2f;
  --forest-light: #243d35;
  --forest-mid: #2d5045;
  --gold: #c9963a;
  --gold-light: #d4a847;
  --ink: #1c1c1a;
  --ink-light: #4a4a47;
  --white: #ffffff;
  --green-live: #22c55e;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Instrument Sans', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3 { font-family: var(--serif); line-height: 1.15; }

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--forest);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* ── Nav ── */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(26,58,47,0.12);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--forest);
  font-style: italic;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--ink-light);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  padding: 5rem 2rem 4rem;
  background: var(--forest);
  color: var(--cream);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(250,247,240,0.8);
  max-width: 480px;
}

/* ── Call Widget ── */
.call-widget {
  background: var(--cream);
  border-radius: 16px;
  padding: 1.5rem;
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.call-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dark);
}
.call-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-live);
  box-shadow: 0 0 6px var(--green-live);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.call-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.call-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.call-entry {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.call-time {
  font-size: 0.7rem;
  color: var(--ink-light);
  margin-top: 0.35rem;
  min-width: 50px;
}
.call-bubble {
  background: var(--cream-dark);
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
  max-width: 100%;
}
.call-bubble.ai {
  background: var(--forest);
  color: var(--cream);
}
.call-bubble.booked {
  background: #d4f8e4;
  border: 1px solid #86efac;
}
.call-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
  color: var(--ink-light);
}
.call-bubble.ai .call-label { color: rgba(250,247,240,0.6); }
.call-bubble.booked .call-label { color: #15803d; }
.call-message {
  font-size: 0.8rem;
  line-height: 1.45;
}
.call-job {
  font-size: 0.75rem;
  color: var(--ink-light);
}
.call-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--cream-dark);
  padding-top: 1rem;
}
.stat {
  flex: 1;
  text-align: center;
}
.stat + .stat {
  border-left: 1px solid var(--cream-dark);
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--forest);
  font-style: italic;
}
.stat-label {
  display: block;
  font-size: 0.65rem;
  color: var(--ink-light);
  margin-top: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Proof ── */
.proof {
  padding: 5rem 2rem;
  background: var(--cream-dark);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.proof-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 2.5rem;
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.proof-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.proof-desc {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.5;
}
.proof-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  max-width: 600px;
}
.proof-quote blockquote {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.proof-quote cite {
  font-size: 0.8rem;
  color: var(--ink-light);
  font-style: normal;
}

/* ── How ── */
.how {
  padding: 6rem 2rem;
  background: var(--cream);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}
.step-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--forest);
  opacity: 0.35;
  line-height: 1;
  padding-top: 0.15rem;
}
.step h3 {
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.step p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
}
.how-businesses {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}
.business-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 0.5rem;
}
.business-tag {
  background: var(--forest);
  color: var(--cream);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ── Outcomes ── */
.outcomes {
  padding: 6rem 2rem;
  background: var(--forest);
  color: var(--cream);
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.outcomes-col.left .section-title {
  color: var(--cream);
}
.outcomes-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(250,247,240,0.7);
  margin-bottom: 1.25rem;
}
.outcome {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.outcome-icon {
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest);
  margin-top: 0.1rem;
}
.outcome-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--cream);
}
.outcome-desc {
  font-size: 0.85rem;
  color: rgba(250,247,240,0.65);
  line-height: 1.6;
}

/* ── Closing ── */
.closing {
  padding: 6rem 2rem 5rem;
  background: var(--cream);
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--forest);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.75rem;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.closing-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.pricing-divider {
  width: 1px;
  height: 60px;
  background: var(--cream-dark);
}
.pricing-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-light);
  margin-bottom: 0.35rem;
}
.pricing-amount {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--forest);
  margin-bottom: 0.25rem;
}
.pricing-note {
  font-size: 0.8rem;
  color: var(--ink-light);
}
.cta-note {
  font-size: 0.9rem;
  color: var(--ink-light);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Footer ── */
.footer {
  background: var(--forest);
  padding: 2.5rem 2rem;
  color: rgba(250,247,240,0.5);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand {
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.footer-desc {
  font-size: 0.85rem;
  color: rgba(250,247,240,0.5);
}
.footer-bottom {
  border-top: 1px solid rgba(250,247,240,0.1);
  padding-top: 1.5rem;
  font-size: 0.75rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .proof-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 3rem; }
  .step { grid-template-columns: 50px 1fr; }
  .closing-pricing { flex-direction: column; gap: 1.5rem; }
  .pricing-divider { display: none; }
  .hero { padding: 3rem 1.5rem 3rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.25rem; }
  .call-widget { padding: 1rem; }
}