/* ============================================
   COSMIC BLOOM RISING — Stylesheet
   ============================================
   QUICK EDIT GUIDE FOR CASSIDY:
   - Colors are defined once at the top under ":root" — change a color there
     and it updates everywhere automatically.
   - Font sizes/spacing use a similar system below the colors.
   - You generally do NOT need to edit this file to change words on the
     page — that's done in the HTML files. This file controls look & feel.
   ============================================ */

:root {
  /* ---- Color palette ---- */
  --color-bg: #FAF6EE;          /* warm volcanic-sand cream background */
  --color-ink: #2B3328;         /* deep ʻōhiʻa-leaf green — main text */
  --color-clay: #A8714C;        /* burnt-clay orange — buttons, CTAs */
  --color-clay-dark: #8f5d3c;   /* darker clay for hover states */
  --color-lava: #8C6E4F;        /* lava-rock brown — links, accents */
  --color-fern: #566B54;        /* muted fern green — dividers, secondary */
  --color-cream-deep: #F0E9DA;  /* slightly deeper cream for section bands */
  --color-white: #FFFEFB;

  /* ---- Type ---- */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ---- Spacing scale ---- */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  /* ---- Layout ---- */
  --max-width: 1180px;
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-lava);
  text-decoration: none;
}
a:hover { color: var(--color-clay); }

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-clay);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--color-fern);
  margin-bottom: 0.3em;
}

h1 { font-size: clamp(3rem, 6.4vw, 5.6rem); font-weight: 500; letter-spacing: -0.01em; }
h2 { font-size: clamp(2.4rem, 4.6vw, 4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }

p { max-width: 62ch; }

.italic { font-style: italic; }

/* Brown/clay emphasis within headings — keeps the palette feeling layered
   rather than single-color. Used for <em> inside h1/h2/h3. */
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--color-clay);
}

/* ---- Layout helpers ---- */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section--tight {
  padding: var(--space-lg) 0;
}

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-fern);
  font-weight: 700;
  display: inline-block;
  margin-bottom: var(--space-sm);
  position: relative;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 38px;
  height: 5px;
  background: none;
  border-bottom: 1.5px solid var(--color-clay);
  border-radius: 0 0 4px 4px;
  opacity: 0.7;
}

/* ---- Botanical divider (the signature motif) ----
   A small lotus line-drawing used sparingly: between sections and as a
   small accent near headings. */
.botanical-divider {
  width: 40px;
  height: 34px;
  margin: var(--space-md) 0;
  color: var(--color-fern);
}
.botanical-divider svg { width: 100%; height: 100%; display: block; }
.botanical-divider--center { margin-left: auto; margin-right: auto; }

/* ---- Wave divider (section transitions) ----
   A hand-drawn-feeling wave used between major sections, in place of a
   plain hairline. Comes in a few slightly different variants (wave-divider,
   wave-divider--alt, wave-divider--soft) so consecutive dividers down a page
   don't look like the exact same stamp repeated — this is what gives it an
   "actually drawn" feel rather than a stock asset.
   EDITING NOTE: change the color by editing the --wave-color custom property,
   or override .wave-divider svg path { stroke: ... } for a one-off case. */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  --wave-color: var(--color-fern);
}
.wave-divider svg {
  width: 100%;
  height: 36px;
  display: block;
}
.wave-divider svg path {
  fill: none;
  stroke: var(--wave-color);
  stroke-width: 1.75;
  stroke-linecap: round;
}
.wave-divider--clay { --wave-color: var(--color-clay); }
.wave-divider--soft  { --wave-color: var(--color-lava); opacity: 0.55; }
.wave-divider svg .wave-dot { fill: var(--wave-color); stroke: none; }

@media (max-width: 600px) {
  .wave-divider svg { height: 26px; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 0.95rem 2.1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn--solid {
  background-color: var(--color-clay);
  color: var(--color-white);
}
.btn--solid:hover {
  background-color: var(--color-clay-dark);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-fern);
  border: 1.5px solid var(--color-fern);
}
.btn--outline:hover {
  background-color: var(--color-fern);
  color: var(--color-bg);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(43, 51, 40, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-ink);
  letter-spacing: 0.01em;
}
.brand:hover { color: var(--color-ink); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--color-ink); }

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-ink);
  position: relative;
}
.site-nav a:hover { color: var(--color-clay); }

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: var(--color-clay);
}

.site-nav .btn { margin-left: var(--space-xs); }

@media (max-width: 760px) {
  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    background-color: var(--color-bg);
    padding: var(--space-md);
    border-bottom: 1px solid rgba(43, 51, 40, 0.08);
  }

  .site-nav.is-open { display: flex; }
  .site-nav .btn { margin-left: 0; margin-top: var(--space-xs); }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--color-ink);
  color: var(--color-bg);
  padding: var(--space-lg) 0 var(--space-md);
}

