:root {
  --navy: #07182d;
  --navy-light: #12345a;
  --gold: #c89b3c;
  --off-white: #f8f6f2;
  --cream: #fcfaf6;
  --beige: #f5f1ea;
  --charcoal: #4a4a4a;
  --muted: #667085;
  --white: #ffffff;
  --line: rgba(7, 24, 45, 0.1);
  --shadow: 0 22px 58px rgba(7, 24, 45, 0.1);
  --soft-shadow: 0 14px 34px rgba(7, 24, 45, 0.075);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: 88px;
  font-family: "Lato", Arial, sans-serif;
  color: var(--navy);
  background:
    radial-gradient(circle at 10% 8%, rgba(200, 155, 60, 0.12), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(245, 225, 189, 0.52), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(7, 24, 45, 0.06), transparent 22%),
    var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  opacity: 0;
  animation: pageFadeIn 0.28s ease-out forwards;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(128deg, transparent 0 43%, rgba(200, 155, 60, 0.12) 43% 43.5%, transparent 43.5% 100%),
    linear-gradient(26deg, transparent 0 62%, rgba(7, 24, 45, 0.06) 62% 62.5%, transparent 62.5% 100%);
  background-position: center center;
}

body.is-leaving {
  opacity: 0;
  transition: opacity 0.18s ease-out;
}

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

a {
  color: inherit;
}

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

.narrow {
  width: min(820px, calc(100% - 40px));
}

.section-pad {
  position: relative;
  padding: 88px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(248, 246, 242, 0.94);
  border-bottom: 1px solid rgba(7, 24, 45, 0.08);
  box-shadow: 0 8px 30px rgba(7, 24, 45, 0.06);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  width: min(1240px, 100%);
  min-height: 88px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 62px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.primary-nav a,
.mobile-nav a {
  position: relative;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.35s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active,
.mobile-nav a.is-active {
  color: var(--gold);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.mobile-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.36s ease, background 0.36s ease, color 0.36s ease, border-color 0.36s ease;
  will-change: transform;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.55s ease-out, opacity 0.55s ease-out;
  pointer-events: none;
}

.btn {
  overflow: hidden;
  position: relative;
}

.btn:active {
  transform: translateY(0) scale(0.985);
}

.btn.is-rippling::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(18);
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(7, 24, 45, 0.18);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(7, 24, 45, 0.2);
}

.header-cta,
.mobile-cta {
  transition: none;
}

.header-cta:hover,
.mobile-cta:hover,
.header-cta:active,
.mobile-cta:active {
  background: var(--navy);
  box-shadow: 0 14px 28px rgba(7, 24, 45, 0.18);
  transform: none;
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(200, 155, 60, 0.66);
}

.btn-secondary:hover {
  background: rgba(200, 155, 60, 0.14);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(7, 24, 45, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after,
.page-hero::after {
  background-position: center center;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(45%, 620px);
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(248, 246, 242, 0.82), rgba(252, 250, 246, 0.2)),
    url("../images/hero-reflection-bg.png") center right / cover no-repeat;
  filter: blur(0.5px) brightness(0.72) contrast(1.12) saturate(0.92) sepia(0.08);
  opacity: 0.42;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 20%, #000 48%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 20%, #000 48%);
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(52%, 700px);
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 28%, rgba(200, 155, 60, 0.16), transparent 34%),
    radial-gradient(circle at 88% 72%, rgba(252, 250, 246, 0.74), transparent 32%),
    linear-gradient(128deg, transparent 0 44%, rgba(200, 155, 60, 0.14) 44% 44.35%, transparent 44.35% 100%),
    linear-gradient(26deg, transparent 0 62%, rgba(7, 24, 45, 0.05) 62% 62.35%, transparent 62.35% 100%);
  opacity: 0.38;
}

.blog-hero > * {
  position: relative;
  z-index: 1;
}

.hero-grid,
.page-hero-grid,
.split,
.contact-grid,
.faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 72px;
  align-items: center;
}

.page-hero {
  overflow: hidden;
}

#clarity-call .contact-grid {
  align-items: flex-start;
}

.help-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(248, 246, 242, 0.94) 0%, rgba(248, 246, 242, 0.82) 46%, rgba(252, 250, 246, 0.56) 100%),
    url("../images/how-help-hero-bg.png") center / cover no-repeat;
  filter: brightness(0.84) contrast(1.04) saturate(0.86) sepia(0.06);
  opacity: 0.58;
}

.help-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 28%, rgba(200, 155, 60, 0.12), transparent 30%),
    radial-gradient(circle at 18% 70%, rgba(252, 250, 246, 0.56), transparent 34%),
    linear-gradient(128deg, transparent 0 48%, rgba(200, 155, 60, 0.045) 48% 48.22%, transparent 48.22% 100%),
    linear-gradient(26deg, transparent 0 66%, rgba(7, 24, 45, 0.02) 66% 66.2%, transparent 66.2% 100%);
  opacity: 0.38;
}

.help-hero > .container {
  position: relative;
  z-index: 2;
}

.help-hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
}

.help-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.help-hero-copy {
  max-width: 690px;
}

.help-hero-copy h1 {
  max-width: 720px;
  font-size: 44px;
}

.help-hero-copy .lead {
  max-width: 620px;
}

.help-hero-visual,
.prep-visual,
.faq-visual {
  position: relative;
}

.help-portrait-frame {
  max-width: 460px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.62);
  animation: softFloat 7.5s ease-in-out infinite alternate;
}

.help-portrait-frame img {
  height: min(580px, 68vh);
  object-position: center 18%;
}

.image-quote-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(200, 155, 60, 0.22);
  background: rgba(252, 250, 246, 0.88);
  box-shadow: 0 18px 42px rgba(7, 24, 45, 0.12);
  backdrop-filter: blur(16px);
}

.help-story-row,
.help-prep-row {
  align-items: center;
}

.help-story-image img {
  height: 520px;
  object-position: center top;
}

.help-highlight-list {
  display: grid;
  gap: 13px;
  margin: 28px 0;
}

.help-highlight-list div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 18px;
  border: 1px solid rgba(7, 24, 45, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 28px rgba(7, 24, 45, 0.055);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.34s ease;
}

.help-highlight-list strong {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.4;
}

.mini-quote,
.wide-quote {
  position: relative;
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.45;
}

.mini-quote {
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background: rgba(252, 250, 246, 0.82);
  box-shadow: 0 12px 30px rgba(7, 24, 45, 0.06);
  font-size: 20px;
}

.support-visual-grid,
.help-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.support-visual-card,
.resource-card,
.help-impact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 24, 45, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--soft-shadow);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.38s ease, border-color 0.38s ease;
  will-change: transform;
}

.support-visual-card {
  min-height: 520px;
  border-radius: 24px;
}

.support-visual-card > img {
  height: 100%;
  min-height: 520px;
  filter: saturate(0.88) contrast(1.03);
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.support-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 24, 45, 0.02) 0%, rgba(7, 24, 45, 0.52) 100%);
  pointer-events: none;
}

.support-visual-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background: rgba(252, 250, 246, 0.9);
  backdrop-filter: blur(16px);
}

.support-visual-content h3,
.resource-card h3,
.help-impact-card h3,
.journey-step h3 {
  color: var(--navy);
}

.support-visual-content p {
  margin-bottom: 18px;
  font-size: 16px;
}

.journey-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(200, 155, 60, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

.journey-image-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 22px;
}

.journey-image-panel img {
  height: 100%;
  min-height: 560px;
  filter: saturate(0.9);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.image-quote-card {
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border-radius: 18px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.journey-track {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 12px 0 12px 22px;
}

.journey-track::before {
  content: none;
}

.journey-step {
  position: relative;
  display: block;
  padding: 24px;
  border: 1px solid rgba(7, 24, 45, 0.08);
  border-radius: 22px;
  background: rgba(252, 250, 246, 0.78);
  box-shadow: 0 12px 30px rgba(7, 24, 45, 0.06);
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.36s ease;
}

.journey-step p {
  margin-bottom: 0;
  font-size: 16px;
}

.help-quote-band {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 24, 45, 0.88), rgba(7, 24, 45, 0.7)),
    url("../images/how-help-hero-bg.png") center / cover no-repeat;
}

.help-quote-band .container {
  max-width: 920px;
  text-align: center;
}

.help-quote-band blockquote {
  margin: 0 auto 20px;
  max-width: 840px;
  color: var(--white);
  font-size: clamp(30px, 4.3vw, 48px);
  font-weight: 900;
  line-height: 1.18;
}

.help-quote-band p {
  margin: 0 auto;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
}

.help-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.help-impact-card {
  min-height: 198px;
  padding: 30px;
  border-radius: 22px;
}

.help-impact-card__heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.help-impact-card__heading h3 {
  margin-bottom: 0;
}

.help-impact-card__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200, 155, 60, 0.28);
  border-radius: 50%;
  background: rgba(252, 250, 246, 0.86);
  color: var(--gold);
}

.help-impact-card__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.help-impact-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -52px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(200, 155, 60, 0.1);
}

.help-impact-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 16px;
}

.prep-visual .image-frame img {
  height: 500px;
  object-position: center;
}

.resource-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
}

.resource-card img {
  height: 280px;
  border-radius: 18px;
  object-position: center top;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.resource-card p {
  margin-bottom: 0;
  font-size: 16px;
}

.wide-quote {
  max-width: 820px;
  margin: 42px auto 0;
  padding: 28px 34px;
  border: 1px solid rgba(200, 155, 60, 0.22);
  border-radius: 22px;
  background: rgba(252, 250, 246, 0.82);
  box-shadow: 0 16px 38px rgba(7, 24, 45, 0.07);
  text-align: center;
  font-size: 24px;
}

.help-faq-wrap {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
}

.faq-visual {
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.faq-visual img {
  height: 560px;
  object-position: center 14%;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-hero {
  overflow: hidden;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 22%, rgba(200, 155, 60, 0.13), transparent 30%),
    radial-gradient(circle at 14% 82%, rgba(252, 250, 246, 0.72), transparent 32%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}

.about-hero-copy h1 {
  max-width: 760px;
  font-size: 44px;
}

.about-inline-quote,
.about-value-card,
.about-journey-card,
.about-closing-panel {
  border: 1px solid rgba(200, 155, 60, 0.2);
  background: rgba(252, 250, 246, 0.78);
  box-shadow: 0 14px 34px rgba(7, 24, 45, 0.075);
}

.about-hero-visual {
  position: relative;
}

.about-portrait-frame {
  max-width: 480px;
  margin-left: auto;
  animation: softFloat 8s ease-in-out infinite alternate;
}

.about-portrait-frame img {
  height: min(620px, 72vh);
  object-position: center top;
}

.about-story-row .image-frame img {
  height: 520px;
  object-position: center 18%;
}

.about-inline-quote {
  margin: 28px 0 0;
  padding: 24px 26px;
  border-left: 4px solid var(--gold);
  border-radius: 0 20px 20px 0;
  color: var(--navy);
  font-size : 22px;
  font-weight: 600;
  line-height: 1.42;
}

.about-mission-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.about-mission-image {
  overflow: hidden;
  border-radius: 22px;
}

.about-mission-image img {
  height: 560px;
  object-position: center top;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-mission-copy {
  padding-right: 24px;
}

.about-mission-copy blockquote {
  margin: 24px 0;
  max-width: 620px;
  color: var(--navy);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.24;
}

.about-mission-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.about-mission-cta .btn {
  max-width: 100%;
}

.about-quote-band {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 24, 45, 0.88), rgba(7, 24, 45, 0.62)),
    url("../images/hero-reflection-bg.png") center / cover no-repeat;
}

.about-quote-band blockquote {
  max-width: 920px;
  margin: 0 auto;
  color: var(--white);
  text-align: center;
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 900;
  line-height: 1.18;
}

.about-journey-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.about-journey-card {
  position: relative;
  z-index: 1;
  min-height: 250px;
  padding: 26px 22px;
  border-radius: 22px;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.36s ease, border-color 0.36s ease;
}

.about-journey-card span,
.about-value-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(200, 155, 60, 0.22);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-value-card span svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1), stroke-width 0.34s ease;
}

.about-journey-card p,
.about-value-card p,
.about-community-card p {
  margin-bottom: 0;
  font-size: 16px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-value-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 28px;
  border-radius: 22px;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.36s ease, border-color 0.36s ease;
}

.about-value-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(200, 155, 60, 0.1);
}

.about-community-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.about-community-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid rgba(7, 24, 45, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.38s ease, border-color 0.38s ease;
}

