/* ── Variables ── */
:root {
  --c-t: #A3573B;      /* terracotta */
  --c-c: #FBF5EE;      /* warm cream */
  --c-s: #7D9B8A;      /* muted sage */
  --c-f: #1C2B27;      /* deep forest */
  --c-lc: #F5EEE9;     /* light cream bg */
  --c-m: #E8D5C4;      /* mid warm */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--c-c);
  color: var(--c-f);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--c-lc);
  display: flex;
  align-items: center;
  padding: 80px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(163,87,59,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(125,155,138,.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-kicker {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-t);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--c-f);
  margin-bottom: 28px;
  letter-spacing: -.01em;
}
.hero-lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5c58;
  max-width: 440px;
}

/* ── Phone illustration ── */
.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-device {
  width: 240px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(28,43,39,.18), 0 8px 24px rgba(28,43,39,.12);
  position: relative;
}
.phone-notch {
  width: 80px; height: 22px;
  background: #1a1a1a;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 1;
}
.phone-screen {
  background: var(--c-c);
  border-radius: 24px;
  padding: 16px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.screen-header {
  display: flex;
  justify-content: space-between;
  padding: 0 4px 8px;
  font-size: .7rem;
  color: #aaa;
}
.call-active {
  background: #f0ece7;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.call-avatar { flex-shrink: 0; }
.call-info { flex: 1; }
.call-name { display: block; font-size: .7rem; font-weight: 500; color: var(--c-f); }
.call-status { display: block; font-size: .65rem; color: var(--c-s); margin-top: 2px; }
.call-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-t);
  animation: pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}
.chat-bubble {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: .72rem;
  line-height: 1.5;
}
.chat-bubble.received { background: #f0ece7; color: var(--c-f); align-self: flex-start; }
.chat-bubble.sent { background: var(--c-t); color: #fff; align-self: flex-end; }
.bubble-time { display: block; font-size: .6rem; margin-top: 4px; color: #aaa; }
.sent-time { color: rgba(255,255,255,.7); }
.booking-confirmed {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #e8ede9;
  border-radius: 20px;
  padding: 8px 12px;
  font-size: .68rem;
  color: var(--c-s);
  font-weight: 500;
  align-self: flex-start;
  margin-top: 4px;
}
.phone-button {
  width: 40px; height: 4px;
  background: #333;
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ── CHANNELS ── */
.channels {
  padding: 120px 48px;
  background: var(--c-c);
}
.channels-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-t);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-f);
  margin-bottom: 24px;
}
.section-body {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5c58;
  max-width: 540px;
  margin-bottom: 64px;
}
.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.channel-card {
  background: var(--c-lc);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(163,87,59,.1);
  transition: transform .25s ease, box-shadow .25s ease;
}
.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(163,87,59,.1);
}
.channel-icon {
  width: 52px; height: 52px;
  background: var(--c-c);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(163,87,59,.15);
}
.channel-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--c-f);
  margin-bottom: 10px;
}
.channel-card p {
  font-size: .88rem;
  line-height: 1.65;
  color: #5a6b66;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 120px 48px;
  background: var(--c-lc);
}
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  margin-top: 64px;
  align-items: start;
}
.step { padding-right: 48px; }
.step-divider {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--c-m), transparent);
  align-self: center;
}
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--c-t);
  opacity: .4;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--c-f);
  margin-bottom: 10px;
}
.step p { font-size: .88rem; line-height: 1.65; color: #5a6b66; }

/* ── OUTCOMES ── */
.outcomes {
  padding: 120px 48px;
  background: var(--c-f);
  color: var(--c-c);
}
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes .section-label { color: var(--c-s); }
.outcomes .section-title { color: var(--c-c); }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
.outcome-stat {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  color: var(--c-t);
  margin-bottom: 12px;
}
.outcome-label {
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(251,245,238,.65);
}
.outcomes-detail {
  border-top: 1px solid rgba(251,245,238,.12);
  padding-top: 40px;
}
.outcomes-detail p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(251,245,238,.5);
}
.outcomes-detail strong { color: var(--c-c); }

/* ── CLOSING ── */
.closing {
  padding: 160px 48px;
  background: var(--c-c);
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-f);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--c-t);
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 48px;
  background: var(--c-f);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--c-c);
}
.footer-copy {
  font-size: .78rem;
  color: rgba(251,245,238,.35);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { padding: 64px 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-illustration { order: -1; }
  .phone-device { width: 200px; }
  .phone-screen { min-height: 320px; }
  .channel-grid { grid-template-columns: 1fr; gap: 16px; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .step-divider { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 40px; }
  .channels, .how, .outcomes, .closing { padding: 80px 32px; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 24px; }
  .hero-headline { font-size: 2.8rem; }
  .channels, .how, .outcomes, .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
}
