/* ============================================================
   BLOOM50 COLLECTIVE — shared stylesheet
   Brand: navy #003466 · gold #c8a951 · terracotta #d9826b
          leaf #6B8B3A · cream #f6f1e8
   Type:  Playfair Display (headings) · Nunito Sans (UI)
          Nunito (body)
   Base type size is deliberately large — the audience is
   women 50+, mostly on phones. Nothing drops below 16px.
   ============================================================ */

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

:root {
  --navy:      #003466;
  --navy-deep: #002647;
  --gold:      #c8a951;
  --gold-dark: #a98c3d;
  --terra:     #d9826b;
  --leaf:      #6B8B3A;
  --cream:     #f6f1e8;
  --cream-dk:  #ece4d6;
  --white:     #ffffff;
  --text:      #1e2a3a;
  --muted:     #5b6675;
  --line:      rgba(0,52,102,0.12);
  --radius:    14px;
  --shadow:    0 2px 20px rgba(0,52,102,0.06);
  --wrap:      1080px;
  --narrow:    720px;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 1.0625rem;      /* 17px floor */
  line-height: 1.7;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: 14px 20px; z-index: 999;
}
.skip:focus { left: 0; }

/* ── LAYOUT ───────────────────────────────────────────── */
.wrap   { max-width: var(--wrap);   margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }
.section--cream-dk { background: var(--cream-dk); }
.section--white { background: var(--white); }

@media (max-width: 640px) {
  .section { padding: 56px 0; }
}

