:root {
  --pink: #de49c8;
  --indigo: #3d3996;
  --coral: #f05f63;
  --aqua: #2ccdd0;
  --warm-white: #fff9f5;
  --blush: #f7d8d4;
  --charcoal: #242126;
  --coral-dark: var(--pink);
  --coral-soft: var(--blush);
  --plum: var(--indigo);
  --plum-dark: var(--charcoal);
  --sage: var(--aqua);
  --sage-light: #dff7f6;
  --cream: var(--warm-white);
  --sand: #fbeded;
  --white: #ffffff;
  --ink: var(--charcoal);
  --muted: #686168;
  --line: rgba(61, 57, 150, 0.14);
  --shadow: 0 20px 50px rgba(61, 57, 150, 0.13);
  --radius-small: 14px;
  --radius-medium: 24px;
  --radius-large: 40px;
  --container: 1180px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: -0.045em;
}

h1 em {
  color: var(--pink);
  font-weight: 500;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1.25rem;
}

.container {
  width: min(var(--container), calc(100% - 3rem));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--indigo);
  border-radius: 0.5rem;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 249, 245, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--charcoal);
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(150px, 15vw, 195px);
  height: auto;
  display: block;
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.6rem, 1.3vw, 1.25rem);
}

.primary-navigation a {
  position: relative;
  padding: 0.7rem 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition);
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.primary-navigation a.active {
  color: var(--indigo);
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after,
.primary-navigation a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--indigo);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 3px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:last-of-type {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(237, 31, 99, 0.1), transparent 29%),
    radial-gradient(circle at 86% 12%, rgba(44, 205, 208, 0.18), transparent 25%),
    var(--cream);
}

.hero::before {
  position: absolute;
  top: 8%;
  right: -80px;
  width: 320px;
  height: 320px;
  content: "";
  border: 1px solid rgba(237, 31, 99, 0.18);
  border-radius: 50%;
}

.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-top: 4rem;
  padding-bottom: 6.5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 10px 24px rgba(237, 31, 99, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--indigo);
}

.button-secondary {
  color: var(--indigo);
  background: transparent;
  border-color: var(--indigo);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  background: var(--indigo);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  padding: 0;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  list-style: none;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-highlights li::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--sage);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.hero-visual::before {
  position: absolute;
  top: 2%;
  right: -5%;
  width: 88%;
  height: 88%;
  content: "";
  background: linear-gradient(145deg, rgba(44, 205, 208, 0.34), rgba(61, 57, 150, 0.12));
  border-radius: 47% 53% 46% 54% / 58% 45% 55% 42%;
  transform: rotate(7deg);
}

.hero-photo-frame {
  position: absolute;
  top: 5%;
  right: 6%;
  bottom: 6%;
  left: 3%;
  overflow: hidden;
  background: var(--blush);
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 49% 51% 38% 62% / 44% 38% 62% 56%;
  box-shadow: var(--shadow);
}

.hero-photo-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(36, 33, 38, 0.55));
  pointer-events: none;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 52% center;
  transform: scale(1.04);
}

