/* ==========================================================================
   Lumi Libra — style.css
   Fonts:  Cormorant Garamond (headings) · Lora (body) · Allura (script)
   ========================================================================== */

:root {
  --teal: #175D66;
  --teal-dark: #114E58;
  --forest: #114E58;
  --seafoam: #B7D4CE;
  --sage: #C6D2BC;
  --lavender: #D8CADF;
  --mist: #C7DEE3;
  --cream: #F0F1EF;
  --white: #FBFCFC;
  --charcoal: #3E3B39;
  --gold: #F2D27A;
  --teal-wash: #EDF5F3;

  /* Watercolor wash palette — cool tones (deep teal, light aqua-teal, lavender) */
  --c-teal: 34, 128, 124;
  --c-blue: 92, 182, 194;
  --c-lav: 183, 158, 227;

  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Lora", Georgia, serif;
  --font-script: "Allura", cursive;

  --radius: 12px;
  --shadow-soft: 0 10px 34px rgba(31, 94, 92, 0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

main { overflow-x: clip; }

a { color: var(--teal); }

.wrap {
  width: min(1160px, 92%);
  margin-inline: auto;
}

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.15;
}

h1 { font-size: clamp(3rem, 7vw, 5.25rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: 1.45rem; }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--teal);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.35;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.lead { font-size: 1.15rem; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--teal);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary { background-color: var(--teal); color: var(--white); }
.btn-primary:hover { background-color: var(--teal-dark); border-color: var(--teal-dark); }

.btn-secondary { background-color: var(--white); color: var(--teal); }
.btn-secondary:hover { background-color: var(--teal-wash); }

/* ---------- Header / Nav ---------- */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.4rem 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-link img { height: 44px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--forest);
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-nav a:hover { color: var(--teal); }

.nav-song {
  border: 1.5px solid var(--teal);
  border-radius: 999px;
  padding: 0.45rem 1.15rem !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal) !important;
  transition: background-color 0.2s ease;
}

.nav-song:hover { background-color: var(--teal-wash); }

.nav-song-mobile { display: none; }

.nav-toggle { display: none; }

.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 60;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--forest);
  border-radius: 2px;
  transition: all 0.25s ease;
  content: "";
}

.nav-toggle-label span { top: 10px; }
.nav-toggle-label span::before { top: -8px; }
.nav-toggle-label span::after { top: 8px; }

/* ---------- Hero (home) ---------- */

