:root {
  --bg: #f7efe7;
  --bg-deep: #efe4d8;
  --paper: #fdf8f4;
  --ink: #1c1412;
  --muted: #6b5b56;
  --line: #e4d6cc;
  --coral: #e2674a;
  --coral-deep: #c44e34;
  --gold: #c4923c;
  --good: #2f7d57;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(28, 20, 18, 0.1);
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, .btn { font-family: inherit; }

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { border-bottom-color: var(--line); }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.brand img { width: 32px; height: 32px; }

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta { display: flex; gap: 10px; align-items: center; }
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 22px;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-deep); }
.btn-ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--paper); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0 80px;
}
.kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 560; letter-spacing: -0.03em; }
h1 {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.96;
  margin: 0 0 22px;
}
.lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 34em;
  margin: 0 0 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.fine { font-size: 13px; color: var(--muted); }

.hero-visual { position: relative; min-height: 560px; }
.hero-photo {
  width: 86%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  margin-left: auto;
}
.phone {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 250px;
  background: #1c1412;
  border-radius: 36px;
  padding: 10px;
  box-shadow: var(--shadow);
  color: var(--paper);
}
.phone-notch {
  width: 92px;
  height: 18px;
  background: #1c1412;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: var(--paper);
  color: var(--ink);
  border-radius: 26px;
  padding: 22px 18px 18px;
  min-height: 420px;
}
.phone-screen .day { font-family: var(--serif); font-size: 24px; line-height: 1.15; margin: 0 0 6px; }
.phone-screen .muted { color: var(--muted); font-size: 13px; }
.streak {
  margin: 18px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  text-align: center;
}
.streak b { font-family: var(--serif); font-size: 34px; color: var(--coral); display: block; }
.rings { display: flex; justify-content: space-around; margin-top: 8px; }
.ring {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 5px solid #f8d8cf;
  border-top-color: var(--coral);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
}

.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 8px 0 72px;
  border-top: 1px solid var(--line);
}
.proof div { padding-top: 22px; }
.proof strong { display: block; font-family: var(--serif); font-size: 28px; }
.proof span { color: var(--muted); font-size: 14px; }

.section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(36px, 4vw, 56px); margin: 0 0 14px; line-height: 1.05; }
.section-head p { color: var(--muted); margin: 0; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}
.card h3 { margin: 0 0 10px; font-size: 26px; }
.card p { margin: 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img { border-radius: 24px; height: 460px; object-fit: cover; width: 100%; }
.steps { list-style: none; padding: 0; margin: 20px 0 0; }
.steps li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; margin-bottom: 22px; }
.num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 20px;
}

.band {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: end start;
  color: #fff;
  overflow: hidden;
}
.band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62);
}
.band .copy { position: relative; padding: 64px 8vw; max-width: 640px; }
.band h2 { font-size: clamp(36px, 5vw, 64px); margin: 0 0 12px; }

.scenarios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.scenario {
  background: var(--paper);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
}
.scenario small { color: var(--gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; }
.scenario h3 { margin: 8px 0 8px; font-size: 22px; }
.scenario p { margin: 0; color: var(--muted); font-size: 15px; }

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.price.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-10px);
}
.price.featured p, .price.featured li { color: #d8cdc6; }
.price h3 { margin: 0 0 8px; }
.price .amt { font-family: var(--serif); font-size: 40px; margin: 8px 0 16px; }
.price ul { padding-left: 18px; margin: 0 0 24px; flex: 1; }
.price li { margin-bottom: 8px; }
.badge {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  margin-bottom: 10px;
}

.faq { display: grid; gap: 12px; }
details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
}
summary { cursor: pointer; font-weight: 600; }
details p { color: var(--muted); margin: 10px 0 0; }

.legal {
  padding: 120px 0 80px;
  max-width: 760px;
}
.legal h1 { font-size: 56px; }
.legal h2 { font-size: 28px; margin-top: 36px; }
.legal p, .legal li { color: var(--muted); }

.footer {
  background: var(--ink);
  color: #f7efe8;
  padding: 56px 0 32px;
  margin-top: 40px;
}
.footer a { color: #f7efe8; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer h4 { font-family: var(--serif); font-size: 20px; margin: 0 0 12px; }
.footer p, .footer a { color: #c9b8b0; font-size: 14px; }
.footer nav { display: grid; gap: 8px; }
.footer-end {
  border-top: 1px solid #3a302d;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  color: #9c8b84;
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero, .split, .pillars, .scenarios, .pricing, .proof, .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line);
  }
  .menu-toggle { display: block; }
  .hero { padding-top: 28px; }
  .hero-visual { min-height: 0; }
  .hero-photo { width: 100%; height: 360px; }
  .phone { display: none; }
  .price.featured { transform: none; }
}
