:root {
  --paper: #f5eee3;
  --paper-light: #fbf8f2;
  --paper-deep: #eadfce;
  --ink: #211a17;
  --ink-soft: #625952;
  --red: #a62f29;
  --red-deep: #7f211d;
  --gold: #b48732;
  --gold-deep: #7a5a20;
  --sage: #61756b;
  --line: rgba(33, 26, 23, 0.18);
  --line-strong: rgba(33, 26, 23, 0.36);
  --white: #fffdf9;
  --shadow: 0 24px 70px rgba(45, 33, 25, 0.12);
  --content: 1180px;
  --font-body: "Be Vietnam Pro", Arial, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section--light {
  background: var(--paper-light);
}

.section--ink {
  color: var(--paper-light);
  background: var(--ink);
}

.section--compact {
  padding: 74px 0;
}

.section-kicker {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section--ink .section-kicker {
  color: #e5bb70;
}

.display-title,
.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.display-title {
  max-width: 730px;
  font-size: clamp(3rem, 4.6vw, 4.2rem);
}

.section-title {
  max-width: 820px;
  font-size: clamp(2.35rem, 4.2vw, 4.25rem);
}

.display-title em,
.section-title em {
  color: var(--red);
  font-weight: 450;
}

.display-title .gold,
.section-title .gold {
  color: var(--gold-deep);
}

.section--ink .section-title em,
.section--ink .section-title .gold {
  color: #e5bb70;
}

.section-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section--ink .section-lead {
  color: rgba(251, 248, 242, 0.72);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--red);
  border-radius: 2px;
  color: var(--white);
  background: var(--red);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--red-deep);
  background: var(--red-deep);
  transform: translateY(-1px);
}

.button--dark {
  border-color: var(--ink);
  background: var(--ink);
}

.button--dark:hover {
  border-color: var(--red);
  background: var(--red);
}

.button--outline {
  color: var(--ink);
  border-color: var(--line-strong);
  background: transparent;
}

.button--outline:hover {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link--light {
  color: var(--paper-light);
}

.button--footer {
  color: var(--paper-light);
  border-color: rgba(251, 248, 242, 0.45);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 238, 227, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  min-height: 80px;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  color: var(--ink);
  line-height: 1.1;
  text-decoration: none;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.brand span {
  margin-top: 5px;
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.header-note {
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.45;
  text-align: right;
}

.header-note strong {
  display: block;
  color: var(--ink);
  font-size: 0.77rem;
}

.menu-toggle {
  display: none;
  min-width: 56px;
  min-height: 44px;
  padding: 8px 11px;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - 80px);
  padding: 42px 0 34px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  min-height: calc(100vh - 156px);
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.hero-copy {
  padding-top: 14px;
}

.hero-intro {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 32px;
}

.hero-assurance {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.hero-visual {
  margin: 0;
}

.hero-photo-frame {
  padding: 10px;
  border: 1px solid var(--line-strong);
  background: var(--paper-light);
  box-shadow: var(--shadow);
}

.hero-photo-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  background: #f2ede6;
}

.hero-visual figcaption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.hero-visual figcaption strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.hero-facts {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, 1fr);
  margin: 46px 0 0;
  border-top: 1px solid var(--line-strong);
}

.hero-fact {
  min-height: 94px;
  padding: 19px 22px 0 0;
}

.hero-fact + .hero-fact {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.hero-fact strong {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 650;
  line-height: 1.1;
}

.hero-fact span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.45;
}

.credibility {
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.credibility-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  border-left: 1px solid var(--line);
}

.credibility-item {
  min-height: 142px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}

.credibility-item--intro {
  background: var(--ink);
  color: var(--paper-light);
}

.credibility-item small {
  display: block;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.credibility-item--intro small {
  color: #e5bb70;
}

.credibility-item strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.25;
}

.credibility-item p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.credibility-item--intro p {
  color: rgba(251, 248, 242, 0.7);
}

.story-grid,
.teacher-grid,
.schedule-grid,
.price-grid,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.story-photo,
.teacher-photo,
.gallery-figure {
  margin: 0;
}

.story-photo img,
.teacher-photo img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line-strong);
  background: var(--paper-deep);
}

.teacher-feature {
  border-bottom: 1px solid var(--line);
}

.teacher-feature--hero {
  padding: clamp(42px, 4vw, 60px) 0 64px;
}

