:root {
  --cream: #fbf6f0;
  --cream-2: #f4e9dd;
  --paper: #ffffff;
  --ink: #2e2430;
  --ink-soft: #6b5f6a;
  --rose: #c8536b;
  --rose-deep: #a83a54;
  --blush: #f7e4e4;
  --gold: #d9a441;
  --line: #ece1d6;
  --shadow: 0 12px 40px rgba(70, 40, 55, 0.10);
  --radius: 16px;
  --wrap: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.01em; }
a { color: var(--rose-deep); }
img { max-width: 100%; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Buttons */
.btn {
  display: inline-block; font-family: inherit; font-size: 1rem; font-weight: 600;
  padding: 0.8rem 1.5rem; border-radius: 999px; text-decoration: none;
  cursor: pointer; border: 2px solid transparent; transition: transform .12s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--rose); color: #fff; }
.btn-primary:hover { background: var(--rose-deep); }
.btn-outline { background: transparent; color: var(--rose-deep); border-color: var(--rose); }
.btn-outline:hover { background: var(--blush); }
.btn-ghost { background: transparent; color: var(--ink); padding: 0.5rem 1rem; }
.btn-link { background: transparent; color: var(--rose-deep); padding: 0.8rem 0.5rem; }

/* Header */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--wrap); margin: 0 auto; padding: 1.4rem 1.5rem;
}
.brand { font-size: 1.5rem; font-weight: 700; color: var(--ink); text-decoration: none; letter-spacing: -0.02em; }
.brand::after { content: "."; color: var(--rose); }
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a { color: var(--ink-soft); text-decoration: none; font-size: 0.98rem; }
.nav a:hover { color: var(--rose-deep); }
.nav .btn-ghost { border: 1.5px solid var(--line); }
/* Mobile menu toggle: CSS-only checkbox hack (CSP forbids inline JS). Hidden on desktop. */
.nav-toggle { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.nav-toggle-label { display: none; }

/* Hero */
.hero { max-width: var(--wrap); margin: 1rem auto 0; padding: 3.5rem 1.5rem 2rem; text-align: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.8rem; font-weight: 700; color: var(--rose); margin: 0 0 1rem; font-family: system-ui, sans-serif; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin: 0 0 1.2rem; }
.lede { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--ink-soft); max-width: 640px; margin: 0 auto 1.8rem; }
.hero-cta { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 0.92rem; color: var(--ink-soft); margin-top: 1.4rem; font-style: italic; }

/* Strip */
.strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  max-width: var(--wrap); margin: 2.5rem auto; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.strip-item { background: var(--paper); padding: 1.6rem 1.4rem; text-align: center; }
.strip-item strong { display: block; color: var(--rose-deep); font-size: 1.1rem; margin-bottom: 0.3rem; }
.strip-item span { color: var(--ink-soft); font-size: 0.95rem; }

/* Sections */
.section { max-width: var(--wrap); margin: 0 auto; padding: 4rem 1.5rem; }
.section-alt { background: var(--paper); max-width: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-alt > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
/* margin side = auto so a max-width-capped heading in a full-bleed .section-alt/.section-cta
   still centers (side margins of 0 would pin it left of the wider content box). */
.section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); text-align: center; margin: 0 auto 0.6rem; }
.section-lede { text-align: center; color: var(--ink-soft); max-width: 620px; margin: 0 auto 2.5rem; font-size: 1.08rem; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.steps li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem; box-shadow: var(--shadow); }
.step-n { display: inline-flex; align-items: center; justify-content: center; width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--blush); color: var(--rose-deep); font-weight: 700; font-family: system-ui, sans-serif; margin-bottom: 1rem; }
.steps h3 { margin: 0 0 0.5rem; font-size: 1.25rem; }
.steps p { margin: 0; color: var(--ink-soft); }