.about-community-card img {
  height: 100%;
  min-height: 360px;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-community-card div {
  padding: 30px;
  align-self: center;
}

.about-community-card .text-link {
  display: inline-flex;
  margin-top: 18px;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-auto-rows: 220px;
  gap: 18px;
}

.about-gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(200, 155, 60, 0.18);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(7, 24, 45, 0.075);
}

.about-gallery-grid img {
  height: 100%;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1), filter 0.36s ease;
}

.about-gallery-grid figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--navy);
  background: rgba(252, 250, 246, 0.86);
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.about-closing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 46px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 18%, rgba(200, 155, 60, 0.14), transparent 28%),
    rgba(252, 250, 246, 0.88);
}

.about-closing-panel p {
  max-width: 680px;
  margin-bottom: 0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

p {
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.68;
}

.lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: #4f5864;
  font-size: 19px;
  line-height: 1.68;
}

.section-copy p,
.rich-copy p,
.visual-note p {
  max-width: 660px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero .button-row .btn {
  opacity: 0;
  transform: translateY(18px);
  animation: refinedFadeUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero .button-row .btn:nth-child(1) {
  animation-delay: 0.46s;
}

.hero .button-row .btn:nth-child(2) {
  animation-delay: 0.58s;
}

.content-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.content-list li {
  position: relative;
  padding-left: 26px;
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.6;
}

.content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(200, 155, 60, 0.12);
}

.image-frame {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(200, 155, 60, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  border: 1px solid rgba(200, 155, 60, 0.32);
  opacity: 0;
  transform: scaleX(0.86);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(200, 155, 60, 0.16);
  filter: blur(2px);
  z-index: -1;
  animation: softFloat 8s ease-in-out infinite alternate;
}

.image-frame img {
  height: min(560px, 70vh);
  border-radius: 18px;
  object-position: center -52px;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero .image-frame img,
.page-hero .image-frame img {
  object-position: center top;
}

.content-image-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  margin-top: 44px;
}

.content-image-row .image-frame img {
  height: 360px;
  object-position: center;
}

.visual-note {
  padding: 28px;
  border: 1px solid rgba(7, 24, 45, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 30px rgba(7, 24, 45, 0.06);
}

.core-values-card {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  padding: 28px;
  border: 1px solid rgba(200, 155, 60, 0.18);
  border-radius: 24px;
  background: rgba(252, 250, 246, 0.9);
  box-shadow: 0 16px 40px rgba(7, 24, 45, 0.085);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.core-values-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 155, 60, 0.12));
}

.core-values-card::after {
  content: "\201C";
  position: absolute;
  right: 22px;
  top: -22px;
  color: rgba(200, 155, 60, 0.08);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  pointer-events: none;
}

.core-values-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 26px;
  font-weight: 600;
}

.core-values-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.core-values-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.core-values-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(200, 155, 60, 0.12);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.core-values-list p {
  margin: 0;
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.55;
}

.core-values-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.hero-visual.reveal {
  transform: translateX(34px);
}

.hero-copy.reveal h1,
.hero-copy.reveal .lead,
.hero-copy.reveal p:not(.lead) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy.reveal.is-visible h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.hero-copy.reveal.is-visible .lead {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.22s;
}

.hero-copy.reveal.is-visible p:not(.lead) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.34s;
}

.ambient {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(4px);
}

.ambient-one {
  width: 280px;
  height: 280px;
  right: -80px;
  top: 80px;
  background: rgba(200, 155, 60, 0.13);
  animation: blobFloatOne 14s ease-in-out infinite alternate;
}

.ambient-two {
  width: 230px;
  height: 230px;
  left: -70px;
  bottom: 20px;
  background: rgba(7, 24, 45, 0.06);
  animation: blobFloatTwo 16s ease-in-out infinite alternate;
}

.section-copy p,
.rich-copy p {
  margin-bottom: 16px;
}

.life-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.life-list li {
  position: relative;
  display: list-item;
  padding: 18px 20px;
  border: 1px solid rgba(7, 24, 45, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 30px rgba(7, 24, 45, 0.06);
  color: var(--charcoal);
  font-size: 17px;
  font-weight: 700;
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.34s ease;
  will-change: transform;
}

.service-card span,
.value-card span {
  color: var(--gold);
  font-weight: 900;
}

.warm-band {
  background: linear-gradient(180deg, rgba(252, 250, 246, 0.7), rgba(245, 241, 234, 0.88));
}

.section-title.centered,
.centered {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.cards {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

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

.card,
.service-card,
.blog-card,
.value-card,
.contact-card,
.premium-form,
.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 24, 45, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.38s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.38s cubic-bezier(0.4, 0, 0.2, 1), background 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.card,
.service-card,
.blog-card,
.value-card,
.contact-card,
.premium-form {
  height: 100%;
  padding: 30px;
}

.card p,
.service-card p,
.value-card p,
.blog-card p,
.contact-card p {
  max-width: 100%;
}

.feature-cards .card > * {
  position: relative;
  z-index: 1;
}

.feature-card__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.feature-card__heading h3 {
  margin-bottom: 0;
}

.feature-card__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200, 155, 60, 0.28);
  border-radius: 50%;
  background: rgba(252, 250, 246, 0.86);
  color: var(--gold);
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-cards .card::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -14px;
  z-index: 0;
  width: 66%;
  height: 78%;
  background:
    linear-gradient(90deg, rgba(252, 250, 246, 0.68), rgba(252, 250, 246, 0.08)),
    var(--feature-card-image);
  background-position: center;
  background-size: cover;
  border-radius: 26px;
  filter: blur(0.2px) saturate(0.9);
  opacity: 0.26;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.62) 30%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.62) 30%, #000 100%);
}

.feature-cards .card:nth-child(1) {
  --feature-card-image: url("../images/indian-coaching-conversation.webp");
}

.feature-cards .card:nth-child(2) {
  --feature-card-image: url("../images/indian-financial-planning.webp");
}

.feature-cards .card:nth-child(3) {
  --feature-card-image: url("../images/indian-mother-child-future.webp");
}

.coach-strip {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 46px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.38s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.coach-strip img {
  height: 430px;
  border-radius: 20px;
  object-position: center top;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.text-link {
  color: var(--navy);
  font-weight: 900;
  text-decoration-color: rgba(200, 155, 60, 0.65);
  text-underline-offset: 6px;
  transition: color 0.32s ease, background 0.32s ease, transform 0.32s ease;
}

.soft-cta {
  padding-top: 42px;
}

.cta-panel {
  padding: 48px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(200, 155, 60, 0.16), transparent 30%),
    rgba(252, 250, 246, 0.86);
}

.cta-panel .btn {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.testimonials {
  text-align: center;
}

.testimonial-slider {
  position: relative;
  margin: 30px 0 18px;
  padding: 0 56px 34px;
  overflow: hidden;
}

.testimonials .section-title.centered {
  margin-bottom: 26px;
}

.testimonials .section-title h2 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 600;
}

.testimonial-viewport {
  max-width: 100%;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

.testimonial-image {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.testimonial-visual {
  flex: 1;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  position: relative;
  padding: 34px 26px 28px;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 73, 0.28);
  border-radius: 20px;
  background: #ffffff;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-visual::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
}

.testimonial-visual::after {
  content: "\201C";
  position: absolute;
  right: 22px;
  bottom: -24px;
  color: rgba(201, 164, 73, 0.15);
  font-family: Georgia, serif;
  font-size: 8.5rem;
  line-height: 1;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), color 0.38s ease;
}

.testimonial-visual strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.26;
}

.testimonial-copy {
  display: block;
  max-width: 96%;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
}

.testimonial-reviewer {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 12px;
}

.reviewer-name {
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
}

.reviewer-role {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
}

.slider-btn {
  position: absolute;
  top: calc(50% - 28px);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(12, 30, 58, 0.16);
  opacity: 0.62;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), background 0.32s ease, opacity 0.32s ease, box-shadow 0.32s ease;
  z-index: 2;
}

.slider-btn:hover {
  transform: translateY(-2px);
  background: #12345a;
  opacity: 1;
  box-shadow: 0 18px 38px rgba(12, 30, 58, 0.22);
}

.testimonial-slider:hover .slider-btn {
  opacity: 1;
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.testimonial-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.testimonial-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d8d8d8;
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease, transform 0.35s ease;
}

.testimonial-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--gold);
}

.values-grid,
.service-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card span,
.value-card span {
  display: inline-flex;
  margin-bottom: 16px;
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1), filter 0.34s ease;
}

.service-card h2,
.blog-card h2 {
  font-size: 24px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-line div {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 34px rgba(7, 24, 45, 0.08);
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1), background 0.36s ease, box-shadow 0.36s ease;
  will-change: transform;
}

.process-line span {
  color: var(--gold);
  font-weight: 900;
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1), filter 0.34s ease;
}

.process-line strong {
  position: relative;
  display: block;
  margin: 10px 0 8px;
  font-size: 18px;
}

.process-line strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 48px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 24, 45, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 30px rgba(7, 24, 45, 0.05);
  transition: background 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.faq-list details::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  transition: color 0.3s ease;
}

.faq-answer {
  padding: 0 22px 20px;
}

.blog-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.blog-card > img {
  height: 190px;
  margin: -30px -30px 22px;
  width: calc(100% + 60px);
  max-width: none;
  border-radius: 22px 22px 0 0;
  box-shadow: none;
}

.blog-card .blog-image-wrap {
  position: relative;
  overflow: hidden;
  height: 190px;
  margin: -30px -30px 22px;
  border-radius: 22px 22px 0 0;
}

.blog-card .blog-image-wrap img {
  height: 100%;
}

.blog-card .blog-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(7, 24, 45, 0.28));
  opacity: 0;
  transition: opacity 0.42s ease;
  pointer-events: none;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(200, 155, 60, 0.72), rgba(7, 24, 45, 0.16));
  transform: scaleX(0.36);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.38s ease;
  opacity: 0.42;
}

.blog-card h2,
.blog-meta a {
  transition: color 0.32s ease, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card img {
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.blog-meta {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(7, 24, 45, 0.08);
  color: var(--muted);
  font-size: 14px;
}

.blog-meta a {
  color: var(--navy);
  font-weight: 900;
  display: inline-flex;
}

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

.contact-card {
  padding: 44px;
  border-color: rgba(200, 155, 60, 0.15);
  border-radius: 24px;
  background: #fcfaf6;
  box-shadow: 0 24px 64px rgba(7, 24, 45, 0.11);
}

.contact-card h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  text-align: left;
}

.contact-card__intro {
  max-width: 440px;
  color: #5f6472;
  font-size: 17px;
  line-height: 1.65;
}

.contact-card__items {
  display: grid;
  margin-top: 30px;
}

.contact-card__item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(200, 155, 60, 0.15);
}

.contact-card__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-card__item:last-child {
  padding-bottom: 0;
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f5f1ea;
  color: var(--navy);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s ease;
}

.contact-card__icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.contact-card__item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.contact-card a {
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.contact-card__item span span {
  color: var(--charcoal);
  font-size: 17px;
  font-weight: 700;
}

.support-card .btn {
  margin-top: 10px;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.36s ease, background 0.36s ease;
}

.card::before,
.service-card:not(.support-card)::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  position: relative;
  transition: all 0.3s ease;
  will-change: transform;
}

.training-hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(252, 250, 246, 0.98) 0%, rgba(252, 250, 246, 0.86) 46%, rgba(240, 246, 238, 0.72) 100%),
    radial-gradient(circle at 82% 28%, rgba(119, 147, 112, 0.2), transparent 30%),
    var(--cream);
}

.training-hero__grid,
.video-trust-grid,
.learning-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: center;
}

.training-hero__copy h1 {
  max-width: 740px;
}

.training-hero__copy .lead {
  max-width: 620px;
}

.training-hero__visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 0 0 0 90px;
  box-shadow: 0 34px 92px rgba(7, 24, 45, 0.14);
}

.training-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 24, 45, 0.34));
  pointer-events: none;
}

.training-hero__visual img {
  height: 100%;
  min-height: 620px;
  object-position: center;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.training-journey {
  background: var(--white);
}

.training-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 48px 0 12px;
}

.training-path::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 84px;
  height: 2px;
  background: linear-gradient(90deg, rgba(119, 147, 112, 0.18), rgba(200, 155, 60, 0.64), rgba(119, 147, 112, 0.18));
}

.training-step {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 260px;
  padding: 0 18px;
  text-align: center;
}

.training-step:nth-child(even) {
  padding-top: 74px;
}