.hero {
  position: relative;
  padding: 9rem 0 5.5rem;
  background:
    radial-gradient(ellipse 48% 55% at 8% 16%, rgba(var(--c-blue), 0.36), transparent 72%),
    radial-gradient(ellipse 50% 55% at 95% 84%, rgba(var(--c-lav), 0.34), transparent 72%),
    radial-gradient(ellipse 46% 50% at 80% 28%, rgba(var(--c-teal), 0.16), transparent 68%),
    var(--cream);
  overflow: hidden;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

/* Faded butterflies drifting through the hero, behind the content */
.hero-butterfly {
  position: absolute;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 92% 58% at 50% 45%, #000 55%, transparent 82%);
          mask-image: radial-gradient(ellipse 92% 58% at 50% 45%, #000 55%, transparent 82%);
}
.hb-1 { left: -5%; bottom: -6%; width: min(440px, 46%); transform: rotate(-22deg); }
.hb-2 { left: 4%; top: 2%; width: min(250px, 26%); transform: scaleX(-1) rotate(-14deg); }
.hb-3 { left: 31%; bottom: -18%; width: min(330px, 34%); transform: scaleX(-1) rotate(15deg); }

@media (max-width: 760px) {
  /* Three hero butterflies at varied sizes: a large one behind the heading, a
     small one top-right, and a medium one in the bottom-right purple splash. */
  .hb-1 { right: 14%; left: auto; bottom: -2%; top: auto; width: min(170px, 42%); }
  .hb-2 { display: block; left: 7%; top: 8%; bottom: auto; width: min(190px, 46%); }
  .hb-3 { display: block; right: 4%; left: auto; top: 6%; bottom: auto; width: min(95px, 22%); }
}

.hero-copy .script { margin: 0.75rem 0 1.5rem; }

.hero-copy p.lead { max-width: 34rem; margin-bottom: 2.2rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-figure { position: relative; }

.hero-figure img.hero-photo {
  width: 100%;
  border-radius: 46% 54% 52% 48% / 44% 46% 54% 56%;
  box-shadow: var(--shadow-soft);
  -webkit-mask-image: radial-gradient(ellipse 92% 92% at 50% 50%, #000 62%, transparent 100%);
          mask-image: radial-gradient(ellipse 92% 92% at 50% 50%, #000 62%, transparent 100%);
}

.butterfly-float {
  position: absolute;
  width: 90px;
  top: -34px;
  left: -30px;
  transform: rotate(-12deg);
  animation: flutter 5s ease-in-out infinite;
}

/* Nudge the floating butterfly right so it doesn't run off the left edge on mobile */
@media (max-width: 760px) {
  .butterfly-float { left: -6px; }
}

@keyframes flutter {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-10px); }
}

/* ---------- Remember section ---------- */

.remember {
  padding: 5.5rem 0 5rem;
  background:
    radial-gradient(ellipse 46% 55% at 94% 20%, rgba(var(--c-blue), 0.32), transparent 72%),
    radial-gradient(ellipse 48% 55% at 4% 78%, rgba(var(--c-lav), 0.30), transparent 72%),
    radial-gradient(ellipse 44% 50% at 22% 40%, rgba(var(--c-teal), 0.16), transparent 68%),
    var(--white);
}

.remember .wrap { position: relative; }
.remember .wrap > :not(.remember-butterfly) { position: relative; z-index: 1; }

/* Small faded butterfly between the first two columns, near the bottom */
.remember-butterfly {
  position: absolute;
  left: 25%;
  bottom: -11%;
  width: min(130px, 18%);
  z-index: 0;
  opacity: 0.2;
  transform: rotate(16deg);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 92% 58% at 50% 45%, #000 55%, transparent 82%);
          mask-image: radial-gradient(ellipse 92% 58% at 50% 45%, #000 55%, transparent 82%);
}

/* On mobile this is the larger butterfly moved down to the bottom of the section */
@media (max-width: 760px) {
  .remember-butterfly { right: 12%; left: auto; bottom: -3%; width: min(170px, 42%); }
}

.remember-heading { margin-bottom: 0.35rem; }

.remember .script { display: block; margin-bottom: 2rem; }

.remember-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.2rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.remember-cols > div { border-left: 1px solid rgba(44, 122, 120, 0.18); padding-left: 1.4rem; }
.remember-cols > div:first-child { border-left: none; padding-left: 0; }
.remember-cols p + p { margin-top: 1rem; }

/* ---------- Pillars ---------- */

.pillars {
  padding: 5.5rem 0;
  text-align: center;
  background:
    radial-gradient(ellipse 46% 52% at 6% 14%, rgba(var(--c-blue), 0.34), transparent 72%),
    radial-gradient(ellipse 48% 55% at 94% 90%, rgba(var(--c-lav), 0.34), transparent 72%),
    radial-gradient(ellipse 46% 50% at 62% 84%, rgba(var(--c-teal), 0.16), transparent 68%),
    var(--cream);
}

.pillars-intro {
  max-width: 44rem;
  margin: 1.2rem auto 3.5rem;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.pillar img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  margin: 0 auto 1.2rem;
}

/* Cool down the warm nature illustration icon to match the blue/teal/lavender palette.
   The dark line-art stays dark; only the watercolor circle's hue shifts. */
img[src$="icon-nature.png"] { filter: hue-rotate(60deg) saturate(1.05); }    /* sage green → teal */
img[src$="receive-movement.png"] { filter: hue-rotate(60deg) saturate(1.5); }  /* sage green → greyer teal (matches home Nature; extra saturation compensates for the paler source) */
img[src$="receive-reflection.png"] { filter: hue-rotate(320deg) saturate(0.9); }  /* warm pink → cool rose pink */

.pillar h3 { margin-bottom: 0.7rem; font-weight: 600; font-size: 1.3rem; }

.pillar p { font-size: 0.9rem; line-height: 1.75; }

/* ---------- Believe / For ---------- */

.believe-for {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
}

.believe {
  background: var(--seafoam);
  padding: 4.5rem clamp(2rem, 5vw, 5rem);
}

.believe h2, .who-for h2 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 2rem;
}

.believe ul, .who-for ul { list-style: none; }

.believe li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 1.4rem;
  font-size: 0.98rem;
}

.believe li img {
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 26px;
  opacity: 0.9;
}

.who-for {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 46% 52% at 6% 8%, rgba(var(--c-lav), 0.34), transparent 72%),
    radial-gradient(ellipse 48% 55% at 96% 96%, rgba(var(--c-blue), 0.32), transparent 72%),
    radial-gradient(ellipse 44% 50% at 40% 42%, rgba(var(--c-teal), 0.16), transparent 68%),
    var(--cream);
  padding: 4.5rem clamp(2rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: start;
}
.who-for > div,
.who-for > figure { position: relative; z-index: 1; }

/* Faded butterfly in the bottom-right */
.who-butterfly {
  position: absolute;
  right: 8%;
  bottom: 3%;
  width: min(260px, 37%);
  z-index: 0;
  opacity: 0.2;
  transform: rotate(-10deg);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 92% 58% at 50% 45%, #000 55%, transparent 82%);
          mask-image: radial-gradient(ellipse 92% 58% at 50% 45%, #000 55%, transparent 82%);
}

@media (min-width: 761px) {
  .who-butterfly { bottom: -20%; }
}

.who-for li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.who-for li::before {
  content: "♡";
  position: absolute;
  left: 0;
  color: var(--teal);
}

.who-for .script { font-size: 1.5rem; display: block; margin-top: 1.8rem; }

.who-for figure img {
  width: 250px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* ---------- Club banner (home) ---------- */

.club-banner {
  background:
    radial-gradient(ellipse 45% 80% at 100% 60%, rgba(var(--c-lav), 0.4), transparent 72%),
    radial-gradient(ellipse 45% 80% at 0% 40%, rgba(var(--c-blue), 0.4), transparent 72%),
    var(--white);
  padding: 5rem 0;
}

.club-banner .wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.5rem;
  align-items: center;
}

.club-banner figure { position: relative; }

.club-banner figure img.club-photo {
  width: 300px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.club-banner .butterfly-accent {
  position: absolute;
  width: 74px;
  right: -30px;
  bottom: -20px;
  transform: rotate(10deg);
}

.club-copy { text-align: center; }

.club-copy h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  margin-bottom: 1rem;
}

.club-copy h2 .heart { color: var(--teal); font-size: 0.6em; vertical-align: middle; }

.club-copy > p { max-width: 36rem; margin: 0 auto 2.4rem; }

.club-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.4rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.club-features span.mark {
  display: block;
  font-size: 1.3rem;
  color: var(--teal);
  margin-bottom: 0.4rem;
}

/* ---------- Note / Reminders ---------- */

.note-reminders {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse 48% 55% at 4% 8%, rgba(var(--c-blue), 0.36), transparent 72%),
    radial-gradient(ellipse 48% 55% at 100% 100%, rgba(var(--c-lav), 0.34), transparent 72%),
    radial-gradient(ellipse 44% 50% at 55% 48%, rgba(var(--c-teal), 0.15), transparent 68%),
    var(--cream);
}

.note-reminders .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

/* Faded butterfly in the top-left corner of the note, tilted right */
.note-butterfly {
  position: absolute;
  top: -5%;
  left: -3%;
  width: min(230px, 30%);
  z-index: 0;
  opacity: 0.2;
  transform: rotate(18deg);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 92% 58% at 50% 45%, #000 55%, transparent 82%);
          mask-image: radial-gradient(ellipse 92% 58% at 50% 45%, #000 55%, transparent 82%);
}

/* On mobile tuck it high into the upper-left corner, above the "A Note From Me" heading */
@media (max-width: 760px) {
  .note-butterfly { top: -4%; left: 6.5%; }
}

/* Faded butterfly emerging from the bottom-right corner, tilting left */
.spark-butterfly {
  position: absolute;
  right: -6%;
  bottom: -10%;
  width: min(300px, 34%);
  z-index: 0;
  opacity: 0.2;
  transform: rotate(-22deg);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 92% 58% at 50% 45%, #000 55%, transparent 82%);
          mask-image: radial-gradient(ellipse 92% 58% at 50% 45%, #000 55%, transparent 82%);
}

/* Keep the spark butterfly fully on-screen on small viewports */
@media (max-width: 760px) {
  .spark-butterfly { right: 7%; bottom: -3%; width: min(200px, 36%); }
}

.note { display: grid; grid-template-columns: 1fr auto; gap: 2.5rem; align-items: center; }

.note h2, .reminders h2 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 1.6rem;
}

.note p { font-size: 0.98rem; margin-bottom: 1.1rem; }

.note .script { font-size: 1.7rem; margin-top: 0.5rem; }

.polaroid {
  background: var(--white);
  padding: 10px 10px 42px;
  box-shadow: var(--shadow-soft);
  transform: rotate(3deg);
  width: 210px;
}

.reminders p { font-size: 0.98rem; margin-bottom: 1.6rem; }

.signup-form { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.signup-form input[type="email"] {
  flex: 1 1 200px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 0.9rem 1.1rem;
  border: 1.5px solid rgba(44, 122, 120, 0.35);
  border-radius: var(--radius);
  background: var(--white);
}

.signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--teal);
}

.ml-form-success-message {
  color: var(--plum);
  line-height: 1.6;
}

.ml-form-success-message strong,
.ml-form-success-message span {
  display: block;
}

.ml-form-success-message strong {
  margin-bottom: 0.2rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
}

.reminders .script { display: block; font-size: 1.6rem; margin-top: 1.6rem; }

/* ---------- Footer ---------- */

.site-footer {
  background-color: var(--forest);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 2rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.footer-brand img { height: 40px; width: auto; margin-bottom: 1rem; }

.footer-brand p { max-width: 240px; line-height: 1.6; }

.footer-links ul { list-style: none; }

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: inline-block;
  padding: 0.25rem 0;
}

.footer-links a:hover { color: var(--gold); }

.footer-connect { text-align: center; }

.footer-connect h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}

.social-icons { display: flex; justify-content: center; gap: 1rem; }

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.social-icons a:hover { border-color: var(--gold); background: rgba(255, 255, 255, 0.08); }

.social-icons svg { width: 17px; height: 17px; fill: rgba(255, 255, 255, 0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a { color: rgba(255, 255, 255, 0.6); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

.footer-copyright {
  max-width: 700px;
  line-height: 1.6;
}

.footer-copyright p + p { margin-top: 0.45rem; }

/* ==========================================================================
   Policies page
   ========================================================================== */

.policies-main {
  padding: 9rem 0 6rem;
  background:
    radial-gradient(ellipse 48% 44% at 5% 10%, rgba(var(--c-blue), 0.30), transparent 72%),
    radial-gradient(ellipse 46% 46% at 96% 28%, rgba(var(--c-lav), 0.28), transparent 72%),
    radial-gradient(ellipse 50% 40% at 22% 82%, rgba(var(--c-teal), 0.13), transparent 72%),
    var(--cream);
}

.policies-wrap { max-width: 940px; }

.policies-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.policies-header .eyebrow { margin-bottom: 0.55rem; }

.policies-header h1 {
  color: var(--forest);
  font-size: clamp(3rem, 7vw, 4.8rem);
  margin-bottom: 0.6rem;
}

.policies-header h1.agreement-title {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.08;
}

.policies-updated {
  color: var(--teal);
  font-size: 0.95rem;
}

.policies-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(44, 122, 120, 0.12);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-soft);
  padding: clamp(2rem, 6vw, 4.5rem);
}

.policy-section + .policy-section {
  border-top: 1px solid rgba(44, 122, 120, 0.16);
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}

.policy-section h2 {
  color: var(--teal);
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  margin-bottom: 1rem;
}

.policy-section p {
  line-height: 1.85;
  margin-bottom: 1rem;
}

.policy-section p:last-child { margin-bottom: 0; }

.footer-policy-links {
  max-width: 360px;
  text-align: right;
  line-height: 1.65;
}

.contact-main { min-height: 72vh; }

.contact-wrap { max-width: 820px; }

.contact-card {
  text-align: center;
  padding-top: clamp(2.5rem, 7vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 7vw, 4.5rem);
}

.contact-question {
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.contact-welcome {
  color: var(--teal);
  font-size: 1.1rem;
  margin-bottom: 2.6rem;
}

.contact-email-block {
  border-top: 1px solid rgba(44, 122, 120, 0.16);
  padding-top: 2.3rem;
}

.contact-email-block h2 {
  color: var(--teal);
  font-size: 1.55rem;
  margin-bottom: 0.7rem;
}

.contact-email-block a {
  color: #6E5FA6;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-email-block a:hover { color: var(--teal); }

.contact-email-block p {
  margin-top: 1rem;
  color: rgba(74, 74, 74, 0.78);
}

@media (max-width: 760px) {
  .policies-main { padding: 7.5rem 0 4rem; }
  .policies-card { border-radius: var(--radius); }
  .footer-policy-links { max-width: none; text-align: left; }
}

/* ==========================================================================
   Self-Love Club page
   ========================================================================== */

.club-hero {
  position: relative;
  padding: 10rem 0 5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 52% 58% at 12% 20%, rgba(var(--c-blue), 0.4), transparent 72%),
    radial-gradient(ellipse 48% 55% at 88% 24%, rgba(var(--c-lav), 0.38), transparent 72%),
    radial-gradient(ellipse 55% 45% at 50% 104%, rgba(var(--c-teal), 0.16), transparent 70%),
    var(--cream);
  overflow: hidden;
}

.club-hero h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); margin-bottom: 0.5rem; }

.club-hero .script { display: block; margin-bottom: 1.6rem; }

.club-hero p.lead { max-width: 40rem; margin: 0 auto 2.4rem; }

.club-hero .butterfly-float { left: auto; right: 8%; top: 7rem; }

/* inside the club */

.club-inside { padding: 5.5rem 0; background: var(--white); text-align: center; }

.club-inside > .wrap > p {
  max-width: 42rem;
  margin: 1.2rem auto 3.5rem;
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.inside-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem;
  box-shadow: 0 6px 22px rgba(31, 94, 92, 0.06);
}

.inside-card img { width: 92px; height: 92px; object-fit: contain; margin: 0 auto 1.1rem; }

.inside-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.6rem; }