.photo-label {
  position: absolute;
  right: 2.2rem;
  bottom: 2rem;
  z-index: 2;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.encouragement-card {
  position: absolute;
  right: -5%;
  bottom: 3%;
  z-index: 3;
  width: 230px;
  padding: 1.15rem 1.25rem 1.15rem 1.45rem;
  background: rgba(255, 255, 255, 0.94);
  border-left: 4px solid var(--pink);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.encouragement-card p {
  margin: 0;
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.4;
}

.hero-wave {
  position: absolute;
  right: -5%;
  bottom: -105px;
  left: -5%;
  height: 170px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
}

.intro-section {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(400px, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.section-heading h2 {
  max-width: 650px;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-heading.centered h2 {
  margin-inline: auto;
}

.section-heading.centered > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy {
  max-width: 680px;
  padding-top: 0.35rem;
  color: var(--muted);
}

.large-copy {
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.25vw, 1.8rem);
  line-height: 1.45;
}

.text-link,
.offer-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--pink);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link span,
.offer-card a span {
  transition: transform var(--transition);
}

.text-link:hover span,
.text-link:focus-visible span,
.offer-card a:hover span,
.offer-card a:focus-visible span {
  transform: translateX(4px);
}

.audience-section {
  background: var(--sand);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.audience-card {
  position: relative;
  min-height: 310px;
  padding: 2.4rem 2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-medium);
}

.audience-card::after {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 145px;
  height: 145px;
  content: "";
  background: var(--coral-soft);
  border-radius: 50%;
  opacity: 0.65;
}

.audience-card.featured-card {
  color: rgba(255, 255, 255, 0.83);
  background: var(--indigo);
  border-color: var(--indigo);
  box-shadow: var(--shadow);
  transform: translateY(-1rem);
}

.audience-card.featured-card::after {
  background: var(--coral);
  opacity: 0.2;
}

.audience-card.featured-card h3 {
  color: var(--white);
}

.card-number {
  display: block;
  margin-bottom: 4rem;
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.featured-card .card-number {
  color: #b9ffff;
}

.audience-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
}

.featured-card p {
  color: rgba(255, 255, 255, 0.75);
}

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

.sfr-offers-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: stretch;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.sfr-offers-content h2 {
  margin-bottom: 1rem;
}

.sfr-offers-intro {
  max-width: 700px;
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.sfr-offers-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.sfr-offers-list article {
  padding: 1.2rem 1.25rem 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.sfr-offers-list article:nth-child(2n) {
  padding-right: 0;
  padding-left: 1.25rem;
  border-left: 1px solid var(--line);
}

.sfr-offers-list h3 {
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
}

.sfr-offers-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.sfr-offers-list .text-link {
  margin-top: 0.75rem;
}

.sfr-inline-quote {
  margin: 1.75rem 0 0;
  padding: 1.4rem 1.5rem;
  color: var(--indigo);
  background: var(--white);
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  box-shadow: 0 12px 30px rgba(61, 57, 150, 0.08);
}

.sfr-inline-quote p {
  margin-bottom: 0.75rem;
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.45;
}

.sfr-inline-quote footer {
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sfr-offers-photo {
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  background: var(--indigo);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.sfr-offers-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 52% center;
}

.offers-heading {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.offers-heading .section-heading h2 {
  margin-bottom: 0;
}

.offers-heading > p {
  max-width: 520px;
  margin-bottom: 0.4rem;
  color: var(--muted);
}

.movement-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.movement-photo {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: var(--indigo);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow);
}

.movement-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.movement-photo-wide img {
  object-position: 50% 48%;
}

.movement-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.25rem;
  padding: clamp(2rem, 6vw, 5rem);
  color: var(--indigo);
  background:
    linear-gradient(135deg, rgba(247, 216, 212, 0.92), rgba(222, 73, 200, 0.12)),
    var(--white);
  border: 1px dashed rgba(61, 57, 150, 0.28);
  box-shadow: none;
  text-align: center;
}

.movement-placeholder::before {
  width: 74px;
  height: 74px;
  content: "";
  background:
    radial-gradient(circle at 35% 35%, var(--pink) 0 10px, transparent 11px),
    linear-gradient(145deg, rgba(44, 205, 208, 0.5), rgba(61, 57, 150, 0.16));
  border-radius: 48% 52% 42% 58%;
}

.movement-placeholder::after {
  display: none;
}

.movement-placeholder span {
  max-width: 340px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.3;
}

.movement-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(36, 33, 38, 0.78));
  pointer-events: none;
}

.movement-photo:hover img {
  transform: scale(1.025);
}

.movement-photo figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.35rem;
  left: 1.5rem;
  z-index: 1;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

.movement-photo figcaption span {
  display: block;
  margin-bottom: 0.35rem;
  color: #b9ffff;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.offer-card {
  min-height: 350px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 2rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  transition: box-shadow var(--transition), transform var(--transition);
}

.offer-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.offer-card p {
  color: var(--muted);
}

.offer-card a {
  margin-top: auto;
}

.offer-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 2.2rem;
  color: var(--indigo);
  background: linear-gradient(145deg, var(--blush), rgba(44, 205, 208, 0.2));
  border-radius: 45% 55% 50% 50%;
}

.icon-cycle {
  width: 26px;
  height: 18px;
  position: relative;
  display: block;
  border-bottom: 2px solid currentColor;
}

.icon-cycle::before,
.icon-cycle::after {
  position: absolute;
  bottom: -7px;
  width: 12px;
  height: 12px;
  content: "";
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-cycle::before {
  left: -4px;
}

.icon-cycle::after {
  right: -4px;
}

.icon-heart {
  position: relative;
  width: 22px;
  height: 22px;
  display: block;
  background: currentColor;
  transform: rotate(45deg) scale(0.72);
}

.icon-heart::before,
.icon-heart::after {
  position: absolute;
  width: 22px;
  height: 22px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.icon-heart::before {
  left: -11px;
}

.icon-heart::after {
  top: -11px;
}

.icon-drop {
  width: 22px;
  height: 29px;
  display: block;
  background: currentColor;
  border-radius: 55% 45% 58% 42% / 65% 45% 55% 35%;
  transform: rotate(45deg);
}

.icon-sun {
  width: 23px;
  height: 23px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow:
    0 -12px 0 -10px currentColor,
    0 12px 0 -10px currentColor,
    12px 0 0 -10px currentColor,
    -12px 0 0 -10px currentColor;
}

.home-page main .home-resources-section {
  padding: 1.5rem 0;
  background: var(--cream);
}

.home-resources-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 4.5rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(222, 73, 200, 0.16), transparent 30%),
    linear-gradient(135deg, var(--white), #f8f5ff);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.home-resources-copy {
  max-width: 690px;
}

.home-resources-copy h2 {
  margin-bottom: 1rem;
}

.home-resources-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.home-resource-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  list-style: none;
}

.home-resource-list li {
  padding: 0.52rem 0.85rem;
  color: var(--indigo);
  background: rgba(222, 73, 200, 0.1);
  border: 1px solid rgba(222, 73, 200, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.home-resources-preview {
  min-height: 260px;
  position: relative;
  display: grid;
  place-items: center;
}

.home-resources-preview img {
  width: min(100%, 190px);
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 22px rgba(61, 57, 150, 0.18));
  transform: rotate(-3deg);
}

.home-resource-mini-card {
  position: absolute;
  right: 0;
  bottom: 1.2rem;
  z-index: 2;
  max-width: 190px;
  padding: 1rem 1.1rem;
  color: var(--white);
  background: var(--indigo);
  border-radius: var(--radius-small);
  box-shadow: 0 18px 28px rgba(61, 57, 150, 0.2);
}

.home-resource-mini-card span,
.home-resource-mini-card strong {
  display: block;
}

.home-resource-mini-card span {
  margin-bottom: 0.3rem;
  color: #d7ffff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-resource-mini-card strong {
  font-size: 1.05rem;
  line-height: 1.15;
}

.quote-section {
  padding-top: 2rem;
  background: var(--cream);
}

.quote-card {
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(400px, 1.2fr);
  overflow: hidden;
  color: var(--white);
  background: var(--indigo);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.quote-photo {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--charcoal);
}

.quote-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 55%, rgba(61, 57, 150, 0.52));
}

.quote-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.soulfit-monogram {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 1;
  text-transform: none;
}

.quote-card blockquote {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(3rem, 7vw, 6.5rem);
  margin: 0;
}

.quote-card blockquote p {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.4;
}

.quote-card blockquote footer {
  color: #b9ffff;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-mark {
  position: absolute;
  top: 2.3rem;
  left: 3.3rem;
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10rem;
  line-height: 1;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(115deg, var(--pink), var(--coral));
}

.cta-section::before,
.cta-section::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.cta-section::before {
  top: -180px;
  right: -80px;
  width: 400px;
  height: 400px;
}

.cta-section::after {
  bottom: -210px;
  left: -100px;
  width: 360px;
  height: 360px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.cta-inner > div:first-child {
  max-width: 700px;
}

.cta-section .eyebrow {
  color: #d7ffff;
}

.cta-section h2 {
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-section p:last-child {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.cta-inner .button-group {
  flex: 0 0 auto;
}

.button-light {
  color: var(--pink);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: var(--indigo);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: var(--pink);
  background: var(--white);
  border-color: var(--white);
}

.site-footer {
  padding: 3.5rem 0 1.25rem;
  color: rgba(255, 255, 255, 0.65);
  background: var(--indigo);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.75fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
}

.footer-brand-name {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.footer-brand-name:hover,
.footer-brand-name:focus-visible {
  color: #b9ffff;
}

.footer-brand > p {
  max-width: 390px;
  margin: 1rem 0 0;
}

.footer-email {
  margin-top: 0.75rem !important;
  color: var(--white) !important;
}

.footer-email a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-email a:hover,
.footer-email a:focus-visible {
  color: #b9ffff;
  text-decoration: underline;
}

.footer-affiliate-note {
  margin-top: 0.4rem !important;
  font-size: 0.72rem !important;
  color: var(--white) !important;
  opacity: 0.75;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links h2 {
  margin-bottom: 0.35rem;
  color: var(--white);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #b9ffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

/* About page */
.about-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 20%, rgba(237, 31, 99, 0.1), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(44, 205, 208, 0.18), transparent 25%),
    var(--warm-white);
}

.about-hero::before {
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 470px;
  height: 470px;
  content: "";
  border: 1px solid rgba(61, 57, 150, 0.14);
  border-radius: 50%;
}

.about-hero-grid {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-top: 5rem;
  padding-bottom: 5.5rem;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero-content h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 5.5vw, 5.45rem);
}

.about-hero-visual {
  position: relative;
  min-height: 510px;
}

.about-hero-visual::before {
  position: absolute;
  top: 0;
  right: 1%;
  width: 91%;
  height: 91%;
  content: "";
  background: linear-gradient(145deg, rgba(44, 205, 208, 0.42), rgba(61, 57, 150, 0.18));
  border-radius: 38% 62% 58% 42% / 48% 42% 58% 52%;
  transform: rotate(5deg);
}

.about-photo-frame {
  position: absolute;
  inset: 4% 5% 4% 2%;
  overflow: hidden;
  background: var(--blush);
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 42% 58% 48% 52% / 45% 42% 58% 55%;
  box-shadow: var(--shadow);
}

.about-photo-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 62%, rgba(36, 33, 38, 0.35));
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% center;
}

.about-location-card {
  position: absolute;
  right: -4%;
  bottom: 4%;
  z-index: 2;
  width: 235px;
  padding: 1.05rem 1.2rem 1.05rem 1.4rem;
  background: rgba(255, 255, 255, 0.94);
  border-left: 4px solid var(--pink);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.about-location-card p {
  margin: 0;
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.4;
}

.story-section {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(430px, 1.15fr);
  align-items: center;
  gap: clamp(3.5rem, 8vw, 8rem);
}

.story-visual {
  position: relative;
  min-height: 570px;
  overflow: visible;
}

.story-visual::before {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  width: 84%;
  height: 90%;
  content: "";
  background: var(--blush);
  border-radius: var(--radius-large);
}

.story-visual img {
  position: absolute;
  top: 0;
  right: 0;
  width: 92%;
  height: 94%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.turning-point {
  position: absolute;
  right: -1.4rem;
  bottom: 0;
  z-index: 2;
  width: 180px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1.5rem;
  color: var(--white);
  background: var(--indigo);
  border: 8px solid var(--white);
  border-radius: 50%;
  text-align: center;
  box-shadow: var(--shadow);
}

.turning-point strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 0.9;
}

.turning-point span {
  margin-top: 0.65rem;
  color: #d7ffff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.story-copy {
  color: var(--muted);
}

.story-copy h2 {
  max-width: 720px;
}

.about-stats-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 85% 0%, rgba(44, 205, 208, 0.28), transparent 27%),
    var(--indigo);
}

.about-stats-section::after {
  position: absolute;
  top: -140px;
  left: 45%;
  width: 310px;
  height: 310px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.about-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.65fr;
  align-items: center;
  gap: 3rem;
}

.stat-intro .eyebrow {
  color: #b9ffff;
}

.stat-intro h2 {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.stat-item {
  min-height: 155px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 2.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1;
}

.stat-item span {
  max-width: 180px;
  margin-top: 0.75rem;
  color: #d7ffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.purpose-section {
  background: var(--warm-white);
}

.purpose-heading {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(440px, 1.2fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  margin-bottom: 4rem;
}

.purpose-heading .section-heading h2 {
  margin-bottom: 0;
}

.purpose-heading > div:last-child {
  color: var(--muted);
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.purpose-card {
  position: relative;
  min-height: 320px;
  padding: 2.2rem 1.9rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
}

.purpose-card::after {
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  content: "";
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.7;
}

.purpose-card-featured {
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(145deg, var(--pink), var(--coral));
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-1rem);
}

.purpose-card-featured::after {
  background: var(--aqua);
  opacity: 0.22;
}

.purpose-card-featured h3 {
  color: var(--white);
}

.purpose-number {
  display: block;
  margin-bottom: 4.25rem;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.purpose-card-featured .purpose-number {
  color: #d7ffff;
}

.purpose-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
}

.purpose-card-featured p {
  color: rgba(255, 255, 255, 0.82);
}

.about-quote-section {
  padding-top: 2rem;
  background: var(--warm-white);
}

.about-quote-card {
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(430px, 1.2fr);
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush), #f4ebf8);
  border-radius: var(--radius-large);
}

.about-quote-photo {
  min-height: 430px;
  overflow: hidden;
}

.about-quote-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-quote-card blockquote {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(3rem, 7vw, 6rem);
  margin: 0;
}

.about-quote-card blockquote > p {
  position: relative;
  z-index: 1;
  margin-bottom: 1.6rem;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.3;
}

.about-quote-card blockquote footer {
  display: flex;
  flex-direction: column;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-quote-card blockquote footer span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.62rem;
}

/* Classes and schedule page */
.schedule-hero {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 84% 10%, rgba(44, 205, 208, 0.3), transparent 25%),
    radial-gradient(circle at 10% 100%, rgba(237, 31, 99, 0.3), transparent 29%),
    var(--indigo);
}

.schedule-hero::before {
  position: absolute;
  top: -190px;
  right: -80px;
  width: 440px;
  height: 440px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.schedule-hero-inner {
  min-height: 470px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(270px, 0.7fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.schedule-hero .eyebrow {
  color: #b9ffff;
}

.schedule-hero h1 {
  max-width: 830px;
  margin-bottom: 1.25rem;
  color: var(--white);
  font-size: clamp(3.3rem, 6vw, 5.8rem);
}

.schedule-hero h1 em {
  color: #ff91b5;
}

.schedule-hero .hero-lead {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.73);
}

.schedule-hero-aside {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  text-align: center;
  backdrop-filter: blur(8px);
}

.schedule-mark {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  line-height: 1;
  white-space: nowrap;
}

.schedule-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.schedule-mark-label {
  margin-top: 0.35rem;
  color: #b9ffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.schedule-hero-aside p {
  max-width: 220px;
  margin: 1rem 0 0;
  color: #d7ffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.schedule-section {
  padding: 6.5rem 0 7rem;
  background:
    linear-gradient(rgba(247, 216, 212, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 216, 212, 0.32) 1px, transparent 1px),
    var(--warm-white);
  background-size: 52px 52px;
}

.schedule-shell {
  width: min(1380px, calc(100% - 2rem));
}

.schedule-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.schedule-heading-row h2 {
  margin-bottom: 0;
}

.schedule-week-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  flex: 0 0 auto;
  text-align: right;
}

.schedule-week-meta span {
  color: var(--pink);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-week-meta strong {
  margin-top: 0.35rem;
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.schedule-notice {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 2rem;
  padding: 0.8rem 1rem;
  color: var(--indigo);
  background: rgba(222, 73, 200, 0.1);
  border: 1px solid rgba(222, 73, 200, 0.3);
  border-radius: 999px;
}

.schedule-notice span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--pink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.schedule-notice p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

.weekly-schedule {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: stretch;
}

.schedule-day {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(61, 57, 150, 0.08);
}

.schedule-day-heading {
  margin: 0;
  padding: 1.05rem 0.5rem;
  color: var(--white);
  background: var(--schedule-day-color);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: clamp(0.72rem, 1.05vw, 0.94rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
}

.schedule-day:nth-child(3n + 1) {
  --schedule-day-color: var(--coral);
}

.schedule-day:nth-child(3n + 2) {
  --schedule-day-color: var(--pink);
}

.schedule-day:nth-child(3n) {
  --schedule-day-color: #f68b91;
}

.schedule-class-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.7rem;
}

.schedule-class {
  position: relative;
  padding: 0.9rem 0.75rem;
  overflow: hidden;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(61, 57, 150, 0.07);
}

.schedule-class::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  content: "";
  background: var(--schedule-day-color);
}

.schedule-class-time {
  margin-bottom: 0.35rem;
  color: var(--schedule-day-color);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.schedule-class-name {
  margin-bottom: 0.4rem;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.9rem, 1.15vw, 1.08rem);
  font-weight: 500;
  line-height: 1.16;
}

.schedule-class-location {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.65rem, 0.85vw, 0.76rem);
  line-height: 1.38;
}

.schedule-class-note {
  margin: 0.55rem 0 0;
  padding-top: 0.5rem;
  color: var(--indigo);
  border-top: 1px solid var(--line);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.35;
}

.schedule-empty {
  min-height: 100px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 1rem;
  color: var(--muted);
  background: rgba(61, 57, 150, 0.04);
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
}

.schedule-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  margin-top: 3.5rem;
  padding: clamp(2.2rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--blush), #eeeafa);
  border-radius: var(--radius-large);
}

.schedule-contact > div {
  max-width: 760px;
}

.schedule-contact h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.schedule-contact p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.schedule-contact .button {
  flex: 0 0 auto;
}

/* Evergreen education callouts */
.evergreen-section {
  background: var(--white);
}

.coaching-consistency-section {
  background: var(--warm-white);
}

.community-alone-section {
  background: var(--sand);
}

.evergreen-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.evergreen-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.evergreen-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.6rem;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  box-shadow: 0 12px 30px rgba(61, 57, 150, 0.06);
}

.evergreen-card:nth-child(2n) {
  background: #f8f5ff;
}

.evergreen-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
}

.evergreen-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.evergreen-section-action {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

/* Fitness education page */
.coaching-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 20%, rgba(237, 31, 99, 0.1), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(44, 205, 208, 0.2), transparent 25%),
    var(--warm-white);
}