.teacher-grid--featured {
  grid-template-areas:
    "photo copy"
    "gift gift"
    "bio bio"
    "credentials credentials";
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 32px clamp(28px, 3.4vw, 48px);
}

.teacher-feature .section-title {
  font-size: clamp(2.5rem, 3.7vw, 3.4rem);
  line-height: 1.12;
  text-wrap: balance;
}

.teacher-photo--primary {
  grid-area: photo;
  min-width: 0;
}

.teacher-photo--primary figcaption {
  margin-top: 14px;
  font-size: 0.84rem;
  font-weight: 650;
}

.teacher-copy {
  grid-area: copy;
  align-self: center;
}

.teacher-copy .section-lead {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.teacher-benefits {
  display: grid;
  gap: 7px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.55;
}

.teacher-benefits li {
  position: relative;
  padding-left: 20px;
}

.teacher-benefits li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--red);
  font-weight: 750;
}

.teacher-start {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.teacher-start strong {
  color: var(--red-deep);
}

.teacher-photo-frame {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--paper-deep);
}

.teacher-photo-frame img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.teacher-photo-frame[href*="giao-luu"] img {
  object-position: 43% 44%;
}

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

.teacher-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 22px;
}

.teacher-actions .text-link {
  font-size: 0.8rem;
}

.cta-reassurance {
  max-width: 590px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.55;
}

.hero-gift {
  grid-area: gift;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  padding: 18px 24px;
  border: 1px solid rgba(180, 135, 50, 0.3);
  border-left: 3px solid var(--gold);
  background: rgba(180, 135, 50, 0.07);
}

.hero-gift > div > span {
  display: block;
  margin-bottom: 3px;
  color: var(--red);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-gift > div > strong {
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.4;
}

.hero-gift > a {
  flex-shrink: 0;
  color: var(--red);
  font-size: 0.8rem;
  text-align: right;
  text-underline-offset: 3px;
}

.hero-gift > a > span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.5;
}

