:root {
  --bg1: #5d43d6;
  --bg2: #8d5bf1;
  --bg3: #f4a6d8;
  --ink: #2b2151;
  --white: #ffffff;
  --pink: #ff77c8;
  --pink2: #ff9cda;
  --blue: #71d6ff;
  --lavender: #d6c7ff;
  --gold: #ffd36b;
  --shadow: 0 18px 40px rgba(68, 37, 124, 0.22);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at 10% 12%, rgba(255,255,255,.95) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.7) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 75% 16%, rgba(255,255,255,.85) 0 1px, transparent 2px),
    radial-gradient(circle at 85% 30%, rgba(255,255,255,.55) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 35% 70%, rgba(255,255,255,.5) 0 1px, transparent 2px),
    linear-gradient(180deg, #c6b4f7 0%, #d2c0f8 22%, #e0cdf7 45%, #f3cdee 72%, #faecff 100%);
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto 0 0 0;
  height: 180px;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: 0;
  height: 240px;
  background: radial-gradient(70% 120% at 50% 0%, rgba(255,255,255,.22), transparent 70%);
}

body::after {
  background:
    radial-gradient(55% 90% at 15% 100%, rgba(255,255,255,.35), transparent 60%),
    radial-gradient(45% 75% at 85% 100%, rgba(255,255,255,.28), transparent 60%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(87, 58, 181, .9), rgba(112, 83, 216, .8));
  border-bottom: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 8px 24px rgba(53, 34, 110, .22);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img {
  width: 78px;
  border-radius: 18px;
}

.brand-text strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
}

.brand-text span {
  color: rgba(255,255,255,.88);
  font-size: .9rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.menu a {
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(0,0,0,.15);
}

.menu a:hover,
.menu a.active {
  background: rgba(255,255,255,.16);
}

.nav-cta {
  background: linear-gradient(135deg, #ffb96a, #ff7dc8);
  color: #fff;
  box-shadow: 0 10px 18px rgba(255,124,188,.32);
}

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

.hero-shell {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(140deg, #6a4cd4 0%, #8a5fe6 48%, #c46bd4 100%);
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: var(--shadow);
  border-radius: 36px;
  padding: 34px;
  overflow: hidden;
  position: relative;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: auto -10% -20% auto;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255,255,255,.4), transparent 70%);
}

.eyebrow {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: #5a31ae;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1,
.page-hero h1,
.section-title,
.script-title {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  letter-spacing: .2px;
}

.hero h1 {
  margin: 0 0 6px;
  font-size: clamp(1.9rem, 7vw, 5rem);
  line-height: .95;
  color: #fff;
  text-shadow: 0 4px 22px rgba(86, 48, 170, .42);
  white-space: nowrap;
}

.hero h1 span {
  display: inline;
}

.hero p.lead {
  font-size: 1.2rem;
  margin: 18px 0;
  color: #fff;
}

.hero .intro-card {
  background: rgba(255,255,255,.78);
  border-radius: 24px;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(94,63,170,.16);
  max-width: 640px;
}

.hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--blue), #8c81ff);
  color: #fff;
  box-shadow: 0 10px 18px rgba(111, 89, 223, .22);
}

.button.secondary {
  background: linear-gradient(135deg, #ffaddd, #ff7dc8);
}

.button.gold {
  background: linear-gradient(135deg, #ffdb7d, #ffb55e);
}

.hero-visual {
  position: relative;
}

.hero-visual .glow-panel {
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,.14));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.3);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  border-radius: 26px;
  width: 100%;
  height: auto;
}

.quick-grid,
.feature-grid,
.impact-grid,
.cards-3,
.form-grid,
.page-grid {
  display: grid;
  gap: 22px;
}