.inside-card p { font-size: 0.9rem; line-height: 1.7; }

/* how it works */

.club-how {
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse 50% 70% at 100% 20%, rgba(var(--c-blue), 0.5), transparent 72%),
    var(--cream);
  text-align: center;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.how-step .step-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--teal);
  display: block;
  margin-bottom: 0.6rem;
}

.how-step h3 { margin-bottom: 0.6rem; font-weight: 600; }

.how-step p { font-size: 0.95rem; }

/* pillars strip */

.club-pillars {
  padding: 4.5rem 0;
  background: var(--white);
  text-align: center;
}

.pillar-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.pillar-strip figure { width: 120px; }

.pillar-strip img { width: 86px; height: 86px; object-fit: contain; margin: 0 auto 0.6rem; }

.pillar-strip figcaption { font-size: 0.85rem; color: var(--forest); }

/* join card */

.club-join {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
}

/* Soft teal watercolor glow radiating from behind the card */
.club-join::before,
.club-join::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  pointer-events: none;
  filter: blur(34px);
  border-radius: 46% 54% 52% 48% / 50% 46% 54% 50%;
}
.club-join::before {
  width: 1040px;
  height: 640px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(44, 122, 120, 0.5) 0%, rgba(23, 93, 102, 0.3) 46%, transparent 74%);
}
.club-join::after {
  width: 860px;
  height: 560px;
  transform: translate(-53%, -46%) rotate(-6deg);
  background: radial-gradient(ellipse at center, rgba(23, 93, 102, 0.4), transparent 70%);
}
.club-join .wrap { position: relative; z-index: 1; }

.join-card {
  max-width: 720px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse 60% 55% at 88% 8%, rgba(var(--c-blue), 0.22), transparent 66%),
    radial-gradient(ellipse 55% 60% at 6% 94%, rgba(var(--c-lav), 0.20), transparent 70%),
    linear-gradient(158deg, #2A7A78 0%, #1C6469 100%);
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow-soft);
  padding: 3.5rem clamp(1.8rem, 5vw, 4rem);
  text-align: center;
}

/* Dark card text — matched to the club hero */
.join-card h2 { color: var(--cream); }
.join-card .script { color: var(--seafoam); }
.join-card .club-price { color: var(--cream); }
.join-card .club-price span { color: rgba(248, 245, 239, 0.75); }
.join-card .btn-primary {
  background: var(--lavender);
  color: var(--forest);
  border-color: var(--lavender);
}
.join-card .btn-primary:hover {
  background: #c9b8d6;
  border-color: #c9b8d6;
}

.join-card .waitlist-form {
  justify-content: center;
  max-width: 610px;
  margin: 1rem auto 0;
}

.join-card .waitlist-form input[type="email"] {
  background: var(--white);
}

.join-card .ml-form-success-message {
  margin-top: 1rem;
  color: var(--cream);
}

.join-card h2 { margin-bottom: 0.4rem; }

.join-card .script { display: block; margin-bottom: 1rem; }

.join-card .join-note {
  max-width: 480px;
  margin: 0 auto 1.8rem;
  color: rgba(248, 245, 239, 0.9);
}

.club-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  color: var(--teal);
  margin-bottom: 1.8rem;
}

.club-price span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(74, 74, 74, 0.75);
}

.join-list {
  list-style: none;
  text-align: left;
  max-width: 420px;
  margin: 0 auto 2.4rem;
}

.join-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
}

.join-list li::before {
  content: "♡";
  position: absolute;
  left: 0;
  color: var(--teal);
}