.teacher-bio {
  grid-area: bio;
  display: grid;
  grid-template-columns: minmax(205px, 0.32fr) minmax(0, 1.68fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding: 4px 0;
}

.teacher-bio p {
  margin: 0;
}

.teacher-bio-label {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.teacher-bio > p:last-child {
  max-width: 1040px;
  color: var(--ink);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.7;
}

.teacher-bio strong {
  font-weight: 750;
}

.class-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.class-photo {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(251, 248, 242, 0.22);
  background: #141414;
}

.class-photo--main {
  grid-column: 1 / -1;
  aspect-ratio: 2048 / 1197;
}

.class-photo img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  object-position: center;
  background: #141414;
}

.story-photo figcaption,
.teacher-photo figcaption,
.gallery-figure figcaption {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.story-points {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line-strong);
}

.story-point {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.story-point b,
.program-index,
.outcome-index,
.routine-index {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 650;
}

.story-point h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.story-point p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.course-fit {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  margin-top: 2px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line-strong);
  background: var(--paper);
}

.course-fit__intro .section-kicker {
  margin-bottom: 12px;
}

.course-fit__intro h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.course-fit__intro > p:last-child {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.course-fit__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.course-fit__list li {
  position: relative;
  padding: 18px 0 18px 22px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.course-fit__list li::before {
  position: absolute;
  top: 18px;
  left: 0;
  color: var(--red);
  content: "✓";
  font-weight: 800;
}

.programs-head {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 80px;
  align-items: end;
}

.sequence-note {
  margin: 0;
  padding: 18px 0 0 24px;
  color: var(--ink-soft);
  border-left: 3px solid var(--gold);
}

.program-list {
  margin-top: 56px;
  border-top: 1px solid var(--line-strong);
}

.program-row {
  display: grid;
  grid-template-columns: 80px minmax(190px, 0.8fr) minmax(0, 1.4fr) minmax(150px, 0.65fr);
  align-items: start;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.program-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.program-row p {
  margin: 0;
  color: var(--ink-soft);
}

.program-timing {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.results-head .section-lead {
  max-width: 430px;
  margin-bottom: 5px;
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.record-card {
  display: grid;
  grid-template-rows: auto 1fr;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.record-card video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--ink);
}

.record-photo {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
}

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

.record-copy {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.record-label {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.record-copy h3 {
  margin: 9px 0 10px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
}

.record-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.certificate-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  color: var(--red-deep);
  font-weight: 700;
  text-underline-offset: 4px;
}

.record-summary {
  max-width: 900px;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(251, 248, 242, 0.22);
}

.record-context {
  display: block;
  margin-top: 14px;
  color: rgba(251, 248, 242, 0.62);
  font-size: 0.88rem;
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: 48px;
  margin-top: 76px;
  padding-top: 42px;
  border-top: 1px solid rgba(251, 248, 242, 0.28);
}

.gallery-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -26px;
}

.gallery-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.7vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.gallery-heading > p:last-child {
  margin: 0 0 5px;
  color: rgba(251, 248, 242, 0.7);
}

.gallery-landscape,
.gallery-portraits {
  display: grid;
  align-items: start;
  gap: 18px;
  margin-top: 24px;
}

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

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

.gallery-figure {
  align-self: start;
  padding: 10px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.gallery-image-frame {
  display: block;
  overflow: hidden;
  background: #141414;
}

.gallery-image-frame--landscape {
  aspect-ratio: 4 / 3;
}

.gallery-image-frame--portrait {
  aspect-ratio: 3 / 4;
}

.gallery-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #141414;
}

.gallery-figure figcaption {
  min-height: 42px;
}

.teacher-copy .section-lead {
  margin-bottom: 0;
}

.teacher-credentials {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.teacher-credentials--horizontal {
  grid-area: credentials;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line-strong);
}

.teacher-credentials li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.teacher-credentials--horizontal li {
  min-height: 110px;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.teacher-credentials--horizontal li:first-child {
  padding-left: 0;
}

.teacher-credentials--horizontal li:last-child {
  padding-right: 0;
  border-right: 0;
}

.teacher-credentials strong {
  display: block;
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.teacher-credentials span {
  display: block;
  margin-top: 4px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 56px;
  margin-top: 52px;
  border-top: 1px solid var(--line-strong);
}

.outcome-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.outcome-item h3 {
  margin: 0 0 7px;
  font-size: 1rem;
}

.outcome-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.roadmap-intro {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 72px;
}

.roadmap-phases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid rgba(251, 248, 242, 0.3);
  border-left: 1px solid rgba(251, 248, 242, 0.2);
}

.phase {
  min-height: 275px;
  padding: 30px;
  border-right: 1px solid rgba(251, 248, 242, 0.2);
  border-bottom: 1px solid rgba(251, 248, 242, 0.2);
}

.phase small {
  color: #e5bb70;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phase h3 {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.15;
}

.phase p {
  margin: 0;
  color: rgba(251, 248, 242, 0.7);
  font-size: 0.87rem;
}

.levels-details {
  margin-top: 28px;
  border: 1px solid rgba(251, 248, 242, 0.25);
}

.levels-details summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
  color: var(--paper-light);
  font-weight: 700;
  cursor: pointer;
}

.levels-details summary::marker {
  color: #e5bb70;
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(251, 248, 242, 0.18);
}

.level {
  min-height: 168px;
  padding: 22px;
  background: var(--ink);
}

.level b {
  color: #e5bb70;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.level h4 {
  margin: 8px 0 6px;
  font-size: 0.92rem;
}

.level p {
  margin: 0;
  color: rgba(251, 248, 242, 0.68);
  font-size: 0.76rem;
}

.routine-list {
  margin-top: 36px;
  border-top: 1px solid var(--line-strong);
}

.routine-row {
  display: grid;
  grid-template-columns: 70px minmax(160px, 0.65fr) minmax(0, 1.25fr) minmax(130px, 0.45fr);
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.routine-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.routine-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.routine-time {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: right;
}

.schedule-grid {
  margin-top: 52px;
}

.schedule-card {
  padding: clamp(28px, 4vw, 52px);
  color: var(--paper-light);
  background: var(--red);
}

.schedule-card small,
.price-card small {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.schedule-card h3 {
  margin: 16px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
}

.schedule-card p {
  margin: 18px 0 0;
  color: rgba(251, 248, 242, 0.8);
}

.schedule-notes {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.schedule-note {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.schedule-note strong {
  display: block;
  margin-bottom: 4px;
}

.schedule-note span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.price-grid {
  margin-top: 52px;
  align-items: stretch;
  gap: 18px;
}

.price-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line-strong);
  background: var(--paper-light);
}

.price-card h3 {
  margin: 16px 0 2px;
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 5vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-card h3 span {
  font-size: 0.4em;
}

.price-card > p {
  margin: 8px 0 24px;
  color: var(--ink-soft);
}

.price-list {
  flex: 1;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-list li {
  padding: 7px 0;
  color: var(--ink-soft);
}

.price-list li.price-list__gift {
  margin-top: 10px;
  padding-top: 14px;
  color: var(--red-deep);
  border-top: 1px solid rgba(180, 135, 50, 0.3);
  font-weight: 700;
}

.price-card > .button {
  width: 100%;
  margin-top: 30px;
}

.price-note {
  margin: 26px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
  border-left: 3px solid var(--gold);
}

.price-note--important {
  padding: 18px 20px;
  border-top: 1px solid rgba(180, 135, 50, 0.28);
  border-right: 1px solid rgba(180, 135, 50, 0.28);
  border-bottom: 1px solid rgba(180, 135, 50, 0.28);
  background: rgba(180, 135, 50, 0.08);
}

.proof-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin: 28px 0 44px;
  padding: 24px 0;
  border-top: 1px solid rgba(251, 248, 242, 0.2);
  border-bottom: 1px solid rgba(251, 248, 242, 0.2);
}

.proof-action p {
  flex: 1 1 320px;
  margin: 0;
  color: var(--paper-light);
  font-size: 0.95rem;
}

.proof-action .text-link {
  font-size: 0.8rem;
}

.registration-gift {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  margin-top: 24px;
  padding: clamp(30px, 4vw, 46px);
  overflow: hidden;
  color: var(--paper-light);
  border-top: 4px solid var(--gold);
  background:
    radial-gradient(circle at 5% 0%, rgba(180, 135, 50, 0.16), transparent 38%),
    var(--ink);
}

.registration-gift__intro {
  position: relative;
  z-index: 1;
}

.registration-gift__intro .section-kicker {
  margin: 0 0 12px;
  color: #e5bb70;
}

.registration-gift__intro h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.16;
  text-wrap: balance;
}

#registration-gift-title {
  scroll-margin-top: 96px;
}

.registration-gift__value data,
.registration-gift__item data {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.registration-gift__value {
  margin: 20px 0 0;
  color: rgba(251, 248, 242, 0.8);
  font-size: 0.8rem;
}

.registration-gift__value data {
  display: block;
  margin-top: 3px;
  color: #e5bb70;
  font-size: clamp(2rem, 3.1vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
}

.registration-gift__intro > p:last-child {
  max-width: 580px;
  margin: 20px 0 0;
  color: rgba(251, 248, 242, 0.7);
  font-size: 0.84rem;
  line-height: 1.7;
}

.registration-gift__bundle {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  border-top: 1px solid rgba(251, 248, 242, 0.22);
}

.registration-gift__item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(251, 248, 242, 0.18);
}

.registration-gift__item b {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--ink);
  border-radius: 50%;
  background: #e5bb70;
  font-family: var(--font-display);
  font-size: 0.82rem;
  line-height: 1;
  place-items: center;
}

.registration-gift__item strong,
.registration-gift__item small {
  display: block;
}

.registration-gift__item strong {
  font-size: 1.03rem;
  line-height: 1.4;
}

.registration-gift__item small {
  margin-top: 4px;
  color: rgba(251, 248, 242, 0.66);
  font-size: 0.86rem;
}

.registration-gift__item small data {
  color: #e5bb70;
  font-weight: 750;
}

.registration-gift__condition {
  margin: 15px 0 0;
  color: rgba(251, 248, 242, 0.68);
  font-size: 0.7rem;
  line-height: 1.6;
}

.registration-gift__condition strong {
  color: var(--paper-light);
}

.enrollment-process {
  margin-top: 32px;
  color: var(--paper-light);
  border: 1px solid var(--line-strong);
  background: var(--ink);
}

.enrollment-process-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 28px;
  border-bottom: 1px solid rgba(251, 248, 242, 0.2);
}

.enrollment-process-head .section-kicker {
  flex: 0 0 auto;
  margin: 0;
  color: #e5bb70;
}

.enrollment-process-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 600;
  line-height: 1.15;
  text-align: right;
}

.enrollment-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.enrollment-steps li {
  display: grid;
  min-height: 172px;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 25px 24px;
  border-right: 1px solid rgba(251, 248, 242, 0.18);
}

.enrollment-steps li:last-child {
  border-right: 0;
}

.enrollment-steps b {
  color: #e5bb70;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.enrollment-steps span,
.enrollment-steps strong,
.enrollment-steps small {
  display: block;
}

.enrollment-steps strong {
  font-size: 0.92rem;
}

.enrollment-steps small {
  margin-top: 7px;
  color: rgba(251, 248, 242, 0.66);
  font-size: 0.74rem;
  line-height: 1.55;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.25fr);
  gap: clamp(46px, 8vw, 108px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  color: var(--ink);
  border: 0;
  background: transparent;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question span:last-child {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 0.74rem;
}

.faq-answer {
  padding: 0 56px 22px 0;
  color: var(--ink-soft);
}

.faq-answer p {
  margin: 0;
}

.faq-answer[hidden] {
  display: none;
}

.final-cta {
  border-top: 1px solid rgba(251, 248, 242, 0.2);
}

.final-grid {
  align-items: end;
}

.final-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(251, 248, 242, 0.72);
}

.final-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.final-action .button {
  min-width: 280px;
}

.final-action small {
  color: rgba(251, 248, 242, 0.62);
}

.site-footer {
  padding: 48px 0 96px;
  color: var(--paper-light);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(251, 248, 242, 0.2);
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-copy,
.footer-legal {
  margin: 8px 0 0;
  color: rgba(251, 248, 242, 0.62);
  font-size: 0.76rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.footer-links a {
  min-height: 44px;
  color: var(--paper-light);
  font-size: 0.78rem;
  font-weight: 600;
  text-underline-offset: 4px;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(20, 15, 12, 0.78);
  cursor: pointer;
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: min(90vh, 860px);
  overflow: auto;
  border: 1px solid var(--line-strong);
  background: var(--paper-light);
  box-shadow: var(--shadow);
}

.modal-panel--image {
  width: min(100%, 980px);
  padding: 12px;
  color: var(--paper-light);
  border-color: rgba(251, 248, 242, 0.34);
  background: var(--ink);
}

.modal-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 30px 20px;
  border-bottom: 1px solid var(--line);
}

.modal-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
}

.modal-header p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.modal-header .modal-eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.modal-close {
  min-width: 54px;
  min-height: 44px;
  padding: 8px 10px;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.modal-panel--image .modal-close {
  color: var(--paper-light);
  border-color: rgba(251, 248, 242, 0.44);
}

.consult-form {
  display: grid;
  gap: 20px;
  padding: 28px 30px 32px;
}

.plan-selector {
  margin: 0;
  padding: 0;
  border: 0;
}

.plan-selector legend {
  margin-bottom: 10px;
  padding: 0;
  font-size: 0.83rem;
  font-weight: 700;
}

.plan-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.plan-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.plan-option--wide {
  grid-column: 1 / -1;
}

.plan-option input {
  position: absolute;
  z-index: 1;
  top: 19px;
  left: 16px;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--red);
}

.plan-option-copy {
  display: block;
  min-height: 74px;
  padding: 15px 14px 14px 46px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.plan-option-copy strong,
.plan-option-copy span {
  display: block;
}

.plan-option-copy strong {
  font-size: 0.86rem;
}

.plan-option-copy span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.plan-option input:checked + .plan-option-copy,
.plan-option.is-selected .plan-option-copy {
  border-color: var(--red);
  background: rgba(166, 47, 41, 0.055);
  box-shadow: inset 0 0 0 1px var(--red);
}

.plan-option input:focus-visible + .plan-option-copy {
  outline: 3px solid rgba(166, 47, 41, 0.2);
  outline-offset: 3px;
}

.selected-offer {
  padding: 17px 18px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
}

.selected-offer > span {
  display: block;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-offer > strong {
  display: block;
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 650;
}

.selected-offer p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.form-gift-note {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(180, 135, 50, 0.34);
  background: rgba(180, 135, 50, 0.08);
}

.form-gift-note > span {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-gift-note > strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.4;
}

.form-gift-note > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.55;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.83rem;
  font-weight: 700;
}

.form-fields-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(150px, 0.55fr);
  gap: 14px;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--white);
  font: inherit;
}

.form-field select {
  cursor: pointer;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--red);
  outline: 3px solid rgba(166, 47, 41, 0.18);
}

.form-field input::placeholder {
  color: #8b827b;
  opacity: 1;
}

.form-field--honeypot {
  position: absolute;
  top: auto;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-help,
.form-privacy,
.form-status {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.form-status[hidden] {
  display: none;
}

.form-status {
  min-height: 22px;
  color: var(--red-deep);
  font-weight: 600;
}

.form-status[data-state="success"] {
  color: #2f654b;
}

.form-status[data-state="queued"] {
  color: var(--gold-deep);
}

.form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.55;
  cursor: pointer;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.form-consent a,
.form-contact-options a {
  color: var(--red-deep);
  font-weight: 700;
  text-underline-offset: 3px;
}

.form-trust-note {
  margin: 0;
  padding: 13px 15px;
  color: var(--ink-soft);
  border: 1px solid rgba(180, 135, 50, 0.32);
  background: rgba(180, 135, 50, 0.08);
  font-size: 0.76rem;
  line-height: 1.55;
}

.form-actions {
  display: grid;
  gap: 12px;
}

.form-actions .button {
  width: 100%;
}

.form-contact-options {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  text-align: center;
}

.enrollment-form-view[hidden],
.enrollment-success[hidden] {
  display: none;
}

.enrollment-success {
  position: relative;
  overflow: hidden;
  padding: 38px 36px 30px;
  text-align: center;
  animation: enrollment-success-enter 320ms ease-out both;
}

.enrollment-success::before,
.enrollment-success::after {
  position: absolute;
  z-index: -1;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(180, 135, 50, 0.19);
  border-radius: 50%;
  content: "";
}

.enrollment-success::before {
  top: -122px;
  left: -94px;
}

.enrollment-success::after {
  right: -128px;
  bottom: -132px;
}

.enrollment-success__close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.enrollment-success__mark {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 4px auto 16px;
  color: #2f654b;
  border: 1px solid rgba(47, 101, 75, 0.22);
  border-radius: 50%;
  background: rgba(47, 101, 75, 0.09);
  place-items: center;
}

.enrollment-success__mark svg {
  width: 52px;
  height: 52px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.enrollment-success__mark circle {
  opacity: 0.42;
}

.enrollment-success__mark path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: enrollment-check-draw 420ms 140ms ease-out forwards;
}

.enrollment-success .modal-eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.enrollment-success h2 {
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

#enrollment-success-copy {
  max-width: 550px;
  margin: 15px auto 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.enrollment-success__offer {
  max-width: 510px;
  margin: 18px auto 0;
  padding: 15px 17px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  text-align: left;
}

.enrollment-success__offer span,
.enrollment-success__offer strong {
  display: block;
}

.enrollment-success__offer span {
  color: var(--red);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enrollment-success__offer strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 650;
}

.enrollment-success__gift {
  max-width: 510px;
  margin: 10px auto 0;
  padding: 11px 14px;
  color: var(--ink-soft);
  border: 1px solid rgba(180, 135, 50, 0.32);
  background: rgba(180, 135, 50, 0.08);
  font-size: 0.7rem;
  line-height: 1.55;
  text-align: left;
}

.enrollment-success__gift strong {
  color: var(--red-deep);
}

.enrollment-success__steps {
  display: grid;
  max-width: 570px;
  margin: 16px auto 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  text-align: left;
}

.enrollment-success__steps li {
  display: grid;
  min-width: 0;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 8px;
  padding: 0 12px;
  border-right: 1px solid var(--line);
}

.enrollment-success__steps li:first-child {
  padding-left: 0;
}

.enrollment-success__steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.enrollment-success__steps li > span {
  display: grid;
  width: 25px;
  height: 25px;
  color: var(--paper-light);
  border-radius: 50%;
  background: var(--red);
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1;
  place-items: center;
}

.enrollment-success__steps strong,
.enrollment-success__steps small {
  display: block;
}

.enrollment-success__steps strong {
  font-size: 0.72rem;
  line-height: 1.35;
}

.enrollment-success__steps small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.63rem;
  line-height: 1.45;
}

.enrollment-success__delivery {
  max-width: 540px;
  margin: 16px auto 0;
  color: #2f654b;
  font-size: 0.76rem;
  font-weight: 700;
}

.enrollment-success__delivery::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 8px 1px 0;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.enrollment-success__delivery[data-state="sending"]::before {
  animation: enrollment-status-pulse 1.2s ease-in-out infinite;
}

.enrollment-success__delivery[data-state="queued"] {
  color: var(--gold-deep);
}

.enrollment-success__disclaimer {
  max-width: 540px;
  margin: 10px auto 0;
  padding: 9px 14px;
  color: var(--ink-soft);
  border: 1px solid rgba(180, 135, 50, 0.32);
  background: rgba(180, 135, 50, 0.08);
  font-size: 0.72rem;
  line-height: 1.5;
}

.enrollment-success__actions {
  display: grid;
  max-width: 510px;
  margin: 14px auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.enrollment-success__actions .button {
  width: 100%;
}

@keyframes enrollment-success-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes enrollment-check-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes enrollment-status-pulse {
  0%, 100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

.lightbox-body {
  position: relative;
}

.lightbox-body img {
  width: 100%;
  max-height: calc(88vh - 82px);
  object-fit: contain;
}

.lightbox-footer {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 8px 0;
}

.lightbox-footer p {
  margin: 0;
  color: rgba(251, 248, 242, 0.78);
  font-size: 0.78rem;
}

.mobile-sticky {
  display: none;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    padding: 14px 24px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper-light);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
  }

  .header-note {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 40px;
  }

  .display-title {
    font-size: clamp(3.1rem, 5.8vw, 4.45rem);
  }

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

  .program-row {
    grid-template-columns: 64px minmax(180px, 0.75fr) minmax(0, 1.25fr);
  }

  .program-timing {
    grid-column: 2 / -1;
  }

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

}

@media (min-width: 781px) and (max-width: 960px) {
  .teacher-grid--featured {
    grid-template-columns: 1fr;
    grid-template-areas: "photo" "copy" "gift" "bio" "credentials";
    gap: 30px;
  }

  .teacher-photo--primary {
    width: min(100%, 680px);
    justify-self: center;
  }

  .teacher-copy {
    max-width: 680px;
    justify-self: center;
  }

  .teacher-bio {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(calc(100% - 36px), var(--content));
  }

  .section,
  .section--compact {
    padding: 76px 0;
  }

  .site-header,
  .header-inner {
    min-height: 70px;
  }

  .site-nav {
    top: 70px;
  }

  .header-actions .button {
    display: none;
  }

  .brand strong {
    font-size: 1.12rem;
  }

  .brand span {
    font-size: 0.58rem;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 28px;
  }

  .hero-grid,
  .story-grid,
  .teacher-grid,
  .schedule-grid,
  .price-grid,
  .final-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .teacher-grid--featured {
    grid-template-areas:
      "photo"
      "copy"
      "gift"
      "bio"
      "credentials";
    gap: 30px;
  }

  .teacher-bio {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 24px;
  }

  .teacher-bio-label {
    white-space: normal;
  }

  .teacher-bio > p:last-child {
    font-size: 1rem;
    line-height: 1.65;
  }

  .teacher-feature .section-title {
    font-size: clamp(2.15rem, 8.6vw, 3.1rem);
  }

  .teacher-feature--hero {
    padding: 42px 0 64px;
  }

  .teacher-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: center;
  }

  .cta-reassurance {
    margin-top: 12px;
  }

  .hero-gift {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
  }

  .hero-gift > a {
    text-align: left;
  }

  .teacher-credentials--horizontal {
    grid-template-columns: 1fr;
  }

  .teacher-credentials--horizontal li,
  .teacher-credentials--horizontal li:first-child,
  .teacher-credentials--horizontal li:last-child {
    min-height: 0;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .teacher-credentials--horizontal li:last-child {
    border-bottom: 0;
  }

  .hero-grid {
    min-height: auto;
    gap: 34px;
  }

  .display-title {
    font-size: clamp(3rem, 14vw, 4.65rem);
  }

  .hero-visual {
    order: -1;
    width: min(82%, 330px);
    margin-inline: auto;
  }

  .hero-photo-frame img {
    height: auto;
    min-height: 0;
  }

  .hero-facts {
    margin-top: 36px;
  }

  .credibility-grid {
    grid-template-columns: 1fr;
  }

  .credibility-item {
    min-height: 0;
  }

  .programs-head,
  .roadmap-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .course-fit {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sequence-note {
    padding: 16px 0 0;
    border-top: 3px solid var(--gold);
    border-left: 0;
  }

  .program-row {
    grid-template-columns: 48px 1fr;
    gap: 12px 16px;
  }

  .program-row p,
  .program-timing {
    grid-column: 2;
  }

  .results-head {
    display: block;
  }

  .record-grid,
  .outcomes-grid,
  .roadmap-phases,
  .levels-grid {
    grid-template-columns: 1fr;
  }

  .enrollment-process-head {
    display: block;
  }

  .registration-gift {
    grid-template-columns: 1fr;
  }

  .enrollment-process-head h3 {
    margin-top: 12px;
    text-align: left;
  }

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

  .enrollment-steps li {
    min-height: 150px;
    border-bottom: 1px solid rgba(251, 248, 242, 0.18);
  }

  .enrollment-steps li:nth-child(2n) {
    border-right: 0;
  }

  .enrollment-steps li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 62px;
    padding-top: 34px;
  }

  .gallery-heading .section-kicker {
    grid-column: auto;
    margin-bottom: 0;
  }

  .gallery-landscape {
    grid-template-columns: 1fr;
  }

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

  .routine-row {
    grid-template-columns: 46px 1fr;
    gap: 10px 16px;
  }

  .routine-row p,
  .routine-time {
    grid-column: 2;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .mobile-sticky {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: minmax(108px, 0.48fr) minmax(0, 1fr);
    padding: 10px 12px;
    border-top: 1px solid var(--line-strong);
    background: var(--paper-light);
    box-shadow: 0 -10px 40px rgba(45, 33, 25, 0.12);
  }

  .mobile-sticky a,
  .mobile-sticky button {
    min-height: 50px;
  }

  .mobile-call {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 0.66rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
  }

  .mobile-call strong {
    margin-top: 3px;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .modal {
    align-items: end;
    padding: 0;
  }

  .modal-panel {
    width: 100%;
    max-height: 92vh;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .modal-panel--image {
    padding: 10px;
  }

  .plan-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .section,
  .section--compact {
    padding: 64px 0;
  }

  .display-title {
    font-size: clamp(2.7rem, 14.3vw, 4rem);
  }

  .section-title {
    font-size: clamp(2.2rem, 11.5vw, 3.25rem);
  }

  #pricing-title {
    font-size: clamp(2rem, 9.4vw, 2.55rem);
  }

  .course-fit {
    padding: 24px 20px;
  }

  .course-fit__list {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-fact,
  .hero-fact + .hero-fact {
    min-height: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .hero-visual figcaption {
    display: block;
  }

  .hero-visual figcaption strong {
    display: block;
    margin-bottom: 4px;
  }

  .story-point {
    grid-template-columns: 46px 1fr;
  }

  .class-photo-grid,
  .gallery-landscape,
  .gallery-portraits {
    gap: 10px;
  }

  .gallery-figure {
    padding: 7px;
  }

  .gallery-figure figcaption {
    min-height: 0;
    font-size: 0.68rem;
  }

  .phase,
  .price-card,
  .schedule-card {
    padding: 26px 22px;
  }

  .registration-gift {
    padding: 28px 24px;
  }

  .enrollment-process-head {
    padding: 23px 20px;
  }

  .enrollment-steps {
    grid-template-columns: 1fr;
  }

  .enrollment-steps li,
  .enrollment-steps li:nth-child(2n),
  .enrollment-steps li:nth-last-child(-n + 2) {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    grid-template-rows: auto;
    gap: 12px;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(251, 248, 242, 0.18);
  }

  .enrollment-steps li:last-child {
    border-bottom: 0;
  }

  .faq-answer {
    padding-right: 0;
  }

  .modal-header,
  .consult-form {
    padding-right: 20px;
    padding-left: 20px;
  }

  .form-fields-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .enrollment-success {
    padding: 46px 20px 22px;
  }

  .enrollment-success__close {
    top: 12px;
    right: 12px;
  }

  .enrollment-success__mark {
    width: 62px;
    height: 62px;
    margin-bottom: 12px;
  }

  .enrollment-success__mark svg {
    width: 44px;
    height: 44px;
  }

  .enrollment-success__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .enrollment-success__steps li,
  .enrollment-success__steps li:first-child,
  .enrollment-success__steps li:last-child {
    min-height: 0;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .enrollment-success__steps li:last-child {
    border-bottom: 0;
  }

  .enrollment-success__steps small {
    margin-top: 2px;
  }

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

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

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