.training-step__number {
  color: rgba(7, 24, 45, 0.12);
  font-size: clamp(52px, 7vw, 82px);
  font-weight: 900;
  line-height: 0.9;
}

.training-step__icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 14px 0 18px;
  border: 1px solid rgba(119, 147, 112, 0.24);
  border-radius: 50%;
  background: #f4f7f1;
  color: #5d7557;
  font-size: 21px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(7, 24, 45, 0.08);
  animation: trainingPulse 5.5s ease-in-out infinite;
}

.training-step:nth-child(2) .training-step__icon,
.training-step:nth-child(4) .training-step__icon {
  animation-delay: 0.8s;
}

.training-step h3 {
  max-width: 210px;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.training-step p {
  max-width: 220px;
  margin: 0;
  color: #5f6670;
  font-size: 14px;
  line-height: 1.6;
}

.training-transform {
  background:
    linear-gradient(180deg, rgba(245, 241, 234, 0.72), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 18% 30%, rgba(119, 147, 112, 0.14), transparent 32%);
}

.training-transform__intro {
  max-width: 720px;
  margin-bottom: 38px;
}

.transform-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(7, 24, 45, 0.08);
  border-radius: 28px;
  background: rgba(7, 24, 45, 0.08);
  box-shadow: 0 24px 64px rgba(7, 24, 45, 0.1);
}

.transform-flow div {
  position: relative;
  min-height: 300px;
  padding: 38px 34px;
  background: rgba(252, 250, 246, 0.94);
}

.transform-flow div:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  transform: translateY(-50%);
}

.transform-flow span,
.experience-flow span {
  color: #6f845f;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.transform-flow strong {
  display: block;
  margin: 46px 0 12px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.transform-flow p {
  max-width: 280px;
  margin: 0;
  font-size: 16px;
}

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

.learning-intro {
  align-self: start;
  position: sticky;
  top: 118px;
}

.learning-list {
  display: grid;
  gap: 22px;
}

.learning-list div {
  display: grid;
  grid-template-columns: minmax(82px, 0.22fr) 1fr;
  gap: 24px;
  align-items: center;
  padding: 8px 0 28px;
  border-bottom: 1px solid rgba(7, 24, 45, 0.09);
}

.learning-list span {
  color: rgba(200, 155, 60, 0.5);
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 900;
  line-height: 1;
}

.learning-list strong {
  color: var(--navy);
  font-size: clamp(25px, 3.3vw, 40px);
  line-height: 1.12;
}

.experience-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.experience-flow::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 46px;
  height: 1px;
  background: rgba(119, 147, 112, 0.34);
}

.experience-flow div {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 230px;
  padding: 0 18px;
  text-align: center;
}

.experience-flow div span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-bottom: 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.96), rgba(245, 241, 234, 0.9)),
    #f5f1ea;
  color: #6f845f;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(7, 24, 45, 0.08);
  text-transform: none;
}

.experience-flow strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 22px;
}

.experience-flow p {
  max-width: 220px;
  margin: 0 auto;
  font-size: 15px;
}

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

.video-frame {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  border-radius: 34px;
  box-shadow: 0 30px 82px rgba(7, 24, 45, 0.13);
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 24, 45, 0.38));
  pointer-events: none;
}

.video-frame img {
  height: 510px;
  object-position: center top;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-frame button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background: rgba(252, 250, 246, 0.88);
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 42px rgba(7, 24, 45, 0.18);
}

.video-frame button span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--navy);
}

.video-copy blockquote {
  margin: 26px 0;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
  color: var(--navy);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.35;
}

.final-training-cta {
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(245, 241, 234, 0.56), rgba(252, 250, 246, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(119, 147, 112, 0.2), transparent 34%);
}

.final-training-cta .container {
  max-width: 820px;
}

.final-training-cta p {
  max-width: 660px;
  margin: 0 auto 28px;
}

@keyframes trainingPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 12px 30px rgba(7, 24, 45, 0.08);
  }

  50% {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(119, 147, 112, 0.18);
  }
}

@media (hover: hover) and (pointer: fine) {
  .card:hover,
  .service-card:not(.support-card):hover {
    transform: translateY(-6px);
    border-color: rgba(200, 155, 60, 0.3);
    box-shadow: 0 20px 48px rgba(7, 24, 45, 0.11);
  }

  .card:hover::before,
  .service-card:not(.support-card):hover::before {
    transform: scaleX(1);
  }

  .support-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 155, 60, 0.42);
    background: rgba(255, 254, 250, 0.9);
    box-shadow: 0 20px 48px rgba(7, 24, 45, 0.11);
  }

  .support-card:hover .btn {
    transform: translateX(5px);
  }

  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(7, 24, 45, 0.11);
  }

  .blog-card:hover::before {
    transform: scaleX(1.05);
    opacity: 0.9;
  }

  .blog-card:hover h2 {
    color: var(--gold);
  }

  .blog-card:hover .blog-meta a {
    color: var(--gold);
    transform: translateX(5px);
  }

  .blog-card:hover img {
    transform: scale(1.025);
  }

  .blog-card:hover .blog-image-wrap::after {
    opacity: 1;
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
  }

  .process-line div:hover {
    transform: translateY(-4px);
    background: rgba(252, 250, 246, 0.94);
    box-shadow: 0 16px 38px rgba(7, 24, 45, 0.09);
  }

  .process-line div:hover span {
    transform: translateY(-2px);
  }

  .process-line div:hover strong::after {
    transform: scaleX(1);
  }

  .support-visual-card:hover,
  .resource-card:hover,
  .help-impact-card:hover,
  .journey-step:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 155, 60, 0.3);
    box-shadow: 0 20px 48px rgba(7, 24, 45, 0.11);
  }

  .support-visual-card:hover > img,
  .journey-showcase:hover .journey-image-panel img,
  .resource-card:hover img,
  .faq-visual:hover img {
    transform: scale(1.035);
  }

  .help-highlight-list div:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(7, 24, 45, 0.08);
  }

  .about-journey-card:hover,
  .about-value-card:hover,
  .about-community-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 155, 60, 0.3);
    box-shadow: 0 20px 48px rgba(7, 24, 45, 0.11);
  }

  .about-mission-panel:hover .about-mission-image img,
  .about-community-card:hover img,
  .about-gallery-grid figure:hover img {
    transform: scale(1.035);
  }

  .about-gallery-grid figure:hover img {
    filter: saturate(0.92) contrast(1.04);
  }

  .about-value-card:hover span {
    transform: translateY(-2px);
  }

  .about-value-card:hover span svg {
    transform: scale(1.08) rotate(-4deg);
    stroke-width: 2.15;
  }

  .value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 155, 60, 0.28);
    box-shadow: 0 18px 42px rgba(7, 24, 45, 0.1);
  }

  .value-card:hover span,
  .service-card:hover span {
    transform: translateY(-2px);
  }

  .faq-list details:hover {
    background: rgba(252, 250, 246, 0.9);
    border-color: rgba(200, 155, 60, 0.2);
    box-shadow: 0 16px 40px rgba(7, 24, 45, 0.08);
  }

  .faq-list details:hover::before {
    transform: scaleY(1);
  }

  .faq-list details:hover summary {
    color: var(--navy);
  }

  .contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 54px rgba(7, 24, 45, 0.11);
  }

  .contact-card:hover .contact-card__icon {
    transform: translateY(-2px);
    background: rgba(200, 155, 60, 0.13);
  }

  .coach-strip:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 155, 60, 0.44);
    box-shadow: 0 22px 54px rgba(7, 24, 45, 0.11);
  }

  .coach-strip:hover img {
    transform: scale(1.012);
  }

  .coach-strip:hover .text-link {
    color: var(--gold);
    background: rgba(200, 155, 60, 0.1);
  }

  .cta-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 54px rgba(7, 24, 45, 0.11);
  }

  .cta-panel:hover .btn {
    box-shadow: 0 16px 30px rgba(7, 24, 45, 0.2);
  }

  .life-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(7, 24, 45, 0.09);
  }

  .core-values-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 46px rgba(7, 24, 45, 0.1);
  }

  .image-frame:hover img {
    transform: scale(1.018);
  }

  .training-step:hover .training-step__icon,
  .experience-flow div:hover span {
    transform: translateY(-5px);
    background: #eef4eb;
    color: var(--navy);
  }

  .learning-list div:hover span {
    color: var(--gold);
  }

  .video-frame:hover img,
  .training-hero__visual:hover img {
    transform: scale(1.025);
  }

}

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

  body,
  .reveal,
  .reveal-fade,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .hero-copy.reveal h1,
  .hero-copy.reveal .lead,
  .hero-copy.reveal p:not(.lead),
  .hero .button-row .btn,
  .premium-form.reveal .form-row,
  .premium-form.reveal .form-submit {
    opacity: 1 !important;
    transform: none !important;
  }
}

.premium-form {
  background: rgba(252, 250, 246, 0.9);
}

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

.premium-form.reveal .form-row,
.premium-form.reveal .form-submit {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1), transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-form.reveal.is-visible .form-row,
.premium-form.reveal.is-visible .form-submit {
  opacity: 1;
  transform: translateY(0);
}

.form-row.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 24, 45, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
  font: inherit;
  font-size: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(200, 155, 60, 0.72);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.13);
}

.form-row small {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  color: #a33b3b;
  font-size: 13px;
}

.form-row small[data-contact-time-status] {
  color: rgba(7, 24, 45, 0.68);
}

.form-row.has-error small[data-contact-time-status] {
  color: #a33b3b;
}

.has-error input,
.has-error select,
.has-error textarea {
  border-color: #a33b3b;
}

.form-alert {
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 800;
}

.form-alert.success {
  color: #23543a;
  background: #edf8f1;
}

.form-alert.error {
  color: #8f2f2f;
  background: #fff0ee;
}

.form-submit {
  width: 100%;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 22px;
  background: rgba(245, 241, 234, 0.94);
  border-top: 1px solid rgba(7, 24, 45, 0.08);
}

.footer-glow {
  display: none;
  position: absolute;
  right: -90px;
  top: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(200, 155, 60, 0.14);
  filter: blur(3px);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(0, 560px);
  justify-content: space-between;
  align-items: start;
  column-gap: clamp(70px, 10vw, 150px);
  row-gap: 46px;
}

.footer-brand img {
  width: auto;
  height: 68px;
  margin-bottom: 30px;
  object-fit: contain;
}

.footer-brand h2 {
  max-width: 430px;
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.08;
}

.footer-brand p {
  max-width: 460px;
  margin: 0;
  color: #4f5970;
  font-size: 16px;
  line-height: 1.8;
}

.footer-aside {
  display: grid;
  grid-template-columns: minmax(140px, max-content) minmax(240px, 1fr);
  align-items: start;
  column-gap: clamp(34px, 5vw, 64px);
  row-gap: 28px;
  padding-top: 2px;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-nav a {
  color: #526178;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.24s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--gold);
}

.footer-contact {
  padding-top: 2px;
}

.footer-contact-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  column-gap: 14px;
  color: #526178;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-contact-list a {
  color: var(--navy);
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: var(--navy);
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--navy);
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-bottom {
  width: 100%;
  margin-top: 28px;
  padding-bottom: 8px;
  text-align: center;
}

.footer-copyright {
  width: 100%;
  margin: 0 0 8px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.footer-policy-link {
  display: inline-flex;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.footer-policy-link:hover {
  color: var(--gold);
}

.privacy-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 155, 60, 0.1), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(252, 250, 246, 0.92), transparent 36%),
    linear-gradient(180deg, #fcfaf6 0%, #f8f6f2 100%);
}

.privacy-updated {
  margin-top: 22px;
  color: #6b7280;
  font-size: 15px;
  font-weight: 700;
}

