:root {
  --ink: #110d10;
  --charcoal: #191417;
  --soft-ink: #2d2429;
  --paper: #fff7f8;
  --white: #ffffff;
  --muted: #765f68;
  --line: rgba(17, 13, 16, 0.12);
  --pink: #f1087a;
  --pink-dark: #a9004f;
  --rose-soft: #ffd7e7;
  --gold: #e7bd71;
  --green: #0f766e;
  --shadow: 0 28px 80px rgba(17, 13, 16, 0.22);
  --radius: 8px;
  --max: 1180px;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::selection {
  color: var(--white);
  background: var(--pink);
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  box-shadow: 0 0 22px rgba(241, 8, 122, 0.58);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  min-height: 70px;
  margin: 0;
  padding: 12px max(16px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: rgba(17, 13, 16, 0.96);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  backdrop-filter: blur(22px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  animation: headerDrop 620ms ease both;
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(17, 13, 16, 0.98);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  font-weight: 900;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: var(--pink);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(241, 8, 122, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta svg,
.btn svg,
.mentor-badge svg,
.method-grid svg,
.check-list svg,
.audience-grid svg,
.sticky-cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: calc(84svh - 70px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  --shine-x: 68%;
  --shine-y: 28%;
  background:
    radial-gradient(circle at 24% 28%, rgba(241, 8, 122, 0.34), transparent 34%),
    linear-gradient(90deg, #2b0619 0%, #1b0d14 45%, #0c080c 100%);
}

.hero-bg,
.hero-overlay,
.hero-shine {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  z-index: -3;
  inset: auto auto 0 0;
  width: min(58vw, 820px);
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(1.04) contrast(1.04) drop-shadow(0 28px 80px rgba(0, 0, 0, 0.42));
  opacity: 0.96;
  animation: heroImageIn 1100ms ease both;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 13, 16, 0.12) 0%, rgba(88, 12, 48, 0.34) 34%, rgba(17, 13, 16, 0.86) 72%, rgba(17, 13, 16, 0.98) 100%),
    linear-gradient(0deg, rgba(17, 13, 16, 0.86) 0%, rgba(17, 13, 16, 0.1) 52%);
}

.hero-shine {
  z-index: -1;
  background:
    radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(241, 8, 122, 0.34), transparent 28%),
    radial-gradient(circle at 86% 76%, rgba(231, 189, 113, 0.16), transparent 28%);
  mix-blend-mode: screen;
  transition: background 260ms ease;
}

.hero-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 64px 0 70px;
  display: grid;
  justify-items: start;
}

.hero-inner > * {
  max-width: 720px;
  margin-left: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(241, 8, 122, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 6.5vw, 5.45rem);
  max-width: 690px;
}

.hero-title {
  overflow: hidden;
}

.hero-title span {
  display: block;
  transform: translateY(110%);
  animation: titleRise 850ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title span:nth-child(2) {
  animation-delay: 110ms;
}

.hero-title span:nth-child(3) {
  animation-delay: 220ms;
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4rem);
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.18;
}

.hero-copy {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 610px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 720ms ease 560ms forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 720ms ease 720ms forwards;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.header-cta:hover,
.sticky-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  box-shadow: 0 18px 44px rgba(241, 8, 122, 0.35);
}

.btn-primary::before,
.header-cta::before,
.sticky-cta::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -50%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  animation: buttonSheen 3.8s ease-in-out infinite;
}

.btn > *,
.header-cta > *,
.sticky-cta > * {
  position: relative;
  z-index: 1;
}

.btn-ripple {
  position: absolute;
  z-index: 0;
  width: 14px;
  height: 14px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 620ms ease-out forwards;
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.full {
  width: 100%;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-strip div {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.signal-strip div::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 420ms ease;
}

.signal-strip div:hover::after {
  transform: scaleX(1);
}

.signal-strip strong {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1;
}

.signal-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 780px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading p,
.mentor-copy > p,
.proof-copy > p,
.experience-content p,
.lead-panel > p,
.transformation-card > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.mentor-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: center;
}

.mentor-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.mentor-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
  transition: transform 700ms ease;
}

.mentor-media:hover,
.proof-media:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(17, 13, 16, 0.28);
}

.mentor-media:hover img {
  transform: scale(1.035);
}

.mentor-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(17, 13, 16, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  font-weight: 900;
}