.join-card .small-print {
  font-size: 0.85rem;
  color: rgba(248, 245, 239, 0.72);
  margin-top: 1.2rem;
}

/* quote band */

.club-quote {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  text-align: center;
  background:
    radial-gradient(ellipse 46% 70% at 0% 50%, rgba(var(--c-blue), 0.4), transparent 72%),
    radial-gradient(ellipse 46% 70% at 100% 50%, rgba(var(--c-lav), 0.38), transparent 72%),
    radial-gradient(ellipse 48% 55% at 50% 112%, rgba(var(--c-teal), 0.14), transparent 70%),
    var(--white);
}

.club-quote .wrap { position: relative; z-index: 1; }
.club-quote .script { font-size: clamp(1.9rem, 3.5vw, 2.6rem); display: block; }

/* Large faded butterfly sitting behind the quote */
.club-quote .quote-butterfly {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  width: min(360px, 60%);
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 45%, #000 58%, transparent 82%);
          mask-image: radial-gradient(ellipse 80% 80% at 50% 45%, #000 58%, transparent 82%);
}

/* A few questions — FAQ near the bottom of the club page */
.club-faq {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0 3rem;
  background:
    radial-gradient(ellipse 40% 46% at 8% 18%, rgba(var(--c-lav), 0.30), transparent 72%),
    radial-gradient(ellipse 40% 46% at 94% 14%, rgba(var(--c-blue), 0.32), transparent 72%),
    var(--cream);
}

/* Soft watercolor splashes */
.club-faq::before,
.club-faq::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(10px);
  border-radius: 52% 48% 57% 43% / 46% 55% 45% 54%;
}
.club-faq::before {
  top: -55px;
  left: -75px;
  width: 300px;
  height: 250px;
  background: radial-gradient(circle at 42% 42%, rgba(var(--c-lav), 0.55), transparent 68%);
}
.club-faq::after {
  bottom: -380px;
  left: 50%;
  width: 1120px;
  height: 640px;
  transform: translateX(-50%);
  filter: blur(34px);
  border-radius: 46% 54% 52% 48% / 50% 46% 54% 50%;
  background: radial-gradient(ellipse at center, rgba(44, 122, 120, 0.52) 0%, rgba(23, 93, 102, 0.36) 46%, transparent 76%);
}
.club-faq .wrap { position: relative; z-index: 1; }

/* Heading */
.faq-head { text-align: center; margin-bottom: 1.8rem; }

.faq-celestial { display: block; width: 108px; height: auto; margin: 0 auto -0.6rem; mix-blend-mode: screen; }

.club-faq .faq-title {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--forest);
  margin: 0.25rem 0 0;
}

.faq-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 0.85rem;
}
.faq-rule-heart { color: var(--teal); font-size: 1rem; line-height: 1; }
.faq-rule-line {
  position: relative;
  width: 64px;
  height: 1px;
  background: rgba(23, 93, 102, 0.35);
}
.faq-rule-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(23, 93, 102, 0.5);
  transform: translateY(-50%);
}
.faq-rule-line:first-child::after { left: -7px; }
.faq-rule-line:last-child::after { right: -7px; }

/* Dropdown items */
.faq-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 93, 102, 0.14);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(31, 94, 92, 0.04);
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 0.85rem 2.6rem 0.85rem 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: radial-gradient(circle at 38% 34%, rgba(var(--c-blue), 0.85), rgba(var(--c-teal), 0.32));
}
.faq-icon svg { width: 19px; height: 19px; }

.faq-q {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.25;
  transition: color 0.2s ease;
}
.faq-item summary:hover .faq-q { color: var(--teal); }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.3rem;
  line-height: 1;
  color: var(--teal);
}
.faq-item[open] summary::after { content: "\2013"; }

.faq-item > p {
  margin: 0;
  padding: 0 1rem 0.95rem calc(38px + 1.9rem);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--charcoal);
}

@media (max-width: 760px) {
  .faq-item summary { padding: 0.8rem 2.3rem 0.8rem 0.85rem; gap: 0.75rem; }
  .faq-icon { width: 34px; height: 34px; }
  .faq-icon svg { width: 17px; height: 17px; }
  .faq-q { font-size: 1.02rem; }
  .faq-item > p { padding-left: calc(34px + 1.6rem); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1000px) {
  .remember-cols { grid-template-columns: repeat(2, 1fr); }
  .remember-cols > div { border-left: none; padding-left: 0; }
  .pillar-grid { grid-template-columns: repeat(3, 1fr); row-gap: 3rem; }
  .believe-for { grid-template-columns: 1fr; }
  .club-features { grid-template-columns: repeat(2, 1fr); }
  .inside-grid { grid-template-columns: repeat(2, 1fr); }
  .note-reminders .wrap { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { padding: 1rem 0; }

  .site-header .wrap { gap: 0.7rem; }

  .nav-song-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0.38rem 0.72rem !important;
    font-size: 0.58rem !important;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .nav-toggle-label { display: block; }

  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    font-size: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 55;
  }

  .nav-toggle:checked ~ .main-nav { transform: translateX(0); }

  .main-nav .nav-song { display: none; }

  .nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
  .nav-toggle:checked ~ .nav-toggle-label span::before { top: 0; transform: rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label span::after { top: 0; transform: rotate(-45deg); }

  .hero { padding-top: 7rem; padding-bottom: 10rem; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-figure { max-width: 420px; margin: 0 auto; }

  .note > div { text-align: center; }
  /* Center the Sunday Spark text and its signup button */
  .reminders { text-align: center; }
  .reminders .signup-form { justify-content: center; }
  /* ...but keep the sun + "Sunday Spark" heading together as one left-aligned unit */
  .sunday-spark-head { text-align: left; }
  .remember-heading,
  .remember .script { text-align: center; }
  .remember-cols { grid-template-columns: 1fr; gap: 1.4rem; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { max-width: 340px; margin: 0 auto; }

  .who-for { grid-template-columns: 1fr; padding-bottom: 14rem; }
  .who-for figure { order: -1; text-align: center; }
  .who-for figure img { width: 100%; max-width: 340px; }
  /* Center the "What I Believe" heading and list as a centered block */
  .believe { text-align: center; }
  .believe ul { display: inline-block; text-align: left; }
  /* Center the heading, list, and script; keep list items left-aligned as a centered block */
  .who-for > div { text-align: center; }
  .who-for ul { display: inline-block; text-align: left; }
  /* Sit the butterfly centered below the text, with room so it isn't clipped */
  .who-butterfly { left: 50%; right: auto; bottom: 2.5rem; width: min(150px, 40%); transform: translateX(-50%) rotate(-8deg); }

  .club-banner .wrap { grid-template-columns: 1fr; justify-items: center; }
  .club-features { grid-template-columns: 1fr 1fr; gap: 1.2rem; }

  .note { grid-template-columns: 1fr; }
  .note figure { justify-self: center; }

  .inside-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Self-Love Club — additional sections (from club mock)
   ========================================================================== */

/* What is the club? + Every month you'll receive */
.club-about {
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse 45% 55% at 100% 0%, rgba(var(--c-lav), 0.48), transparent 72%),
    var(--cream);
}

.club-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.about-intro p { font-size: 1.02rem; margin-bottom: 1.1rem; }
.about-intro .script { display: block; margin-top: 1.5rem; font-size: 1.5rem; }

.receive-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.4rem;
  margin-top: 0.5rem;
}

.receive-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--forest);
  line-height: 1.4;
}

.receive-grid .ri {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 5px 16px rgba(31, 94, 92, 0.07);
  color: var(--teal);
}

.receive-grid .ri svg { width: 25px; height: 25px; }

/* How it works — 4 steps */
.how-steps-4 { grid-template-columns: repeat(4, 1fr); }

/* What a week looks like */
.club-week {
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse 40% 60% at 0% 30%, rgba(var(--c-blue), 0.48), transparent 72%),
    var(--white);
}