.privacy-policy-section {
  padding-top: 36px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(250px, 340px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.privacy-summary {
  position: sticky;
  top: 118px;
  padding: 30px;
  border: 1px solid rgba(7, 24, 45, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.privacy-summary h2 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.18;
}

.privacy-summary p {
  margin: 0 0 24px;
  color: #526178;
  font-size: 16px;
  line-height: 1.75;
}

.privacy-content {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(7, 24, 45, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.privacy-content.reveal,
.privacy-content.reveal-right {
  opacity: 1;
  transform: none;
}

.privacy-content section + section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(7, 24, 45, 0.08);
}

.privacy-content h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
}

.privacy-content p {
  margin: 0;
  color: #4f5970;
  font-size: 17px;
  line-height: 1.86;
}

.privacy-content p + p {
  margin-top: 12px;
}

.privacy-content a {
  color: var(--navy);
  font-weight: 800;
  text-decoration-color: rgba(200, 155, 60, 0.55);
  text-underline-offset: 4px;
}

.privacy-contact-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  color: #4f5970;
  font-size: 17px;
  line-height: 1.7;
  list-style: none;
}

.reveal,
.reveal-fade,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1), transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.reveal,
.reveal-fade {
  transform: translateY(28px);
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

.reveal-scale {
  transform: translateY(18px) scale(0.96);
}

.reveal.is-visible,
.reveal-fade.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.image-frame.reveal.is-visible::after,
.reveal.is-visible .image-frame::after,
.reveal-scale.is-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.stagger-item {
  transition-delay: calc(var(--stagger-index, 0) * 70ms);
}

.hero-copy.reveal,
.hero-visual.reveal {
  transition-delay: 0.08s;
}

.section-pad > .container.reveal,
.section-pad .section-title.reveal {
  transition-duration: 0.72s;
}

@keyframes pageFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes refinedFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes blobFloatOne {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-18px, 14px, 0) scale(1.04);
  }
}

@keyframes blobFloatTwo {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(16px, -12px, 0) scale(1.03);
  }
}

@keyframes ambientDrift {
  from {
    background-position: center center;
  }

  to {
    background-position: calc(50% + 10px) calc(50% - 8px);
  }
}

@media (max-width: 980px) {
  body {
    padding-top: 78px;
  }

  .site-header__inner {
    min-height: 78px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand img {
    height: 56px;
  }

  .primary-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .mobile-nav {
    display: grid;
    position: fixed;
    top: 78px;
    right: 0;
    z-index: 99;
    width: min(360px, 88vw);
    max-height: calc(100vh - 78px);
    overflow: hidden;
    padding: 8px 28px 24px;
    gap: 4px;
    background: rgba(248, 246, 242, 0.98);
    border-left: 1px solid rgba(200, 155, 60, 0.16);
    border-bottom: 1px solid rgba(7, 24, 45, 0.08);
    box-shadow: -18px 28px 60px rgba(7, 24, 45, 0.12);
    backdrop-filter: blur(16px);
    visibility: hidden;
    opacity: 0;
    transform: translateX(18px);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  }

  .site-header.is-open .mobile-nav {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 13px 0;
  }

  .mobile-cta {
    width: 100%;
    margin-top: 8px;
    color: var(--white) !important;
    background: var(--navy);
  }

  .hero-grid,
  .page-hero-grid,
  .help-hero-grid,
  .about-hero-grid,
  .about-mission-panel,
  .about-closing-panel,
  .split,
  .contact-grid,
  .faq-wrap,
  .help-faq-wrap,
  .journey-showcase,
  .coach-strip,
  .training-hero__grid,
  .video-trust-grid,
  .learning-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .cards.three,
  .process-line,
  .help-impact-grid,
  .about-journey-grid,
  .about-values-grid,
  .about-community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .help-hero {
    min-height: auto;
  }

  .about-hero {
    min-height: auto;
  }

  .about-portrait-frame {
    margin: 0 auto;
  }

  .about-mission-copy {
    padding-right: 0;
  }

  .about-community-card {
    grid-template-columns: 1fr;
  }

  .about-community-card img {
    min-height: 300px;
    height: 300px;
  }

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

  .about-closing-panel .button-row {
    justify-content: flex-start;
  }

  .help-portrait-frame {
    margin: 0 auto;
  }

  .note-top {
    left: 18px;
  }

  .note-bottom {
    right: 18px;
  }

  .support-visual-card,
  .support-visual-card > img {
    min-height: 480px;
  }

  .journey-image-panel,
  .journey-image-panel img,
  .faq-visual,
  .faq-visual img {
    min-height: 440px;
    height: 440px;
  }

  .journey-track {
    padding-left: 0;
  }

  .journey-track::before {
    left: 38px;
  }

  .resource-card {
    grid-template-columns: 180px 1fr;
  }

  .help-hero::before {
    opacity: 0.5;
  }

  .content-image-row {
    grid-template-columns: 1fr;
  }

  .testimonial-slider {
    padding: 0 48px 34px;
  }

  .testimonial-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .image-frame img,
  .coach-strip img {
    height: 440px;
  }

  .image-frame img {
    object-position: center -42px;
  }

  .content-image-row .image-frame img {
    object-position: center;
  }

  .training-hero {
    min-height: auto;
  }

  .training-hero__visual {
    min-height: 480px;
    border-radius: 34px;
  }

  .training-hero__visual img {
    min-height: 480px;
  }

  .training-path {
    grid-template-columns: 1fr;
    padding: 20px 0 0 32px;
  }

  .training-path::before {
    left: 32px;
    right: auto;
    top: 34px;
    bottom: 34px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(119, 147, 112, 0.18), rgba(200, 155, 60, 0.64), rgba(119, 147, 112, 0.18));
  }

  .training-step,
  .training-step:nth-child(even) {
    justify-items: start;
    min-height: auto;
    padding: 0 0 34px 42px;
    text-align: left;
  }

  .training-step__number {
    position: absolute;
    left: 82px;
    top: -4px;
    font-size: 54px;
  }

  .training-step__icon {
    position: absolute;
    left: -27px;
    top: 2px;
    margin: 0;
  }

  .training-step h3 {
    max-width: none;
    margin-top: 58px;
  }

  .training-step p {
    max-width: 520px;
  }

  .transform-flow {
    grid-template-columns: 1fr;
  }

  .transform-flow div {
    min-height: auto;
  }

  .transform-flow div:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 34px;
    bottom: -18px;
    transform: rotate(90deg);
  }

  .learning-intro {
    position: static;
  }

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

  .experience-flow::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero,
  .page-hero {
    background:
      radial-gradient(circle at 14% 10%, rgba(200, 155, 60, 0.06), transparent 30%),
      radial-gradient(circle at 88% 18%, rgba(247, 242, 234, 0.82), transparent 34%),
      radial-gradient(circle at 12% 86%, rgba(252, 250, 246, 0.86), transparent 30%),
      linear-gradient(180deg, #fcfaf6 0%, #f8f6f2 54%, #f7f2ea 100%);
  }

  .hero .ambient-one {
    background: rgba(200, 155, 60, 0.06);
    filter: blur(8px);
  }

  .hero .ambient-two {
    background: rgba(247, 242, 234, 0.72);
    filter: blur(10px);
  }

  .page-hero .image-frame::before,
  .hero .image-frame::before {
    background: rgba(200, 155, 60, 0.08);
  }

  .help-hero::before {
    opacity: 0.36;
  }

  .help-hero::after {
    opacity: 0.32;
  }

  .footer-brand h2 {
    font-size: 23px;
    line-height: 1.35;
  }
}

@media (max-width: 680px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1140px);
  }

  .section-pad {
    padding: 64px 0;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 24px;
  }

  .lead,
  p {
    font-size: 16px;
  }

  .button-row {
    width: auto;
    justify-content: center;
  }

  .btn {
    width: min(260px, calc(100% - 24px));
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .button-row .btn {
    flex: 0 1 auto;
  }

  .mobile-cta {
    width: 100%;
    max-width: 100%;
  }

  .cards.three,
  .values-grid,
  .service-grid,
  .blog-grid,
  .support-visual-grid,
  .help-resource-grid,
  .help-impact-grid,
  .about-journey-grid,
  .about-values-grid,
  .about-community-grid,
  .process-line,
  .form-row.two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-aside {
    grid-template-columns: minmax(140px, max-content) minmax(240px, 1fr);
    justify-content: start;
  }

  .about-hero-copy h1 {
    font-size: 31px;
  }

  .about-hero-grid {
    gap: 34px;
  }

  .about-portrait-frame img,
  .about-story-row .image-frame img,
  .about-mission-image img {
    height: 410px;
  }

  .about-mission-panel {
    padding: 16px;
    border-radius: 22px;
  }

  .about-mission-copy {
    padding: 8px;
  }

  .about-mission-cta .btn {
    width: min(260px, calc(100% - 24px));
  }

  .about-quote-band blockquote {
    font-size: 30px;
  }

  .about-journey-card,
  .about-value-card {
    min-height: auto;
    padding: 24px;
  }

  .about-community-card div {
    padding: 24px;
  }

  .about-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-tall,
  .gallery-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .about-closing-panel {
    padding: 28px;
  }

  .help-hero-copy h1 {
    font-size: 31px;
  }

  .help-hero-grid {
    gap: 34px;
  }

  .help-portrait-frame img {
    height: 420px;
  }

  .help-story-image img,
  .prep-visual .image-frame img {
    height: 390px;
  }

  .support-visual-card,
  .support-visual-card > img {
    min-height: 0;
  }

  .support-visual-card {
    display: flex;
    flex-direction: column;
  }

  .support-visual-card > img {
    height: clamp(230px, 72vw, 290px);
    object-position: center center;
  }

  .support-visual-card::after {
    display: none;
  }

  .support-visual-content {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 14px;
    padding: 18px;
    border-radius: 18px;
  }

  .support-visual-content p {
    margin-bottom: 14px;
  }

  .journey-showcase {
    padding: 14px;
    border-radius: 22px;
  }

  .journey-image-panel,
  .journey-image-panel img,
  .faq-visual,
  .faq-visual img {
    min-height: 380px;
    height: 380px;
  }

  .image-quote-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: 18px;
  }

  .journey-step {
    padding: 20px;
    gap: 14px;
  }

  .help-quote-band blockquote {
    font-size: 30px;
  }

  .help-impact-card {
    min-height: auto;
    padding: 24px;
  }

  .resource-card {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .resource-card > div,
  .journey-step > div {
    box-sizing: border-box;
    padding-inline: clamp(6px, 2.5vw, 12px);
  }

  .resource-card img {
    height: 300px;
  }

  .wide-quote {
    padding: 24px;
    font-size: 20px;
  }

  .footer-contact {
    padding-top: 0;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-summary {
    position: static;
    padding: 24px;
  }

  .privacy-content {
    padding: 24px;
    border-radius: 20px;
  }

  .card,
  .service-card,
  .blog-card,
  .value-card,
  .contact-card,
  .premium-form,
  .cta-panel {
    padding: 24px;
    border-radius: 20px;
  }

  .coach-strip {
    padding: 18px;
  }

  .coach-strip > div {
    box-sizing: border-box;
    padding-inline: clamp(8px, 3vw, 14px);
  }

  .image-frame img,
  .coach-strip img {
    height: 380px;
  }

  .image-frame img {
    object-position: center -32px;
  }

  .content-image-row .image-frame img {
    object-position: center;
  }

  .blog-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-card > img {
    margin: -24px -24px 20px;
    width: calc(100% + 48px);
  }

  .blog-card .blog-image-wrap {
    height: 180px;
    margin: -24px -24px 20px;
  }

  .contact-card {
    padding: 30px;
  }

  .contact-card__item {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .contact-card__icon {
    width: 50px;
    height: 50px;
  }

  .testimonial-slider {
    margin-top: 24px;
    padding: 0 18px 26px;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }

  .testimonial-visual {
    min-height: 250px;
    padding: 26px 20px 22px;
  }

  .training-hero__visual,
  .training-hero__visual img,
  .video-frame,
  .video-frame img {
    min-height: 390px;
    height: 390px;
  }

  .training-hero__visual {
    border-radius: 26px;
  }

  .training-path {
    padding-left: 24px;
  }

  .training-path::before {
    left: 24px;
  }

  .training-step,
  .training-step:nth-child(even) {
    padding-left: 38px;
  }

  .training-step__number {
    left: 66px;
    font-size: 46px;
  }

  .training-step__icon {
    left: -24px;
    width: 48px;
    height: 48px;
  }

  .transform-flow {
    border-radius: 22px;
  }

  .transform-flow div {
    padding: 30px 24px;
  }

  .transform-flow strong {
    margin-top: 34px;
  }

  .learning-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .learning-list span {
    font-size: 42px;
  }

  .experience-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .experience-flow div {
    min-height: auto;
    padding-bottom: 28px;
  }

  .experience-flow div span {
    width: 78px;
    height: 78px;
    margin-bottom: 18px;
  }

  .video-copy blockquote {
    padding-left: 18px;
    font-size: 22px;
  }
}

@media (max-width: 680px) {
  .footer-aside {
    grid-template-columns: 1fr;
  }
}

/* Training page refined visual system */
.training-page {
  font-family: "Lato", Arial, sans-serif;
  background: transparent;
}

.training-page .section-pad {
  padding: clamp(84px, 8vw, 118px) 0;
}

.training-page h1,
.training-page h2,
.training-page h3,
.training-page p,
.training-page a,
.training-page span,
.training-page strong,
.training-page button {
  font-family: "Lato", Arial, sans-serif;
}

.training-page h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(34px, 4.2vw, 46px);
  font-weight: 700;
  line-height: 1.12;
}

.training-page h2 {
  margin-bottom: 18px;
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 650;
  line-height: 1.2;
}

.training-page h3 {
  font-size: 19px;
  font-weight: 650;
  line-height: 1.28;
}

.training-page p,
.training-page .lead {
  color: #59616b;
  font-weight: 400;
  line-height: 1.74;
}

.training-page .lead {
  max-width: 560px;
  margin-bottom: 34px;
  font-size: clamp(17px, 1.7vw, 19px);
}

.training-page .btn {
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}

.training-hero {
  min-height: auto;
  padding-top: clamp(72px, 8vw, 104px);
  padding-bottom: clamp(84px, 9vw, 118px);
  background: transparent;
}

.training-hero__grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: clamp(58px, 8vw, 104px);
}

