@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  color-scheme: light dark;
  --bg: #fbfaf7;
  --surface: #f3efe7;
  --surface-2: #ece5d8;
  --text: #211d18;
  --muted: #7a7061;
  --rule: #e6e0d4;
  --accent: #c94327;
  --accent-text: #fffaf5;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #17130f;
    --surface: #221c16;
    --surface-2: #2a231b;
    --text: #f2ece2;
    --muted: #a89b89;
    --rule: #332b22;
    --accent: #ef6a4c;
    --accent-text: #1b1310;
  }
}
:root[data-theme="dark"] {
  --bg: #17130f;
  --surface: #221c16;
  --surface-2: #2a231b;
  --text: #f2ece2;
  --muted: #a89b89;
  --rule: #332b22;
  --accent: #ef6a4c;
  --accent-text: #1b1310;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}
body {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.06rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.narrow {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / nav */
header.site {
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
}
nav.site {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
}
.brand svg { width: 30px; height: 30px; flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.current { color: var(--accent); }

.btn {
  display: inline-block;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
}
.btn-primary:hover { opacity: 0.9; }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--rule);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-small { padding: 9px 18px; font-size: 0.9rem; }

/* Hero */
.hero {
  padding: 76px 0 60px;
  text-align: center;
}
.eyebrow {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
h1 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero h1 { max-width: 14ch; margin-left: auto; margin-right: auto; }
.subhead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 34px;
}
.hero .cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-note { color: var(--muted); font-size: 0.92rem; }

/* Sections */
section { padding: 56px 0; }
section.alt { background: var(--surface); }
h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.15rem);
  letter-spacing: -0.005em;
  margin: 0 0 14px;
  text-wrap: balance;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }
p { margin: 0 0 14px; }

/* Value / feature grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 28px 26px;
}
.card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.card .icon svg { width: 22px; height: 22px; }
.card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.12rem;
  margin: 0 0 8px;
}
.card p { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* Feature rows (Features page) */
.feature-row {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}
.feature-row:last-child { border-bottom: none; }
.feature-row .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.feature-row .icon svg { width: 24px; height: 24px; }
.feature-row h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.18rem;
  margin: 0 0 6px;
}
.feature-row p { color: var(--muted); margin: 0; max-width: 62ch; }

/* Pricing */
.pricing-card {
  max-width: 440px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 44px 36px;
  text-align: center;
}
.price-line {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 2.6rem;
  margin: 4px 0 2px;
}
.price-sub { color: var(--muted); margin-bottom: 26px; }
.check-list { list-style: none; padding: 0; margin: 0 0 30px; text-align: left; }
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.98rem;
}
.check-list svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.fine-print { color: var(--muted); font-size: 0.86rem; margin-top: 18px; }

/* FAQ accordion */
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
}
.faq details:first-child { border-top: 1px solid var(--rule); }
.faq summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 12px 0 0; color: var(--muted); }

/* Trust section */
.trust-body {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.06rem;
  color: var(--muted);
}

/* Final CTA band */
.cta-band {
  text-align: center;
  padding: 70px 0;
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: var(--muted); max-width: 50ch; margin: 0 auto 30px; }

/* Contact / simple content pages */
.intro-lead { font-size: 1.14rem; margin-bottom: 8px; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 26px 28px;
  margin: 14px 0 8px;
}
.contact-card .label { font-size: 0.85rem; color: var(--muted); margin-bottom: 4px; }
.contact-card .value { font-size: 1.15rem; font-weight: 600; }
.no-collect {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 22px 26px;
  margin: 14px 0 8px;
}
.no-collect ul { margin: 0; padding-left: 20px; }
.no-collect li { margin: 0 0 10px; }
.no-collect li:last-child { margin-bottom: 0; }
.updated { color: var(--muted); font-size: 0.92rem; margin: 0 0 8px; }

/* Footer */
footer.site {
  border-top: 1px solid var(--rule);
  margin-top: 40px;
  padding: 40px 0 56px;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: var(--accent); }

@media (max-width: 640px) {
  .hero { padding: 52px 0 40px; }
  section { padding: 44px 0; }
  .feature-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