.coaching-hero::before {
  position: absolute;
  right: -150px;
  bottom: -170px;
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(61, 57, 150, 0.14);
  border-radius: 50%;
}

.coaching-hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
}

.coaching-hero-content {
  position: relative;
  z-index: 2;
}

.coaching-hero-content h1 {
  max-width: 780px;
  font-size: clamp(3.15rem, 5.7vw, 5.55rem);
}

.coaching-hero-visual {
  position: relative;
  min-height: 510px;
}

.coaching-hero-visual::before {
  position: absolute;
  top: 1%;
  right: -1%;
  width: 91%;
  height: 91%;
  content: "";
  background: linear-gradient(145deg, rgba(44, 205, 208, 0.42), rgba(61, 57, 150, 0.14));
  border-radius: 48% 52% 40% 60% / 55% 42% 58% 45%;
  transform: rotate(6deg);
}

.coaching-photo-frame {
  position: absolute;
  inset: 5% 5% 4% 2%;
  overflow: hidden;
  background: var(--blush);
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 48% 52% 42% 58% / 48% 40% 60% 52%;
  box-shadow: var(--shadow);
}

.coaching-photo-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 62%, rgba(36, 33, 38, 0.42));
}

.coaching-photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.coaching-hero-note {
  position: absolute;
  right: -4%;
  bottom: 3%;
  z-index: 2;
  width: 230px;
  padding: 1.15rem 1.25rem 1.15rem 1.45rem;
  background: rgba(255, 255, 255, 0.94);
  border-left: 4px solid var(--pink);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.coaching-hero-note p {
  margin: 0;
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.4;
}

.coaching-meaning-section {
  background: var(--white);
}

.coaching-meaning-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(440px, 1.2fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.coaching-meaning-copy {
  color: var(--muted);
}

.fitness-page .coaching-hero-grid {
  min-height: 620px;
}

.fitness-page .coaching-help-visual {
  min-height: 560px;
}


.fitness-formats-section .section-heading {
  margin-bottom: 2.5rem;
}

.fitness-format-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.fitness-format-card {
  width: calc(25% - 0.75rem);
  min-height: 215px;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-medium);
  box-shadow: 0 12px 30px rgba(61, 57, 150, 0.06);
}

.fitness-format-card:nth-child(2n) {
  background: #f8f5ff;
}

.fitness-formats-section .section-heading.centered h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.15;
}

.fitness-format-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
}

.fitness-format-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.coaching-audience-section {
  background:
    linear-gradient(rgba(247, 216, 212, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 216, 212, 0.28) 1px, transparent 1px),
    #fbeded;
  background-size: 48px 48px;
}

.coaching-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.coaching-audience-card {
  position: relative;
  min-height: 270px;
  padding: 2.25rem 2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-medium);
  box-shadow: 0 12px 30px rgba(61, 57, 150, 0.06);
}

.coaching-audience-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  content: "";
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.75;
}

.coaching-audience-featured {
  color: rgba(255, 255, 255, 0.8);
  background: var(--indigo);
  border-color: var(--indigo);
}

.coaching-audience-featured::after {
  background: var(--aqua);
  opacity: 0.18;
}

.coaching-card-label {
  display: block;
  margin-bottom: 3.3rem;
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coaching-audience-featured .coaching-card-label {
  color: #b9ffff;
}

.coaching-audience-featured h3 {
  color: var(--white);
}

.coaching-audience-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
}

.coaching-audience-featured p {
  color: rgba(255, 255, 255, 0.75);
}

.coaching-help-section {
  background: var(--white);
}

.coaching-help-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(3.5rem, 8vw, 8rem);
}

.coaching-help-visual {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background: var(--indigo);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.coaching-help-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(36, 33, 38, 0.8));
}

.coaching-help-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% center;
}

.coaching-photo-caption {
  position: absolute;
  right: 2rem;
  bottom: 1.8rem;
  left: 2rem;
  z-index: 1;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.coaching-photo-caption span {
  display: block;
  margin-bottom: 0.5rem;
  color: #b9ffff;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coaching-help-content h2 {
  margin-bottom: 2.5rem;
}

.coaching-steps {
  display: flex;
  flex-direction: column;
}

.coaching-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.coaching-step:last-child {
  border-bottom: 1px solid var(--line);
}

.coaching-step > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--pink);
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.coaching-step:nth-child(2n) > span {
  background: var(--indigo);
}

.coaching-step h3 {
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}

.coaching-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.wellness-focus-section {
  background: var(--warm-white);
}

.wellness-focus-heading {
  display: grid;
  grid-template-columns: minmax(400px, 1fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.wellness-focus-heading h2 {
  margin-bottom: 0;
}

.wellness-focus-heading > p {
  max-width: 520px;
  margin-bottom: 0.4rem;
  color: var(--muted);
}

.wellness-focus-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.wellness-focus-card {
  min-height: 300px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 1.75rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
}

.wellness-focus-card:nth-child(2n) {
  background: #f8f5ff;
}

.wellness-focus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.focus-icon {
  width: 54px;
  height: 54px;
  position: relative;
  display: block;
  margin-bottom: 2.4rem;
  color: var(--indigo);
  background: linear-gradient(145deg, var(--blush), rgba(44, 205, 208, 0.2));
  border-radius: 50%;
}

.focus-icon-move::before {
  position: absolute;
  top: 17px;
  left: 14px;
  width: 26px;
  height: 16px;
  content: "";
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 50% 50%;
  transform: rotate(-12deg);
}

.focus-icon-drop::before {
  position: absolute;
  top: 13px;
  left: 18px;
  width: 19px;
  height: 25px;
  content: "";
  background: currentColor;
  border-radius: 55% 45% 58% 42% / 65% 45% 55% 35%;
  transform: rotate(45deg);
}

.focus-icon-bolt::before {
  position: absolute;
  top: 11px;
  left: 18px;
  width: 18px;
  height: 31px;
  content: "";
  background: currentColor;
  clip-path: polygon(55% 0, 100% 0, 66% 40%, 100% 40%, 26% 100%, 43% 54%, 0 54%);
}

.focus-icon-moon::before {
  position: absolute;
  top: 11px;
  left: 14px;
  width: 29px;
  height: 29px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.focus-icon-moon::after {
  position: absolute;
  top: 7px;
  left: 23px;
  width: 28px;
  height: 28px;
  content: "";
  background: #f0e6e8;
  border-radius: 50%;
}

.focus-icon-heart::before {
  position: absolute;
  top: 19px;
  left: 18px;
  width: 19px;
  height: 19px;
  content: "";
  background: currentColor;
  transform: rotate(45deg);
}

.focus-icon-heart::after {
  position: absolute;
  top: 13px;
  left: 18px;
  width: 19px;
  height: 19px;
  content: "";
  background:
    radial-gradient(circle at 25% 50%, currentColor 0 49%, transparent 51%),
    radial-gradient(circle at 75% 50%, currentColor 0 49%, transparent 51%);
}

.coaching-reassurance {
  padding: 5.5rem 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(44, 205, 208, 0.3), transparent 25%),
    var(--indigo);
}

.coaching-reassurance-inner {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.coaching-reassurance .soulfit-monogram {
  color: #b9ffff;
  text-align: center;
}

.coaching-reassurance blockquote {
  margin: 0;
}

.coaching-reassurance blockquote p {
  max-width: 850px;
  margin-bottom: 1.25rem;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.25;
}

.coaching-reassurance blockquote footer {
  color: #b9ffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .fitness-format-card {
    width: calc(33.333% - 0.7rem);
  }
}

@media (max-width: 760px) {
  .fitness-page .coaching-hero-grid {
    min-height: auto;
  }

  .fitness-format-card {
    width: calc(50% - 0.5rem);
  }

}

@media (max-width: 520px) {
  .fitness-format-card {
    width: 100%;
    min-height: auto;
  }
}

/* Nutrition education page */
.wellness-education-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 22%, rgba(222, 73, 200, 0.11), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(44, 205, 208, 0.2), transparent 27%),
    var(--warm-white);
}

.wellness-education-hero::before {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(61, 57, 150, 0.14);
  border-radius: 50%;
}

.wellness-education-hero-grid {
  min-height: 650px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
}

.wellness-education-hero-content {
  position: relative;
  z-index: 2;
}

.wellness-education-hero-content h1 {
  max-width: 780px;
}

.nutrition-page .wellness-education-hero-grid {
  min-height: 620px;
}

.wellness-education-visual {
  width: min(100%, 510px);
  min-height: 510px;
  position: relative;
  justify-self: end;
}

.wellness-education-visual::before,
.wellness-education-visual::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.wellness-education-visual::before {
  inset: 6%;
  border: 1px solid rgba(61, 57, 150, 0.14);
}

.wellness-education-visual::after {
  inset: 17%;
  border: 1px dashed rgba(222, 73, 200, 0.28);
}

.wellness-orbit-center,
.wellness-orbit {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow);
}

.wellness-orbit-center {
  top: 50%;
  left: 50%;
  width: 230px;
  height: 230px;
  padding: 2rem;
  color: var(--white);
  background:
    radial-gradient(circle at 28% 22%, rgba(44, 205, 208, 0.34), transparent 34%),
    var(--indigo);
  border-radius: 45% 55% 52% 48% / 52% 42% 58% 48%;
  transform: translate(-50%, -50%) rotate(-4deg);
}

.wellness-orbit-center span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.wellness-orbit-center p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
}