.mentor-badge svg {
  color: var(--gold);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.method-grid article,
.curriculum-grid article,
.audience-grid article,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(17, 13, 16, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.method-grid article:hover,
.curriculum-grid article:hover,
.audience-grid article:hover,
.faq-list details:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 8, 122, 0.24);
  box-shadow: 0 24px 58px rgba(17, 13, 16, 0.12);
}

.method-grid article {
  padding: 22px;
}

.method-grid svg,
.audience-grid svg {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--pink);
}

.method-grid p,
.curriculum-grid p,
.audience-grid p,
.faq-list p {
  color: var(--muted);
}

.story-section {
  width: 100%;
  padding: 88px max(16px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 13, 16, 0.96), rgba(169, 0, 79, 0.9)),
    var(--ink);
}

.story-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 42px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.story-copy {
  max-width: 760px;
}

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

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

.story-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.story-highlight {
  margin: 26px 0 16px;
  color: var(--white) !important;
  font-size: clamp(1.35rem, 3vw, 2rem) !important;
  font-weight: 900;
  line-height: 1.16;
}

.story-signature {
  min-height: 420px;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.story-signature img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 28%;
}

.curriculum-section {
  width: 100%;
  max-width: none;
  padding: 96px max(16px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(255, 215, 231, 0.62), rgba(255, 247, 248, 0.94)),
    var(--paper);
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(100%, var(--max));
  margin: 42px auto 0;
}

.curriculum-grid article {
  position: relative;
  min-height: 230px;
  padding: 26px;
  overflow: hidden;
}

.curriculum-grid article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  background: rgba(241, 8, 122, 0.08);
  border-radius: 50%;
  transition: transform 320ms ease, background 320ms ease;
}

.curriculum-grid article:hover::after {
  background: rgba(241, 8, 122, 0.13);
  transform: scale(1.22);
}

.curriculum-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.experience-section {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.experience-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.experience-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: slowDrift 18s ease-in-out infinite alternate;
}

.experience-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 13, 16, 0.86), rgba(17, 13, 16, 0.28)),
    linear-gradient(0deg, rgba(17, 13, 16, 0.92), rgba(17, 13, 16, 0.04) 62%);
}

.experience-content {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 0 0 76px;
}

.experience-content h2,
.experience-content p {
  max-width: 720px;
}

.experience-content .eyebrow,
.lead-panel .eyebrow {
  color: var(--gold);
}

.experience-content p {
  color: rgba(255, 255, 255, 0.78);
}

.proof-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 44px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.check-list svg {
  margin-top: 3px;
  color: var(--green);
}

.proof-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.proof-media video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-section {
  width: 100%;
  padding: 96px max(16px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}

.gallery-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  width: min(100%, var(--max));
  margin: 0 auto 34px;
}

.gallery-copy h2 {
  max-width: 760px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 0.85fr;
  grid-auto-rows: 290px;
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft-ink);
  transform: translateZ(0);
}

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

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--white);
  background: rgba(17, 13, 16, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  backdrop-filter: blur(14px);
  transform: translateY(0);
  transition: transform 220ms ease, background 220ms ease;
}

.gallery-grid figure:hover figcaption {
  transform: translateY(-4px);
  background: rgba(241, 8, 122, 0.78);
}

.transformation-section {
  padding-bottom: 0;
}

.transformation-card {
  padding: 54px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(241, 8, 122, 0.84), rgba(17, 13, 16, 0.94)),
    var(--pink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.transformation-card .eyebrow,
.transformation-card > p {
  color: rgba(255, 255, 255, 0.82);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.audience-grid article {
  padding: 24px;
  color: var(--ink);
}

.lead-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  width: min(100% - 32px, var(--max));
  margin: 96px auto 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.lead-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(241, 8, 122, 0.22), transparent 36%);
  opacity: 0.78;
}

.lead-image {
  min-height: 720px;
}

.lead-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.lead-panel {
  position: relative;
  padding: 58px;
  color: var(--white);
}

.lead-panel > p {
  color: rgba(255, 255, 255, 0.76);
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(241, 8, 122, 0.2);
}

