/* ─── Tokens ─────────────────────────────────────────── */
:root {
  --bg:        #faf8f5;
  --ink:       #1e1b18;
  --muted:     #6b6560;
  --surface:   #ffffff;
  --line:      #e8e2da;
  --brand:     #e07a5f;
  --brand-dk:  #c4614a;
  --accent:    #3d6f6d;
  --accent-lt: #e8f2f1;
}

/* ─── Reset & Base ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── Background blobs ────────────────────────────────── */
.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.28;
  z-index: -1;
  pointer-events: none;
}
.bg-warm {
  width: 420px; height: 420px;
  background: #f4b08a;
  top: -100px; right: -80px;
}
.bg-cool {
  width: 340px; height: 340px;
  background: #a8d8d4;
  bottom: 10%; left: -100px;
}

/* ─── Layout helpers ──────────────────────────────────── */
.wrap {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

/* ─── Navbar ───────────────────────────────────────────── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.nav-cta {
  text-decoration: none;
  background: var(--brand);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--brand-dk); }

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  padding: 2rem 0 1.5rem;
}
.location {
  margin: 0 0 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--ink);
}
h1 em {
  font-style: italic;
  color: var(--brand);
}
.lead {
  margin: 1.5rem 0 0;
  max-width: 62ch;
  font-size: 1.15rem;
  color: var(--muted);
}
.lead strong { color: var(--ink); }

/* ─── Problem section ─────────────────────────────────── */
.problem { padding-bottom: 1.5rem; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.problem-icon { margin-bottom: 0.9rem; }
.problem-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}
.problem-card p { margin: 0; color: var(--muted); font-size: 0.97rem; }
.problem-card em { font-style: italic; color: var(--ink); }

/* ─── AI / This Week section ──────────────────────────── */
.aiotw { padding: 1.5rem 0 2rem; }
.ai-box {
  background: var(--accent-lt);
  border: 1px solid #c2d8d6;
  border-radius: 22px;
  padding: 2.5rem 2.8rem;
}
.ai-label {
  margin: 0 0 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.ai-box h2 {
  margin: 0 0 1.2rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
.ai-box h2 em {
  font-style: italic;
  color: var(--brand);
}
.ai-body {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
}
.ai-body:last-child { margin-bottom: 0; }
.ai-body strong { color: var(--ink); }

/* ─── Features ─────────────────────────────────────────── */
.features { padding-bottom: 1.5rem; }
.section-title {
  margin: 0 0 1.6rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.3rem 1.4rem;
}
.feature h3 {
  margin: 0 0 0.4rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
}
.feature p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ─── Who this is for ─────────────────────────────────── */
.who { padding-bottom: 1.5rem; }
.who-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1.05rem;
  color: var(--ink);
}
.who-list svg { flex-shrink: 0; margin-top: 3px; }

/* ─── CTA ─────────────────────────────────────────────── */
.cta { padding-bottom: 4rem; }
.cta-box {
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  padding: 2.8rem 3rem;
  text-align: center;
}
.cta-box h2 {
  margin: 0 0 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
}
.cta-box p {
  margin: 0 auto 1.8rem;
  color: rgba(255,255,255,0.72);
  max-width: 54ch;
  font-size: 1.05rem;
}
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.btn-primary {
  display: inline-block;
  text-decoration: none;
  background: var(--brand);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--brand-dk); }
.cta-note { margin: 0; color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* ─── Footer ───────────────────────────────────────────── */
.footer {
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
}
.footer p { margin: 0; }
.footer .love { margin-top: 0.3rem; font-size: 0.85rem; color: var(--muted); }
.footer a { color: var(--muted); }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 640px) {
  .ai-box { padding: 1.6rem 1.4rem; }
  .cta-box { padding: 2rem 1.4rem; }
  .problem-grid { grid-template-columns: 1fr; }
}