/* ── TYPE ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.4rem); }

p + p { margin-top: 1.1em; }

.eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.eyebrow--on-navy { color: var(--gold); }

.lede {
  font-size: 1.1875rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 58ch;
}
.lede--on-navy { color: rgba(255,255,255,0.88); }

.section-sub { margin-top: 14px; margin-bottom: 44px; }

/* ── LOTUS DIVIDER (signature element) ────────────────── */
.lotus {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 0 auto;
}
.lotus::before, .lotus::after {
  content: ''; height: 1px; width: 64px; background: var(--gold); opacity: .55;
}
.lotus svg { width: 26px; height: 26px; flex: none; }
.lotus--start { justify-content: flex-start; }
.lotus--start::before { display: none; }
.lotus--start::after { width: 100%; max-width: 180px; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.03em;
  min-height: 54px; padding: 15px 34px;
  border-radius: 50px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background .2s, color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold  { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: #d9bd6a; }
.btn--navy  { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: #fff; color: var(--navy); }
.btn--wide { width: 100%; }

/* ── HEADER / NAV ─────────────────────────────────────── */
.site-header { background: var(--white); border-bottom: 1px solid var(--line); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 16px 24px; max-width: var(--wrap); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { max-height: 56px; width: auto; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__word {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.4rem; color: var(--navy); line-height: 1;
}
.brand__word span { color: var(--gold-dark); }
.brand__tag {
  display: block; font-family: 'Nunito Sans', sans-serif;
  font-size: 0.6875rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px; font-weight: 600;
}

.nav-toggle {
  display: none; background: none; border: 2px solid var(--line);
  border-radius: 10px; padding: 10px 14px; cursor: pointer;
  font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 0.95rem;
  color: var(--navy); min-height: 48px;
}

.site-nav ul { list-style: none; display: flex; gap: 4px; align-items: center; }
.site-nav a {
  display: block; padding: 12px 16px; min-height: 48px;
  font-family: 'Nunito Sans', sans-serif; font-weight: 600; font-size: 1rem;
  color: var(--text); text-decoration: none; border-radius: 8px;
  border-bottom: 3px solid transparent;
}
.site-nav a:hover { background: var(--cream); }
.site-nav a[aria-current="page"] { color: var(--navy); border-bottom-color: var(--gold); }
.site-nav .nav-cta { margin-left: 10px; }
.site-nav .nav-cta a {
  background: var(--navy); color: #fff; border-radius: 50px; padding: 12px 24px;
}
.site-nav .nav-cta a:hover { background: var(--navy-deep); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; width: 100%; order: 3;
    border-top: 1px solid var(--line); padding-top: 12px; margin-top: 4px;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav a { padding: 14px 12px; }
  .site-nav .nav-cta { margin: 8px 0 4px; }
  .site-nav .nav-cta a { text-align: center; }
  .site-header__inner { flex-wrap: wrap; }
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; padding: 88px 0 80px; text-align: center;
}
.hero h1 { color: #fff; max-width: 20ch; margin: 0 auto 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero .lede { margin: 0 auto; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero .lotus { margin-bottom: 26px; }
.hero .lotus::before, .hero .lotus::after { background: var(--gold); opacity: .7; }

.pagehead {
  background: var(--navy); color: #fff; padding: 64px 0 60px; text-align: center;
}
.pagehead h1 { color: #fff; margin: 0 auto; max-width: 22ch; }
.pagehead .lede { margin: 18px auto 0; }

/* ── RECOGNITION STRIP ────────────────────────────────── */
.recognition {
  background: var(--terra); color: #fff; text-align: center; padding: 30px 0;
}
.recognition p {
  font-family: 'Playfair Display', serif; font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  line-height: 1.45; max-width: 40ch; margin: 0 auto;
}

/* ── CARDS / GRID ─────────────────────────────────────── */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .grid--3 { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); }
.card__link {
  margin-top: auto; padding-top: 20px;
  font-family: 'Nunito Sans', sans-serif; font-weight: 700;
  color: var(--navy); text-decoration: none;
}
.card__link:hover { color: var(--gold-dark); }
.card__icon { width: 40px; height: 40px; margin-bottom: 16px; }

/* ── SPLIT (photo + text) ─────────────────────────────── */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: center; }
.split--reverse { grid-template-columns: 1.15fr 0.85fr; }
@media (max-width: 860px) { .split, .split--reverse { grid-template-columns: 1fr; gap: 34px; } }

.portrait {
  border-radius: var(--radius); overflow: hidden; background: var(--cream-dk);
  aspect-ratio: 4 / 5; box-shadow: var(--shadow);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }

.band-photo {
  border-radius: var(--radius); overflow: hidden; background: var(--cream-dk);
  aspect-ratio: 21 / 9;
}
.band-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── PULL QUOTE ───────────────────────────────────────── */
.pullquote {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 52px 44px; text-align: center;
}
.pullquote p {
  font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3.4vw, 2rem);
  line-height: 1.35; max-width: 26ch; margin: 0 auto;
}
.pullquote em { color: var(--gold); font-style: normal; }
@media (max-width: 640px) { .pullquote { padding: 38px 26px; } }

/* ── TESTIMONIAL ──────────────────────────────────────── */
.testimonial {
  background: var(--white); border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 10px; padding: 30px 32px; box-shadow: var(--shadow);
}
.testimonial blockquote {
  font-size: 1.125rem; line-height: 1.7; color: var(--text); font-style: italic;
}
.testimonial figcaption {
  margin-top: 16px; font-family: 'Nunito Sans', sans-serif;
  font-weight: 700; color: var(--navy); font-style: normal; font-size: 1rem;
}

/* ── PRICING ──────────────────────────────────────────── */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
@media (max-width: 980px) { .pricing { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

.plan {
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; height: 100%;
}
.plan--featured { border-color: var(--gold); border-width: 2.5px; }
.plan__flag {
  display: inline-block; align-self: flex-start;
  background: var(--gold); color: var(--navy);
  font-family: 'Nunito Sans', sans-serif; font-weight: 700;
  font-size: 0.8125rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.plan h3 { margin-bottom: 8px; }
.plan__tagline { color: var(--muted); font-size: 1rem; margin-bottom: 24px; }
.plan__row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.plan__row:last-of-type { border-bottom: none; }
.plan__amount { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 1.1875rem; color: var(--navy); white-space: nowrap; }
.plan__save { display: block; font-size: 0.9375rem; color: var(--leaf); font-weight: 700; }
.plan__big { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 2.4rem; color: var(--navy); line-height: 1; }
.plan__big span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.plan__list { list-style: none; margin: 20px 0 0; }
.plan__list li { padding: 8px 0 8px 30px; position: relative; color: var(--text); }
.plan__list li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 14px; height: 2px; background: var(--gold);
}
.plan__cta { margin-top: 26px; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 44px 22px 0; position: relative;
  font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 1.125rem; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 1.75rem; color: var(--gold-dark); font-weight: 400; line-height: 1;
}
.faq details[open] summary::after { content: '–'; }
.faq details > div { padding: 0 44px 24px 0; color: var(--muted); }

/* ── FORMS ────────────────────────────────────────────── */
.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 44px 40px; box-shadow: var(--shadow);
}
@media (max-width: 600px) { .form-card { padding: 30px 22px; } }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }

.field > label, .field-label {
  font-family: 'Nunito Sans', sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--navy); line-height: 1.4;
}
.field .hint { font-size: 0.9375rem; color: var(--muted); font-weight: 400; }
.req { color: var(--terra); }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  font-family: 'Nunito', sans-serif; font-size: 1.0625rem; color: var(--text);
  background: var(--cream); border: 1.5px solid var(--line);
  border-radius: 10px; padding: 14px 16px; width: 100%; min-height: 52px;
  outline: none; transition: border-color .2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { min-height: 116px; resize: vertical; line-height: 1.6; }
::placeholder { color: #9aa4b0; }

.choice-list { display: flex; flex-direction: column; gap: 4px; }
.choice-list label {
  display: flex; align-items: center; gap: 12px;
  min-height: 50px; padding: 10px 14px; border: 1.5px solid var(--line);
  border-radius: 10px; background: var(--cream); cursor: pointer;
  font-size: 1.0625rem; transition: border-color .2s, background .2s;
}
.choice-list label:hover { border-color: var(--gold); background: #fff; }
.choice-list input[type="radio"] { width: 22px; height: 22px; accent-color: var(--navy); flex: none; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-footer { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.form-footer .fineprint { font-size: 0.9375rem; color: var(--muted); }

/* ── EMAIL CAPTURE ────────────────────────────────────── */
.capture { background: var(--navy); color: #fff; padding: 60px 0; }
.capture h2 { color: #fff; }
.capture p { color: rgba(255,255,255,.85); margin-top: 12px; }
.capture__form { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.capture__form input[type="email"] {
  flex: 1 1 260px; background: rgba(255,255,255,.96); border-color: transparent;
}
.capture__inner { max-width: 640px; }
.capture .fineprint { font-size: 0.9375rem; color: rgba(255,255,255,.65); margin-top: 14px; }

/* ── DISCLOSURE BAR ───────────────────────────────────── */
.disclosure {
  background: var(--navy-deep); color: rgba(255,255,255,.82);
  font-size: 0.9375rem; text-align: center; padding: 12px 24px; line-height: 1.5;
}
.disclosure a { color: var(--gold); }

/* ── WORKOUT CARDS ────────────────────────────────────── */
.workout {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 26px; overflow: hidden;
}
.workout__head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 22px 28px; background: var(--navy); color: #fff; flex-wrap: wrap;
}
.workout__title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.3rem; color: #fff; }
.workout__date { font-family: 'Nunito Sans', sans-serif; font-size: 0.9375rem; color: var(--gold); font-weight: 600; }
.workout__body { padding: 26px 28px 28px; }
.workout__note { font-size: 1rem; color: var(--muted); font-style: italic; margin-bottom: 18px; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--gold);
  font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 0.9375rem;
  padding: 8px 18px; border-radius: 50px; margin: 0 8px 16px 0;
}
.badge--terra { background: var(--terra); color: #fff; }
.badge--leaf  { background: var(--leaf);  color: #fff; }

.groups { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
@media (max-width: 640px) { .groups { grid-template-columns: 1fr; } }
.group { background: var(--cream); border-radius: 10px; padding: 18px 20px; }
.group__head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.group__name { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 1.0625rem; color: var(--navy); }
.group__name a { color: var(--navy); }
.shop-tag {
  font-family: 'Nunito Sans', sans-serif; font-size: 0.875rem; font-weight: 700;
  color: var(--gold-dark); white-space: nowrap;
}
.group ul { list-style: none; }
.group li { position: relative; padding: 5px 0 5px 18px; }
.group li::before { content: '·'; position: absolute; left: 4px; color: var(--gold-dark); font-weight: 700; }

.equip-footer {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.equip-label { font-family: 'Nunito Sans', sans-serif; font-size: 0.9375rem; font-weight: 700; color: var(--muted); }
.equip-tag {
  display: inline-block; min-height: 44px; line-height: 28px;
  padding: 8px 16px; border: 1.5px solid var(--gold); border-radius: 50px;
  font-family: 'Nunito Sans', sans-serif; font-size: 0.9375rem; font-weight: 700;
  color: var(--gold-dark); text-decoration: none;
}
.equip-tag:hover { background: var(--gold); color: var(--navy); }

/* ── PRODUCTS ─────────────────────────────────────────── */
.product { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.product__img { aspect-ratio: 1 / 1; background: var(--cream-dk); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.product__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product__pick {
  align-self: flex-start; background: var(--terra); color: #fff;
  font-family: 'Nunito Sans', sans-serif; font-size: 0.8125rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 12px;
}
.product__body p { color: var(--muted); margin-bottom: 20px; }
.product__body .btn { margin-top: auto; }

.cat-head { display: flex; align-items: center; gap: 14px; margin: 48px 0 24px; }
.cat-head h3 { font-size: 1.5rem; }
.cat-head:first-of-type { margin-top: 0; }

/* ── PROSE (privacy etc.) ─────────────────────────────── */
.prose h2 { margin: 40px 0 14px; font-size: 1.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose ul { margin: 12px 0 12px 22px; }
.prose li { padding: 4px 0; }
.prose p, .prose li { color: var(--text); }

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.78); padding: 56px 0 32px; font-size: 1rem; }
.site-footer a { color: rgba(255,255,255,.9); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
@media (max-width: 780px) { .site-footer__grid { grid-template-columns: 1fr; gap: 28px; } }
.site-footer h4 { color: #fff; font-family: 'Nunito Sans', sans-serif; font-size: 1rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { padding: 5px 0; }
.site-footer__brand .brand__word { color: #fff; }
.site-footer__brand .brand__word span { color: var(--gold); }
.site-footer__bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.9375rem; color: rgba(255,255,255,.6);
}

.medical-note {
  background: var(--cream-dk); border-radius: 10px; padding: 22px 26px;
  font-size: 0.9375rem; color: var(--muted); line-height: 1.6;
}

/* ── PLACEHOLDERS (delete before public launch) ───────── */
.ph {
  border: 2.5px dashed var(--terra);
  background: rgba(217,130,107,0.07);
  border-radius: var(--radius);
  padding: 26px 28px;
  color: var(--text);
}
.ph__label {
  display: inline-block; background: var(--terra); color: #fff;
  font-family: 'Nunito Sans', sans-serif; font-size: 0.8125rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.ph h4 { font-family: 'Nunito Sans', sans-serif; font-size: 1.0625rem; color: var(--navy); margin-bottom: 8px; }
.ph p { font-size: 1rem; color: var(--muted); }
.ph ul { margin: 10px 0 0 20px; font-size: 1rem; color: var(--muted); }
.ph li { padding: 3px 0; }
.ph--photo { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; height: 100%; }

/* ── LOGO ─────────────────────────────────────────────── */
.brand img { max-height: 62px; width: auto; }
@media (max-width: 480px) { .brand img { max-height: 46px; } }
.site-footer__brand img { width: 54px; height: 54px; margin-bottom: 14px; }
.footer-word { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: #fff; line-height: 1.2; }
.footer-tag { font-family: 'Nunito', sans-serif; font-size: 0.9375rem; color: var(--gold); margin-top: 4px; }

/* ── WARM UP BLOCK ────────────────────────────────────── */
.warmup {
  background: var(--cream); border-left: 4px solid var(--terra);
  border-radius: 10px; padding: 16px 20px; margin-bottom: 18px;
}
.warmup__label {
  font-family: 'Nunito Sans', sans-serif; font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra); margin-bottom: 6px;
}
.warmup__title { font-family: 'Nunito Sans', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.warmup__moves { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: baseline; }
.warmup__move { color: var(--text); }
.warmup__reps { font-family: 'Nunito Sans', sans-serif; font-weight: 700; color: var(--gold-dark); font-size: 0.9375rem; }

/* ── SERIES LABEL inside an exercise group ────────────── */
.series {
  font-family: 'Nunito Sans', sans-serif; font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--terra); margin-bottom: 8px;
}
.group li .star { color: var(--gold-dark); }

/* ── UNDATED WORKOUT ──────────────────────────────────── */
.workout__date--todo { color: rgba(255,255,255,.55); font-style: italic; }

/* ── 30-DAY PROGRAM ───────────────────────────────────── */
.prog-bar { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow); }
.prog-bar__top { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.prog-bar__label { font-family: 'Nunito Sans', sans-serif; font-weight: 700; color: var(--navy); }
.prog-bar__count { font-family: 'Nunito Sans', sans-serif; font-weight: 700; color: var(--gold-dark); }
.prog-track { height: 14px; background: var(--cream-dk); border-radius: 50px; overflow: hidden; }
.prog-fill { height: 100%; width: 0%; background: var(--gold); border-radius: 50px; transition: width .3s ease; }
.prog-reset { margin-top: 16px; background: none; border: none; padding: 10px 0; min-height: 44px; font-family: 'Nunito Sans', sans-serif; font-size: 0.9375rem; font-weight: 700; color: var(--muted); text-decoration: underline; cursor: pointer; }
.prog-reset:hover { color: var(--terra); }

.week-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin: 40px 0 10px; }
.week-tab {
  font-family: 'Nunito Sans', sans-serif; font-size: 1rem; font-weight: 700;
  min-height: 52px; padding: 13px 24px; border-radius: 50px;
  border: 2px solid var(--line); background: var(--white); color: var(--navy); cursor: pointer;
}
.week-tab:hover { border-color: var(--gold); }
.week-tab[aria-selected="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }
.week-theme { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin: 22px 0 22px; }

.day-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.day {
  background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--gold);
  border-radius: 12px; padding: 22px 24px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 10px;
}
.day.is-done { border-left-color: var(--leaf); background: #fbfdf8; }
.day__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.day__num { font-family: 'Nunito Sans', sans-serif; font-size: 0.875rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.day__time { font-family: 'Nunito Sans', sans-serif; font-size: 0.9375rem; font-weight: 700; color: var(--gold-dark); }
.day__title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.day__tag {
  align-self: flex-start; font-family: 'Nunito Sans', sans-serif; font-size: 0.875rem; font-weight: 700;
  padding: 5px 14px; border-radius: 50px; color: #fff;
}
.tag-flex    { background: var(--terra); }
.tag-balance { background: var(--leaf); }
.tag-both    { background: var(--navy); }
.tag-rest    { background: var(--gold-dark); }
.day__actions { display: flex; gap: 10px; margin-top: auto; padding-top: 12px; flex-wrap: wrap; }
.day__btn {
  flex: 1 1 auto; min-height: 48px; padding: 12px 18px; border-radius: 50px; cursor: pointer;
  font-family: 'Nunito Sans', sans-serif; font-size: 0.9375rem; font-weight: 700;
  border: 2px solid var(--navy); background: var(--white); color: var(--navy);
}
.day__btn:hover { background: var(--navy); color: #fff; }
.day__btn--done { border-color: var(--leaf); background: var(--leaf); color: #fff; }

dialog.day-modal {
  border: none; border-radius: var(--radius); padding: 0; max-width: 560px; width: calc(100% - 32px);
  box-shadow: 0 12px 60px rgba(0,52,102,.28); color: var(--text);
}
dialog.day-modal::backdrop { background: rgba(0,38,71,.55); }
.day-modal__head { background: var(--navy); color: #fff; padding: 26px 28px; }
.day-modal__head h3 { color: #fff; margin-bottom: 8px; }
.day-modal__body { padding: 26px 28px 28px; max-height: 62vh; overflow-y: auto; }
.day-modal__body ol { list-style: none; }
.day-modal__body li { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.day-modal__body li:last-child { border-bottom: none; }
.ex-name { font-weight: 700; color: var(--navy); }
.ex-detail { color: var(--muted); font-size: 1rem; }
.ex-dur { font-family: 'Nunito Sans', sans-serif; font-weight: 700; color: var(--gold-dark); white-space: nowrap; font-size: 0.9375rem; }
.day-modal__tip { background: var(--cream); border-left: 4px solid var(--terra); border-radius: 10px; padding: 16px 20px; margin-top: 20px; font-size: 1rem; }
.day-modal__foot { display: flex; gap: 12px; padding: 0 28px 28px; flex-wrap: wrap; }
