:root {
  --bg: #fbf7f2;
  --surface: #ffffff;
  --ink: #2b2320;
  --muted: #8a7f77;
  --brand: #e2574c;
  --brand-dark: #c8443a;
  --accent: #f4b740;
  --line: #ece3da;
  --radius: 16px;
  --shadow: 0 12px 30px -12px rgba(80, 50, 40, 0.25);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.1;
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 0.6em; }
h3 { font-size: 1.15rem; }

a { color: inherit; text-decoration: none; }

.wrap { width: min(1080px, 92%); margin: 0 auto; }
.muted { color: var(--muted); }
.micro { font-size: 0.85rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 247, 242, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { font-weight: 600; font-size: 1.1rem; display: flex; align-items: center; gap: 6px; }
.brand-mark { color: var(--brand); }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 0.95rem; }
.nav-links a:not(.btn):hover { color: var(--brand); }
@media (max-width: 680px) {
  .nav-links a:not(.btn) { display: none; }
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.12s ease, background 0.12s ease;
}
.btn:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-sm { padding: 8px 16px; font-size: 0.9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: #fff; border-color: var(--brand); color: var(--brand); }

/* Hero */
.hero { padding: clamp(48px, 8vw, 96px) 0; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  margin: 0 0 12px;
}
.lead { font-size: 1.15rem; color: #5c534c; max-width: 34ch; }
.cta-row { display: flex; gap: 14px; margin: 28px 0 10px; flex-wrap: wrap; }

/* Profile card */
.profile-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  transform: rotate(-1deg);
}
.profile-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff; font-weight: 700; font-size: 1.2rem;
  display: grid; place-items: center;
}
.toggle {
  margin-left: auto; display: flex; font-size: 0.78rem;
  border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
}
.toggle span { padding: 5px 12px; color: var(--muted); }
.toggle .on { background: var(--brand); color: #fff; }
.pick-list { list-style: none; margin: 0; padding: 0; }
.pick-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 4px; border-top: 1px solid var(--line);
}
.pick-cat { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; }
.pick-item { font-weight: 600; }
.stars { color: var(--accent); letter-spacing: 1px; white-space: nowrap; }
.stars .dim { color: var(--line); }

/* Bands */
.band { padding: clamp(48px, 7vw, 80px) 0; }
.band.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-lead { max-width: 56ch; margin-top: -0.3em; }

/* Steps */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: none;
}
@media (max-width: 820px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }
.steps li { }
.step-num {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 700;
  margin-bottom: 12px;
}

/* Category chips */
.chip-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg); border: 1px solid var(--line);
  padding: 10px 16px; border-radius: 999px; font-weight: 500;
}
.band.alt .chip { background: var(--bg); }
.chip-emoji { font-size: 1.1rem; }
.chip-more { border-style: dashed; color: var(--brand); font-weight: 600; }

/* Features */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 28px;
}
@media (max-width: 820px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.feature-icon { font-size: 1.6rem; margin-bottom: 8px; }
.feature p { margin: 0; color: #5c534c; }

/* Closing */
.closing {
  text-align: center;
  padding: clamp(56px, 9vw, 110px) 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
}
.closing h2 { max-width: 20ch; margin: 0 auto 28px; }
.closing .btn { background: #fff; color: var(--brand-dark); }
.closing .btn:hover { background: var(--accent); color: #3a2a10; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