.club-week-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.7fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.week-intro .script { display: block; margin-top: 1rem; font-size: 1.5rem; }

.week-card {
  background: var(--cream);
  border-radius: calc(var(--radius) * 1.6);
  box-shadow: var(--shadow-soft);
  padding: 2.4rem clamp(1.5rem, 3vw, 2.6rem);
}

.week-card-head { text-align: center; margin-bottom: 1.8rem; }
.week-card-head .eyebrow { margin-bottom: 0.4rem; }
.week-title { font-size: 2.4rem; display: block; line-height: 1; }

.theme-pill {
  display: inline-block;
  margin: 0.7rem 0 1.1rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: rgba(var(--c-blue), 0.4);
  color: var(--forest);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.week-lead { max-width: 32rem; margin: 0 auto; font-size: 0.98rem; }

.week-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.week-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(31, 94, 92, 0.05);
}

.week-item img { width: 66px; height: 66px; object-fit: contain; margin: 0 auto 0.7rem; }

.week-item h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.week-item p { font-size: 0.82rem; line-height: 1.55; }

.week-foot { text-align: center; margin-top: 1.8rem; color: var(--teal); font-size: 0.95rem; }

/* Meet your guide */
.club-guide {
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse 45% 60% at 100% 100%, rgba(var(--c-lav), 0.48), transparent 72%),
    var(--cream);
}

.club-guide-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.2rem);
  align-items: center;
}

.guide-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.guide-copy .eyebrow { margin-bottom: 0.3rem; }

.guide-hi {
  display: block;
  font-size: 1.9rem;
  margin-bottom: 1.1rem;
}

.guide-copy p { font-size: 0.98rem; margin-bottom: 1.1rem; }
.guide-copy > .script { display: block; margin-top: 0.6rem; font-size: 1.5rem; }

.guide-quote {
  background:
    radial-gradient(ellipse 70% 70% at 70% 25%, rgba(var(--c-blue), 0.5), transparent 72%),
    rgba(var(--c-blue), 0.1);
  border-radius: calc(var(--radius) * 1.6);
  padding: 2.2rem 1.8rem;
  text-align: center;
}

.guide-quote .script {
  font-size: 1.55rem;
  line-height: 1.5;
  color: var(--forest);
}

/* Features strip */
.club-features-strip {
  background: var(--white);
  padding: 2.6rem 0;
  border-top: 1px solid rgba(44, 122, 120, 0.1);
}

.club-features-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: var(--forest);
}

.feature svg { width: 27px; height: 27px; color: var(--teal); flex-shrink: 0; }

/* Club-page responsive */
@media (max-width: 1000px) {
  .club-about-grid { grid-template-columns: 1fr; }
  .how-steps-4 { grid-template-columns: repeat(2, 1fr); row-gap: 2.6rem; }
  .club-week-grid { grid-template-columns: 1fr; }
  .club-guide-grid { grid-template-columns: 1fr 1fr; }
  .guide-quote { grid-column: 1 / -1; }
  .club-features-strip .wrap { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
}

@media (max-width: 760px) {
  .how-steps-4 { grid-template-columns: 1fr; }
  .week-items { grid-template-columns: repeat(2, 1fr); }
  .club-guide-grid { grid-template-columns: 1fr; }
  .guide-photo { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 460px) {
  .receive-grid { grid-template-columns: repeat(2, 1fr); }
  .week-items { grid-template-columns: 1fr; }
  .club-features-strip .wrap { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Self-Love Club — content v2 (two-column hero, receive-7, feeling)
   ========================================================================== */

/* Two-column hero */
.club-hero-split { text-align: left; padding: 9rem 0 5rem; }

.club-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.club-hero-copy h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); margin-bottom: 0.4rem; }
.club-hero-copy .script { display: block; margin: 0.7rem 0 1.4rem; }
.club-hero-copy p.lead { max-width: 34rem; margin: 0 0 1.9rem; }
.club-hero-copy .small-print { font-size: 0.85rem; color: rgba(74, 74, 74, 0.75); margin-top: 0.9rem; }

.club-hero-figure { position: relative; }

.club-hero-figure > img {
  width: 100%;
  border-radius: 46% 54% 52% 48% / 44% 46% 54% 56%;
  box-shadow: var(--shadow-soft);
  -webkit-mask-image: radial-gradient(ellipse 92% 92% at 50% 50%, #000 62%, transparent 100%);
          mask-image: radial-gradient(ellipse 92% 92% at 50% 50%, #000 62%, transparent 100%);
}

.club-hero-figure .butterfly-accent {
  position: absolute;
  width: 82px;
  top: -22px;
  left: -18px;
  transform: rotate(-12deg);
  animation: flutter 5s ease-in-out infinite;
}

/* Centered section title (serif, understated) */
.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
}

/* What you'll receive each month — 7 items */
.club-receive {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 44% 55% at 94% 12%, rgba(var(--c-blue), 0.32), transparent 72%),
    radial-gradient(ellipse 42% 55% at 4% 90%, rgba(var(--c-lav), 0.32), transparent 72%),
    radial-gradient(ellipse 42% 55% at 48% 50%, rgba(var(--c-teal), 0.14), transparent 68%),
    var(--white);
}

.receive7 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.4rem;
}

.receive7 .item { text-align: center; }

.receive7 .ri-img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto 0.8rem;
  display: block;
}

.receive7 h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.receive7 p { font-size: 0.8rem; line-height: 1.5; }

/* If you've been feeling */
.club-feeling {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: var(--seafoam);
}
.club-feeling .wrap { position: relative; z-index: 1; }

/* Green leaves draping from the top-left corner, faded */
.feeling-leaves {
  position: absolute;
  top: -36%;
  left: -13%;
  width: min(500px, 55%);
  z-index: 0;
  opacity: 0.75;
  mix-blend-mode: screen;
  transform: rotate(135deg);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 45%, #000 55%, transparent 82%);
          mask-image: radial-gradient(ellipse 70% 80% at 50% 45%, #000 55%, transparent 82%);
}
/* Mirror copy draping in from the bottom-right corner */
.feeling-leaves-2 {
  top: auto;
  left: auto;
  bottom: -36%;
  right: -13%;
  transform: scaleX(-1) rotate(45deg);
}

.club-feeling-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.feeling-list { list-style: none; margin: 1.4rem 0; }

.feeling-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.feeling-list li::before { content: "\2661"; position: absolute; left: 0; color: var(--teal); }

.feeling-copy > p { font-size: 0.98rem; margin-top: 0.6rem; }
.feeling-copy .script { display: block; margin-top: 1.2rem; font-size: 1.55rem; }

.feeling-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* Responsive */
@media (max-width: 1000px) {
  .club-hero-grid { grid-template-columns: 1fr; }
  .club-hero-figure { max-width: 420px; margin: 0 auto; order: -1; }
  .club-hero-split { text-align: center; }
  .club-hero-copy p.lead { margin-inline: auto; }
  .receive7 { grid-template-columns: repeat(3, 1fr); row-gap: 2.4rem; }
}

@media (max-width: 700px) {
  .receive7 { grid-template-columns: repeat(2, 1fr); }
  /* Stack the two halves and center them so the section reads cohesively */
  .club-feeling-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .feeling-photo { order: -1; }
  .feeling-copy { max-width: 30rem; }
  /* Center the list as a block while keeping each line left-aligned and tidy */
  .feeling-list { display: inline-block; text-align: left; margin-inline: auto; }
  .feeling-list li br { display: none; }
}

/* ==========================================================================
   Self-Love Club — v2 refinements (arched hero, butterfly fix, creative gallery)
   ========================================================================== */

/* Let the floating butterfly sit outside the image without being clipped */
.club-hero-split { overflow: visible; }

/* Arched-top hero image — cohesive with the brand but distinct from the home oval */
.club-hero-figure > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 46% 46% 14px 14px / 40% 40% 4% 4%;
  box-shadow: var(--shadow-soft);
  -webkit-mask-image: none;
          mask-image: none;
}