.lead-form .privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.lead-form .privacy-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--pink);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.faq-section {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  padding-right: 34px;
  cursor: pointer;
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--pink);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 0 0 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 30px max(16px, calc((100% - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer div {
  display: grid;
  gap: 3px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer small {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 800;
}

.sticky-cta {
  position: fixed;
  z-index: 50;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  max-width: calc(100% - 36px);
  padding: 0 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(241, 8, 122, 0.38);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 180ms ease;
}

.privacy-section {
  width: min(100% - 32px, var(--max));
  margin: 86px auto;
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(17, 13, 16, 0.08);
}

.privacy-inner {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: start;
}

.privacy-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.privacy-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--soft-ink);
  font-weight: 750;
}

.privacy-list li span {
  min-width: 0;
}

.privacy-list svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--pink);
}

.privacy-copy a {
  color: var(--pink-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 680ms ease var(--reveal-delay, 0ms),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .gallery-grid figure.reveal {
  transform: translateY(34px) scale(0.98);
}

.js-ready .gallery-grid figure.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.js-ready .mentor-media.reveal.is-visible:hover,
.js-ready .proof-media.reveal.is-visible:hover,
.js-ready .method-grid article.reveal.is-visible:hover,
.js-ready .curriculum-grid article.reveal.is-visible:hover,
.js-ready .audience-grid article.reveal.is-visible:hover,
.js-ready .faq-list details.reveal.is-visible:hover {
  transform: translateY(-6px);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    filter: saturate(0.86) contrast(0.96) blur(8px);
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    filter: saturate(1.04) contrast(1.04) blur(0);
    transform: scale(1);
  }
}

@keyframes titleRise {
  to {
    transform: translateY(0);
  }
}

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

@keyframes buttonSheen {
  0%,
  42% {
    left: -55%;
  }
  62%,
  100% {
    left: 118%;
  }
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes slowDrift {
  from {
    transform: scale(1.02) translate3d(-0.6%, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(0.6%, 0, 0);
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .mentor-section,
  .proof-section,
  .story-inner,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .method-grid,
  .curriculum-grid,
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .lead-image {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  [id] {
    scroll-margin-top: 72px;
  }

  .site-header {
    width: 100%;
    min-height: 62px;
    margin-top: 0;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: calc(82svh - 62px);
  }

  .hero-bg {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 28% top;
    opacity: 0.78;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(17, 13, 16, 0.96) 0%, rgba(17, 13, 16, 0.58) 58%, rgba(17, 13, 16, 0.12) 100%),
      linear-gradient(90deg, rgba(17, 13, 16, 0.82) 0%, rgba(17, 13, 16, 0.45) 48%, rgba(17, 13, 16, 0.16) 100%);
  }

  .hero-inner {
    width: min(100% - 28px, var(--max));
    max-width: calc(100vw - 28px);
    min-width: 0;
    padding: 54px 0 42px;
  }

  .hero-inner > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 2.28rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .signal-strip,
  .method-grid,
  .curriculum-grid,
  .audience-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section,
  .curriculum-section,
  .story-section,
  .gallery-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .mentor-section {
    gap: 30px;
  }

  .mentor-media,
  .mentor-media img {
    min-height: 430px;
  }

  .curriculum-grid article {
    min-height: auto;
  }

  .experience-section {
    min-height: 520px;
  }

  .experience-content {
    width: min(100% - 28px, var(--max));
    padding-bottom: 48px;
  }

  .proof-media video {
    aspect-ratio: 4 / 5;
  }

  .gallery-grid {
    grid-auto-rows: 360px;
  }

  .gallery-grid figure.large {
    grid-row: span 1;
  }

  .gallery-copy {
    display: block;
  }

  .transformation-section {
    padding-bottom: 0;
  }

  .transformation-card {
    padding: 28px;
  }

  .story-signature {
    min-height: 380px;
  }

  .story-signature img {
    min-height: 380px;
  }

  .lead-section {
    width: min(100% - 28px, var(--max));
    margin-top: 70px;
  }

  .lead-panel {
    padding: 28px;
  }

  .privacy-section {
    width: min(100% - 28px, var(--max));
    margin: 70px auto;
    padding: 28px;
  }

  .lead-image {
    min-height: 430px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 94px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
    left: auto;
    max-width: calc(100% - 28px);
    min-height: 50px;
    padding: 0 16px;
    font-size: 0.84rem;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    max-width: min(100%, 22rem);
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.55rem;
  }

  .hero-copy {
    max-width: min(100%, 22rem);
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .scroll-progress {
    display: none;
  }

  .hero-title span,
  .hero-copy,
  .hero-actions,
  .js-ready .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