/* Who */
.who-grid { list-style: none; padding: 0; margin: 0 auto; max-width: 760px; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; }
.who-grid li { background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 0.75rem 1.4rem; font-size: 1.05rem; }
.who-grid li::before { content: "\2665"; color: var(--rose); margin-right: 0.6rem; }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.plan { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem; text-align: center; box-shadow: var(--shadow); position: relative; }
.plan-featured { border-color: var(--rose); border-width: 2px; transform: translateY(-8px); }
.badge { position: absolute; top: -0.9rem; left: 50%; transform: translateX(-50%); background: var(--rose); color: #fff; font-family: system-ui, sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.35rem 0.9rem; border-radius: 999px; }
.plan h3 { margin: 0 0 0.4rem; font-size: 1.5rem; }
.price { font-size: 2.6rem; font-weight: 700; margin: 0.2rem 0; color: var(--ink); }
.price span { font-size: 1rem; color: var(--ink-soft); font-weight: 400; }
.price-plus { color: var(--rose-deep); font-size: 0.92rem; font-weight: 600; margin: 0 0 0.2rem; }
.plan-value { color: var(--rose-deep); margin: 0 0 1.2rem; font-style: italic; }
.plan ul { list-style: none; padding: 0; margin: 0 0 1.6rem; text-align: left; }
.plan ul li { padding: 0.5rem 0 0.5rem 1.6rem; border-bottom: 1px solid var(--line); position: relative; color: var(--ink-soft); }
.plan ul li::before { content: "\2713"; color: var(--rose); position: absolute; left: 0; font-weight: 700; }
.plan ul li:last-child { border-bottom: none; }
.pricing-note { max-width: 660px; margin: 2.2rem auto 0; text-align: center; color: var(--ink-soft); font-size: 0.95rem; }

/* FAQ */
.faq { max-width: 720px; margin: 0 auto; }
.faq details { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 0.4rem 1.2rem; margin-bottom: 0.8rem; }
.faq summary { cursor: pointer; font-weight: 600; padding: 0.8rem 0; font-size: 1.08rem; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--rose); font-weight: 700; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 0 0 1rem; color: var(--ink-soft); }

/* CTA / Waitlist */
.section-cta { text-align: center; background: linear-gradient(180deg, var(--blush), var(--cream)); max-width: none; border-top: 1px solid var(--line); }
.section-cta > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.waitlist-form { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
.waitlist-form input { flex: 1 1 240px; padding: 0.85rem 1.1rem; border: 2px solid var(--line); border-radius: 999px; font-family: inherit; font-size: 1rem; background: #fff; }
.waitlist-form input:focus { outline: none; border-color: var(--rose); }
/* Post-submit feedback shown via URL hash (:target) — no JS, CSP-safe. */
.waitlist-msg { display: none; max-width: 480px; margin: 1rem auto 0; padding: 0.85rem 1.1rem; border-radius: 12px; font-weight: 600; }
.waitlist-msg:target { display: block; }
.waitlist-ok { background: #e8f5ec; color: #1c7a3e; border: 1px solid #c3e6cd; }
.waitlist-err { background: var(--blush); color: var(--rose-deep); border: 1px solid #f0c3cb; }

/* Legal / content pages */
.legal { max-width: 720px; margin: 0 auto; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin: 0 0 0.6rem; }
.legal h2 { font-size: 1.3rem; margin: 2rem 0 0.4rem; }
.legal p { color: var(--ink-soft); }
.legal-note { font-style: italic; padding: 1rem 1.2rem; background: var(--cream); border: 1px solid var(--line); border-radius: 12px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 3rem 1.5rem; max-width: var(--wrap); margin: 0 auto; text-align: center; }
.footer-brand .brand { font-size: 1.3rem; }
.footer-brand p { color: var(--ink-soft); margin: 0.4rem 0 1.4rem; font-style: italic; }
.footer-links { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.4rem; }
.footer-links a { color: var(--ink-soft); text-decoration: none; font-size: 0.95rem; }
.footer-links a:hover { color: var(--rose-deep); }
.copyright { color: var(--ink-soft); font-size: 0.88rem; margin: 0; }

/* Responsive */
@media (max-width: 820px) {
  .site-header { flex-wrap: wrap; }
  .nav-toggle-label {
    display: inline-flex; align-items: center; justify-content: center;
    width: 2.7rem; height: 2.7rem; cursor: pointer; border-radius: 10px; border: 1.5px solid var(--line);
  }
  .nav-toggle-label span { position: relative; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }
  .nav-toggle-label span::before, .nav-toggle-label span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }
  .nav-toggle-label span::before { top: -6px; }
  .nav-toggle-label span::after { top: 6px; }
  .nav { display: none; flex-basis: 100%; flex-direction: column; align-items: stretch; gap: 0; padding-top: 0.5rem; }
  .nav-toggle:checked ~ .nav { display: flex; }
  .nav a:not(.btn) { display: block; padding: 0.85rem 0.2rem; border-top: 1px solid var(--line); color: var(--ink); }
  .nav .btn-ghost { margin-top: 0.7rem; text-align: center; border: 1.5px solid var(--rose); }
  .strip, .steps, .plans { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
}