.training-hero__copy {
  max-width: 650px;
}

.training-hero__visual {
  min-height: 520px;
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(7, 24, 45, 0.1);
}

.training-hero__visual::after,
.video-frame::after {
  background: linear-gradient(180deg, transparent 58%, rgba(7, 24, 45, 0.24));
}

.training-hero__visual img {
  height: 520px;
  min-height: 520px;
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.training-journey,
.learning-section,
.video-trust-section {
  background: transparent;
}

.training-page .section-title.centered {
  max-width: 680px;
  margin-bottom: 56px;
}

.training-path {
  padding: 34px 0 8px;
}

.training-path::before {
  top: 68px;
  background: linear-gradient(90deg, rgba(127, 151, 111, 0.1), rgba(200, 155, 60, 0.36), rgba(127, 151, 111, 0.1));
}

.training-step {
  min-height: 230px;
  padding: 0 20px;
}

.training-step:nth-child(even) {
  padding-top: 62px;
}

.training-step__number {
  color: rgba(7, 24, 45, 0.1);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 700;
}

.training-step__icon {
  width: 46px;
  height: 46px;
  margin: 12px 0 18px;
  border-color: rgba(127, 151, 111, 0.18);
  background: #f5f7f1;
  color: #617556;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(7, 24, 45, 0.06);
  animation: none;
}

.training-step h3 {
  max-width: 220px;
  margin-bottom: 9px;
}

.training-step p {
  max-width: 220px;
  font-size: 14px;
}

.training-transform,
.experience-section {
  background: var(--beige);
}

.training-transform__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: clamp(54px, 7vw, 92px);
  align-items: center;
}

.training-transform__media,
.learning-media,
.video-frame {
  overflow: hidden;
  border-radius: 26px;
}

.training-transform__media img,
.learning-media img {
  height: 460px;
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.training-transform__content {
  max-width: 650px;
}

.transform-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 34px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.transform-flow div {
  min-height: auto;
  padding: 0 0 0 28px;
  border-left: 2px solid rgba(200, 155, 60, 0.28);
  background: transparent;
}

.transform-flow div:not(:last-child)::after {
  display: none;
}

.transform-flow span,
.experience-flow span {
  color: #6f845f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.transform-flow strong {
  margin: 8px 0 8px;
  font-size: 23px;
  font-weight: 650;
  line-height: 1.2;
}

.transform-flow p {
  max-width: 430px;
  font-size: 15px;
}

.learning-grid {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(56px, 8vw, 102px);
}

.learning-intro {
  position: static;
  align-self: center;
}

.learning-media {
  margin-top: 32px;
}

.learning-media img {
  height: 360px;
}

.learning-list {
  gap: 0;
}

.learning-list div {
  grid-template-columns: 74px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom-color: rgba(7, 24, 45, 0.07);
}

.learning-list span {
  color: rgba(200, 155, 60, 0.42);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
}

.learning-list strong {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 650;
}

.experience-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.experience-flow::before {
  left: 10%;
  right: 10%;
  top: 35px;
  background: rgba(127, 151, 111, 0.22);
}

.experience-flow div {
  min-height: 178px;
  padding: 0 12px;
}

.experience-flow div span {
  width: 70px;
  height: 70px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.72);
  color: #6f845f;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(7, 24, 45, 0.06);
}

.experience-flow strong {
  font-size: 20px;
  font-weight: 650;
}

.experience-flow p {
  max-width: 210px;
  font-size: 14px;
}

.video-trust-grid {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: clamp(54px, 7vw, 96px);
}

.video-frame {
  min-height: 440px;
  box-shadow: 0 22px 64px rgba(7, 24, 45, 0.1);
}

.video-frame img {
  height: 440px;
  aspect-ratio: 4 / 5;
}

.video-frame button {
  width: 68px;
  height: 68px;
  box-shadow: 0 14px 34px rgba(7, 24, 45, 0.14);
}

.video-frame button span {
  border-top-width: 11px;
  border-bottom-width: 11px;
  border-left-width: 17px;
}

.video-copy blockquote {
  margin: 28px 0;
  padding-left: 22px;
  color: var(--navy);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.42;
}

.final-training-cta {
  background: var(--beige);
}

.final-training-cta .container {
  max-width: 760px;
}

.final-training-cta p {
  margin-bottom: 30px;
}

@media (hover: hover) and (pointer: fine) {
  .training-step:hover .training-step__icon,
  .experience-flow div:hover span {
    transform: translateY(-3px);
    background: #f8faf5;
    color: #4f654b;
  }

  .video-frame:hover img,
  .training-hero__visual:hover img {
    transform: scale(1.012);
  }
}

@media (max-width: 980px) {
  .training-hero__grid,
  .training-transform__grid,
  .learning-grid,
  .video-trust-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .training-hero__copy,
  .training-transform__content {
    max-width: 720px;
  }

  .training-hero__visual,
  .training-hero__visual img {
    height: 500px;
    min-height: 500px;
  }

  .training-path {
    padding: 8px 0 0 30px;
  }

  .training-path::before {
    left: 30px;
    top: 26px;
    bottom: 28px;
  }

  .training-step,
  .training-step:nth-child(even) {
    padding: 0 0 36px 42px;
  }

  .training-step__number {
    left: 76px;
    font-size: 44px;
  }

  .training-step__icon {
    left: -23px;
    width: 46px;
    height: 46px;
  }

  .training-step h3 {
    margin-top: 52px;
  }

  .training-step p {
    max-width: 540px;
  }

  .learning-media img,
  .training-transform__media img,
  .video-frame,
  .video-frame img {
    height: 430px;
    min-height: 430px;
  }

  .experience-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 28px;
  }

  .experience-flow::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .training-page .section-pad {
    padding: 72px 0;
  }

  .training-page h1 {
    font-size: 31px;
    line-height: 1.16;
  }

  .training-page h2 {
    font-size: 26px;
  }

  .training-page .lead,
  .training-page p {
    font-size: 15px;
  }

  .training-page .btn {
    min-height: 44px;
    padding: 11px 18px;
  }

  .training-hero {
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .training-hero__visual,
  .training-hero__visual img,
  .learning-media img,
  .training-transform__media img,
  .video-frame,
  .video-frame img {
    height: 360px;
    min-height: 360px;
  }

  .training-hero__visual,
  .training-transform__media,
  .learning-media,
  .video-frame {
    border-radius: 22px;
  }

  .training-path {
    padding-left: 24px;
  }

  .training-path::before {
    left: 24px;
  }

  .training-step,
  .training-step:nth-child(even) {
    padding-left: 36px;
  }

  .training-step__number {
    left: 62px;
    font-size: 38px;
  }

  .training-step__icon {
    left: -21px;
    width: 42px;
    height: 42px;
    font-size: 12px;
  }

  .transform-flow {
    gap: 22px;
  }

  .transform-flow div {
    padding-left: 22px;
  }

  .transform-flow strong {
    font-size: 21px;
  }

  .learning-list div {
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 22px 0;
  }

  .learning-list span {
    font-size: 32px;
  }

  .learning-list strong {
    font-size: 21px;
  }

  .experience-flow {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .experience-flow div {
    min-height: auto;
  }

  .experience-flow div span {
    width: 60px;
    height: 60px;
  }

  .video-copy blockquote {
    font-size: 20px;
  }
}

/* Training page immersive workshop experience */
.training-page {
  --sage: #6f845f;
  --sage-soft: rgba(111, 132, 95, 0.16);
}

.training-experience-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 88px);
  padding: clamp(72px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 74% 22%, rgba(200, 155, 60, 0.16), transparent 30%),
    radial-gradient(circle at 14% 78%, rgba(111, 132, 95, 0.12), transparent 28%),
    linear-gradient(120deg, rgba(252, 250, 246, 0.98), rgba(245, 241, 234, 0.82));
}

.training-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.9fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
}

.training-stage__copy h1 {
  max-width: 690px;
  font-size: clamp(42px, 5.7vw, 72px);
  line-height: 1.04;
}

.training-stage__copy .lead {
  max-width: 590px;
}

.training-stage__visual {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: center;
  justify-items: center;
}

.training-coach-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: min(560px, 100%);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(200, 155, 60, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 28px 72px rgba(7, 24, 45, 0.14);
}

.training-coach-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  animation: trainingSlowZoom 13s ease-in-out infinite alternate;
}

.training-shape,
.training-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.training-shape--one {
  inset: 14px 18px auto auto;
  width: 250px;
  height: 250px;
  background: rgba(200, 155, 60, 0.14);
  filter: blur(2px);
  animation: trainingFloat 7.8s ease-in-out infinite alternate;
}

.training-shape--two {
  left: 18px;
  bottom: 36px;
  width: 190px;
  height: 190px;
  background: rgba(111, 132, 95, 0.13);
  animation: trainingFloatAlt 9s ease-in-out infinite alternate;
}

.training-orb--one {
  top: 12%;
  left: 46%;
  width: 110px;
  height: 110px;
  background: rgba(200, 155, 60, 0.12);
  animation: trainingDrift 14s ease-in-out infinite alternate;
}

.training-orb--two {
  right: 8%;
  bottom: 12%;
  width: 170px;
  height: 170px;
  background: rgba(111, 132, 95, 0.1);
  animation: trainingDrift 16s ease-in-out infinite alternate-reverse;
}

.training-atmosphere {
  min-height: 78vh;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 24, 45, 0.88), rgba(7, 24, 45, 0.48)),
    url("../images/indian-women-workshop.webp") center / cover;
}

.training-atmosphere .container {
  max-width: 950px;
}

.training-atmosphere p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
}

.training-atmosphere blockquote {
  max-width: 900px;
  margin: 28px 0 0;
  color: var(--white);
  font-size: clamp(34px, 5.2vw, 62px);
  font-weight: 900;
  line-height: 1.1;
}

.training-life-section {
  overflow: hidden;
}

.training-life-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.86fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(200, 155, 60, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(252, 250, 246, 0.92), rgba(245, 241, 234, 0.62)),
    radial-gradient(circle at 82% 14%, rgba(200, 155, 60, 0.12), transparent 32%);
  box-shadow: 0 28px 84px rgba(7, 24, 45, 0.1);
}

.life-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(1px);
}

.life-glow-one {
  top: 8%;
  right: 10%;
  width: 160px;
  height: 160px;
  background: rgba(200, 155, 60, 0.13);
  animation: trainingFloat 8.5s ease-in-out infinite alternate;
}

.life-glow-two {
  left: 3%;
  bottom: 7%;
  width: 220px;
  height: 220px;
  background: rgba(111, 132, 95, 0.12);
  animation: trainingFloatAlt 10s ease-in-out infinite alternate;
}

.training-life-visual {
  position: relative;
  min-height: 650px;
}

.life-main-image,
.life-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(200, 155, 60, 0.22);
  box-shadow: 0 24px 68px rgba(7, 24, 45, 0.13);
}

.life-main-image {
  inset: 34px 88px 76px 0;
  width: calc(100% - 88px);
  height: 540px;
  border-radius: 30px;
  object-position: center;
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), filter 0.42s ease;
}

.life-photo {
  z-index: 2;
  margin: 0;
  background: rgba(252, 250, 246, 0.88);
}

.life-photo img {
  height: 100%;
  transition: transform 0.64s cubic-bezier(0.22, 1, 0.36, 1);
}