.quick-grid,
.feature-grid,
.impact-grid,
.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-grid {
  grid-template-columns: 1.15fr .85fr;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section {
  padding: 34px 0;
}

.section-tight {
  padding-top: 18px;
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-align: center;
  color: #5a31ae;
}

.section-subtitle {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 26px;
  font-size: 1.2rem;
  line-height: 1.55;
}

.card,
.panel,
.stat-card,
.tier-card,
.form-card {
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.card,
.panel,
.form-card {
  padding: 24px;
}

.card h3,
.stat-card h3,
.tier-card h3 {
  margin-top: 0;
}

.stat-card {
  padding: 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,227,245,.7));
}

.stat-card strong {
  display: block;
  font-size: 1.45rem;
  color: #693ac4;
  margin-bottom: 6px;
}

.highlight-card {
  background: linear-gradient(135deg, rgba(255, 198, 233, .55), rgba(180, 235, 255, .6));
}

.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(255,255,255,.45));
}

.banner-strip {
  padding: 24px 28px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.84), rgba(255,245,252,.72));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-strip h3 {
  margin: 0 0 6px;
}

.banner-strip p {
  margin: 0;
}

.about-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.avatar-wrap {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.35), rgba(255,255,255,.1));
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: var(--shadow);
}

.avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-box {
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(252,239,248,.84));
  padding: 22px;
  border-radius: 26px;
  border-left: 6px solid var(--pink);
}

.list-clean {
  padding-left: 18px;
  margin: 0;
}

.list-clean li + li {
  margin-top: 8px;
}

.tier-card {
  padding: 24px;
  text-align: center;
}

.tier-card .amount {
  font-size: 2rem;
  color: #5c31b0;
  font-weight: 900;
}

.tier-card p {
  margin-bottom: 0;
}

.notice {
  padding: 16px 18px;
  background: rgba(255,255,255,.66);
  border-radius: 20px;
}

form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(99,77,167,.22);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  background: rgba(255,255,255,.92);
  color: var(--ink);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  margin-bottom: 16px;
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox-row input {
  width: 20px;
  margin-top: 4px;
}

.small {
  font-size: .95rem;
  opacity: .88;
}

.footer {
  margin-top: 48px;
  padding: 34px 0 44px;
  color: #fff;
  background: linear-gradient(180deg, #3a2a7a 0%, #2b2151 100%);
}

.footer-shell {
  border-top: 1px solid rgba(255,255,255,.26);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a {
  color: #fff;
  opacity: .92;
}

/* Site-wide copyright line — shows on every page that uses .footer-shell.
   Edit the text (and the year) here in one place. */
.footer-shell::after {
  content: "© 2026 Glow & Grow Girls. All Rights Reserved.";
  flex-basis: 100%;
  text-align: center;
  margin-top: 8px;
  font-size: .85rem;
  opacity: .8;
}

.page-hero {
  padding: 46px 0 18px;
}

.page-hero-shell {
  padding: 28px 30px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,243,251,.7));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  color: #602fb3;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0 0 10px;
}

.page-hero p {
  max-width: 860px;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.55;
}

.about-page-hero {
  padding-bottom: 10px;
}

.about-hero-shell {
  background: linear-gradient(180deg, rgba(255,248,239,.94), rgba(255,244,236,.82));
  border: 1px solid rgba(255,255,255,.55);
}

.about-title-wrap {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-eyebrow {
  background: linear-gradient(135deg, rgba(255,202,227,.78), rgba(255,230,187,.7));
  color: #9e4b65;
}

.left-title {
  text-align: left;
}

.about-intro-enhanced {
  align-items: stretch;
}

.avatar-wrap-soft {
  background: linear-gradient(180deg, rgba(255,246,235,.88), rgba(255,231,206,.62));
  padding: 12px;
}

.story-box {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.soft-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,243,238,.72));
}

.panel-script {
  margin-top: 0;
  color: #d6677e;
  font-size: 2.5rem;
}

.feature-list li + li {
  margin-top: 10px;
}

.mission-card {
  text-align: center;
}