.site-footer a { color: var(--color-bg); }
.site-footer a:hover { color: var(--color-clay); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.footer-grid h4 {
  color: var(--color-bg);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.footer-grid p, .footer-grid li { opacity: 0.85; }

.footer-nav-list { list-style: none; }
.footer-nav-list li { margin-bottom: 0.5rem; }

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 238, 0.15);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.85rem;
  opacity: 0.7;
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ============================================
   HOME PAGE — HERO
   ============================================ */
.hero {
  padding: var(--space-lg) 0 var(--space-xl);
  overflow: hidden;
}

/* ---- Full-bleed hero variant ----
   Image fills the entire hero band edge-to-edge (no side padding, no card
   shape), with the heading and CTAs overlaid directly on top of the photo.
   EDITING NOTE: change --hero-height below to make the photo taller/shorter. */
.hero--fullbleed {
  --hero-height: 92vh;
  position: relative;
  width: 100%;
  min-height: var(--hero-height);
  padding: 0;
  display: flex;
  align-items: flex-start;
  overflow: visible;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  /* Darkens the whole photo more evenly now that the text sits centered,
     so the words read clearly no matter where they land on the image. */
  background: linear-gradient(
    180deg,
    rgba(20, 24, 18, 0.5) 0%,
    rgba(20, 24, 18, 0.4) 40%,
    rgba(20, 24, 18, 0.55) 100%
  );
}

.hero__overlay-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
  text-align: center;
}

.hero__overlay-content h1,
.hero__overlay-content .hero__tagline {
  color: var(--color-bg);
}
.hero__overlay-content h1 em { color: #9CAF88; } /* vibrant sage green, pops against the dark scrim */

/* Heading set to fit on a single line at desktop widths */
.hero__title-oneline {
  white-space: nowrap;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  max-width: 100%;
}

.hero__overlay-content .hero__eyebrow-line {
  color: var(--color-bg);
  background-color: transparent;
  display: block;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0;
  margin-top: var(--space-sm);
  opacity: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero__overlay-content h1 {
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45), 0 2px 10px rgba(0, 0, 0, 0.35);
}

.btn--outline-light {
  color: var(--color-bg);
  border-color: var(--color-bg);
}
.btn--outline-light:hover {
  background-color: var(--color-bg);
  color: var(--color-ink);
}

.hero__overlay-content .btn-row {
  justify-content: center;
  margin-top: calc(var(--space-xl) * 1.8);
}

@media (max-width: 760px) {
  .hero--fullbleed { min-height: 78vh; align-items: flex-start; }
  .hero__overlay-content { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
  .hero__title-oneline {
    white-space: normal;
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .hero__overlay-content .hero__eyebrow-line {
    white-space: normal;
    font-size: 0.7rem;
  }
  .hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(20, 24, 18, 0.35) 0%,
      rgba(20, 24, 18, 0.2) 45%,
      rgba(20, 24, 18, 0.55) 100%
    );
  }
}

.hero__eyebrow-line {
  font-size: 0.95rem;
  color: var(--color-fern);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
}

.hero__tagline {
  margin-top: var(--space-sm);
  font-size: 1.05rem;
  color: var(--color-fern);
  letter-spacing: 0.02em;
}

/* botanical line-draw animation, plays once on load (used elsewhere as a
   small accent — no longer used in the full-bleed hero itself) */
.bloom-anim {
  width: 100%;
  height: 100%;
}
.bloom-anim path {
  fill: none;
  stroke: var(--color-fern);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: draw 2.2s ease forwards;
}
@keyframes draw {
  to { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .bloom-anim path { animation: none; stroke-dashoffset: 0; }
}

/* ============================================
   MANTRA STRIP
   ============================================ */
.mantra {
  text-align: center;
  padding: var(--space-lg) 0;
}
.mantra h2 {
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  color: var(--color-fern);
  max-width: 56ch;
  margin: 0 auto;
}

/* ---- Photo variant: Blue Morpho butterfly background ----
   Same pattern as the hero — a full-bleed photo with a dark scrim behind
   the centered text so it stays readable against the image. */
.mantra--photo {
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0;
  isolation: isolate;
}
.mantra__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mantra__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mantra__scrim {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 18, 0.5);
}
.mantra__content {
  position: relative;
  z-index: 1;
}
.mantra--photo .botanical-divider { color: var(--color-bg); opacity: 0.85; }
.mantra--photo h2 {
  color: var(--color-bg);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-lg);
  align-items: start;
}

.about__image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: sticky;
  top: 100px;
}
.about__image-wrap img { width: 100%; height: 100%; object-fit: cover; }

.about__quote {
  margin-top: var(--space-lg);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  line-height: 1.3;
  color: var(--color-lava);
  border-left: 3px solid var(--color-clay);
  padding-left: var(--space-md);
  max-width: 46ch;
}

.stat-row {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}
.stat-row .stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--color-clay);
  display: block;
}
.stat-row .stat-label {
  font-size: 0.85rem;
  color: var(--color-fern);
  font-weight: 700;
  letter-spacing: 0.03em;
}

@media (max-width: 860px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__image-wrap { position: static; max-width: 360px; }
}

/* ============================================
   OFFERINGS LIST (editorial stack, not card grid)
   ============================================ */
.offering-row {
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(43, 51, 40, 0.1);
}
.offering-row:last-child { border-bottom: none; }
.offering-row:nth-child(even) .offering-row__image { order: 2; }

