:root {
  --cream: #fdf7ee;
  --cream-deep: #f8ecd9;
  --navy: #1f2a44;
  --coral: #f0663f;
  --coral-soft: #ffd9c9;
  --yellow: #f7c948;
  --yellow-soft: #fbe3a3;
  --blue: #4a7fd4;
  --blue-soft: #cfdff7;
  --muted: #6b6558;
  --line: #ece2d0;
  --radius: 28px;
  --container: min(1120px, calc(100% - 48px));
  font-family: "DM Sans", sans-serif;
  color: var(--navy);
  background: var(--cream);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(253, 247, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Fraunces", serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  color: var(--coral);
}

.brand small {
  font: 700 10px "DM Sans", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.pill-nav {
  display: flex;
  gap: 8px;
}

.pill-nav a {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.pill-nav a:hover {
  border-color: var(--navy);
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 6px 8px 6px 24px;
  border: none;
  border-radius: 999px;
  font: 600 14px/1 "DM Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 4px 6px 4px 18px;
  font-size: 13px;
}

.btn-circle {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 15px;
}

.button-small .btn-circle {
  width: 30px;
  height: 30px;
}

.button-coral {
  background: var(--coral);
  color: #fff;
}

.button-navy {
  background: var(--navy);
  color: #fff;
}

/* Accents & squiggles */

.accent,
.section-title em,
.activity-card em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
}

.accent {
  position: relative;
  display: inline-block;
}

.accent-coral {
  color: var(--coral);
}

.accent-yellow {
  color: var(--yellow);
}

.mission .accent-yellow,
h1 .accent-yellow {
  color: var(--yellow);
}

.squiggle {
  position: absolute;
  left: 4%;
  bottom: -0.18em;
  width: 92%;
  height: 0.22em;
}

.squiggle path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
}

/* Hero */

.hero {
  padding: 72px 0 96px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  text-align: center;
}

.kicker-pill {
  display: inline-flex;
  margin: 0 0 26px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font: 700 11px "DM Sans", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
}

.hero h1 {
  margin: 0 auto 22px;
  max-width: 16ch;
  font-family: "Fraunces", serif;
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.head-chip {
  display: inline-block;
  width: 0.92em;
  height: 0.92em;
  border-radius: 50%;
  overflow: hidden;
  vertical-align: -0.12em;
  border: 3px solid var(--yellow);
  background: var(--coral-soft);
}

.head-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 30%;
}

.hero .lead {
  margin: 0 auto 34px;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

/* Hero decorations */

.doodle-arrow {
  position: absolute;
  left: 24%;
  bottom: 4px;
  width: 74px;
  color: var(--navy);
  opacity: 0.7;
  transform: rotate(14deg);
}

.doodle-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.deco.spiral {
  position: absolute;
  left: 3%;
  top: 34%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at center,
    var(--coral) 0 3px,
    transparent 3px 12px
  );
  opacity: 0.5;
}

.tag-pill {
  position: absolute;
  padding: 8px 16px;
  border-radius: 999px;
  font: 600 13px "DM Sans", sans-serif;
}

.tag-a {
  right: 13%;
  top: 46%;
  background: var(--coral-soft);
  color: var(--coral);
  transform: rotate(-8deg);
}

.tag-b {
  right: 6%;
  top: 56%;
  background: var(--yellow-soft);
  color: #9a7415;
  transform: rotate(6deg);
}

.tag-c {
  right: 11%;
  top: 67%;
  background: var(--blue-soft);
  color: var(--blue);
  transform: rotate(-4deg);
}

.hero-blob {
  position: absolute;
  right: -2%;
  top: -4%;
  width: 150px;
  height: 170px;
  margin: 0;
  border-radius: 58% 42% 55% 45% / 55% 58% 42% 45%;
  overflow: hidden;
  border: 5px solid var(--yellow);
}

.hero-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spin-badge {
  position: absolute;
  left: 12%;
  top: -2%;
  width: 108px;
  height: 108px;
  animation: spin 22s linear infinite;
}

.spin-badge text {
  font: 700 10.5px "DM Sans", sans-serif;
  letter-spacing: 0.18em;
  fill: var(--navy);
}

.spin-badge circle {
  fill: var(--coral);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* About */

.about {
  padding: 40px 0 72px;
  text-align: center;
}

.section-title {
  margin: 0 0 20px;
  font-family: "Fraunces", serif;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.about .body-copy {
  margin: 0 auto;
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

/* Activities */

.activities {
  padding: 24px 0 88px;
}

.activities .section-title {
  text-align: left;
  margin-bottom: 36px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.activity-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 30px 28px 34px;
  min-height: 240px;
}

.card-cream {
  background: var(--cream-deep);
}

.card-coral {
  background: var(--coral);
  color: #fff;
}

.card-yellow {
  background: var(--yellow);
}

.icon-chip {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 46px;
  box-shadow: 0 6px 14px rgba(31, 42, 68, 0.1);
}

.activity-card h3 {
  margin: 0 0 10px;
  font-family: "Fraunces", serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.activity-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.activity-card.card-coral p {
  color: #fff;
}

.activity-card.card-yellow p,
.activity-card.card-yellow .icon-chip {
  color: var(--navy);
}

.activity-card.card-yellow p {
  opacity: 0.85;
}

.pattern {
  position: absolute;
  top: 22px;
  right: 22px;
}

.pattern-rings {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at center,
    var(--coral) 0 3px,
    transparent 3px 12px
  );
  opacity: 0.55;
}

.pattern-blob {
  width: 96px;
  height: 74px;
  border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
  background: rgba(255, 255, 255, 0.28);
}

.pattern-dots {
  width: 96px;
  height: 84px;
  background-image: radial-gradient(var(--navy) 3px, transparent 3px);
  background-size: 19px 19px;
  opacity: 0.35;
}

/* Mission band */

.mission {
  position: relative;
  overflow: hidden;
  background: var(--coral);
  color: #fff;
  padding: 88px 0;
  text-align: center;
}

.deco.flower {
  position: absolute;
  left: 6%;
  top: 44px;
  font-size: 84px;
  line-height: 1;
  color: var(--yellow);
}

.mission h2 {
  margin: 0 auto 52px;
  max-width: 26ch;
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.mission h2 em {
  font-style: italic;
  font-weight: 500;
}

.location-circles {
  display: flex;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
}

.location-circle {
  display: grid;
  justify-items: center;
  gap: 4px;
  max-width: 260px;
}

.circle-photo {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border: 6px solid var(--yellow);
  background: #fff;
}

.ring-cream {
  border-color: var(--cream);
}

.circle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-circle strong {
  font-family: "Fraunces", serif;
  font-size: 23px;
}

.location-circle span:last-child {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

/* How */

.how {
  padding: 72px 0;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.how-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.how-card .icon-chip {
  width: 52px;
  height: 52px;
  font-size: 26px;
  margin-bottom: 16px;
}

.chip-coral {
  background: var(--coral-soft);
  color: var(--coral);
}

.chip-yellow {
  background: var(--yellow-soft);
  color: #9a7415;
}

.chip-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.how-card strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 19px;
  margin-bottom: 6px;
}

.how-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* Interest */

.interest {
  padding: 24px 0 96px;
}

.interest-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.interest-copy .kicker-pill {
  margin-bottom: 20px;
}

.interest h2 {
  margin: 0 0 16px;
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.interest .body-copy {
  margin: 0;
  max-width: 40ch;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.interest-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(31, 42, 68, 0.08);
}

.interest-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.interest-form input,
.interest-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
  font: 16px "DM Sans", sans-serif;
  color: var(--navy);
}

.interest-form input:focus,
.interest-form select:focus {
  outline: 2px solid var(--coral-soft);
  border-color: var(--coral);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.choice-group {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}
.choice-group legend {
  padding: 0;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.choice-group legend small {
  font-weight: 500;
  color: var(--muted);
}
.choice-help {
  margin: -4px 0 4px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted);
}
.interest-form .choice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--cream-deep);
  border-radius: 14px;
  background: var(--cream);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.interest-form .choice:hover {
  border-color: var(--coral-soft);
}
.interest-form .choice:has(input:checked) {
  border-color: var(--coral);
  background: var(--coral-soft);
}
.interest-form .choice input {
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  flex: none;
  accent-color: var(--coral);
}

.founder {
  padding: 90px 0;
  background: var(--cream-deep);
}
.founder-inner {
  max-width: 720px;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 22px;
}
.founder blockquote {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 24px;
  line-height: 1.5;
  color: var(--navy);
}
.founder-sig {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--coral);
}
.founder-role {
  margin: -14px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.consent {
  display: flex !important;
  align-items: start;
  gap: 10px;
  font-weight: 400 !important;
  font-size: 13px !important;
  color: var(--muted);
}

.consent input {
  width: auto;
  margin-top: 2px;
}

.consent a {
  color: var(--navy);
  text-decoration: underline;
}

.interest-form .button {
  justify-content: center;
}

.form-status {
  margin: 0;
  min-height: 20px;
  font-size: 14px;
  color: var(--muted);
}
.form-status.is-error {
  color: var(--coral);
  font-weight: 700;
}

.form-success {
  display: none;
}
.interest-form.is-success > *:not(.form-success) {
  display: none !important;
}
.interest-form.is-success .form-success {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 44px 16px;
  text-align: center;
}
.success-check {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  animation: success-pop 0.45s cubic-bezier(0.2, 1.4, 0.4, 1);
}
.success-check svg {
  width: 32px;
  height: 32px;
}
.form-success h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 30px;
  color: var(--navy);
}
.form-success p {
  margin: 0;
  max-width: 36ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
@keyframes success-pop {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Footer */

footer {
  background: var(--navy);
  color: var(--cream);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

footer .brand small {
  color: rgba(253, 247, 238, 0.65);
}

footer p {
  margin: 0;
  font-size: 14px;
  color: rgba(253, 247, 238, 0.75);
}

footer a:last-child {
  font-size: 14px;
}

/* Responsive */

@media (max-width: 960px) {
  .pill-nav {
    display: none;
  }

  .hero {
    padding: 56px 0 72px;
  }

  .doodle-arrow,
  .deco.spiral,
  .tag-pill,
  .hero-blob,
  .spin-badge {
    display: none;
  }

  .activity-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .interest-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .location-circles {
    gap: 40px;
  }

  .footer-inner {
    flex-wrap: wrap;
  }

  .footer-inner p {
    width: 100%;
    order: 3;
  }
}