.club-hero-figure .butterfly-accent {
  top: -16px;
  left: -22px;
  width: 74px;
}

/* Chalk affirmations send-off (bottom of the club page) */
.chalk-band {
  position: relative;
  overflow: hidden;
  padding: 2.75rem 0 5.5rem;
  text-align: center;
}

/* Teal watercolor glow bleeding down from the section above */
.chalk-band::before,
.chalk-band::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(34px);
  border-radius: 46% 54% 52% 48% / 50% 46% 54% 50%;
}
.chalk-band::before {
  top: -280px;
  left: 50%;
  width: 1120px;
  height: 660px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(44, 122, 120, 0.32) 0%, rgba(23, 93, 102, 0.20) 46%, transparent 76%);
}
.chalk-band::after {
  top: -210px;
  left: 44%;
  width: 820px;
  height: 520px;
  transform: translateX(-50%) rotate(-5deg);
  background: radial-gradient(ellipse at center, rgba(23, 93, 102, 0.22), transparent 74%);
}
.chalk-band .wrap { position: relative; z-index: 1; }

.chalk-intro { display: block; font-size: 1.7rem; margin-bottom: 2rem; }

.chalk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.chalk-grid figure { margin: 0; }

.chalk-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 780px) {
  .chalk-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Club hero image — full, uncropped photo in a soft rounded rectangle */
.club-hero-figure > img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: fill;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  -webkit-mask-image: none;
          mask-image: none;
}

/* Hero photo = clean oval (rounded), full image; floating butterfly = fully visible, never clipped */
.club-hero-figure .club-hero-photo {
  width: 100%;
  border-radius: 46% 54% 52% 48% / 44% 46% 54% 56%;
  box-shadow: var(--shadow-soft);
  -webkit-mask-image: radial-gradient(ellipse 92% 92% at 50% 50%, #000 62%, transparent 100%);
          mask-image: radial-gradient(ellipse 92% 92% at 50% 50%, #000 62%, transparent 100%);
}

/* Watercolor illustration variant — no photo frame, shadow, or crop */
.club-hero-figure .club-hero-illustration {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  -webkit-mask-image: none;
          mask-image: none;
}

.club-hero-figure .butterfly-accent {
  position: absolute;
  width: 88px;
  top: -20px;
  left: -28px;
  transform: rotate(-12deg);
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto;
  animation: flutter 5s ease-in-out infinite;
}

/* "Is this for you?" intro line */
.feeling-intro { font-size: 1.1rem; margin-bottom: 1.1rem; color: var(--forest); }

/* "Is this for you?" — smaller, centered photo; more room for the text.
   Scoped to larger screens so the mobile rule below can stack the two halves. */
@media (min-width: 701px) {
  .club-feeling-grid { grid-template-columns: 1.3fr 0.7fr; }
}
.feeling-photo { display: flex; justify-content: center; }
.feeling-photo img { max-width: 330px; }

/* Floating watercolor butterfly now lives in the "Is this for you?" section */
.feeling-photo { position: relative; width: fit-content; margin-inline: auto; display: block; }

.feeling-photo .butterfly-accent {
  position: absolute;
  width: 78px;
  top: 24px;
  left: -416px;
  transform: rotate(32deg);
  border-radius: 0;
  box-shadow: none;
  max-width: none;
  animation: flutter-right 5s ease-in-out infinite;
}

/* Keep the butterfly tidy at the photo corner once columns stack */
@media (max-width: 700px) {
  .feeling-photo .butterfly-accent { top: -18px; left: -14px; }
}

/* Butterfly angled as if flying from the text toward the photo */
@keyframes flutter-right {
  0%, 100% { transform: rotate(30deg) translate(0, 0); }
  50%      { transform: rotate(36deg) translate(6px, -8px); }
}


/* ==========================================================================
   About Lauren page
   ========================================================================== */
.about-title {
  font-family: var(--font-script);
  color: var(--teal);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.about-title.center { text-align: center; }

.about-note { color: var(--forest); font-weight: 500; }

.about-section { padding: 4.5rem 0; }
.about-section.bg-sage { background: var(--seafoam); }
.about-section.bg-white {
  background:
    radial-gradient(ellipse 46% 55% at 4% 10%, rgba(var(--c-blue), 0.34), transparent 72%),
    radial-gradient(ellipse 48% 55% at 100% 92%, rgba(var(--c-lav), 0.34), transparent 72%),
    radial-gradient(ellipse 44% 50% at 52% 46%, rgba(var(--c-teal), 0.16), transparent 68%),
    var(--white);
}
.about-section.bg-cream {
  background:
    radial-gradient(ellipse 46% 55% at 100% 12%, rgba(var(--c-lav), 0.34), transparent 72%),
    radial-gradient(ellipse 44% 55% at 0% 90%, rgba(var(--c-blue), 0.32), transparent 72%),
    radial-gradient(ellipse 44% 50% at 18% 18%, rgba(var(--c-teal), 0.15), transparent 68%),
    var(--cream);
}

/* Dark teal section — matched to the club hero / Ready to Join card */
.about-section.bg-teal {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 55% at 88% 8%, rgba(var(--c-blue), 0.22), transparent 66%),
    radial-gradient(ellipse 55% 60% at 6% 94%, rgba(var(--c-lav), 0.20), transparent 70%),
    linear-gradient(158deg, #2A7A78 0%, #1C6469 100%);
}
.about-section.bg-teal .wrap { position: relative; z-index: 1; }
.about-section.bg-teal .about-title,
.about-section.bg-teal .about-copy p { color: var(--cream); }
.about-section.bg-teal .about-copy p.about-note { color: var(--seafoam); }

/* Green leaves rising from the bottom-left corner, partially behind the photo */
.finding-leaves {
  position: absolute;
  left: -3%;
  bottom: -12%;
  width: min(460px, 46%);
  z-index: 0;
  opacity: 0.8;
  mix-blend-mode: screen;
  transform: rotate(22deg);
  pointer-events: none;
}
/* Desktop: stem emerges from the bottom-left corner and the foliage sweeps up around the photo */
@media (min-width: 901px) {
  .finding-leaves {
    left: max(-423px, -34.5vw);
    bottom: max(-238px, -18.7vw);
    width: min(660px, 52%);
    transform: rotate(48deg);
    transform-origin: 55% 81%;
  }
  /* Raise the photo (top-align it) so more of the leaves show below */
  .bg-teal .about-photo { align-self: start; }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .finding-leaves {
    left: -38%;
    width: 48%;
    transform: rotate(42deg);
  }
}

.about-copy p, .about-narrow p, .about-col p { margin-bottom: 1.05rem; }

/* Hero — full-bleed photo with just the page title */
.about-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(540px, 80vh, 760px);
  padding: 7rem 0 1.2rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 78, 88, 0.32) 0%, rgba(17, 78, 88, 0.1) 18%, rgba(17, 78, 88, 0.08) 70%, rgba(17, 78, 88, 0.42) 100%),
    url("../images/about-hero-me4.webp") center 22% / cover no-repeat;
}
/* Teal frosted-glass layer over the photo */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(20, 86, 94, 0.34);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  pointer-events: none;
}
.about-hero > .wrap { position: relative; z-index: 1; }
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.about-hero-title {
  font-family: var(--font-heading);
  color: var(--cream);
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-align: left;
  margin: 0;
  text-shadow: 0 2px 18px rgba(10, 38, 44, 0.6);
}
.about-hero-welcome { display: block; margin: 0.3rem 0 1.4rem; }