.mission-card .icon-badge {
  margin-left: auto;
  margin-right: auto;
}

/* ================================
   HOMEPAGE FEATURE VIDEO
================================ */

.video-feature {
  padding: 72px 0;
}

.video-shell {
  background: linear-gradient(180deg, #fff7fb 0%, #fff 100%);
  border: 1px solid rgba(226, 173, 202, 0.35);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(160, 92, 130, 0.12);
  padding: 28px;
}

.video-feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.video-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b05b8d;
  margin-bottom: 12px;
}

.video-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  color: #7d2d5c;
}

.video-copy p {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5c4a56;
}

.video-points {
  margin: 18px 0 24px;
  padding-left: 1.2rem;
  color: #5c4a56;
}

.video-points li {
  margin: 0 0 10px;
  line-height: 1.6;
}

.video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.video-frame {
  position: relative;
  background: #f7eef4;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(125, 45, 92, 0.16);
}

.video-frame video {
  display: block;
  width: 100%;
  height: auto;
}

.video-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(125, 45, 92, 0.88);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ================================
   RESOURCE PAGE VIDEO CARDS
================================ */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.video-card {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(241,233,255,.7));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.38);
  overflow: hidden;
}

.video-thumb {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #f8f1f6;
  margin-bottom: 14px;
}

.video-thumb::after {
  content: none;
}

.video-thumb video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  background: #000;
  border-radius: 18px;
}

.video-card h3 {
  margin: 0 0 10px;
  color: #7d2d5c;
  font-size: 1.15rem;
  line-height: 1.25;
}
.video-card p {
  margin: 0;
  color: #5c4a56;
  line-height: 1.6;
  font-size: 0.98rem;
}
.video-card-body {
  padding-top: 2px;
}

.video-card-body h3 {
  margin: 0 0 10px;
}

.video-card-body p {
  margin: 0;
}
/* ================================
   RESPONSIVE
================================ */

@media (max-width: 980px) {
  .hero-shell,
  .about-intro,
  .page-grid,
  .video-feature-grid {
    grid-template-columns: 1fr;
  }

  .quick-grid,
  .feature-grid,
  .impact-grid,
  .cards-3,
  .video-grid,
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .quick-grid,
  .feature-grid,
  .impact-grid,
  .cards-3,
  .video-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell,
  .page-hero-shell,
  .card,
  .panel,
  .form-card,
  .video-shell {
    padding: 20px;
  }

  .menu {
    gap: 4px;
  }

  .menu a {
    padding: 8px 10px;
    font-size: .94rem;
  }

  .video-card {
    padding: 16px;
  }

}

.volunteer-intro-section {
  padding-top: 60px;
}

.volunteer-intro-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
  background: #fff7f1;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(120, 61, 91, 0.12);
}
/* ===== Resources Page: Confidence Team Grid ===== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 32px;
}

.team-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(120, 61, 91, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(120, 61, 91, 0.18);
}

.team-avatar {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: block;
}

.team-card-body h3 {
  margin: 8px 0 4px;
  font-size: 1.7rem;
}

.team-card-body .role {
  color: #b85f8a;
  font-weight: 700;
  margin-bottom: 12px;
}

.team-card-body p {
  font-size: 0.96rem;
}

.button.small {
  padding: 9px 15px;
  font-size: 0.9rem;
  margin-top: 10px;
}

.tutorial-section {
  padding-top: 40px;
}

.placeholder-thumb {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8d9e8, #fff3cc);
  color: #8a3d67;
  font-weight: 800;
  border-radius: 18px;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-avatar {
    max-width: 220px;
  }
}




/* ============================================================
   Resources page — section heading block + story box
   (added during cleanup: .section-heading was used in markup
   but had no rule; replaces the old inline color/font styles)
   ============================================================ */