.wellness-orbit {
  width: 112px;
  height: 112px;
  padding: 1rem;
  color: var(--indigo);
  background: rgba(255, 255, 255, 0.95);
  border: 5px solid var(--warm-white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wellness-orbit-protein {
  top: 2%;
  left: 31%;
  background: var(--blush);
}

.wellness-orbit-hydration {
  top: 32%;
  right: 0;
  background: #dff7f6;
}

.wellness-orbit-vitamins {
  bottom: 3%;
  left: 39%;
  background: #f5eaf5;
}

.wellness-orbit-recovery {
  top: 42%;
  left: 0;
  color: var(--white);
  background: var(--pink);
}

.wellness-clarity-section {
  background: var(--white);
}

.wellness-clarity-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.wellness-clarity-copy {
  color: var(--muted);
}

.wellness-disclaimer {
  margin-top: 2.2rem;
  padding: 1.35rem 1.5rem;
  color: var(--indigo);
  background: rgba(222, 73, 200, 0.08);
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.wellness-disclaimer strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wellness-disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.education-areas-section {
  background:
    linear-gradient(rgba(247, 216, 212, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 216, 212, 0.26) 1px, transparent 1px),
    var(--sand);
  background-size: 48px 48px;
}

.education-areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.education-area-card {
  flex: 0 0 calc(25% - 0.75rem);
  min-height: 300px;
  position: relative;
  padding: 2rem 1.6rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-medium);
}

.education-area-card::after {
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 130px;
  height: 130px;
  content: "";
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.7;
}

.education-area-featured {
  color: rgba(255, 255, 255, 0.82);
  background: var(--indigo);
  border-color: var(--indigo);
  box-shadow: var(--shadow);
}

.education-area-featured::after {
  background: var(--aqua);
  opacity: 0.18;
}

.education-area-number {
  display: block;
  margin-bottom: 3.2rem;
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.education-area-featured .education-area-number {
  color: #b9ffff;
}

.education-area-card h3,
.education-area-card p {
  position: relative;
  z-index: 1;
}

.education-area-featured h3 {
  color: var(--white);
}

.education-area-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.education-area-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.supplements-lifestyle-section {
  background: var(--warm-white);
}

.supplements-lifestyle-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(480px, 1.15fr);
  align-items: stretch;
  gap: clamp(3rem, 7vw, 6rem);
}

.supplements-lifestyle-panel {
  min-height: 560px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 72% 20%, rgba(44, 205, 208, 0.36), transparent 28%),
    linear-gradient(155deg, var(--indigo), #292655);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.supplements-lifestyle-panel::before {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: 120px;
  height: 120px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.supplements-lifestyle-panel .eyebrow {
  color: #b9ffff;
}

.supplements-lifestyle-panel h2 {
  color: var(--white);
}

.supplements-lifestyle-panel p:last-child {
  margin-bottom: 0;
}

.supplements-principles {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.supplements-principles article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
}

.supplements-principles article:first-child {
  border-top: 1px solid var(--line);
}

.supplements-principles article > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--pink);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

.supplements-principles article:nth-child(2) > span {
  background: var(--indigo);
}

.supplements-principles article:nth-child(3) > span {
  background: var(--coral);
}

.supplements-principles h3 {
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}

.supplements-principles p {
  margin: 0;
  color: var(--muted);
}

.wellness-understanding-section {
  background: var(--white);
}

.wellness-understanding-heading {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.wellness-understanding-heading .section-heading h2,
.wellness-understanding-heading > p {
  margin-bottom: 0;
}

.wellness-understanding-heading > p {
  color: var(--muted);
}

.wellness-understanding-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.wellness-understanding-grid article {
  min-height: 315px;
  padding: 2rem 1.6rem;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
}

.wellness-understanding-grid article > span {
  display: inline-flex;
  margin-bottom: 3rem;
  padding: 0.45rem 0.75rem;
  color: var(--indigo);
  background: rgba(44, 205, 208, 0.16);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wellness-understanding-grid h3 {
  font-size: 1.35rem;
}

.wellness-understanding-grid p {
  margin: 0;
  color: var(--muted);
}

.nutrition-favorites-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 92% 12%, rgba(44, 205, 208, 0.18), transparent 24%),
    var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: 0 18px 45px rgba(61, 57, 150, 0.08);
}

.nutrition-favorites-label {
  display: inline-flex;
  margin-bottom: 1.1rem;
  padding: 0.45rem 0.75rem;
  color: var(--white);
  background: var(--pink);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nutrition-favorites-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.nutrition-favorites-card p {
  color: var(--muted);
}

.nutrition-favorites-card p:last-child {
  margin-bottom: 0;
  color: var(--indigo);
  font-weight: 700;
}

@media (max-width: 760px) {
  .nutrition-favorites-card {
    grid-template-columns: 1fr;
  }
}

.wellness-resource-section {
  background: var(--warm-white);
}

.wellness-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.wellness-download-card {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  box-shadow: 0 18px 45px rgba(61, 57, 150, 0.08);
}

.wellness-resource-visual {
  min-height: 275px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 85% 12%, rgba(44, 205, 208, 0.2), transparent 28%),
    linear-gradient(135deg, var(--blush), #f5eaf5);
}

.wellness-resource-cover img {
  width: min(100%, 210px);
  max-height: 250px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(61, 57, 150, 0.2));
  transform: rotate(-2deg);
}

.wellness-resource-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 2rem;
}

.wellness-resource-type {
  margin-bottom: 0.75rem;
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wellness-resource-content h3 {
  margin-bottom: 0.85rem;
  font-size: 1.55rem;
}

.wellness-resource-content > p:not(.wellness-resource-type) {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.wellness-download-button {
  align-self: center;
  min-height: 48px;
  margin-top: auto;
}

/* Blog and articles page */
.articles-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 12%, rgba(222, 73, 200, 0.11), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(44, 205, 208, 0.12), transparent 25%),
    var(--warm-white);
}

.articles-hero::after {
  position: absolute;
  right: -120px;
  bottom: -145px;
  width: 390px;
  height: 390px;
  content: "";
  border: 1px solid rgba(61, 57, 150, 0.1);
  border-radius: 50%;
}

.articles-hero-grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.78fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.articles-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.articles-hero-content h1 {
  max-width: 760px;
}

.articles-hero-content .hero-lead {
  max-width: 690px;
}

.articles-editorial-visual {
  width: min(100%, 480px);
  min-height: 520px;
  position: relative;
  z-index: 1;
  justify-self: end;
}

.editorial-sheet {
  position: absolute;
  inset: 4% 2% 3% 8%;
  display: flex;
  flex-direction: column;
  padding: clamp(2.3rem, 5vw, 4rem);
  overflow: hidden;
  background:
    linear-gradient(rgba(247, 216, 212, 0.3) 1px, transparent 1px),
    var(--white);
  background-size: 100% 42px;
  border: 1px solid rgba(61, 57, 150, 0.1);
  border-radius: 4px 4px var(--radius-large) 4px;
  box-shadow: 0 28px 55px rgba(61, 57, 150, 0.14);
  transform: rotate(2deg);
}

.editorial-sheet::before {
  position: absolute;
  top: -70px;
  right: -65px;
  width: 190px;
  height: 190px;
  content: "";
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.68;
}

.editorial-sheet-back {
  inset: 8% 9% 0 1%;
  background: var(--indigo);
  border: 0;
  box-shadow: none;
  transform: rotate(-5deg);
}

.editorial-sheet-back::before {
  display: none;
}

.editorial-sheet-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--indigo);
}

.editorial-kicker,
.editorial-issue {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-kicker {
  color: var(--pink);
}

.editorial-issue {
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--indigo);
  border-radius: 50%;
}

.editorial-title {
  max-width: 340px;
  position: relative;
  z-index: 1;
  margin: auto 0 2.2rem;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.editorial-topic-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.editorial-topic-list span {
  padding: 0.45rem 0.7rem;
  color: var(--indigo);
  background: rgba(44, 205, 208, 0.15);
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-topic-list span:nth-child(2) {
  color: #8c2f34;
  background: rgba(240, 95, 99, 0.14);
}

.editorial-topic-list span:nth-child(3) {
  color: #953386;
  background: rgba(222, 73, 200, 0.12);
}

.editorial-coming-soon {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.blog-pillars-section {
  background:
    linear-gradient(rgba(247, 216, 212, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 216, 212, 0.22) 1px, transparent 1px),
    var(--sand);
  background-size: 48px 48px;
}

.blog-pillars-heading {
  margin-bottom: 1.5rem;
}

.blog-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.blog-pillar-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-medium);
  box-shadow: 0 16px 40px rgba(61, 57, 150, 0.08);
}

.blog-pillar-visual {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 1.25rem 2rem;
}

.blog-pillar-visual h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
}