@media (max-width: 820px) {
  .about-hero { min-height: 74vh; padding: 8rem 0 4rem; }
}

/* Split text + image */
.about-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-split.reverse { grid-template-columns: 0.85fr 1.15fr; }
.about-split.reverse .about-photo { order: -1; }

.about-photo img {
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.about-split.reverse .about-photo img {
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
}

/* My Story — even 50/50 split with the tree photo filling its half */
.about-mystory { position: relative; overflow: hidden; }
.about-mystory .about-split { position: relative; z-index: 1; grid-template-columns: 1fr 1fr; }
.about-mystory .about-photo img { max-width: none; }

@media (min-width: 901px) {
  .about-mystory .about-photo img {
    height: 560px;
    aspect-ratio: auto;
    object-fit: cover;
  }
}

/* Faded butterflies on the About page */
.about-fly {
  position: absolute;
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 92% 58% at 50% 45%, #000 55%, transparent 82%);
          mask-image: radial-gradient(ellipse 92% 58% at 50% 45%, #000 55%, transparent 82%);
}
/* Above the tree picture, tilted facing left */
.about-fly-1 { right: 16%; top: -10%; width: min(220px, 30%); transform: rotate(-16deg); }
/* On mobile the tree image is full-width, so hide the butterfly behind it */
@media (max-width: 760px) {
  .about-fly-1 { display: none; }
}
/* Coming up from the bottom of My Story, near the middle, tilted right */
.about-fly-2 { left: 38%; bottom: -12%; width: min(300px, 38%); transform: rotate(18deg); }
/* Fills the gap between "Learning to Come Home" and "What I Once Mistook" once the
   two columns stack; hidden on desktop where the columns sit side by side. */
.about-fly-gap, .about-fly-gap2 { display: none; }
@media (max-width: 900px) {
  .about-fly-2 { display: none; }
  .about-fly-gap { display: block; left: 50%; top: -180px; width: min(230px, 62%); transform: translateX(-50%) rotate(-12deg); }
  /* A second, larger butterfly tilted right, filling the gap above "Learning to Come Home" */
  .about-col-left { position: relative; }
  .about-fly-gap2 { display: block; left: 50%; top: -120px; width: min(175px, 46%); transform: translateX(-50%) rotate(14deg); }
}
/* Bottom-right of the Flaws section, coming in from off the page edge */
.about-col-right { position: relative; }
.about-col-right > *:not(img) { position: relative; z-index: 1; }
.about-fly-3 { right: -5%; bottom: -12%; width: min(240px, 46%); transform: rotate(-30deg); }
/* Thank you section — bottom-left corner (from off the page, tilted right) and top-right (tilted slightly left) */
.about-thankyou .wrap { position: relative; z-index: 1; }
.about-fly-4 { left: -5%; bottom: -34%; width: min(290px, 46%); transform: rotate(20deg); }
.about-fly-5 { right: 6%; top: 6%; width: min(190px, 32%); transform: rotate(-10deg); }

@media (min-width: 901px) {
  .about-fly-4 { left: -2%; }
}

/* Narrow text blocks */
.about-narrow { max-width: 680px; }
.about-narrow.center { margin-inline: auto; text-align: center; }
.about-narrow.center .about-title { text-align: center; }

.about-origin {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.about-origin-section {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  background:
    radial-gradient(ellipse 42% 62% at 0% 45%, rgba(var(--c-blue), 0.25), transparent 72%),
    radial-gradient(ellipse 40% 60% at 100% 55%, rgba(var(--c-lav), 0.25), transparent 72%),
    var(--cream);
}

.about-origin .about-title {
  text-align: center;
  margin-bottom: 1.6rem;
}

.about-origin p + p { margin-top: 0.95rem; }

.about-origin-butterfly {
  position: absolute;
  right: -2%;
  top: 8%;
  width: min(230px, 22vw);
  opacity: 0.12;
  transform: rotate(-14deg);
  pointer-events: none;
}

.about-origin-butterfly-left {
  display: none;
}

@media (min-width: 761px) {
  .about-origin-butterfly-left {
    display: block;
    position: absolute;
    left: -5%;
    bottom: -14%;
    width: min(300px, 28vw);
    opacity: 0.12;
    transform: rotate(18deg);
    pointer-events: none;
  }
}

@media (max-width: 760px) {
  .about-origin-section { padding: 3.8rem 0; }
  .about-origin-butterfly {
    right: -5%;
    top: -2%;
    width: 180px;
    transform: rotate(-20deg);
  }
}

/* Heart list */
.about-list { list-style: none; margin: 1.2rem 0 1.4rem; }
.about-list li { position: relative; padding-left: 1.9rem; margin-bottom: 0.55rem; font-size: 1.02rem; }
.about-list li::before { content: "\2661"; position: absolute; left: 0; color: var(--teal); }

/* Pillars row */
.about-pillars {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.6rem;
}
.about-pillars figure { margin: 0; text-align: center; width: 110px; }
.about-pillars img { width: 92px; height: 92px; object-fit: contain; margin: 0 auto 0.5rem; }
.about-pillars figcaption { font-family: var(--font-script); color: var(--teal); font-size: 1.25rem; }

/* A few things cards */
.about-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 2.6rem;
}
.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.3rem;
  box-shadow: 0 5px 18px rgba(31, 94, 92, 0.06);
}
.about-card .ac-ic { display: block; color: var(--teal); margin-bottom: 0.7rem; }
.about-card .ac-ic svg { width: 30px; height: 30px; }
.about-card p { font-size: 0.9rem; line-height: 1.65; }

/* Thank you closing */
.about-thankyou {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 5rem 0 6rem;
  background:
    radial-gradient(ellipse 50% 65% at 0% 30%, rgba(var(--c-blue), 0.4), transparent 72%),
    radial-gradient(ellipse 50% 65% at 100% 40%, rgba(var(--c-lav), 0.38), transparent 72%),
    radial-gradient(ellipse 52% 55% at 50% 110%, rgba(var(--c-teal), 0.14), transparent 70%),
    var(--cream);
}
.about-thankyou .thankyou-butterfly { width: 76px; margin: 0 auto 1.2rem; opacity: 0.95; }
.about-thankyou h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.about-thankyou p { max-width: 40rem; margin: 0 auto 0.8rem; }
.about-sign { display: block; font-size: 2rem; margin-top: 1rem; }

/* Responsive */
@media (max-width: 900px) {
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-figure { max-width: 420px; margin: 0 auto; order: -1; }
  .about-hero-copy p { max-width: none; }
  .about-split, .about-split.reverse { grid-template-columns: 1fr; }
  .finding-leaves { display: none; }
  /* My Story uses a higher-specificity 2-col rule; collapse it to a single column too */
  .about-mystory .about-split { grid-template-columns: 1fr; }
  .about-split.reverse .about-photo, .about-photo { order: -1; }
  .about-cards { grid-template-columns: repeat(2, 1fr); }
  /* Thank you section — right butterfly higher in the corner, tilted left; bottom-left nudged up */
  .about-fly-5 { top: -5%; right: 0%; transform: rotate(-24deg); }
  .about-fly-4 { bottom: -30%; }
}
@media (max-width: 560px) {
  .about-cards { grid-template-columns: 1fr; }
}

/* About — two-column split (Coming Home | Flaws), like the home believe/for split */
.about-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background:
    radial-gradient(ellipse 46% 55% at 4% 10%, rgba(var(--c-blue), 0.34), transparent 72%),
    radial-gradient(ellipse 48% 55% at 100% 92%, rgba(var(--c-lav), 0.34), transparent 72%),
    radial-gradient(ellipse 44% 50% at 52% 46%, rgba(var(--c-teal), 0.16), transparent 68%),
    var(--white);
}
.about-col { padding: 4.5rem clamp(2rem, 5vw, 5rem); }
@media (max-width: 900px) {
  .about-twocol { grid-template-columns: 1fr; }
}

