:root {
  --cream: #faf1e6;
  --cream-alt: #f3e6d6;
  --ink: #2a2119;
  --ink-soft: #5a4f44;
  --coral: #e08a6b;
  --coral-deep: #c96b4c;
  --coral-tint: #f6ded3;
  --brown: #8a6a4f;
  --white: #fffdfa;
  --radius: 18px;
  --shadow: 0 12px 32px rgba(42, 33, 25, 0.08);
  --max-width: 1160px;
  font-size: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Live banner */
.live-banner {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5a4e;
  box-shadow: 0 0 0 0 rgba(255, 90, 78, 0.6);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 90, 78, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(255, 90, 78, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 78, 0); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 241, 230, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42, 33, 25, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-badge { display: flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
}
.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral-deep);
  font-weight: 600;
}

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  position: relative;
}
.main-nav a:hover { color: var(--coral-deep); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral-deep);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(201, 107, 76, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201, 107, 76, 0.42); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }
.btn-ghost {
  color: var(--coral-deep);
  font-weight: 600;
  padding: 13px 10px;
}
.btn-ghost:hover { text-decoration: underline; }

/* Hero */
.hero { padding: 64px 0 40px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  color: var(--coral-deep);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-actions.center { justify-content: center; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--coral-deep);
}
.stat-label { font-size: 0.8rem; color: var(--ink-soft); }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.hero-badge-circle {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.hero-badge-circle::before {
  content: '';
  position: absolute;
  inset: -18px;
  border: 1.5px dashed var(--coral);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.live-pill {
  position: absolute;
  bottom: 8px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 999px;
}
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  max-width: 210px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
}
.card-1 { top: 6%; left: -4%; }
.card-2 { bottom: 4%; right: -6%; }
.tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral); flex-shrink: 0; margin-top: 6px;
}

/* Marquee */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 16px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.marquee-track span { color: var(--coral); opacity: 0.9; }
.marquee-track span:nth-child(odd) { color: var(--cream); opacity: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--cream-alt); }
.section-tag {
  color: var(--coral-deep);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section h2 { font-size: 2.4rem; margin-bottom: 20px; }
.section-lede { color: var(--ink-soft); max-width: 640px; font-size: 1.02rem; }

.about-inner { text-align: left; }
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.about-item {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-item h3 { font-size: 1.25rem; margin-bottom: 10px; }
.about-item p { color: var(--ink-soft); font-size: 0.95rem; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--coral-tint);
  -webkit-text-stroke: 1.5px var(--coral-deep);
  margin-bottom: 8px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.9rem; }
.cta-inline {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Community */
.community-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.community-copy p { color: var(--ink-soft); margin: 18px 0 26px; max-width: 460px; }
.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 14px;
  text-align: center;
}
.stat-card .stat-num {
  display: block;
  font-size: 2rem;
  margin-bottom: 4px;
}
.stat-card .stat-label { font-size: 0.78rem; color: var(--ink-soft); }

/* Policy grid */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.policy-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.policy-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.policy-card p { color: var(--ink-soft); font-size: 0.92rem; }
.eta-list { margin: 6px 0 10px; }
.eta-list li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(42,33,25,0.12);
  font-size: 0.92rem;
}
.eta-list li:last-child { border-bottom: none; }
.eta-list li span:first-child { color: var(--ink-soft); }
.eta-list li span:last-child { font-weight: 600; }
.fine-print { font-size: 0.78rem; color: var(--brown); font-style: italic; }

/* FAQ */
.faq-inner { max-width: 760px; }
.faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 6px 24px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 18px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 1.4rem;
  color: var(--coral-deep);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); padding-bottom: 20px; font-size: 0.94rem; }

/* CTA band */
.cta-band { background: var(--ink); color: var(--cream); text-align: center; }
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(250,241,230,0.75); max-width: 480px; margin: 0 auto 30px; }
.cta-band .btn-secondary { border-color: var(--cream); color: var(--cream); }
.cta-band .btn-secondary:hover { background: var(--cream); color: var(--ink); }

/* Footer */
.site-footer { background: var(--cream-alt); padding: 56px 0 28px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.footer-tagline { color: var(--ink-soft); font-size: 0.95rem; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; margin: 6px 0; font-weight: 500; font-size: 0.9rem; }
.footer-links a:hover { color: var(--coral-deep); }
.footer-meta { font-size: 0.82rem; color: var(--brown); }
.footer-copy { font-size: 0.78rem; color: var(--ink-soft); margin-top: 10px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; order: -1; }
  .about-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .policy-grid { grid-template-columns: repeat(2, 1fr); }
  .community-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(42,33,25,0.08);
    transition: max-height 0.3s ease;
  }
  .main-nav.is-open { max-height: 300px; }
  .main-nav a { padding: 16px 0; width: 100%; text-align: center; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 2.3rem; }
  .about-grid, .steps, .policy-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .section { padding: 64px 0; }
  .section h2 { font-size: 1.9rem; }
}
