:root {
  --bg: #faf6f0;
  --fg: #1a1a18;
  --green: #1a4a3a;
  --amber: #d4821a;
  --cream: #faf6f0;
  --muted: #8a8680;
  --border: #e0dbd4;
  --card: #ffffff;
  --hero-height: 92vh;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.15;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-name { font-family: 'Fraunces', serif; font-weight: 900; font-size: 1.25rem; color: var(--green); letter-spacing: -0.02em; }
.nav-tagline { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 60px 60px;
  min-height: var(--hero-height);
  border-bottom: 1px solid var(--border);
}
.hero-inner { position: relative; }
.hero-accent-line {
  position: absolute;
  left: -30px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--green), var(--amber));
  border-radius: 2px;
}
.hero-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--green);
  margin-bottom: 28px;
  padding-left: 16px;
}
.hero-headline em { color: var(--amber); font-style: italic; }
.hero-sub {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 16px;
  max-width: 480px;
}

/* CALL WIDGET */
.call-widget {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26,74,58,0.10);
}
.call-widget-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--green);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.call-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.call-exchange { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.call-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 88%;
}
.call-bubble--in {
  background: #f0ede8;
  color: var(--fg);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.call-bubble--out {
  background: var(--green);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.call-bubble--ai { background: #1d6b52; }
.call-bubble-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 4px;
}
.ai-label { color: #93f0d4; }
.call-widget-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: #faf8f5;
}
.booked-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: #e8f5f0;
  padding: 4px 10px;
  border-radius: 20px;
}

/* PROOF */
.proof {
  padding: 60px;
  border-bottom: 1px solid var(--border);
  background: var(--green);
  color: white;
}
.proof-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #93f0d4;
  margin-bottom: 32px;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.proof-stat { padding: 0 40px; }
.proof-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.proof-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* FEATURES */
.features {
  padding: 80px 60px;
  border-bottom: 1px solid var(--border);
}
.features-header { margin-bottom: 48px; }
.features-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--green);
  max-width: 500px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover {
  box-shadow: 0 12px 40px rgba(26,74,58,0.08);
  transform: translateY(-2px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: #f0ede8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-name { font-family: 'Fraunces', serif; font-size: 1.25rem; color: var(--green); margin-bottom: 10px; }
.feature-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* PROCESS */
.process {
  padding: 80px 60px;
  background: #f4f0eb;
  border-bottom: 1px solid var(--border);
}
.process-header { margin-bottom: 56px; }
.process-title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: var(--green);
  max-width: 520px;
}
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.process-step { flex: 1; }
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}
.step-name { font-family: 'Fraunces', serif; font-size: 1.25rem; color: var(--green); margin-bottom: 10px; }
.step-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.6; max-width: 280px; }
.process-arrow { padding: 0 20px; flex-shrink: 0; }

/* MANIFESTO */
.manifesto {
  padding: 80px 60px;
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 760px; }
.manifesto-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}
.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--green);
  line-height: 1.4;
  margin-bottom: 24px;
  padding-left: 24px;
  border-left: 3px solid var(--amber);
}
.manifesto-body { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 40px; }
.manifesto-services { display: flex; flex-wrap: wrap; gap: 10px; }
.service-tag {
  padding: 6px 16px;
  background: var(--green);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

/* CLOSING */
.closing {
  padding: 100px 60px;
  text-align: center;
  background: var(--green);
}
.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}
.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-name { font-family: 'Fraunces', serif; font-weight: 900; font-size: 1rem; color: var(--green); }
.footer-tagline { font-size: 0.8rem; color: var(--muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { grid-template-columns: 1fr; padding: 48px 24px 40px; min-height: auto; gap: 40px; }
  .hero-accent-line { display: none; }
  .hero-headline { font-size: 2rem; }
  .hero-sub { max-width: 100%; }
  .proof { padding: 48px 24px; }
  .proof-grid { grid-template-columns: 1fr; gap: 28px; }
  .proof-divider { display: none; }
  .proof-stat { padding: 0; }
  .features { padding: 48px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .process { padding: 48px 24px; }
  .process-steps { flex-direction: column; gap: 32px; }
  .process-arrow { transform: rotate(90deg); }
  .step-desc { max-width: 100%; }
  .manifesto { padding: 48px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 20px 24px; flex-direction: column; gap: 8px; }
}
