:root {
  --bg: #FAF7F2;
  --surface: #F2EDE6;
  --accent: #C45D2A;
  --accent-light: #E8A878;
  --ink: #1C1917;
  --ink-mid: #57534E;
  --ink-light: #A8A29E;
  --white: #FFFFFF;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* HERO */
.hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--surface);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-mid);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-image-wrap {
  border-radius: 12px;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* PHONE FRAME */
.phone-frame {
  background: var(--ink);
  border-radius: 32px;
  padding: 24px;
  position: relative;
}
.phone-screen {
  background: #111;
  border-radius: 20px;
  padding: 20px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sms-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--white);
}
.sms-bubble.incoming {
  background: #2A2A2A;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.sms-bubble.outgoing {
  background: var(--accent);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.sms-time {
  font-size: 11px;
  color: var(--ink-light);
  align-self: flex-start;
  padding-left: 4px;
}
.outgoing ~ .sms-time { align-self: flex-end; padding-right: 4px; }

.call-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 14px;
  background: #1a1a1a;
  border-radius: 10px;
  font-size: 12px;
  color: var(--ink-light);
}
.call-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* PROOF STRIP */
.proof {
  background: var(--ink);
  padding: 48px 0;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-stat {
  flex: 1;
  padding: 0 40px;
}
.proof-stat:first-child { padding-left: 0; }
.proof-num {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.proof-label {
  font-size: 14px;
  color: #A8A29E;
  line-height: 1.5;
}
.proof-divider {
  width: 1px;
  height: 80px;
  background: #333;
}

/* FEATURES */
.features {
  padding: 80px 0;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 17px;
  color: var(--ink-mid);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s ease;
}
.feature-card:hover { transform: translateY(-2px); }
.feature-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  height: 160px;
}
.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.6;
}

/* HOW IT WORKS */
.how {
  background: var(--surface);
  padding: 80px 0;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.step-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 48px;
}
.step {
  flex: 1;
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 12px;
  opacity: 0.5;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.6;
}
.step-arrow {
  padding-top: 28px;
  flex-shrink: 0;
}

/* CLOSING */
.closing {
  padding: 80px 0;
  background: var(--ink);
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
}
.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--accent-light);
  margin-bottom: 28px;
  line-height: 1.3;
}
.closing-body {
  font-size: 17px;
  color: #A8A29E;
  line-height: 1.7;
}

/* FOOTER */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--surface);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--ink-mid);
  margin-bottom: 12px;
}
.footer-copy {
  font-size: 12px;
  color: var(--ink-light);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .phone-frame { max-width: 300px; margin: 0 auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; gap: 32px; }
  .proof-stat { padding: 0; }
  .proof-divider { display: none; }
  .step-row { flex-direction: column; }
  .step-arrow { display: none; }
}
@media (max-width: 600px) {
  .hero, .features, .how, .closing { padding: 48px 0; }
  .hero-inner, .features-inner, .how-inner, .closing-inner, .proof-inner { padding: 0 20px; }
  .proof-num { font-size: 36px; }
}