.blog-pillar-fitness {
  background: linear-gradient(145deg, var(--indigo), #282455);
}

.blog-pillar-nutrition {
  background: linear-gradient(145deg, #c53daf, var(--pink));
}

.blog-pillar-lifestyle {
  background: linear-gradient(145deg, #d94b51, var(--coral));
}

.blog-pillar-copy {
  flex: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 2rem;
}

.blog-pillar-label {
  margin-bottom: 0.65rem;
  color: var(--aqua);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-pillar-description {
  margin-bottom: 0;
  color: var(--muted);
}

.blog-subcategory-list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.blog-subcategory-list a {
  display: inline-flex;
  padding: 0.38rem 0.62rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.3;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}

.blog-category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.4rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.blog-category-link span {
  transition: transform var(--transition);
}

.blog-category-link:hover span,
.blog-category-link:focus-visible span {
  transform: translateX(4px);
}

.blog-pillar-card-fitness .blog-subcategory-list,
.blog-pillar-card-fitness .blog-category-link {
  color: var(--indigo);
}

.blog-pillar-card-fitness .blog-subcategory-list a {
  background: rgba(61, 57, 150, 0.07);
}

.blog-pillar-card-fitness .blog-subcategory-list a:hover,
.blog-pillar-card-fitness .blog-subcategory-list a:focus-visible {
  color: var(--white);
  background: var(--indigo);
}

.blog-pillar-card-nutrition .blog-subcategory-list,
.blog-pillar-card-nutrition .blog-category-link {
  color: var(--pink);
}

.blog-pillar-card-nutrition .blog-subcategory-list a {
  background: rgba(222, 73, 200, 0.07);
}

.blog-pillar-card-nutrition .blog-subcategory-list a:hover,
.blog-pillar-card-nutrition .blog-subcategory-list a:focus-visible {
  color: var(--white);
  background: var(--pink);
}

.blog-pillar-card-lifestyle .blog-subcategory-list,
.blog-pillar-card-lifestyle .blog-category-link {
  color: var(--coral);
}

.blog-pillar-card-lifestyle .blog-subcategory-list a {
  background: rgba(240, 95, 99, 0.07);
}

.blog-pillar-card-lifestyle .blog-subcategory-list a:hover,
.blog-pillar-card-lifestyle .blog-subcategory-list a:focus-visible {
  color: var(--white);
  background: var(--coral);
}

.latest-articles-section {
  background: var(--white);
  scroll-margin-top: 1rem;
}

/* Archive page */
.archive-hero-section {
  background: var(--cream);
  padding-bottom: 0;
}

.archive-back-link {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.archive-hero-lead {
  max-width: 640px;
  margin-top: 0.75rem;
  color: var(--muted);
}

.archive-articles-section {
  background: var(--white);
}

.archive-link-row {
  margin-top: 2rem;
  text-align: center;
}

.archive-link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.latest-articles-heading {
  margin-bottom: 1.75rem;
}

.latest-articles-heading .section-heading h2 {
  margin-bottom: 0;
}

.latest-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.latest-article-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.46fr) minmax(0, 0.54fr);
  overflow: hidden;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  box-shadow: 0 16px 40px rgba(61, 57, 150, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  scroll-margin-top: 1rem;
}

.article-anchor-target {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  scroll-margin-top: 1rem;
}

.latest-article-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.latest-article-accent {
  min-height: 300px;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 4vw, 3.25rem);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(145deg, var(--indigo), #282455);
}

.latest-article-accent h3 {
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: 1.06;
}

.latest-article-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(1.75rem, 4vw, 3rem);
}

.latest-article-copy .article-meta {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.latest-article-copy .article-status {
  color: var(--indigo);
  background: rgba(61, 57, 150, 0.08);
}

.latest-article-copy .text-link {
  color: var(--indigo);
}

.latest-article-card-lifestyle .latest-article-accent {
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(145deg, #d94b51, var(--coral));
}

.latest-article-card-lifestyle .article-topic,
.latest-article-card-lifestyle .article-status,
.latest-article-card-lifestyle .text-link {
  color: var(--coral);
}

.latest-article-card-lifestyle .article-status {
  background: rgba(240, 95, 99, 0.09);
}

.latest-article-card-nutrition .latest-article-accent {
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(145deg, var(--pink), #a8189a);
}

.latest-article-card-nutrition .article-topic,
.latest-article-card-nutrition .article-status,
.latest-article-card-nutrition .text-link {
  color: var(--pink);
}

.latest-article-card-nutrition .article-status {
  background: rgba(222, 73, 200, 0.09);
}

.article-read-time {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.latest-article-card p {
  max-width: 700px;
  color: var(--muted);
}


@media (max-width: 900px) {
  .blog-pillar-grid {
    grid-template-columns: 1fr;
  }

  .blog-pillar-visual {
    min-height: 82px;
  }

  .latest-article-card {
    grid-template-columns: 1fr;
  }

  .latest-article-accent {
    min-height: 220px;
  }

}

@media (max-width: 700px) {
  .blog-pillar-visual {
    min-height: 76px;
    padding: 1rem 1.6rem;
  }

  .blog-pillar-copy {
    padding: 1.6rem;
  }

  .blog-subcategory-list {
    margin-top: 1rem;
  }

  .latest-article-copy {
    padding: 1.6rem;
  }

  .latest-article-accent {
    min-height: 210px;
    padding: 1.25rem 1.6rem;
  }

}

.article-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(222, 73, 200, 0.14), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(44, 205, 208, 0.16), transparent 26%),
    var(--cream);
}

.article-theme-fitness {
  --article-accent: var(--indigo);
}

.article-theme-lifestyle {
  --article-accent: var(--coral);
}

.article-theme-nutrition {
  --article-accent: var(--pink);
}

.article-hero-inner {
  max-width: 940px;
  padding: 5.4rem 0 0;
}

.article-back-link {
  margin-bottom: 1.5rem;
}

.article-page .article-back-link,
.article-page .article-hero > .article-hero-inner > .eyebrow {
  color: var(--article-accent, var(--indigo));
}

.article-hero h1 {
  max-width: 900px;
  margin-bottom: 1.4rem;
  font-size: clamp(2.75rem, 4.6vw, 4.5rem);
  line-height: 1.02;
}

.article-summary {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
}

.article-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 0 0 1.5rem;
  list-style: none;
}

.article-meta-list li {
  padding: 0.5rem 0.75rem;
  color: var(--article-accent, var(--indigo));
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-meta-list li a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.article-meta-list li a:hover,
.article-meta-list li a:focus-visible {
  opacity: 0.75;
  text-decoration: underline;
  text-underline-offset: 2px;
  outline-offset: 2px;
}

.article-bridge-wrap {
  padding: 2rem 0;
  background: linear-gradient(to bottom, var(--cream) 50%, var(--white) 50%);
}

.article-bridge {
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 92% 15%, rgba(255, 255, 255, 0.15), transparent 24%),
    var(--article-accent, var(--indigo));
  border-radius: var(--radius-medium);
  box-shadow: 0 16px 36px rgba(61, 57, 150, 0.14);
}

.article-bridge .eyebrow {
  margin-bottom: 0.45rem;
  color: var(--aqua);
}

.article-bridge > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.35;
}

.article-body-section {
  padding-top: 0;
  background: var(--white);
}

.article-shell {
  width: min(820px, calc(100% - 3rem));
  margin-inline: auto;
}

.article-content {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.13rem);
  line-height: 1.8;
}

.article-content h2 {
  margin-top: 3rem;
  font-size: clamp(2rem, 3.8vw, 3rem);
}

.article-content p {
  margin-bottom: 1.35rem;
}

.article-disclaimer {
  margin-top: 2.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  border-left: 3px solid var(--line);
  padding-left: 1rem;
}

.article-bottom-cta {
  margin-top: 3.5rem;
  padding: clamp(1.1rem, 1.8vw, 1.4rem) clamp(1.8rem, 4vw, 2.6rem) clamp(2rem, 3vw, 2.4rem);
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 88% 18%, rgba(44, 205, 208, 0.22), transparent 26%),
    var(--article-accent, var(--indigo));
  border-radius: var(--radius-medium);
}

.article-bottom-cta h2 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.article-bottom-cta p {
  max-width: 620px;
  margin-bottom: 0;
}

.article-bottom-cta .button-group {
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.article-bottom-cta .button {
  min-height: 48px;
  padding: 0.72rem 1.15rem;
}

.article-bottom-cta .button-light {
  color: var(--article-accent, var(--indigo));
}

.article-bottom-cta .button-light:hover,
.article-bottom-cta .button-light:focus-visible {
  color: var(--article-accent, var(--indigo));
  background: var(--aqua);
}

.article-bottom-cta .button-outline-light:hover,
.article-bottom-cta .button-outline-light:focus-visible {
  color: var(--article-accent, var(--indigo));
}

@media (max-width: 700px) {
  .article-hero-inner {
    padding: 3.7rem 0 0;
  }

  .article-shell {
    width: min(100% - 2rem, 820px);
  }

  .article-bridge-wrap {
    padding: 1.5rem 0;
  }

  .article-body-section {
    padding-top: 0;
  }

  .article-content h2 {
    margin-top: 2.35rem;
  }

  .article-bottom-cta .button-group {
    align-items: stretch;
    flex-direction: column;
  }

  .article-bottom-cta .button {
    width: 100%;
  }
}

.featured-articles-section {
  background: var(--white);
}

.featured-articles-heading {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.featured-articles-heading .section-heading h2,
.featured-articles-heading > p {
  margin-bottom: 0;
}

.featured-articles-heading > p {
  color: var(--muted);
}

.featured-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.featured-article-card {
  overflow: hidden;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  transition: transform var(--transition), box-shadow var(--transition);
}

.featured-article-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.featured-article-visual {
  min-height: 235px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.5rem;
  overflow: hidden;
  color: var(--white);
}

.featured-article-visual::before,
.featured-article-visual::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.featured-article-visual::before {
  top: -35px;
  right: -25px;
  width: 165px;
  height: 165px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.featured-article-visual::after {
  top: 38px;
  right: 50px;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.12);
}

.featured-article-spin {
  background: linear-gradient(145deg, var(--indigo), #282455);
}

.featured-article-consistency {
  background: linear-gradient(145deg, #c53daf, var(--pink));
}

.featured-article-confidence {
  background: linear-gradient(145deg, #d94b51, var(--coral));
}

.featured-article-visual span,
.featured-article-visual strong {
  position: relative;
  z-index: 1;
}

.featured-article-visual span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
}

.featured-article-visual strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  font-style: italic;
  line-height: 0.8;
}

.featured-article-copy {
  padding: 1.7rem;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.article-topic,
.article-status,
.article-category-note {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-topic {
  color: var(--indigo);
}

.article-status {
  padding: 0.4rem 0.62rem;
  color: #953386;
  background: rgba(222, 73, 200, 0.1);
  border-radius: 999px;
}

.featured-article-card h3 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}

.featured-article-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-categories-section {
  background:
    linear-gradient(rgba(247, 216, 212, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 216, 212, 0.26) 1px, transparent 1px),
    var(--sand);
  background-size: 48px 48px;
}

.article-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.article-category-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-medium);
}

.article-category-card:nth-child(2),
.article-category-card:nth-child(5) {
  background: var(--indigo);
  border-color: var(--indigo);
  box-shadow: var(--shadow);
}

.article-category-number {
  display: block;
  margin-bottom: 3rem;
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.article-category-card:nth-child(2) .article-category-number,
.article-category-card:nth-child(5) .article-category-number {
  color: #b9ffff;
}

.article-category-card h3 {
  font-size: 1.5rem;
}

.article-category-card p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.article-category-card:nth-child(2) h3,
.article-category-card:nth-child(5) h3 {
  color: var(--white);
}

.article-category-card:nth-child(2) p,
.article-category-card:nth-child(5) p {
  color: rgba(255, 255, 255, 0.72);
}

.article-category-note {
  margin-top: auto;
  color: var(--indigo);
}

.article-category-card:nth-child(2) .article-category-note,
.article-category-card:nth-child(5) .article-category-note {
  color: #b9ffff;
}

.articles-values-section {
  background: var(--warm-white);
}

.articles-values-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(480px, 1.15fr);
  align-items: stretch;
  gap: clamp(3rem, 7vw, 6rem);
}

.articles-values-panel {
  min-height: 560px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 73% 17%, rgba(222, 73, 200, 0.42), transparent 29%),
    linear-gradient(155deg, var(--indigo), #292655);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.articles-values-panel::before {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: 118px;
  height: 118px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.articles-values-panel .eyebrow {
  color: #b9ffff;
}

.articles-values-panel h2 {
  color: var(--white);
}

.articles-values-panel p:last-child {
  margin-bottom: 0;
}

.articles-values-list {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.articles-value-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
}

.articles-value-item:first-child {
  border-top: 1px solid var(--line);
}

.articles-value-item > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--pink);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

.articles-value-item:nth-child(2) > span {
  background: var(--indigo);
}

.articles-value-item:nth-child(3) > span {
  background: var(--coral);
}

.articles-value-item:nth-child(4) > span {
  color: var(--indigo);
  background: var(--aqua);
}

.articles-value-item h3 {
  margin-bottom: 0.4rem;
  font-size: 1.28rem;
}

.articles-value-item p {
  margin: 0;
  color: var(--muted);
}

/* Community and motivation page */
.community-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 15%, rgba(222, 73, 200, 0.11), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(44, 205, 208, 0.16), transparent 25%),
    var(--warm-white);
}

.community-hero::before {
  position: absolute;
  right: -150px;
  bottom: -190px;
  width: 480px;
  height: 480px;
  content: "";
  border: 1px solid rgba(61, 57, 150, 0.12);
  border-radius: 50%;
}

.community-hero-grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(450px, 1.05fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.community-hero-content {
  position: relative;
  z-index: 2;
}

.community-hero-content h1 {
  max-width: 690px;
}

.community-hero-content .hero-lead {
  max-width: 650px;
}

.community-hero-visual {
  min-height: 510px;
  position: relative;
}

.community-hero-shape {
  position: absolute;
  inset: 1% 3% 8% 4%;
  background: linear-gradient(145deg, rgba(222, 73, 200, 0.27), rgba(44, 205, 208, 0.34));
  border-radius: 42% 58% 54% 46% / 49% 42% 58% 51%;
  transform: rotate(4deg);
}

.community-hero-photo {
  position: absolute;
  inset: 7% 1% 10% 0;
  margin: 0;
  overflow: hidden;
  background: var(--indigo);
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 38% 62% 44% 56% / 54% 40% 60% 46%;
  box-shadow: var(--shadow);
}

.community-hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 52% center;
  transform: scale(1.03);
}

.community-hero-photo figcaption {
  display: none;
}

.community-quote-card {
  position: absolute;
  right: -4%;
  bottom: 6%;
  z-index: 3;
  width: 230px;
  padding: 1.15rem 1.25rem 1.15rem 1.45rem;
  background: rgba(255, 255, 255, 0.94);
  border-left: 4px solid var(--pink);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.community-quote-card p {
  margin: 0;
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.4;
}

.community-hero-note {
  position: absolute;
  right: -4%;
  bottom: 3%;
  z-index: 3;
  width: 230px;
  padding: 1.15rem 1.3rem;
  background: rgba(255, 255, 255, 0.95);
  border-left: 4px solid var(--pink);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.community-hero-note span,
.community-personal-note span,
.community-motivation-reminder span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--pink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.community-hero-note p {
  margin: 0;
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.4;
}

.community-belonging-section {
  background: var(--white);
}

.community-belonging-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(440px, 1.2fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.community-belonging-copy {
  color: var(--muted);
}

.community-personal-note {
  margin-top: 2.2rem;
  padding: 1.6rem 1.8rem;
  color: var(--indigo);
  background: rgba(222, 73, 200, 0.08);
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.community-personal-note p {
  margin: 0;
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  line-height: 1.45;
}

.community-feeling-section {
  background:
    linear-gradient(rgba(247, 216, 212, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 216, 212, 0.28) 1px, transparent 1px),
    var(--sand);
  background-size: 48px 48px;
}

.community-feeling-section .section-heading.centered h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.15;
}

.community-feeling-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.community-feeling-card {
  min-height: 320px;
  position: relative;
  padding: 2rem 1.6rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-medium);
}

.community-feeling-card::after {
  position: absolute;
  right: -42px;
  bottom: -55px;
  width: 135px;
  height: 135px;
  content: "";
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.72;
}

.community-feeling-card-featured {
  color: rgba(255, 255, 255, 0.78);
  background: var(--indigo);
  border-color: var(--indigo);
  box-shadow: var(--shadow);
  transform: translateY(-0.8rem);
}

.community-feeling-card-featured::after {
  background: var(--aqua);
  opacity: 0.16;
}

.community-card-number {
  display: block;
  margin-bottom: 3.4rem;
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.community-feeling-card h3,
.community-feeling-card p {
  position: relative;
  z-index: 1;
}

.community-feeling-card p {
  margin: 0;
  color: var(--muted);
}

.community-feeling-card-featured .community-card-number {
  color: #b9ffff;
}

.community-feeling-card-featured h3 {
  color: var(--white);
}

.community-feeling-card-featured p {
  color: rgba(255, 255, 255, 0.74);
}

.community-motivation-section {
  background: var(--warm-white);
}

.community-motivation-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(480px, 1.1fr);
  align-items: stretch;
  gap: clamp(3rem, 7vw, 6rem);
}

.community-motivation-panel {
  min-height: 570px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 76% 17%, rgba(222, 73, 200, 0.42), transparent 29%),
    linear-gradient(155deg, var(--indigo), #292655);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.community-motivation-panel::before {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: 120px;
  height: 120px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.community-motivation-panel .eyebrow {
  color: #b9ffff;
}

.community-motivation-panel h2 {
  color: var(--white);
}

.community-motivation-panel > p {
  margin-bottom: 1.8rem;
}

.community-motivation-reminder {
  padding: 1.15rem 1.3rem;
  background: rgba(255, 255, 255, 0.09);
  border-left: 3px solid var(--aqua);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.community-motivation-reminder span {
  color: #b9ffff;
}

.community-motivation-reminder p {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.4;
}

.community-motivation-list {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.community-motivation-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}

.community-motivation-list article:first-child {
  border-top: 1px solid var(--line);
}

.community-motivation-list article > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--pink);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

.community-motivation-list article:nth-child(2) > span {
  background: var(--coral);
}

.community-motivation-list article:nth-child(3) > span {
  color: var(--indigo);
  background: var(--aqua);
}

.community-motivation-list h3 {
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}

.community-motivation-list p {
  margin: 0;
  color: var(--muted);
}

.community-class-section {
  background: var(--white);
}

.community-class-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(500px, 1.15fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.community-class-photo {
  min-height: 610px;
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--indigo);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.community-class-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 52%, rgba(36, 33, 38, 0.78));
}

.community-class-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 53% center;
  transition: transform 500ms ease;
}

.community-class-photo:hover img {
  transform: scale(1.025);
}

.community-class-photo figcaption {
  position: absolute;
  right: 2rem;
  bottom: 1.8rem;
  left: 2rem;
  z-index: 1;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.25;
}

.community-class-photo figcaption span {
  display: block;
  margin-bottom: 0.4rem;
  color: #b9ffff;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.community-class-content > p {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.05rem;
}

.community-support-list {
  margin-top: 2.5rem;
}

.community-support-list article {
  position: relative;
  padding: 1.4rem 0 1.4rem 1.5rem;
  border-top: 1px solid var(--line);
}

.community-support-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.community-support-list article::before {
  position: absolute;
  top: 1.55rem;
  bottom: 1.55rem;
  left: 0;
  width: 4px;
  content: "";
  background: var(--pink);
  border-radius: 999px;
}

.community-support-list article:nth-child(2)::before {
  background: var(--coral);
}

.community-support-list article:nth-child(3)::before {
  background: var(--aqua);
}

.community-support-list article > span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--pink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.community-support-list article:nth-child(2) > span {
  color: var(--coral);
}

.community-support-list article:nth-child(3) > span {
  color: #168e91;
}

.community-support-list h3 {
  margin-bottom: 0.35rem;
  font-size: 1.3rem;
}

.community-support-list p {
  margin: 0;
  color: var(--muted);
}

.community-stories-section {
  background:
    linear-gradient(rgba(247, 216, 212, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 216, 212, 0.28) 1px, transparent 1px),
    var(--sand);
  background-size: 48px 48px;
}

.community-stories-heading {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.community-stories-heading .section-heading h2,
.community-stories-heading > p {
  margin-bottom: 0;
}

.community-stories-heading > p {
  color: var(--muted);
}

.community-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.community-testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(247, 216, 212, 0.7);
  border-top: 3px solid var(--coral);
  border-radius: var(--radius-medium);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.community-testimonial-card blockquote {
  margin: 0 0 1.5rem;
  padding: 0;
}

.community-testimonial-card blockquote p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--charcoal);
  font-style: italic;
}

.community-testimonial-footer {
  border-top: 1px solid rgba(247, 216, 212, 0.6);
  padding-top: 1rem;
}

.community-testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.03em;
}