.life-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 11px 13px;
  border-radius: 14px;
  color: var(--navy);
  background: rgba(252, 250, 246, 0.88);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.life-photo-work {
  right: 0;
  top: 0;
  width: 240px;
  height: 270px;
  border-radius: 24px;
  animation: trainingBubbleFloat 6s ease-in-out infinite alternate;
}

.life-photo-family {
  left: 44px;
  bottom: 0;
  width: 300px;
  height: 230px;
  border-radius: 22px;
  animation: trainingBubbleFloat 7s ease-in-out infinite alternate-reverse;
}

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

.training-life-content h2 {
  max-width: 640px;
}

.training-life-content > p {
  max-width: 560px;
  margin-bottom: 28px;
}

.life-scenario-flow {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 14px;
}

.life-scenario {
  position: relative;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(7, 24, 45, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 32px rgba(7, 24, 45, 0.06);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.34s ease, border-color 0.34s ease, background 0.34s ease;
}

.life-scenario:nth-child(even) {
  transform: translateY(18px);
}

.life-scenario span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.life-scenario strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.28;
}

.life-scenario p {
  margin: 7px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.scenario-primary {
  grid-row: span 2;
  display: flex;
  min-height: 208px;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(7, 24, 45, 0.08), rgba(7, 24, 45, 0.72)),
    url("../images/indian-financial-planning.webp") center / cover;
}

.scenario-primary span,
.scenario-primary strong,
.scenario-primary p {
  color: var(--white);
}

.session-board {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(200, 155, 60, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.session-stack {
  display: grid;
  gap: 14px;
}

.session-stack div {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid rgba(7, 24, 45, 0.08);
  border-radius: 18px;
  background: rgba(252, 250, 246, 0.78);
  box-shadow: 0 12px 28px rgba(7, 24, 45, 0.055);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.34s ease;
}

.session-stack div:not(:last-child)::after {
  content: "↓";
  position: absolute;
  left: 48px;
  bottom: -18px;
  z-index: 2;
  color: var(--gold);
  font-weight: 900;
}

.session-stack span {
  color: rgba(200, 155, 60, 0.76);
  font-size: 20px;
  font-weight: 900;
}

.session-stack strong {
  color: var(--navy);
  font-size: 18px;
}

.behind-session-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.62fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.training-collage {
  position: relative;
  min-height: 620px;
}

.training-collage img {
  position: absolute;
  border: 1px solid rgba(200, 155, 60, 0.22);
  box-shadow: 0 24px 64px rgba(7, 24, 45, 0.14);
  transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.collage-main {
  left: 12%;
  top: 0;
  z-index: 2;
  width: 52%;
  height: 560px;
  border-radius: 28px;
  object-position: center 16%;
}

.collage-small {
  width: 38%;
  height: 250px;
  border-radius: 22px;
}

.collage-one {
  right: 4%;
  top: 74px;
  z-index: 3;
}

.collage-two {
  right: 16%;
  bottom: 8px;
  z-index: 1;
}

.behind-session-copy p {
  max-width: 520px;
}

.training-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.training-stats div {
  padding: 36px 26px;
  border: 1px solid rgba(200, 155, 60, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 16%, rgba(200, 155, 60, 0.12), transparent 34%),
    rgba(252, 250, 246, 0.78);
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.training-stats strong {
  display: block;
  color: var(--gold);
  font-size: clamp(44px, 6vw, 70px);
  line-height: 1;
}

.training-stats strong::after {
  content: "+";
}

.training-stats span {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
}

.video-showcase {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  border: 1px solid rgba(200, 155, 60, 0.18);
  border-radius: 32px;
  background: rgba(252, 250, 246, 0.62);
  box-shadow: 0 28px 84px rgba(7, 24, 45, 0.14);
}

.video-showcase img {
  height: 650px;
  object-position: center 18%;
  filter: saturate(0.88) contrast(1.02);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-showcase::after,
.immersive-training-close::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 24, 45, 0.04), rgba(7, 24, 45, 0.72));
}

.video-showcase button {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 0;
  border-radius: 50%;
  background: rgba(252, 250, 246, 0.92);
  box-shadow: 0 18px 44px rgba(7, 24, 45, 0.22);
  transform: translate(-50%, -50%);
}

.video-showcase button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--gold);
}

.video-showcase__caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
}

.video-showcase__caption h2 {
  max-width: 620px;
  color: var(--white);
}

.learning-notes {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.learning-notes div {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(200, 155, 60, 0.18);
  border-radius: 8px 24px 8px 24px;
  color: var(--navy);
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 14px 34px rgba(7, 24, 45, 0.08);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.42;
  transform: rotate(-1.5deg);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.34s ease;
}

.learning-notes div:nth-child(2n) {
  background: rgba(245, 247, 241, 0.9);
  transform: rotate(1.3deg);
}

.learning-notes div:nth-child(3n) {
  background: rgba(255, 255, 255, 0.82);
}

.workshop-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: 220px;
  gap: 18px;
}

.workshop-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(200, 155, 60, 0.18);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(7, 24, 45, 0.1);
}

.workshop-gallery img {
  height: 100%;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.workshop-gallery figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 13px 15px;
  border-radius: 14px;
  color: var(--navy);
  background: rgba(252, 250, 246, 0.88);
  font-size: 14px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.32s ease, transform 0.32s ease;
  backdrop-filter: blur(12px);
}

.workshop-gallery .gallery-large {
  grid-row: span 2;
}

.workshop-gallery .gallery-tall {
  grid-row: span 2;
}

.training-word-quote {
  min-height: 100vh;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 24, 45, 0.88), rgba(7, 24, 45, 0.62)),
    url("../images/hero-reflection-bg.png") center / cover no-repeat;
}

.training-word-quote blockquote {
  display: flex;
  flex-wrap: wrap;
  gap: 0.18em 0.28em;
  max-width: 1080px;
  margin: 0 auto;
  color: var(--white);
  text-align: center;
  justify-content: center;
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 900;
  line-height: 1.04;
}

.training-word-quote span {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.64s cubic-bezier(0.22, 1, 0.36, 1), transform 0.64s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--word-index, 0) * 80ms);
}

.training-word-quote .is-visible span,
.training-word-quote .reveal.is-visible span {
  opacity: 1;
  transform: translateY(0);
}

.promise-path {
  position: relative;
  min-height: 320px;
}

.promise-path svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.promise-path__line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}

.promise-path.is-visible .promise-path__line,
.reveal.is-visible .promise-path__line {
  animation: trainingPathDraw 1.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.promise-step {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 116px;
  min-height: 54px;
  padding: 12px 18px;
  border: 1px solid rgba(200, 155, 60, 0.24);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(252, 250, 246, 0.9);
  box-shadow: 0 14px 34px rgba(7, 24, 45, 0.09);
  font-weight: 900;
}

.step-learn { left: 2%; top: 58%; }
.step-reflect { left: 22%; top: 18%; }
.step-practice { left: 44%; top: 43%; }
.step-grow { right: 23%; top: 12%; }
.step-transform { right: 2%; top: 50%; }

.immersive-training-close {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(7, 24, 45, 0.08), rgba(7, 24, 45, 0.72)),
    url("../images/indian-women-community.webp") center / cover no-repeat;
}

.immersive-training-close .container {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin-bottom: clamp(20px, 5vw, 64px);
  text-align: center;
}

.immersive-training-close h2 {
  max-width: 880px;
  margin: 0 auto 28px;
  color: var(--white);
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.08;
}

.immersive-training-close .button-row {
  justify-content: center;
}

@keyframes trainingMorph {
  0% { border-radius: 44% 56% 38% 62% / 42% 38% 62% 58%; }
  100% { border-radius: 56% 44% 54% 46% / 48% 58% 42% 52%; }
}

@keyframes trainingFloat {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-18px, 24px, 0) scale(1.06); }
}

@keyframes trainingFloatAlt {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(24px, -18px, 0) scale(0.96); }
}

@keyframes trainingDrift {
  0% { transform: translate3d(0, 0, 0); opacity: 0.7; }
  100% { transform: translate3d(34px, -28px, 0); opacity: 0.42; }
}

@keyframes trainingBubbleFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

@keyframes trainingPointFloat {
  0% { margin-top: 0; }
  100% { margin-top: -9px; }
}

@keyframes trainingSlowZoom {
  0% { transform: scale(1.04); }
  100% { transform: scale(1.095); }
}

@keyframes trainingPathDraw {
  to { stroke-dashoffset: 0; }
}

