:root {
  --bg: #f7f5f1;
  --white: #fdfcf9;
  --mint: #eef3ef;
  --cream: #f5f6f0;
  --text: #24303c;
  --muted: #5f6b78;
  --accent: #dc8f58;
  --accent-dark: #cb7d45;
  --line: rgba(36, 48, 60, 0.10);
  --shadow: 0 18px 40px rgba(36, 48, 60, 0.08);
  --soft-shadow: 0 10px 24px rgba(36, 48, 60, 0.05);
  --radius: 22px;
  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}
.narrow { max-width: 760px; }
.center { text-align: center; }
.section { padding: 112px 0; }
.section-white { background: var(--white); }
.section-mint { background: var(--mint); }
.section-cream {
  background:
    radial-gradient(circle at 12% 18%, rgba(196, 224, 197, 0.25), transparent 12%),
    radial-gradient(circle at 88% 14%, rgba(248, 204, 190, 0.22), transparent 12%),
    linear-gradient(180deg, #fafbf6 0%, #f6f7ef 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 252, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(36, 48, 60, 0.05);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.brand, .footer-brand {
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--accent);
}
.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.95rem;
}
.nav-cta {
  padding: 12px 18px;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(220, 143, 88, 0.20);
  transition: transform 0.25s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.hero-grid,
.story-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 68px;
  align-items: center;
}
.hero-copy {
  max-width: 620px;
}
.hero-copy h1,
.section h2 {
  margin: 0 0 18px;
  line-height: 1.05;
  font-size: clamp(2.45rem, 4.7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.section h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
.hero-copy p,
.lead,
.story-copy p,
.action-card p,
.step-card p,
.site-footer p,
.site-footer a,
.form-note,
.simple-journey p,
.form-header p,
.stat-card span,
.stat-card small {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}
.hero-copy p,
.story-copy p,
.form-header p,
.join-section .lead {
  text-align: left;
}
.lead,
.action-card p,
.step-card p,
.form-note,
.stat-card span,
.stat-card small,
.simple-journey p { text-align: center; }
.eyebrow {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--accent-dark);
  background: #f8efe7;
  font-size: 0.92rem;
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  align-items: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.btn:hover,
.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(220, 143, 88, 0.23);
}
.btn:active,
.nav-cta:active { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, #de9965 0%, #d68752 100%);
  color: white;
  padding: 15px 26px;
  box-shadow: 0 12px 20px rgba(220, 143, 88, 0.20);
}
.btn-primary:hover,
.nav-cta:hover {
  background: linear-gradient(180deg, #d68e58 0%, #cb7d45 100%);
}
.btn-secondary {
  padding: 15px 24px;
  background: transparent;
  border: 1px solid rgba(36, 48, 60, 0.12);
  color: var(--text);
}
.btn-link, .text-link {
  color: #51606f;
  font-weight: 600;
}
.btn-block { width: 100%; padding: 16px 24px; }
.card-shadow {
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

@keyframes calmPulse {
  0%, 82%, 100% { transform: translateY(0); box-shadow: 0 12px 20px rgba(220, 143, 88, 0.20); }
  88% { transform: translateY(-2px); box-shadow: 0 16px 28px rgba(220, 143, 88, 0.24); }
  94% { transform: translateY(0); box-shadow: 0 12px 20px rgba(220, 143, 88, 0.20); }
}
.cta-pulse { animation: calmPulse 6s ease-in-out infinite; }

.hero-art,
.story-art,
.toned-panel {
  background: #f7efe5;
}
.hero-art {
  max-width: 500px;
  justify-self: end;
}
.hero-art img,
.story-art img { width: 100%; height: auto; }
.story-art { max-width: 380px; justify-self: end; }
.toned-panel img { filter: saturate(0.86) contrast(0.98); }

.stats-grid,
.action-grid,
.footer-grid,
.feature-grid {
  display: grid;
  gap: 24px;
}
.stats-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
}
.stat-card,
.pill-card,
.action-card,
.join-form,
.simple-journey article {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255,255,255,0.85);
}
.stat-card {
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: var(--soft-shadow);
}
.stat-card strong {
  display: block;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-card small {
  display: block;
  margin-top: 12px;
  color: #7a8491;
  font-size: 0.82rem;
}

.image-panel { margin-top: 40px; background: #fbf8f3; padding: 14px; }
.large-panel { max-width: 520px; margin-inline: auto; }
.image-panel figcaption {
  padding: 10px 6px 4px;
  color: var(--muted);
  font-size: 0.94rem;
}
.two-by-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-top: 38px;
}
.pill-card {
  min-height: 118px;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  gap: 14px;
  align-items: center;
  text-align: left;
  box-shadow: var(--soft-shadow);
}
.pill-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}
.pill-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: left;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f5d0b2, #dc8f58);
  flex: 0 0 12px;
}
.section-head { text-align: center; }
.simple-journey {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.simple-journey article {
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--soft-shadow);
}
.simple-journey span,
.step-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #e8c6a8, #d99b68);
  color: white;
  font-weight: 700;
}
.simple-journey h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}
.action-head h3 {
  margin: 58px 0 0;
  font-size: 1.65rem;
}
.action-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}
.action-card {
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  will-change: transform;
}
.action-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 34px rgba(36, 48, 60, 0.12);
}
.action-card img {
  height: 260px;
  width: auto;
  margin: 12px auto 22px;
  object-fit: contain;
  transition: transform 0.34s ease;
  will-change: transform;
}
.action-card:hover img { transform: translate3d(0, -6px, 0) scale(1.03); }
.action-card:nth-child(2):hover img { transform: translate3d(4px, -6px, 0) scale(1.03); }
.action-card:nth-child(3):hover img { transform: translate3d(-4px, -6px, 0) scale(1.03); }
.action-card h4,
.site-footer h4 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}
.mini-label {
  display: inline-flex;
  font-size: 0.8rem;
  color: #6f7a88;
  background: #f5f3ef;
  border-radius: 999px;
  padding: 8px 12px;
}
.accent-card .mini-label { background: #f7ece5; color: var(--accent-dark); }

.story-copy h2 { text-transform: none; }
.story-copy .text-link { display: inline-block; margin-top: 10px; }

.form-wrap { display: flex; justify-content: center; margin-top: 32px; }
.join-form {
  width: min(100%, 680px);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.96);
}
.form-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.progress-step {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #ecefed;
  color: #7a8491;
  font-weight: 700;
}
.progress-step.active {
  background: linear-gradient(180deg, #de9965 0%, #d68752 100%);
  color: #fff;
}
.progress-line {
  flex: 1;
  height: 2px;
  background: rgba(36, 48, 60, 0.10);
}
.form-step { display: none; }
.form-step.active { display: block; }
.form-header h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}
.form-kicker {
  margin: 0 0 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.join-form label,
.consent-box {
  display: grid;
  gap: 10px;
  text-align: left;
  color: #485261;
  font-weight: 600;
}
.full-width { grid-column: 1 / -1; }
.join-form input,
.join-form select,
.join-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fbfbfa;
  padding: 15px 16px;
  color: var(--text);
}
.join-form input,
.join-form select { height: 56px; }
.join-form textarea {
  min-height: 120px;
  resize: vertical;
}
.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus {
  outline: 2px solid rgba(220, 143, 88, 0.20);
  border-color: rgba(220, 143, 88, 0.55);
}
.consent-box {
  margin: 22px 0 0;
  border: 1px solid rgba(36, 48, 60, 0.08);
  border-radius: 18px;
  padding: 18px;
}
.consent-box legend {
  padding: 0 8px;
  font-weight: 700;
}
.check-row {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500 !important;
}
.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.form-actions-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  gap: 14px;
}
.dual-actions { justify-content: space-between; }
.btn-submit,
.btn-next { min-width: 180px; }
.success-message {
  min-height: 24px;
  color: #2f7a52;
  margin: 12px 0 0;
  font-weight: 600;
  text-align: center;
}
.form-note {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(36, 48, 60, 0.08);
}

.site-footer {
  background: #232730;
  color: rgba(255,255,255,0.86);
  padding: 70px 0 24px;
}
.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 40px;
}
.footer-grid a,
.footer-grid p { display: block; color: rgba(255,255,255,0.72); margin: 10px 0 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.52);
  font-size: 0.92rem;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

@media (max-width: 960px) {
  .hero-grid,
  .story-grid,
  .action-grid,
  .stats-grid,
  .footer-grid,
  .two-by-two,
  .simple-journey,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-art,
  .story-art { max-width: 420px; width: 100%; margin: 0 auto; justify-self: center; }
  .section { padding: 88px 0; }
}

@media (max-width: 720px) {
  .nav-wrap { min-height: 70px; }
  .nav { gap: 14px; font-size: 0.84rem; }
  .nav a:not(.nav-cta) { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .pill-card { justify-content: flex-start; }
  .action-card img { height: auto; max-height: 220px; }
  .footer-bottom,
  .dual-actions,
  .form-actions-row { flex-direction: column; }
  .join-form { padding: 22px; }
}
.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 64px;
  width: auto;
}

.nav-wrap {
  min-height: 90px;
}