/* Contact page */
.contact-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 18%, rgba(222, 73, 200, 0.11), transparent 28%),
    radial-gradient(circle at 91% 13%, rgba(44, 205, 208, 0.16), transparent 25%),
    var(--warm-white);
}

.contact-hero::after {
  position: absolute;
  right: -135px;
  bottom: -185px;
  width: 450px;
  height: 450px;
  content: "";
  border: 1px solid rgba(61, 57, 150, 0.12);
  border-radius: 50%;
}

.contact-hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.78fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero-content h1 {
  max-width: 720px;
}

.contact-hero-content .hero-lead {
  max-width: 680px;
}

.contact-hero-visual {
  width: min(100%, 500px);
  min-height: 510px;
  position: relative;
  z-index: 1;
  justify-self: end;
}

.contact-hero-visual::before,
.contact-hero-visual::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.contact-hero-visual::before {
  inset: 8%;
  background: linear-gradient(145deg, rgba(222, 73, 200, 0.18), rgba(44, 205, 208, 0.2));
}

.contact-hero-visual::after {
  inset: 19%;
  border: 1px dashed rgba(61, 57, 150, 0.24);
}

.contact-note {
  width: 168px;
  min-height: 145px;
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(61, 57, 150, 0.1);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow);
}

.contact-note span,
.contact-note-center > span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-note p {
  margin: 0;
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.3;
}

.contact-note-classes {
  top: 2%;
  left: 2%;
  transform: rotate(-5deg);
}

.contact-note-classes span {
  color: var(--pink);
}

.contact-note-coaching {
  top: 9%;
  right: 0;
  background: var(--blush);
  transform: rotate(5deg);
}

.contact-note-coaching span {
  color: var(--coral);
}

.contact-note-questions {
  bottom: 1%;
  left: 5%;
  background: #dff7f6;
  transform: rotate(4deg);
}

.contact-note-questions span {
  color: #168e91;
}

.contact-note-center {
  position: absolute;
  top: 50%;
  left: 54%;
  z-index: 3;
  width: 230px;
  min-height: 230px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 30% 24%, rgba(222, 73, 200, 0.4), transparent 32%),
    var(--indigo);
  border: 7px solid rgba(255, 255, 255, 0.88);
  border-radius: 46% 54% 52% 48% / 54% 43% 57% 46%;
  box-shadow: var(--shadow);
  text-align: center;
  transform: translate(-50%, -50%) rotate(-3deg);
}

.contact-note-center > span {
  margin-bottom: 0.8rem;
  color: #b9ffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.6rem;
  font-style: italic;
  letter-spacing: -0.08em;
  line-height: 0.8;
  text-transform: none;
}

.contact-note-center p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.5;
}

.contact-welcome-section {
  padding-top: 2.25rem;
  background: var(--white);
}

.contact-welcome-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(440px, 1.2fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-welcome-copy {
  color: var(--muted);
}

.contact-availability-note {
  margin-top: 2.2rem;
  padding: 1.35rem 1.5rem;
  color: var(--indigo);
  background: rgba(222, 73, 200, 0.08);
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.contact-availability-note strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-availability-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-pathways-section {
  background:
    linear-gradient(rgba(247, 216, 212, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 216, 212, 0.28) 1px, transparent 1px),
    var(--sand);
  background-size: 48px 48px;
}

.contact-pathways-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-pathway-card {
  min-height: 510px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-large);
}

.contact-pathway-coaching {
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 90% 8%, rgba(222, 73, 200, 0.42), transparent 28%),
    var(--indigo);
  border-color: var(--indigo);
  box-shadow: var(--shadow);
}

.contact-pathway-label {
  display: inline-flex;
  margin-bottom: 4rem;
  padding: 0.48rem 0.75rem;
  color: var(--indigo);
  background: rgba(44, 205, 208, 0.15);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-pathway-coaching .contact-pathway-label {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
}

.contact-pathway-card h3 {
  max-width: 540px;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
}

.contact-pathway-card > p {
  max-width: 560px;
  color: var(--muted);
}

.contact-pathway-card ul {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  list-style: none;
}

.contact-pathway-card li {
  position: relative;
  padding-left: 1.1rem;
}

.contact-pathway-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--aqua);
  border-radius: 50%;
}

.contact-pathway-card .text-link {
  margin-top: auto;
}

.contact-pathway-coaching h3 {
  color: var(--white);
}

.contact-pathway-coaching > p,
.contact-pathway-coaching ul {
  color: rgba(255, 255, 255, 0.72);
}

.contact-pathway-coaching .text-link {
  color: #b9ffff;
}

.contact-pathway-coaching li::before {
  background: var(--pink);
}

.contact-social-section {
  background: var(--warm-white);
}

.contact-social-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.75);
  background:
    radial-gradient(circle at 96% 5%, rgba(44, 205, 208, 0.24), transparent 28%),
    linear-gradient(145deg, var(--indigo), #292655);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.contact-social-copy {
  position: relative;
  z-index: 1;
}

.contact-social-copy .eyebrow {
  color: #b9ffff;
}

.contact-social-copy h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
}

.contact-social-copy p:last-child {
  margin-bottom: 0;
}

.contact-social-links {
  position: relative;
  z-index: 1;
  display: grid;
}

.contact-social-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  text-decoration: none;
}

.contact-social-links a:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-social-links a:hover,
.contact-social-links a:focus-visible {
  color: #b9ffff;
}

.contact-social-links a span {
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-social-status {
  grid-column: 1 / -1;
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  text-align: right;
}

.community-instagram-btn {
  display: inline-block;
  margin-top: 1.75rem;
}

.community-instagram-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-instagram-link {
  display: block;
  width: 100%;
}

.community-instagram-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.community-instagram-link:hover .community-instagram-img,
.community-instagram-link:focus-visible .community-instagram-img {
  opacity: 0.88;
  transform: translateY(-2px);
}

.contact-form-section {
  background: var(--white);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-form-intro {
  position: sticky;
  top: 2rem;
}

.contact-form-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-form-placeholder-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
  padding: 1.25rem;
  background: rgba(222, 73, 200, 0.08);
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.contact-form-placeholder-note > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--pink);
  border-radius: 50%;
  font-weight: 800;
}