@media (hover: hover) and (pointer: fine) {
  .session-stack div:hover,
  .learning-notes div:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 22px 52px rgba(7, 24, 45, 0.13);
  }

  .life-scenario:hover {
    transform: translateY(-6px) scale(1.015);
    border-color: rgba(200, 155, 60, 0.28);
    background: rgba(252, 250, 246, 0.86);
    box-shadow: 0 20px 48px rgba(7, 24, 45, 0.11);
  }

  .life-scenario:nth-child(even):hover {
    transform: translateY(10px) scale(1.015);
  }

  .training-life-showcase:hover .life-main-image,
  .life-photo:hover img {
    transform: scale(1.035);
  }

  .workshop-gallery figure:hover img,
  .video-showcase:hover img,
  .training-collage img:hover {
    transform: scale(1.04);
  }

  .workshop-gallery figure:hover figcaption {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .training-stage,
  .session-board,
  .training-life-showcase,
  .behind-session-grid {
    grid-template-columns: 1fr;
  }

  .training-stage__visual {
    min-height: 590px;
  }

  .training-coach-frame {
    width: min(520px, 100%);
  }

  .training-life-visual {
    min-height: 560px;
    order: 2;
  }

  .training-life-content {
    order: 1;
  }

  .life-main-image {
    inset: 24px 0 84px;
    width: 82%;
  }

  .life-photo-work {
    right: 0;
  }

  .life-photo-family {
    left: auto;
    right: 10%;
  }

  .training-collage {
    min-height: 560px;
  }

  .training-stats,
  .learning-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .training-stage__copy h1 {
    font-size: 38px;
  }

  .training-stage__visual {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .training-coach-frame {
    position: relative;
    inset: auto;
  }

  .training-coach-frame {
    width: 100%;
    height: auto;
  }

  .training-shape,
  .training-orb {
    display: none;
  }

  .training-atmosphere {
    min-height: 66vh;
    background-attachment: scroll;
  }

  .training-atmosphere blockquote,
  .training-word-quote blockquote {
    font-size: 34px;
  }

  .training-life-showcase {
    padding: 16px;
    border-radius: 24px;
  }

  .training-life-visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .life-main-image,
  .life-photo,
  .life-photo-work,
  .life-photo-family {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .life-main-image {
    aspect-ratio: 4 / 5;
  }

  .life-photo {
    aspect-ratio: 4 / 3;
  }

  .life-photo img {
    height: 100%;
  }

  .life-scenario-flow {
    grid-template-columns: 1fr;
  }

  .life-scenario,
  .life-scenario:nth-child(even) {
    transform: none;
  }

  .scenario-primary {
    min-height: 220px;
  }

  .session-board {
    padding: 22px;
  }

  .session-stack div {
    grid-template-columns: 44px 1fr;
  }

  .training-collage {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .training-collage img,
  .collage-main,
  .collage-small {
    position: relative;
    inset: auto;
    width: 100%;
    height: 300px;
  }

  .training-stats,
  .learning-notes,
  .workshop-gallery {
    grid-template-columns: 1fr;
  }

  .learning-notes div {
    min-height: 150px;
  }

  .workshop-gallery {
    grid-auto-rows: 260px;
  }

  .workshop-gallery .gallery-large,
  .workshop-gallery .gallery-tall {
    grid-row: auto;
  }

  .video-showcase,
  .video-showcase img {
    min-height: 440px;
    height: 440px;
  }

  .video-showcase__caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .promise-path {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .promise-path svg {
    display: none;
  }

  .promise-step {
    position: relative;
    inset: auto;
    width: 100%;
  }
}

/* Training page: premium editorial experience */
.training-experience {
  background:
    radial-gradient(circle at 18% 8%, rgba(200, 155, 60, 0.09), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(111, 132, 95, 0.1), transparent 26%),
    var(--off-white);
}

.training-experience .section-pad {
  padding: clamp(90px, 9vw, 138px) 0;
}

.training-experience h1 {
  max-width: 720px;
  font-size: 44px;
  line-height: 1.02;
}

.training-experience h2 {
  font-size: 35px;
  line-height: 1.08;
}

.training-experience p {
  max-width: 620px;
}

.training-atelier-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(252, 250, 246, 0.98), rgba(245, 241, 234, 0.84)),
    radial-gradient(circle at 78% 20%, rgba(200, 155, 60, 0.18), transparent 28%);
}

.atelier-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.82fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.atelier-hero-copy .lead {
  margin-bottom: 34px;
}

.atelier-hero-image {
  overflow: hidden;
  width: min(560px, 100%);
  aspect-ratio: 1 / 1;
  margin-left: auto;
  border: 1px solid rgba(200, 155, 60, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 32px 88px rgba(7, 24, 45, 0.16);
}

.atelier-hero-image img {
  height: 100%;
  object-position: center top;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.atelier-bg-shape {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.shape-a {
  right: 5%;
  top: 14%;
  width: 260px;
  height: 260px;
  background: rgba(200, 155, 60, 0.12);
  animation: trainingFloat 9s ease-in-out infinite alternate;
}

.shape-b {
  left: 42%;
  bottom: 12%;
  width: 170px;
  height: 170px;
  background: rgba(111, 132, 95, 0.12);
  animation: trainingFloatAlt 11s ease-in-out infinite alternate;
}

.training-room {
  min-height: 92vh;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 24, 45, 0.08), rgba(7, 24, 45, 0.78)),
    url("../images/indian-women-workshop.webp") center / cover;
}

.training-room .container {
  padding-bottom: clamp(24px, 6vw, 82px);
}

.training-room blockquote {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-size: 65px;
  font-weight: 800;
  line-height: 1.04;
}

.conversation-canvas {
  position: relative;
  min-height: 760px;
}

.conversation-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(200, 155, 60, 0.2);
  box-shadow: 0 26px 76px rgba(7, 24, 45, 0.14);
}

.conversation-photo img {
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.photo-large {
  left: 0;
  top: 0;
  width: 68%;
  height: 640px;
  border-radius: 34px;
}

.photo-small {
  right: 4%;
  top: 116px;
  z-index: 2;
  width: 32%;
  height: 420px;
  border-radius: 28px;
}

.conversation-callout {
  position: absolute;
  z-index: 3;
  width: min(330px, 80vw);
  padding: 24px;
  border: 1px solid rgba(200, 155, 60, 0.22);
  border-radius: 22px;
  background: rgba(252, 250, 246, 0.9);
  box-shadow: 0 18px 48px rgba(7, 24, 45, 0.14);
  backdrop-filter: blur(16px);
}

.conversation-callout p {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
}

.callout-one {
  left: 8%;
  bottom: 18px;
}

.callout-two {
  right: 0;
  bottom: 96px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.editorial-copy blockquote {
  max-width: 560px;
  margin: 28px 0 0;
  padding-left: 24px;
  border-left: 4px solid var(--gold);
  color: var(--navy);
  font-size: 25px;
  font-weight : 500;
  line-height: 1.24;
}

.editorial-image-stack {
  position: relative;
  min-height: 680px;
}

.editorial-main {
  position: absolute;
  inset: 0 80px 72px 0;
  width: calc(100% - 80px);
  height: 560px;
  border-radius: 32px;
  box-shadow: 0 28px 78px rgba(7, 24, 45, 0.13);
}

.editorial-overlap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 270px;
  height: 330px;
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(7, 24, 45, 0.16);
  object-position: center top;
}

.editorial-note {
  position: absolute;
  left: 34px;
  bottom: 42px;
  max-width: 340px;
  padding: 22px;
  border-radius: 20px;
  color: var(--navy);
  background: rgba(252, 250, 246, 0.88);
  box-shadow: 0 18px 42px rgba(7, 24, 45, 0.12);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.28;
}

.workshop-purpose {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 155, 60, 0.12), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(111, 132, 95, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(252, 250, 246, 0.92), rgba(245, 241, 234, 0.82));
}

.workshop-purpose__heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.workshop-purpose__heading h2 {
  max-width: 790px;
}

.workshop-purpose__stage {
  position: relative;
  min-height: 760px;
}

.workshop-purpose__image {
  position: absolute;
  inset: 42px 18% 54px 10%;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(200, 155, 60, 0.24);
  border-radius: 34px;
  box-shadow: 0 32px 92px rgba(7, 24, 45, 0.16);
}

.workshop-purpose__image img {
  height: 100%;
  object-position: center;
  transition: transform 0.92s cubic-bezier(0.22, 1, 0.36, 1), filter 0.42s ease;
}

.workshop-purpose__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 24, 45, 0.02), rgba(7, 24, 45, 0.18));
  pointer-events: none;
}

.purpose-floating {
  position: absolute;
  z-index: 3;
  width: min(300px, 82vw);
  padding: 24px;
  border: 1px solid rgba(200, 155, 60, 0.22);
  border-radius: 22px;
  background: rgba(252, 250, 246, 0.9);
  box-shadow: 0 20px 54px rgba(7, 24, 45, 0.14);
  backdrop-filter: blur(16px);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.38s ease, border-color 0.38s ease;
  animation: trainingBubbleFloat 7.2s ease-in-out infinite alternate;
}

.purpose-floating strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.08;
}

.purpose-floating p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.55;
}

.purpose-reflect {
  left: 0;
  top: 106px;
}

.purpose-discuss {
  right: 2%;
  top: 28px;
  animation-delay: 0.8s;
}

.purpose-practice {
  left: 6%;
  bottom: 26px;
  animation-delay: 1.4s;
}

.purpose-apply {
  right: 0;
  bottom: 108px;
  animation-delay: 2s;
}

.purpose-curve {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(200, 155, 60, 0.22);
  border-color: rgba(200, 155, 60, 0.22) transparent transparent rgba(200, 155, 60, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.curve-one {
  left: 19%;
  top: 64px;
  width: 44%;
  height: 230px;
  transform: rotate(8deg);
}

.curve-two {
  right: 17%;
  bottom: 84px;
  width: 42%;
  height: 230px;
  transform: rotate(188deg);
}

.wall-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(200, 155, 60, 0.18);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.wall-track div {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background: rgba(252, 250, 246, 0.82);
}

.wall-track div:nth-child(even) {
  background: rgba(245, 241, 234, 0.9);
}

.wall-track strong {
  color: var(--navy);
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.1;
}

.atelier-gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.atelier-gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(200, 155, 60, 0.18);
  border-radius: 28px;
  box-shadow: 0 18px 52px rgba(7, 24, 45, 0.11);
}

.atelier-gallery-grid img {
  height: 100%;
  transition: transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.atelier-gallery-grid figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 13px 15px;
  border-radius: 14px;
  color: var(--navy);
  background: rgba(252, 250, 246, 0.88);
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.gallery-hero {
  grid-row: span 2;
}

.gallery-slim {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.workshop-energy {
  min-height: 100vh;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 24, 45, 0.9), rgba(7, 24, 45, 0.5)),
    url("../images/indian-women-community.webp") center / cover;
}

.workshop-energy blockquote {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em 0.32em;
  max-width: 1040px;
  margin: 0 auto;
  justify-content: center;
  color: var(--white);
  text-align: center;
  font-size: 65px;
  font-weight: 800;
  line-height: 0.98;
}

.workshop-energy span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1), transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--word-index, 0) * 90ms);
}

.workshop-energy .is-visible span,
.workshop-energy .reveal.is-visible span {
  opacity: 1;
  transform: translateY(0);
}

.training-close-scene {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 24, 45, 0.12), rgba(7, 24, 45, 0.76)),
    url("../images/hero-reflection-bg.png") center / cover no-repeat;
}

.training-close-scene .container {
  padding-bottom: clamp(28px, 6vw, 82px);
  text-align: center;
}

.training-close-scene h2 {
  max-width: 900px;
  margin: 0 auto 28px;
  color: var(--white);
  font-size: clamp(40px, 6vw, 78px);
}

.training-close-scene .button-row {
  justify-content: center;
}

@media (hover: hover) and (pointer: fine) {
  .atelier-hero-image:hover img,
  .conversation-photo:hover img,
  .editorial-image-stack:hover .editorial-main,
  .editorial-overlap:hover,
  .workshop-purpose__stage:hover .workshop-purpose__image img,
  .atelier-gallery-grid figure:hover img {
    transform: scale(1.035);
  }

  .conversation-callout:hover,
  .purpose-floating:hover,
  .wall-track div:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(7, 24, 45, 0.13);
  }
}

@media (max-width: 980px) {
  .atelier-hero-grid,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .atelier-hero-image {
    margin: 0 auto;
  }

  .conversation-canvas {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .conversation-photo,
  .conversation-callout {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .photo-large,
  .photo-small {
    height: 440px;
  }

  .editorial-image-stack {
    min-height: 620px;
  }

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

  .workshop-purpose__stage {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .workshop-purpose__image,
  .purpose-floating {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .workshop-purpose__image {
    height: 500px;
  }

  .purpose-curve {
    display: none;
  }

  .wall-track {
    grid-template-columns: 1fr;
  }

  .wall-track div {
    min-height: 170px;
  }
}

@media (max-width: 680px) {
  .training-experience .section-pad {
    padding: 72px 0;
  }

  .training-experience h1 {
    font-size: 38px;
  }

  .training-room,
  .workshop-energy {
    background-attachment: scroll;
  }

  .training-room blockquote,
  .workshop-energy blockquote {
    font-size: 36px;
  }

  .photo-large,
  .photo-small {
    height: 320px;
  }

  .conversation-callout p {
    font-size: 18px;
  }

  .editorial-image-stack {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .editorial-main,
  .editorial-overlap,
  .editorial-note {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .editorial-main,
  .editorial-overlap {
    aspect-ratio: 4 / 5;
  }

  .atelier-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-hero,
  .gallery-slim,
  .gallery-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .workshop-purpose__heading {
    margin-bottom: 32px;
  }

  .workshop-purpose__image {
    height: 320px;
  }

  .purpose-floating {
    padding: 22px;
    animation: none;
  }

  .purpose-floating strong {
    font-size: 24px;
  }

  .training-close-scene h2 {
    font-size: 38px;
  }
}

/* Training page warm learning journey */
.training-experience {
  background:
    radial-gradient(circle at 16% 8%, rgba(200, 155, 60, 0.1), transparent 24%),
    radial-gradient(circle at 88% 28%, rgba(252, 250, 246, 0.78), transparent 30%),
    var(--off-white);
}

.training-experience .section-pad {
  padding: clamp(82px, 8vw, 118px) 0;
}

.training-experience h1 {
  max-width: 760px;
  font-size: 31px;
  line-height: 1.05;
}

.training-experience h2 {
  font-size: 33px;
  line-height: 1.10;
}

.training-journey-hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 246, 242, 0.96), rgba(252, 250, 246, 0.78)),
    radial-gradient(circle at 78% 22%, rgba(200, 155, 60, 0.14), transparent 30%);
}

.training-hero-grid,
.training-why-grid,
.training-difference-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}

.training-hero-copy .lead {
  max-width: 650px;
}

.training-hero-portrait {
  overflow: hidden;
  width: min(540px, 100%);
  aspect-ratio: 1 / 1;
  margin-left: auto;
  padding: 14px;
  border: 1px solid rgba(200, 155, 60, 0.24);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

.training-hero-portrait img {
  height: 100%;
  border-radius: 20px;
  object-position: center top;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.training-large-image {
  overflow: hidden;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(200, 155, 60, 0.22);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow);
}

.training-large-image img {
  height: 560px;
  border-radius: 18px;
  object-position: center top;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.training-why-copy blockquote {
  margin: 30px 0 0;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  border-radius: 0 20px 20px 0;
  background: rgba(252, 250, 246, 0.86);
  box-shadow: 0 14px 34px rgba(7, 24, 45, 0.07);
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.30;
}

.session-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 220px;
  gap: 18px;
}

.session-mosaic figure,
.action-collage figure,
.premium-gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(200, 155, 60, 0.18);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(7, 24, 45, 0.1);
  background: var(--cream);
}

.session-mosaic img,
.action-collage img,
.premium-gallery-grid img {
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.session-main {
  grid-row: span 2;
}

.training-icon-list {
  display: grid;
  gap: 18px;
}

.training-icon-list h2 {
  margin-bottom: 10px;
}

.training-icon-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid rgba(200, 155, 60, 0.18);
}

.training-icon-item:first-of-type {
  border-top: 0;
}

.training-icon-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(200, 155, 60, 0.13);
  color: var(--gold);
}

.training-icon-item svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.training-icon-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.3;
}

.training-icon-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.action-collage,
.premium-gallery-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.action-tall,
.gallery-feature {
  grid-row: span 2;
}

.action-wide,
.gallery-wide {
  grid-column: span 2;
}