/* About — feature image beneath My Story */
.about-feature { margin: 3rem auto 0; text-align: center; }
.about-feature img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin-inline: auto;
}

/* About — floating butterfly beside the "My Story" heading */
.about-photo { position: relative; width: fit-content; margin-inline: auto; }
.about-title .about-butterfly {
  display: inline-block;
  width: 46px;
  height: auto;
  vertical-align: middle;
  margin-left: 0.5rem;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
  transform: rotate(-8deg);
  animation: flutter 5s ease-in-out infinite;
}

/* About — "A Few Things That Make Me…Me" as butterfly-bulleted lists */
.things-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 960px;
  margin: 2.6rem auto 0;
}
.things-list { list-style: none; }
.things-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.4rem;
  font-size: 1rem;
  line-height: 1.7;
}
.things-list li img {
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 27px;
  opacity: 0.9;
}
@media (max-width: 760px) {
  .about-title,
  .about-thankyou h2 { text-align: center; }
  .things-cols { grid-template-columns: 1fr; gap: 0; }
}

/* ==========================================================================
   Self-Love Club — dark hero treatment (matched on the home club section)
   Deeper teal that stays on-brand; cream text; lavender accents.
   ========================================================================== */
.club-hero-split {
  background:
    radial-gradient(ellipse 60% 70% at 12% 8%, rgba(var(--c-blue), 0.22), transparent 72%),
    radial-gradient(ellipse 55% 60% at 92% 18%, rgba(var(--c-lav), 0.20), transparent 70%),
    radial-gradient(ellipse 55% 45% at 85% 105%, rgba(var(--c-lav), 0.18), transparent 70%),
    linear-gradient(158deg, #2A7A78 0%, #1C6469 100%);
}

.club-hero-split .club-hero-copy h1 { color: var(--cream); }
.club-hero-split .club-hero-copy p.lead { color: rgba(248, 245, 239, 0.92); }
.club-hero-split .club-hero-copy .script { color: var(--seafoam); }
.club-hero-split .club-hero-copy .small-print { color: rgba(248, 245, 239, 0.72); }
.club-hero-split .club-hero-copy .club-hero-note {
  color: var(--cream);
  font-weight: 700;
  max-width: 34rem;
  margin: 0 auto 1.9rem;
}

/* Lavender "membership" badge */
.club-hero-split .eyebrow {
  display: inline-block;
  color: var(--forest);
  background: var(--lavender);
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  margin-bottom: 1.5rem;
}

/* Lavender Join button */
.club-hero-split .btn-primary {
  background: var(--lavender);
  color: var(--forest);
  border-color: var(--lavender);
}
.club-hero-split .btn-primary:hover {
  background: #c9b8d6;
  border-color: #c9b8d6;
}

/* Centered hero layout — art on top, copy centered below */
.club-hero-split .club-hero-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 0;
  max-width: 720px;
  margin-inline: auto;
}
.club-hero-split .club-hero-figure {
  order: -1;
  width: min(540px, 90%);
  margin: 0 auto 1.2rem;
  background: radial-gradient(ellipse 36% 60% at 50% 50%, rgba(238, 248, 244, 0.45), rgba(238, 248, 244, 0.16) 45%, transparent 72%);
}
.club-hero-split .club-hero-copy p.lead { margin-inline: auto; }

/* Light header over the dark club hero and the About photo hero */
.page-club .main-nav a,
.page-about-hero .main-nav a { color: var(--cream); }
.page-club .main-nav a:hover,
.page-about-hero .main-nav a:hover { color: var(--seafoam); }
.page-club .nav-song,
.page-about-hero .nav-song { color: var(--cream) !important; border-color: rgba(248, 245, 239, 0.6); }
.page-club .nav-song:hover,
.page-about-hero .nav-song:hover { background-color: rgba(248, 245, 239, 0.14); }
.page-club .nav-toggle-label span,
.page-club .nav-toggle-label span::before,
.page-club .nav-toggle-label span::after,
.page-about-hero .nav-toggle-label span,
.page-about-hero .nav-toggle-label span::before,
.page-about-hero .nav-toggle-label span::after { background-color: var(--cream); }

@media (max-width: 860px) {
  .page-club .main-nav a,
  .page-about-hero .main-nav a {
    color: var(--forest);
  }

  .page-club .nav-toggle:checked ~ .nav-toggle-label span,
  .page-about-hero .nav-toggle:checked ~ .nav-toggle-label span {
    background-color: transparent;
  }

  .page-club .nav-toggle:checked ~ .nav-toggle-label span::before,
  .page-club .nav-toggle:checked ~ .nav-toggle-label span::after,
  .page-about-hero .nav-toggle:checked ~ .nav-toggle-label span::before,
  .page-about-hero .nav-toggle:checked ~ .nav-toggle-label span::after {
    background-color: var(--forest);
  }
}

/* ==========================================================================
   Home page Self-Love Club banner — dark to match the club hero
   ========================================================================== */
.club-banner {
  background:
    radial-gradient(ellipse 55% 80% at 100% 60%, rgba(var(--c-lav), 0.22), transparent 72%),
    radial-gradient(ellipse 50% 70% at 0% 40%, rgba(var(--c-blue), 0.20), transparent 72%),
    linear-gradient(150deg, #2A7A78 0%, #1C6469 100%) !important;
}

.club-banner h2,
.club-banner .club-copy p,
.club-banner .club-features div { color: var(--cream); }

.club-banner .eyebrow { color: var(--seafoam); }

.club-banner h2 .heart { color: var(--lavender); }

.club-banner .club-features .mark { color: var(--lavender); }

.club-banner .btn-primary {
  background: var(--lavender);
  color: var(--forest);
  border-color: var(--lavender);
}
.club-banner .btn-primary:hover {
  background: #c9b8d6;
  border-color: #c9b8d6;
}