.contact-form-placeholder-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--indigo);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-placeholder-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field label {
  color: var(--indigo);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.contact-field label span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 600;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.85rem 1rem;
  color: var(--charcoal);
  background: var(--white);
  border: 2px solid rgba(61, 57, 150, 0.48);
  border-radius: var(--radius-small);
  font: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-field textarea {
  min-height: 175px;
  resize: vertical;
}

.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
  border-color: rgba(61, 57, 150, 0.75);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  background: var(--white);
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(61, 57, 150, 0.14);
  outline: 0;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.35rem;
}

.contact-form-actions p {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.contact-form-status {
  min-height: 0;
  margin: 0;
  color: var(--indigo);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-form-status:not(:empty) {
  min-height: 52px;
  padding: 0.85rem 1rem;
  background: rgba(44, 205, 208, 0.14);
  border-left: 4px solid var(--aqua);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.contact-form-consent {
  grid-column: 1 / -1;
  margin: 0;
}

.contact-consent-label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.6rem;
  align-items: start;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.contact-consent-label input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--indigo);
  cursor: pointer;
  flex-shrink: 0;
}

.contact-form-privacy {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.contact-form-privacy .text-link {
  color: var(--indigo);
}

.contact-form-success {
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-form-success h3 {
  margin-bottom: 0.75rem;
  color: var(--indigo);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

.contact-form-success p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Home page spacing */
.home-page .hero {
  min-height: 620px;
}

.home-page .hero-grid {
  min-height: 600px;
  padding-top: 3rem;
  padding-bottom: 4.5rem;
}

.home-page .section {
  padding: 4.5rem 0;
}

.home-page .section-heading.centered {
  margin-bottom: 2.4rem;
}

.home-page .audience-section .section-heading.centered h2 {
  font-size: clamp(1.9rem, 3.1vw, 2.9rem);
  line-height: 1.12;
}

.home-page .card-number {
  margin-bottom: 2.75rem;
}

.home-page .offers-heading {
  margin-bottom: 2.5rem;
}

.home-page .offer-icon {
  margin-bottom: 1.5rem;
}

.home-page .quote-section {
  padding-top: 1.5rem;
}

.home-page .cta-section {
  padding: 4rem 0;
}

:focus-visible {
  outline: 3px solid rgba(44, 205, 208, 0.58);
  outline-offset: 4px;
}

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

  .primary-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    min-height: calc(100vh - 97px);
    max-height: calc(100vh - 97px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 0;
    padding: 1rem max(1.5rem, calc((100% - var(--container)) / 2));
    overflow-y: auto;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(74, 48, 61, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .primary-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-navigation a {
    padding: 0.9rem 1rem;
  }

  .primary-navigation a::after {
    right: 1rem;
    bottom: 0.75rem;
    left: 1rem;
  }

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

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

  .evergreen-card-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
    gap: 3rem;
  }

  .about-stats {
    grid-template-columns: 1.25fr 0.7fr 0.7fr;
  }

  .weekly-schedule {
    gap: 0.45rem;
  }

  .schedule-class-list {
    gap: 0.45rem;
    padding: 0.5rem;
  }

  .schedule-class {
    padding: 0.75rem 0.55rem;
  }

  .coaching-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 3rem;
  }

  .wellness-focus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wellness-education-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 3rem;
  }

  .wellness-understanding-grid,
  .article-category-grid,
  .community-feeling-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .education-area-card {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .contact-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 3.75rem 0;
  }

  .home-page .section {
    padding: 3.75rem 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 5rem;
    padding-bottom: 8rem;
  }

  .home-page .hero {
    min-height: auto;
  }

  .home-page .hero-grid {
    min-height: auto;
    padding-top: 3.5rem;
    padding-bottom: 5.25rem;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 580px);
    min-height: 430px;
    margin: 0 auto;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: auto;
  }

  .audience-card.featured-card {
    transform: none;
  }

  .card-number {
    margin-bottom: 2.5rem;
  }

  .movement-gallery {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  }

  .sfr-offers-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sfr-offers-photo {
    min-height: 440px;
  }

  .home-resources-card {
    grid-template-columns: 1fr;
  }

  .home-resources-preview {
    min-height: 230px;
    justify-items: start;
  }

  .home-resource-mini-card {
    right: auto;
    left: 135px;
  }

  .quote-card {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 4.5rem;
  }

  .about-hero-content {
    max-width: 760px;
  }

  .about-hero-visual {
    width: min(100%, 590px);
    min-height: 490px;
    margin: 0 auto;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .story-visual {
    width: min(100%, 580px);
    margin: 0 auto;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat-intro {
    grid-column: 1 / -1;
  }

  .purpose-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .purpose-card {
    min-height: auto;
  }

  .purpose-card-featured {
    transform: none;
  }

  .purpose-number {
    margin-bottom: 2.5rem;
  }

  .schedule-hero-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
    gap: 2rem;
  }

  .weekly-schedule {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .schedule-day {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
    align-items: stretch;
  }

  .schedule-day-heading {
    display: grid;
    place-items: center;
    padding: 1.2rem;
    font-size: 0.95rem;
  }

  .schedule-class-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.8rem;
  }

  .schedule-empty {
    min-height: 90px;
  }

  .coaching-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 4.5rem;
  }

  .coaching-hero-content {
    max-width: 760px;
  }

  .coaching-hero-visual {
    width: min(100%, 580px);
    min-height: 480px;
    margin: 0 auto;
  }

  .coaching-meaning-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .coaching-help-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .coaching-help-visual {
    width: min(100%, 620px);
    min-height: 560px;
    margin: 0 auto;
  }

  .wellness-focus-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .coaching-reassurance-inner {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 3rem;
  }

  .wellness-education-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 4.5rem;
  }

  .wellness-education-hero-content {
    max-width: 760px;
  }

  .wellness-education-visual {
    width: min(100%, 540px);
    min-height: 500px;
    justify-self: center;
  }

  .wellness-clarity-grid,
  .supplements-lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .supplements-lifestyle-panel {
    min-height: 470px;
  }

  .wellness-understanding-heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .articles-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 4.5rem;
  }

  .articles-hero-content {
    max-width: 760px;
  }

  .articles-editorial-visual {
    width: min(100%, 540px);
    justify-self: center;
  }

  .featured-articles-heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .featured-articles-grid {
    grid-template-columns: 1fr;
  }

  .featured-article-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(340px, 1.3fr);
    align-items: stretch;
  }

  .featured-article-visual {
    min-height: 290px;
  }

  .articles-values-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .articles-values-panel {
    min-height: 470px;
  }

  .community-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 4.5rem;
  }

  .community-hero-content {
    max-width: 760px;
  }

  .community-hero-visual {
    width: min(100%, 620px);
    min-height: 500px;
    margin: 0 auto;
  }

  .community-belonging-grid,
  .community-motivation-grid,
  .community-class-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .community-motivation-panel {
    min-height: 470px;
  }

  .community-class-photo {
    width: min(100%, 580px);
    min-height: 560px;
    margin: 0 auto;
  }

  .community-stories-heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contact-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 4.5rem;
  }

  .contact-hero-content {
    max-width: 760px;
  }

  .contact-hero-visual {
    width: min(100%, 540px);
    min-height: 500px;
    justify-self: center;
  }

  .contact-welcome-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .contact-form-intro {
    position: static;
  }

  .contact-social-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-social-status {
    grid-column: auto;
    text-align: left;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 2rem, var(--container));
  }

  .section {
    padding: 3.1rem 0;
  }

  .home-page .section {
    padding: 3.1rem 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-logo {
    width: 145px;
  }

  .primary-navigation {
    min-height: calc(100vh - 77px);
    max-height: calc(100vh - 77px);
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 3.7rem;
    padding-bottom: 7rem;
  }

  .home-page .hero-grid {
    padding-top: 2.75rem;
    padding-bottom: 4.8rem;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .hero-highlights {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 350px;
  }

  .encouragement-card {
    right: 0;
  }

  .hero-wave {
    bottom: -125px;
  }

  .offers-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .sfr-offers-list {
    grid-template-columns: 1fr;
  }

  .sfr-offers-list article,
  .sfr-offers-list article:nth-child(2n) {
    padding: 1.1rem 0;
    border-left: 0;
  }

  .sfr-offers-photo {
    min-height: 350px;
  }

  .movement-gallery {
    grid-template-columns: 1fr;
  }

  .home-resources-card {
    padding: 2rem 1.5rem;
  }

  .home-resources-preview {
    min-height: 210px;
  }

  .home-resource-list {
    display: grid;
  }

  .home-resource-mini-card {
    left: 120px;
    bottom: 0.6rem;
  }

  .movement-photo {
    min-height: 290px;
  }

  .offer-card {
    min-height: 300px;
  }

  .quote-card {
    grid-template-columns: 1fr;
  }

  .quote-photo {
    min-height: 300px;
  }

  .quote-card blockquote {
    padding: 3.5rem 2rem;
  }

  .quote-mark {
    top: 1rem;
    left: 1rem;
  }

  .cta-section {
    padding: 4.5rem 0;
  }

  .home-page .cta-section {
    padding: 3.25rem 0;
  }

  .cta-inner .button-group {
    width: 100%;
  }

  .cta-inner .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .about-hero-grid {
    padding-top: 3.7rem;
    padding-bottom: 4.5rem;
  }

  .about-hero-content h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .about-hero-visual {
    min-height: 390px;
  }

  .about-location-card {
    right: 0;
  }

  .story-visual {
    min-height: 470px;
  }

  .story-visual::before {
    left: 0;
  }

  .turning-point {
    right: -0.5rem;
    width: 155px;
    min-height: 155px;
  }

  .turning-point strong {
    font-size: 3.4rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-intro {
    grid-column: auto;
    margin-bottom: 1rem;
  }

  .stat-item {
    min-height: 125px;
    padding: 1.5rem 0 1.5rem 1.75rem;
  }

  .about-quote-card {
    grid-template-columns: 1fr;
  }

  .about-quote-photo {
    min-height: 300px;
  }

  .about-quote-card blockquote {
    padding: 3.5rem 2rem;
  }

  .schedule-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .schedule-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .schedule-hero-aside {
    min-height: auto;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-medium);
    text-align: left;
  }

  .schedule-stat {
    align-items: flex-start;
    flex-shrink: 0;
  }

  .schedule-mark {
    font-size: 2rem;
  }

  .schedule-hero-aside p {
    max-width: none;
    margin: 0;
  }

  .schedule-section {
    padding: 4.5rem 0;
    background-size: 38px 38px;
  }

  .schedule-shell {
    width: min(100% - 2rem, 1380px);
  }

  .schedule-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .schedule-week-meta {
    align-items: flex-start;
    text-align: left;
  }

  .schedule-notice {
    align-items: flex-start;
    border-radius: var(--radius-small);
  }

  .schedule-day {
    display: flex;
  }

  .schedule-day-heading {
    display: block;
    padding: 1rem 1.2rem;
    font-size: 0.94rem;
    text-align: left;
  }

  .schedule-class-list {
    display: flex;
    padding: 0.8rem;
  }

  .schedule-class {
    padding: 1rem;
  }

  .schedule-class-name {
    font-size: 1.15rem;
  }

  .schedule-class-location {
    font-size: 0.78rem;
  }

  .schedule-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .schedule-contact .button {
    width: 100%;
  }

  .evergreen-card-grid,
  .evergreen-card-grid-three {
    grid-template-columns: 1fr;
  }

  .evergreen-card {
    min-height: auto;
    padding: 1.75rem;
  }

  .evergreen-section-action .button {
    width: 100%;
  }

  .coaching-hero-grid {
    padding-top: 3.7rem;
    padding-bottom: 4.5rem;
  }

  .coaching-hero-content h1 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .coaching-hero-visual {
    min-height: 380px;
  }

  .coaching-hero-note {
    right: 0;
  }

  .coaching-audience-grid {
    grid-template-columns: 1fr;
  }

  .coaching-audience-card {
    min-height: auto;
  }

  .coaching-card-label {
    margin-bottom: 2.5rem;
  }

  .coaching-help-visual {
    min-height: 470px;
  }

  .wellness-focus-grid {
    grid-template-columns: 1fr;
  }

  .wellness-focus-card {
    min-height: auto;
  }

  .focus-icon {
    margin-bottom: 1.8rem;
  }

  .coaching-reassurance-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .coaching-reassurance .soulfit-monogram {
    text-align: left;
  }

  .wellness-education-hero-grid {
    padding-top: 3.7rem;
    padding-bottom: 4.5rem;
  }

  .wellness-education-hero-content h1 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .wellness-education-visual {
    min-height: 390px;
  }

  .wellness-orbit-center {
    width: 180px;
    height: 180px;
    padding: 1.5rem;
  }

  .wellness-orbit-center span {
    font-size: 3.25rem;
  }

  .wellness-orbit {
    width: 88px;
    height: 88px;
    padding: 0.65rem;
    border-width: 4px;
    font-size: 0.56rem;
  }

  .wellness-understanding-grid {
    grid-template-columns: 1fr;
  }

  .education-area-card,
  .wellness-understanding-grid article {
    flex: 0 0 100%;
    min-height: auto;
  }

  .education-area-number,
  .wellness-understanding-grid article > span {
    margin-bottom: 2rem;
  }

  .supplements-lifestyle-panel {
    min-height: 410px;
    padding: 2.25rem 1.75rem;
  }

  .supplements-principles article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 1rem;
  }

  .supplements-principles article > span {
    width: 40px;
    height: 40px;
  }

  .wellness-resource-grid {
    grid-template-columns: 1fr;
  }

  .wellness-download-card {
    min-height: auto;
  }

  .wellness-resource-visual {
    min-height: 250px;
  }

  .wellness-resource-content {
    padding: 1.75rem;
  }

  .articles-hero-grid {
    padding-top: 3.7rem;
    padding-bottom: 4.5rem;
  }

  .articles-hero-content h1 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .articles-editorial-visual {
    min-height: 430px;
  }

  .editorial-sheet {
    padding: 2rem;
  }

  .featured-article-card {
    display: block;
  }

  .featured-article-visual {
    min-height: 225px;
  }

  .article-category-grid {
    grid-template-columns: 1fr;
  }

  .article-category-card {
    min-height: auto;
  }

  .article-category-number {
    margin-bottom: 2rem;
  }

  .articles-values-panel {
    min-height: 410px;
    padding: 2.25rem 1.75rem;
  }

  .articles-value-item {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 1rem;
  }

  .articles-value-item > span {
    width: 40px;
    height: 40px;
  }

  .community-hero-grid {
    padding-top: 3.7rem;
    padding-bottom: 4.5rem;
  }

  .community-hero-content h1 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .community-hero-visual {
    min-height: 400px;
  }

  .community-hero-note {
    right: 0;
  }

  .community-quote-card {
    right: 0;
  }

  .community-feeling-grid,
  .community-story-grid {
    grid-template-columns: 1fr;
  }

  .community-feeling-card,
  .community-testimonial-card {
    min-height: auto;
  }

  .community-feeling-card-featured {
    transform: none;
  }

  .community-card-number {
    margin-bottom: 2rem;
  }

  .community-motivation-panel {
    min-height: 420px;
    padding: 2.25rem 1.75rem;
  }

  .community-motivation-list article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 1rem;
  }

  .community-motivation-list article > span {
    width: 40px;
    height: 40px;
  }

  .community-class-photo {
    min-height: 480px;
  }


  .contact-hero-grid {
    padding-top: 3.7rem;
    padding-bottom: 2.25rem;
  }

  .contact-welcome-section {
    padding-top: 1.75rem;
  }

  .contact-hero-content h1 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .contact-hero-visual {
    min-height: 400px;
  }

  .contact-note {
    width: 145px;
    min-height: 122px;
    padding: 1rem;
  }

  .contact-note p {
    font-size: 0.98rem;
  }

  .contact-note-center {
    width: 190px;
    min-height: 190px;
    padding: 1.5rem;
  }

  .contact-note-center > span {
    font-size: 3rem;
  }

  .contact-pathways-grid {
    grid-template-columns: 1fr;
  }

  .contact-pathway-card {
    min-height: auto;
    padding: 2.25rem 1.75rem;
  }

  .contact-pathway-label {
    margin-bottom: 2.5rem;
  }

  .contact-social-card {
    padding: 2.5rem 1.75rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .contact-field,
  .contact-field-full {
    grid-column: 1;
  }

  .contact-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-actions .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 132px;
  }

  .button-group {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 310px;
  }

  .encouragement-card {
    width: 190px;
    padding: 0.8rem;
  }

  .home-resources-preview img {
    width: 150px;
  }

  .home-resource-mini-card {
    right: 0;
    left: auto;
    max-width: min(160px, 62%);
    padding: 0.85rem;
  }

  .photo-label {
    right: 1.4rem;
    bottom: 1.4rem;
  }

  .about-hero-visual {
    min-height: 330px;
  }

  .about-location-card {
    width: 205px;
    padding: 0.85rem;
  }

  .story-visual {
    min-height: 390px;
  }

  .turning-point {
    width: 138px;
    min-height: 138px;
    padding: 1rem;
  }

  .turning-point strong {
    font-size: 3rem;
  }

  .turning-point span {
    font-size: 0.56rem;
  }

  .coaching-hero-visual {
    min-height: 325px;
  }

  .coaching-hero-note {
    width: 205px;
    padding: 0.85rem;
  }

  .coaching-help-visual {
    min-height: 400px;
  }

  .coaching-photo-caption {
    right: 1.4rem;
    bottom: 1.35rem;
    left: 1.4rem;
  }

  .coaching-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.9rem;
  }

  .coaching-step > span {
    width: 38px;
    height: 38px;
  }

  .wellness-education-visual {
    min-height: 330px;
  }

  .wellness-orbit-center {
    width: 155px;
    height: 155px;
    padding: 1.25rem;
  }

  .wellness-orbit-center span {
    font-size: 2.8rem;
  }

  .wellness-orbit-center p {
    font-size: 0.58rem;
  }

  .wellness-orbit {
    width: 76px;
    height: 76px;
    font-size: 0.49rem;
  }

  .wellness-disclaimer {
    padding: 1.15rem 1.2rem;
  }

  .articles-editorial-visual {
    min-height: 370px;
  }

  .editorial-sheet {
    inset: 3% 1% 2% 7%;
    padding: 1.5rem;
  }

  .editorial-sheet-back {
    inset: 7% 8% 0 1%;
  }

  .editorial-title {
    font-size: 2rem;
  }

  .article-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .community-hero-visual {
    min-height: 340px;
  }

  .community-hero-note {
    width: 205px;
    padding: 0.9rem 1rem;
  }

  .community-quote-card {
    width: 190px;
    padding: 0.8rem;
  }

  .community-hero-photo figcaption {
    display: none;
  }

  .community-personal-note {
    padding: 1.25rem;
  }

  .community-class-photo {
    min-height: 400px;
  }

  .community-class-photo figcaption {
    right: 1.4rem;
    bottom: 1.3rem;
    left: 1.4rem;
  }

  .contact-hero-visual {
    min-height: 340px;
  }

  .contact-note {
    width: 124px;
    min-height: 105px;
    padding: 0.8rem;
  }

  .contact-note span {
    font-size: 0.52rem;
  }

  .contact-note p {
    font-size: 0.82rem;
  }

  .contact-note-center {
    width: 165px;
    min-height: 165px;
    padding: 1.2rem;
  }

  .contact-note-center > span {
    font-size: 2.6rem;
  }

  .contact-note-center p {
    font-size: 0.63rem;
  }

  .contact-availability-note {
    padding: 1.15rem 1.2rem;
  }

  .contact-social-links a {
    font-size: 1.15rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.ebook-form-card {
  padding: clamp(2rem, 5vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.ebook-form-card h3 {
  margin-bottom: 0.5rem;
  color: var(--indigo);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
}

.ebook-form-card > p {
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.ebook-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ebook-form-consent {
  margin-top: 0.25rem;
}

.ebook-consent-label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.6rem;
  align-items: start;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.ebook-consent-label input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--indigo);
  cursor: pointer;
  flex-shrink: 0;
}

.ebook-form-submit {
  width: 100%;
  margin-top: 0.35rem;
}

.ebook-form-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
  text-align: center;
}

.ebook-form-privacy .text-link {
  color: var(--indigo);
}

.ebook-form-success {
  padding: clamp(2rem, 5vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
  text-align: center;
}

.ebook-form-success h3 {
  margin-bottom: 0.75rem;
  color: var(--indigo);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

.ebook-form-success p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 480px) {
  .ebook-form-card {
    padding: 1.75rem 1.25rem;
  }
}

/* ─── Free Resources three-column grid ───────────────────────────── */

.free-resources-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.free-resources-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: stretch;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.free-resource-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.free-resource-card--featured {
  border-color: var(--indigo);
  border-width: 2px;
}

.free-resource-cover {
  display: block;
  width: auto;
  max-width: 140px;
  max-height: 175px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 1.25rem;
}

.free-resource-intro {
  margin-bottom: 1.25rem;
}

.free-resource-intro h3 {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  margin-bottom: 0.5rem;
}

.free-resource-intro p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.free-resource-form-area {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Strip double-box styling from .ebook-form-card when inside the grid card */
.free-resource-card .ebook-form-card {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

/* Strip double-box styling from success div when inside the grid card */
.free-resource-card .ebook-form-success {
  background: none;
  border: none;
  box-shadow: none;
  padding: 1rem 0 0;
}

@media (max-width: 960px) {
  .free-resources-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ─── Blog category filter bar ──────────────────────────────────── */

.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.blog-filter-btn {
  padding: 0.42rem 1.1rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-small);
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.blog-filter-btn:hover,
.blog-filter-btn:focus-visible {
  border-color: var(--indigo);
  color: var(--indigo);
  outline: none;
}

.blog-filter-btn--active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.blog-filter-btn--fitness.blog-filter-btn--active {
  background: var(--indigo);
  border-color: var(--indigo);
  color: var(--white);
}

.blog-filter-btn--nutrition.blog-filter-btn--active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

.blog-filter-btn--lifestyle.blog-filter-btn--active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.blog-no-results {
  padding: 2rem;
  color: var(--muted);
  font-size: 1rem;
  text-align: center;
}

.blog-no-results-reset {
  background: none;
  border: none;
  padding: 0;
  color: var(--indigo);
  font-size: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}