.offering-row__label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-fern);
  margin-bottom: var(--space-xs);
}

.offering-row ul {
  list-style: none;
  margin-top: var(--space-sm);
}
.offering-row ul li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--color-ink);
}
.offering-row ul li::before {
  content: "✿";
  position: absolute;
  left: 0;
  color: var(--color-clay);
  font-size: 0.8rem;
  top: 0.25rem;
}

.offering-row__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
}
.offering-row__image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .offering-row,
  .offering-row:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .offering-row:nth-child(even) .offering-row__image { order: -1; }
}

/* ============================================
   SCHEDULE TABLE (Offerings page)
   ============================================ */
.schedule-card {
  background-color: var(--color-white);
  border: 1px solid rgba(43,51,40,0.1);
  border-radius: var(--radius);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}
.schedule-card h3 { margin-bottom: var(--space-sm); }
.schedule-list { list-style: none; }
.schedule-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(43,51,40,0.15);
  font-size: 0.97rem;
}
.schedule-list li:last-child { border-bottom: none; }
.schedule-list .day { font-weight: 700; color: var(--color-ink); }
.schedule-list .desc { color: var(--color-fern); text-align: right; }

/* ============================================
   RISE & REWIRE PAGE
   ============================================ */
.rr-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.rr-hero__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.rr-hero__image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .rr-hero { grid-template-columns: 1fr; }
  .rr-hero__image { order: -1; aspect-ratio: 5/4; }
}

/* ---- Intro + Poster side-by-side layout ----
   Text column on the left, the program poster graphic on the right.
   The poster column is given a touch more width than a 50/50 split since
   the graphic is tall and detailed and benefits from the extra room. */
.rr-intro-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (max-width: 860px) {
  .rr-intro-layout {
    grid-template-columns: 1fr;
  }
}

/* ---- Poster display (Rise & Rewire program graphic) ----
   Shows the full designed graphic at a readable size, with a soft shadow
   to lift it off the page. Unlike the other photo slots, this is NOT
   cropped to a fixed aspect ratio — the whole graphic stays intact since
   its own text needs to stay legible edge-to-edge. */
.poster-wrap {
  display: flex;
  justify-content: center;
}
.poster-image {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(43, 51, 40, 0.18);
}

@media (max-width: 860px) {
  .poster-image { max-width: 420px; }
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm) var(--space-lg);
  margin-top: var(--space-md);
  list-style: none;
}
.includes-grid li {
  padding-left: 1.5rem;
  position: relative;
}
.includes-grid li::before {
  content: "✿";
  position: absolute;
  left: 0;
  color: var(--color-clay);
}
@media (max-width: 600px) {
  .includes-grid { grid-template-columns: 1fr; }
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.pricing-card {
  background-color: var(--color-white);
  border: 1px solid rgba(43,51,40,0.1);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-align: center;
}
.pricing-card .days {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-fern);
  font-weight: 700;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--color-clay);
  margin: var(--space-xs) 0;
}
.pricing-card .note { font-size: 0.85rem; color: var(--color-fern); }

@media (max-width: 600px) {
  .pricing-cards { grid-template-columns: 1fr; }
}

.who-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}
@media (max-width: 760px) {
  .who-for-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.contact-image img { width: 100%; height: 100%; object-fit: cover; }

.form-field { margin-bottom: var(--space-sm); }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  color: var(--color-fern);
}
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1.5px solid rgba(43,51,40,0.2);
  border-radius: var(--radius);
  background-color: var(--color-white);
  color: var(--color-ink);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-clay);
}
.form-field textarea { resize: vertical; min-height: 140px; }

.form-note {
  font-size: 0.85rem;
  color: var(--color-fern);
  margin-top: var(--space-sm);
}

/* ============================================
   NEWSLETTER BAND
   ============================================ */
.newsletter {
  text-align: center;
  padding: var(--space-lg) 0;
}
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(43,51,40,0.2);
  border-radius: var(--radius);
  min-width: 280px;
  background-color: var(--color-white);
}
.newsletter-form input[type="email"]:focus {
  outline: 2px solid var(--color-clay);
  outline-offset: 2px;
}
.newsletter-success {
  margin-top: var(--space-sm);
  color: var(--color-fern);
  font-weight: 700;
  display: none;
}
.newsletter-success.is-visible { display: block; }

.form-error {
  margin-top: var(--space-sm);
  color: #A3402F;
  font-weight: 700;
  display: none;
}
.form-error.is-visible { display: block; }

/* ============================================
   INSTAGRAM CTA
   ============================================ */
.insta-cta {
  text-align: center;
  padding: var(--space-lg) 0 var(--space-xl);
}
.insta-cta a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-clay);
}

/* ============================================
   PAGE HEADER (used on Offerings / Rise & Rewire / Contact)
   ============================================ */
.page-header {
  padding: var(--space-lg) 0 var(--space-md);
  text-align: left;
}
.page-header p { color: var(--color-fern); margin-top: var(--space-sm); font-size: 1.08rem; }

/* generic intro paragraph width control */
.intro-text { max-width: 68ch; }