.section-heading {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 26px;
}
.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #5a31ae;
}
.section-heading p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.08rem;
}
.section-heading.on-gradient h2,
.section-heading.on-gradient p {
  color: #fff;
}
.story-box .story-name {
  margin: 0;
  font-weight: 700;
  font-size: 1.5rem;
  color: #c27ba0;
}
.story-box .story-role {
  margin: 2px 0 14px;
  font-weight: 700;
  font-size: 1.15rem;
  color: #c27ba0;
}


/* ============================================================
   HAMBURGER NAVIGATION (added in redesign)
   ============================================================ */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.18);
  cursor: pointer;
  flex: 0 0 auto;
}
.menu-toggle:hover { background: rgba(255,255,255,.28); }
.menu-toggle .menu-bar {
  display: block;
  width: 24px;
  height: 3px;
  margin: 0 auto;
  border-radius: 3px;
  background: #fff;
  transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle.is-open .menu-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open .menu-bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav { flex-wrap: nowrap; justify-content: space-between; position: relative; }
  .menu-toggle { display: flex; }
  .menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(87,58,181,.98), rgba(112,83,216,.98));
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 20px 36px rgba(40,24,90,.34);
  }
  .menu.is-open { display: flex; }
  .menu a { padding: 12px 16px; text-align: center; font-size: 1rem; }
  .menu .nav-cta { margin-top: 4px; }
}

@media (max-width: 560px) {
  .brand img { width: 56px; border-radius: 14px; }
  .brand-text strong { font-size: 1.08rem; }
  .brand-text span { font-size: .78rem; }
  .brand { min-width: 0; }
}

/* ============================================================
   FOOTER SEPARATORS (emoji)
   ============================================================ */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.footer-sep { opacity: .85; font-size: .85rem; }

/* ============================================================
   SPONSOR LOGO WALL
   ============================================================ */
.sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin-top: 6px;
}
.sponsor-tile {
  flex: 1 1 180px;
  max-width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 22px;
  padding: 24px 22px;
  min-height: 132px;
  box-shadow: 0 14px 32px rgba(120, 92, 180, 0.16);
  border: 1px solid rgba(255,255,255,.9);
  transition: transform .2s ease, box-shadow .2s ease;
}
.sponsor-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(120, 92, 180, 0.26);
}
.sponsor-tile img { max-height: 88px; width: auto; object-fit: contain; }
.sponsor-note {
  text-align: center;
  margin-top: 26px;
  color: #2b2151;
  font-weight: 700;
}
.sponsor-note a { color: #7d2d5c; text-decoration: underline; }

/* ============================================================
   RESOURCES — PRINTABLE FORMS
   ============================================================ */
.resource-row,
.resource-block {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 16px 36px rgba(120, 92, 180, 0.16);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 26px;
}
.resource-row {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
}
.resource-tag {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd36b, #ff9cda);
  color: #6a2f57;
  font-weight: 800;
  font-size: .74rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.resource-info h3 { margin: .55rem 0 .5rem; color: #7d2d5c; font-size: 1.55rem; }
.resource-info p { margin: 0 0 1rem; }
.resource-info .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.resource-info .button { padding: 12px 20px; }

.resource-preview { display: flex; align-items: center; justify-content: center; }

/* 5x7 index card preview */
.index-card {
  width: 100%;
  max-width: 232px;
  aspect-ratio: 5 / 7;
  background: #fbf8ff;
  border: 2px solid var(--pink2);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 14px 30px rgba(120,61,91,.18);
  display: flex;
  flex-direction: column;
}
.card-logo { display: block; height: 30px; width: auto; margin: 0 auto 12px; border-radius: 6px; }
.ic-title { margin: 0 0 14px; text-align: center; color: #c27ba0; font-weight: 800; font-style: italic; font-size: 1rem; }
.ic-line { border-bottom: 1.5px solid #e4d7f8; margin-bottom: 13px; padding-bottom: 2px; }
.ic-line span { font-size: .7rem; color: #b08fd0; font-weight: 700; }
.ic-foot { margin: auto 0 0; text-align: center; font-size: .68rem; color: #b08fd0; }

/* checklist preview */
.checklist-card {
  width: 100%;
  max-width: 310px;
  background: #fbf8ff;
  border: 1px solid #e7dbff;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 14px 30px rgba(120,61,91,.18);
}
.cl-title { margin: 0 0 14px; color: #5a31ae; font-weight: 800; font-style: italic; font-size: 1.05rem; }
.cl-item { display: flex; align-items: center; gap: 11px; margin: 10px 0; font-size: .94rem; color: var(--ink); }
.cl-box {
  flex: 0 0 auto;
  width: 19px; height: 19px;
  border: 2px solid var(--pink);
  border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: .72rem; font-weight: 900;
}
.cl-box.checked { background: var(--pink); }

/* affirmation card panels (online, real business-card shape, running horizontally) */
.resource-info-wide { max-width: 100%; }
.aff-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  margin-top: 22px;
  padding: 4px 2px 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--pink2) transparent;
}
.aff-grid::-webkit-scrollbar { height: 8px; }
.aff-grid::-webkit-scrollbar-thumb { background: var(--pink2); border-radius: 999px; }
.aff-grid::-webkit-scrollbar-track { background: rgba(255,255,255,.4); border-radius: 999px; }
.aff-card {
  position: relative;
  flex: 0 0 300px;
  width: 300px;
  height: 171px;              /* 3.5 x 2 in business-card ratio */
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 22px rgba(120,61,91,.18);
  scroll-snap-align: start;
}
.aff-text { margin: 0; font-weight: 800; font-style: italic; font-size: 1.18rem; line-height: 1.25; }
.aff-dot { position: absolute; top: 12px; left: 12px; width: 8px; height: 8px; border-radius: 50%; }
.aff-logo { position: absolute; bottom: 11px; left: 50%; transform: translateX(-50%); height: 24px; width: auto; border-radius: 5px; opacity: .97; }
.aff-pink   { background: #f7e3f1; color: #d6677e; } .aff-pink   .aff-dot { background: #d6677e; }
.aff-purple { background: #e9e0ff; color: #5a31ae; } .aff-purple .aff-dot { background: #5a31ae; }
.aff-teal   { background: #dff3f8; color: #2c7c93; } .aff-teal   .aff-dot { background: #2c7c93; }
.aff-gold   { background: #fff1d6; color: #b07f12; } .aff-gold   .aff-dot { background: #e6a93c; }
.aff-hint { margin: 4px 0 0; font-size: .85rem; color: #7d2d5c; opacity: .75; }

@media (max-width: 860px) {
  .resource-row { grid-template-columns: 1fr; }
  .resource-preview { order: -1; }
}
@media (max-width: 560px) {
  .aff-card { flex-basis: 260px; width: 260px; height: 149px; }
  .aff-text { font-size: 1.05rem; }
}

@media print {
  .topbar, .footer, .menu-toggle { display: none !important; }
}


/* ============================================================
   HOME PAGE FEATURE CARDS — pink, matching .button.secondary
   ============================================================ */
.cards-3 .card {
  background: linear-gradient(135deg, #ffaddd, #ff7dc8);
  border: 0;
  color: #fff;
  box-shadow: 0 12px 22px rgba(255, 125, 200, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cards-3 .card h3,
.cards-3 .card p {
  color: #fff;
}
.cards-3 .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(255, 125, 200, .38);
}


/* ============================================================
   CONTACT INTAKE FORM additions
   ============================================================ */
.form-intro { margin: 0 0 18px; color: #5a4a86; opacity: .9; }
.form-card #request-type { font-weight: 700; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 720px) {
  .cta-buttons { width: 100%; }
  .cta-buttons .button { flex: 1 1 auto; text-align: center; }
}

.section-top { padding-top: 50px; }

/* ============================================================
   LEGAL / PRIVACY DOCUMENT
   ============================================================ */
.legal-doc { max-width: 820px; margin: 0 auto; }
.legal-title { font-size: 2.6rem; color: #5b31b0; margin: 6px 0 4px; }
.legal-updated { color: #8a7fb0; font-size: .95rem; margin: 0 0 26px; }
.legal-doc h2 { color: #7d2d5c; font-size: 1.32rem; margin: 30px 0 8px; }
.legal-doc p { margin: 0 0 14px; line-height: 1.7; }
.legal-doc .list-clean { margin: 0 0 16px; }
.legal-doc a { color: #5b31b0; text-decoration: underline; }

/* Privacy page: single solid pink background, dark readable text */
body.privacy-page { background: #f4a6d8; }
body.privacy-page .eyebrow { background: rgba(255,255,255,.55); color: #7d2d5c; }
body.privacy-page .legal-updated { color: #6e3a63; }


/* ============================================================
   SELF-ESTEEM KIT — RECIPE SHEET (kits page)
   ============================================================ */
.kit-sheet-details { margin-bottom: 26px; }

/* clickable summary row (reuses .resource-row card styling) */
.kit-sheet-summary { cursor: pointer; list-style: none; }
.kit-sheet-summary::-webkit-details-marker { display: none; }
.kit-sheet-details[open] .kit-sheet-summary { margin-bottom: 0; }

/* closed-state thumbnail */
.kit-sheet-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(245,237,255,.7));
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(120,61,91,.16);
  transition: transform .2s ease, box-shadow .2s ease;
}
.kit-sheet-thumb:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(120,61,91,.22); }
.kit-bag-img { width: 100%; max-width: 220px; height: auto; }
.kit-open-note {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #8c81ff);
  color: #fff;
  font-weight: 800;
  font-size: .92rem;
  box-shadow: 0 10px 18px rgba(111,89,223,.22);
}
.kit-sheet-details[open] .kit-open-note { background: linear-gradient(135deg, #ffaddd, #ff7dc8); }

/* opened recipe panel */
.kit-sheet-body {
  margin-top: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(246,238,255,.82));
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 36px);
}

/* intro row inside the panel */
.kit-sheet-top {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 26px;
}
.kit-sheet-top img { width: 100%; max-width: 160px; height: auto; border-radius: 16px; }
.kit-sheet-top h3 { margin: .4rem 0; color: #7d2d5c; font-size: 1.5rem; }
.kit-sheet-top p { margin: 0; }

/* ingredients table */
.kit-table-wrap { overflow-x: auto; margin-bottom: 26px; }
.kit-ingredients-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(120,61,91,.10);
}
.kit-ingredients-table th,
.kit-ingredients-table td { text-align: left; padding: 13px 16px; vertical-align: top; }
.kit-ingredients-table thead th {
  background: linear-gradient(135deg, #ffaddd, #ff7dc8);
  color: #fff; font-size: .92rem; letter-spacing: .02em;
}
.kit-ingredients-table tbody tr:nth-child(even) { background: rgba(245,237,255,.55); }
.kit-ingredients-table tbody tr + tr { border-top: 1px solid rgba(120,61,91,.08); }
.kit-ingredients-table td a { color: #7d2d5c; text-decoration: underline; font-weight: 600; }

/* numbered build-steps grid */
.kit-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-bottom: 26px;
}
.kit-step-card {
  background: linear-gradient(135deg, rgba(255,198,233,.5), rgba(180,235,255,.55));
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 20px;
  padding: 20px 18px;
}
.kit-step-card strong {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; color: #7d2d5c; font-size: 1.05rem; font-weight: 900;
  box-shadow: 0 6px 14px rgba(120,61,91,.18);
  margin-bottom: 10px;
}
.kit-step-card h4 { margin: 0 0 6px; color: #5a31ae; font-size: 1.05rem; }
.kit-step-card p { margin: 0; font-size: .95rem; }

/* final checklist (uses .panel) */
.kit-checklist { margin-top: 4px; }
.kit-checklist h3 { margin-top: 0; color: #5a31ae; }
.kit-checklist .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }

@media (max-width: 680px) {
  .kit-sheet-top { grid-template-columns: 1fr; text-align: center; }
  .kit-sheet-top img { margin: 0 auto; }
  .kit-steps-grid { grid-template-columns: 1fr; }
}

/* ===== GLOW & GROW VERSION 2.0 COMMUNITY EXTENSIONS ===== */

.v2-card-grid{display:grid;gap:clamp(18px,2.5vw,28px)}
.v2-card-grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.v2-card-grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.v2-card{background:linear-gradient(145deg,rgba(255,255,255,.96),rgba(250,240,255,.9));border:1px solid rgba(255,255,255,.85);border-radius:24px;padding:clamp(22px,3vw,32px);box-shadow:0 18px 44px rgba(111,72,132,.14);display:flex;flex-direction:column;align-items:flex-start}
.v2-card h3{margin:.35rem 0 .65rem;color:#5b31b0;font-size:1.35rem}.v2-card p{margin:.2rem 0 .9rem}.v2-card .button,.v2-card .text-link{margin-top:auto}
.v2-icon{width:54px;height:54px;border-radius:18px;display:grid;place-items:center;font-size:1.65rem;background:linear-gradient(135deg,#ffe0f0,#e4ddff);box-shadow:0 9px 20px rgba(111,72,132,.15);margin-bottom:12px}
.text-link{color:#8a2d70;font-weight:800;text-decoration:none}.text-link:hover{text-decoration:underline}
.v2-cta-row{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-top:28px}.v2-fine-print{text-align:center;font-size:.88rem;color:#6e5b72;margin:18px auto 0;max-width:850px}
.v2-feature-band{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(220px,.65fr);gap:28px;align-items:center;padding:clamp(28px,5vw,54px);border-radius:30px;background:linear-gradient(135deg,rgba(255,222,241,.96),rgba(221,239,255,.96) 55%,rgba(232,223,255,.96));box-shadow:0 24px 56px rgba(111,72,132,.18)}
.v2-feature-band h2,.v2-feature-band h3{color:#5b31b0;margin:.25rem 0 .75rem}.v2-feature-band .actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:18px}
.v2-feature-stat{min-height:180px;border-radius:24px;background:rgba(255,255,255,.72);display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;padding:24px;box-shadow:inset 0 0 0 1px rgba(255,255,255,.8)}
.v2-feature-stat strong{font-family:var(--font-display,inherit);font-size:clamp(1.8rem,4vw,3rem);color:#c2477e}.v2-feature-stat span{font-weight:700;color:#5b31b0;margin-top:6px}
.v2-process{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.v2-process article{background:#fff;border-radius:22px;padding:24px;box-shadow:0 14px 32px rgba(111,72,132,.12)}.v2-process strong{display:grid;place-items:center;width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg,#ffaddd,#8c81ff);color:white;font-size:1.15rem;margin-bottom:12px}.v2-process h3{color:#5b31b0;margin:.25rem 0 .5rem}
.section.alt{background:rgba(255,255,255,.34)}
@media(max-width:980px){.v2-card-grid-3,.v2-process{grid-template-columns:repeat(2,minmax(0,1fr))}.v2-feature-band{grid-template-columns:1fr}.menu{max-height:calc(100vh - 90px);overflow:auto}}
@media(max-width:680px){.v2-card-grid-2,.v2-card-grid-3,.v2-process{grid-template-columns:1fr}.v2-card{padding:22px}.v2-feature-band{padding:24px}.v2-cta-row,.v2-feature-band .actions{flex-direction:column;align-items:stretch}.v2-cta-row .button,.v2-feature-band .button{text-align:center;width:100%}}