.action-collage figcaption,
.premium-gallery-grid figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(252, 250, 246, 0.9);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.coach-philosophy-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 62px);
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.coach-philosophy-panel figure {
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
}

.coach-philosophy-panel img {
  height: 560px;
  object-position: center top;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.coach-philosophy-panel blockquote {
  margin: 0 0 24px;
  color: var(--navy);
  font-size : 25px;
  font-weight: 600;
  line-height: 1.15;
}

.coach-philosophy-panel p {
  margin: 0;
}

.training-closing-cta {
  min-height: 76vh;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 24, 45, 0.08), rgba(7, 24, 45, 0.78)),
    url("../images/hero-reflection-bg.png") center / cover no-repeat;
}

.training-closing-cta .container {
  padding-bottom: clamp(30px, 6vw, 82px);
  text-align: center;
}

.training-closing-cta h2 {
  max-width: 940px;
  margin: 0 auto 28px;
  color: var(--white);
  font-size: 33px;
}

.training-closing-cta .button-row {
  justify-content: center;
}

.training-closing-cta .btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.48);
}

@media (hover: hover) and (pointer: fine) {
  .training-hero-portrait:hover img,
  .training-large-image:hover img,
  .session-mosaic figure:hover img,
  .action-collage figure:hover img,
  .premium-gallery-grid figure:hover img,
  .coach-philosophy-panel:hover img {
    transform: scale(1.035);
  }
}

@media (max-width: 980px) {
  .training-hero-grid,
  .training-why-grid,
  .training-difference-grid,
  .coach-philosophy-panel {
    grid-template-columns: 1fr;
  }

  .training-hero-portrait {
    margin: 0 auto;
  }

  .training-large-image img,
  .coach-philosophy-panel img {
    height: 500px;
  }

  .session-mosaic,
  .action-collage,
  .premium-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .training-experience .section-pad {
    padding: 70px 0;
  }

  .training-journey-hero {
    min-height: auto;
  }

  .training-hero-portrait,
  .training-large-image,
  .coach-philosophy-panel {
    padding: 16px;
    border-radius: 22px;
  }

  .training-large-image img,
  .coach-philosophy-panel img {
    height: 360px;
    border-radius: 16px;
  }

  .session-mosaic,
  .action-collage,
  .premium-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .session-main,
  .action-tall,
  .gallery-feature,
  .action-wide,
  .gallery-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .training-icon-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .training-icon-item span {
    width: 46px;
    height: 46px;
  }

  .coach-philosophy-panel {
    gap: 24px;
  }

  .coach-philosophy-panel > div {
    box-sizing: border-box;
    padding-inline: clamp(8px, 3vw, 14px);
  }

  .training-closing-cta {
    min-height: 68vh;
  }
}

/* Training page final brand-aligned overrides */
.training-page .training-texture-panel {
  display: flex;
  align-items: flex-end;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(135deg, rgba(252, 250, 246, 0.96), rgba(245, 241, 234, 0.88)),
    repeating-linear-gradient(0deg, rgba(7, 24, 45, 0.06) 0 1px, transparent 1px 32px);
}

.training-page .training-texture-panel::before {
  content: "";
  position: absolute;
  inset: 18px 22px auto auto;
  width: 54px;
  height: 54px;
  border-top: 2px solid rgba(200, 155, 60, 0.5);
  border-right: 2px solid rgba(200, 155, 60, 0.5);
  border-radius: 0 16px 0 0;
}

.training-page .training-texture-panel span {
  position: relative;
  z-index: 1;
  max-width: 260px;
  color: var(--navy);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.1;
}

.training-page .training-texture-panel--dark {
  background:
    linear-gradient(135deg, rgba(7, 24, 45, 0.94), rgba(18, 52, 90, 0.88)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 32px);
}

.training-page .training-texture-panel--dark::before {
  border-color: rgba(200, 155, 60, 0.62);
}

.training-page .training-texture-panel--dark span {
  color: var(--white);
}

.training-page .training-closing-cta {
  background:
    linear-gradient(180deg, rgba(7, 24, 45, 0.18), rgba(7, 24, 45, 0.72)),
    url("../images/coachmadhubala.webp") center 28% / cover no-repeat;
}

.training-page .training-closing-cta .btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.training-page .training-closing-cta .btn-primary:hover {
  background: var(--cream);
  color: var(--navy);
}

.training-page .session-mosaic figure,
.training-page .action-collage figure,
.training-page .premium-gallery-grid figure {
  border-radius: 22px;
}

.training-page .session-mosaic figure img,
.training-page .action-collage figure img,
.training-page .premium-gallery-grid figure img {
  filter: saturate(0.92) contrast(1.02);
}

/* Training page redesigned feature sections */
.training-page .section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.session-room-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.1fr) minmax(220px, 0.62fr);
  grid-template-rows: auto 1fr;
  gap: 20px;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(252, 250, 246, 0.9)),
    radial-gradient(circle at 72% 18%, rgba(200, 155, 60, 0.11), transparent 30%);
  box-shadow: var(--shadow);
}

.session-room-copy {
  align-self: center;
  padding: clamp(14px, 2.5vw, 28px);
}

.session-room-copy h2 {
  margin-bottom: 16px;
}

.session-room-copy p {
  margin-bottom: 0;
}

.session-room-main,
.session-room-side {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(200, 155, 60, 0.18);
  border-radius: 24px;
  background: var(--cream);
  box-shadow: 0 18px 48px rgba(7, 24, 45, 0.1);
}

.session-room-main {
  grid-row: span 2;
  min-height: 620px;
}

.session-room-side {
  min-height: 290px;
}

.session-room-main img,
.session-room-side img {
  height: 100%;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.session-room-main img {
  object-position: center top;
}

.session-room-side--top img {
  object-position: center 18%;
}

.session-room-side--bottom img {
  object-position: center top;
}

.session-room-main figcaption,
.session-room-side figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(7, 24, 45, 0.76));
  font-size: 14px;
  font-weight: 900;
}

.session-room-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: end;
}

.session-room-notes span {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: 18px;
  background: rgba(252, 250, 246, 0.82);
  color: var(--navy);
  font-weight: 900;
  line-height: 1.25;
}

.learning-editorial {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.learning-editorial__hero {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(200, 155, 60, 0.18);
  background: var(--cream);
  box-shadow: 0 18px 52px rgba(7, 24, 45, 0.1);
}

.learning-editorial__hero {
  align-self: start;
  min-height: 520px;
  max-height: 620px;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
}

.learning-editorial__hero img {
  width: 100%;
  height: 100%;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.learning-editorial__hero img {
  object-position: center top;
}

.learning-editorial__copy {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--soft-shadow);
}

.learning-editorial__copy h2 {
  margin-bottom: 16px;
}

.learning-editorial__copy blockquote {
  margin: 26px 0;
  padding-left: 22px;
  border-left: 4px solid var(--gold);
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.24;
}

.learning-editorial__list {
  display: grid;
  gap: 12px;
}

.learning-editorial__list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 900;
}

.learning-editorial__list svg {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 50%;
  background: rgba(200, 155, 60, 0.13);
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.training-takeaways {
  background:
    linear-gradient(180deg, rgba(252, 250, 246, 0.74), rgba(245, 241, 234, 0.88)),
    radial-gradient(circle at 50% 42%, rgba(200, 155, 60, 0.12), transparent 34%);
}

.training-takeaways .section-title.centered p {
  margin: 14px auto 0;
}

.takeaway-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.takeaway-path::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 86px;
  height: 2px;
  background: linear-gradient(90deg, rgba(200, 155, 60, 0.05), rgba(200, 155, 60, 0.6), rgba(200, 155, 60, 0.05));
}

.takeaway-item {
  position: relative;
  z-index: 1;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 24px;
  border-right: 1px solid rgba(200, 155, 60, 0.16);
}

.takeaway-item:last-child {
  border-right: 0;
}

.takeaway-item span {
  position: absolute;
  top: 52px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(200, 155, 60, 0.24);
}

.takeaway-item svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.takeaway-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.08;
}

.takeaway-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.takeaway-item--image {
  padding: 0;
  min-height: 360px;
}

.takeaway-item--image img {
  height: 100%;
  object-position: center top;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .session-room-layout:hover .session-room-main img,
  .session-room-side:hover img,
  .learning-editorial:hover .learning-editorial__hero img,
  .takeaway-item--image:hover img {
    transform: scale(1.035);
  }
}

@media (max-width: 980px) {
  .session-room-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .session-room-copy,
  .session-room-main {
    grid-column: span 2;
  }

  .session-room-main {
    min-height: 520px;
  }

  .learning-editorial {
    grid-template-columns: 1fr;
  }

  .learning-editorial__hero {
    min-height: 500px;
    max-height: none;
    aspect-ratio: 5 / 4;
  }

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

  .takeaway-path::before {
    display: none;
  }

  .takeaway-item {
    border-right: 1px solid rgba(200, 155, 60, 0.16);
    border-bottom: 1px solid rgba(200, 155, 60, 0.16);
  }
}

@media (max-width: 680px) {
  .session-room-layout,
  .takeaway-path {
    border-radius: 22px;
  }

  .session-room-layout {
    grid-template-columns: 1fr;
  }

  .session-room-copy,
  .session-room-main {
    grid-column: auto;
  }

  .session-room-main {
    min-height: 430px;
  }

  .session-room-side {
    min-height: 260px;
  }

  .session-room-notes {
    grid-template-columns: 1fr;
  }

  .session-room-notes span {
    min-height: 64px;
  }

  .learning-editorial__hero {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .learning-editorial__hero img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center top;
  }

  .learning-editorial__copy {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .takeaway-path {
    grid-template-columns: 1fr;
  }

  .takeaway-item {
    min-height: 230px;
    padding: 118px 24px 28px;
    border-right: 0;
  }

  .takeaway-item--image {
    min-height: 360px;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .container,
  .narrow {
    width: auto;
    max-width: none;
    margin-left: clamp(18px, 5.6vw, 42px);
    margin-right: clamp(18px, 5.6vw, 42px);
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  .container.about-closing-panel {
    padding: 28px clamp(24px, 7vw, 34px);
  }

  .section-pad,
  .training-page .section-pad,
  .training-experience .section-pad {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .hero,
  .page-hero,
  .help-hero,
  .about-hero,
  .training-hero {
    padding-left: 0;
    padding-right: 0;
  }

  h1,
  h2,
  .section-title,
  .section-title h2,
  .hero-copy,
  .page-hero .container,
  .help-hero-copy,
  .about-hero-copy,
  .training-hero__copy,
  .training-stage__copy,
  .training-life-content,
  .session-room-copy,
  .learning-editorial__copy,
  .contact-card {
    text-align: center;
  }

  h1,
  h2 {
    margin-left: auto;
    margin-right: auto;
  }

  main p,
  main li,
  .lead,
  .rich-copy p,
  .contact-card p,
  .privacy-content p,
  .privacy-summary p,
  .training-page .lead,
  .training-page p,
  .training-experience p {
    font-size: 17px;
    line-height: 1.6;
  }

  .button-row,
  .about-closing-panel .button-row {
    justify-content: center;
  }

  .about-closing-panel p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .about-closing-panel .button-row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }

  .about-closing-panel .button-row .btn {
    width: min(260px, 100%);
    max-width: 100%;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-summary,
  .privacy-content {
    position: static;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .privacy-summary.reveal,
  .privacy-summary.reveal-left,
  .privacy-content.reveal,
  .privacy-content.reveal-right {
    opacity: 1;
    transform: none;
  }

  .cards,
  .service-grid,
  .blog-grid,
  .values-grid,
  .process-line,
  .help-impact-grid,
  .about-journey-grid,
  .about-values-grid,
  .about-community-grid,
  .training-hero__grid,
  .training-transform__grid,
  .learning-grid,
  .video-trust-grid,
  .session-room-layout,
  .learning-editorial {
    gap: 28px;
  }

  .session-room-notes {
    counter-reset: session-note;
  }

  .session-room-notes span {
    counter-increment: session-note;
    gap: 12px;
    min-width: 0;
  }

  .session-room-notes span::before {
    content: counter(session-note);
    flex: 0 0 1.35em;
    text-align: center;
  }

  img,
  picture,
  video,
  iframe,
  .image-frame,
  .about-portrait-frame,
  .training-hero__visual,
  .training-transform__media,
  .learning-media,
  .video-frame,
  .card,
  .contact-card {
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .section-pad,
  .training-page .section-pad,
  .training-experience .section-pad {
    padding-top: 46px;
    padding-bottom: 46px;
  }
}
