@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/montserrat-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/montserrat-700.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-500.ttf') format('truetype');
}

:root {
  --green: #192c25;
  --gold: #dfbe76;
  --paper: #fbfaf6;
  --ink: #080909;
  --white: #f7f3eb;
  --button: linear-gradient(225deg, #e8c77b 0%, #ffe8b0 42%, #dbb86e 100%);
  --sans: 'Montserrat', Arial, sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; background: var(--green); }
body { margin: 0; overflow-x: clip; background: var(--green); color: var(--white); font-family: var(--sans); }
body.menu-open { overflow: hidden; }
button, a { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
figure, dl, dd { margin: 0; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.topbar { position: fixed; z-index: 50; inset: 0 0 auto; height: 0; pointer-events: none; }
.brand { display: none; }
.menu-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  pointer-events: auto;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  position: absolute;
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  content: '';
}

.menu-icon { transition: background .2s .3s, opacity .2s; }
.menu-icon::before { top: -8px; transition: top .2s .3s, transform .2s .1s; }
.menu-icon::after { top: 8px; transition: top .2s .3s, transform .2s .1s; }
.menu-toggle[aria-expanded='true'] .menu-icon { background: transparent; transition: background .2s, opacity .2s; }
.menu-toggle[aria-expanded='true'] .menu-icon::before { top: 0; transform: rotate(-135deg); transition: top .3s .1s, transform .2s .4s; }
.menu-toggle[aria-expanded='true'] .menu-icon::after { top: 0; transform: rotate(-225deg); transition: top .3s .1s, transform .2s .4s; }

.site-menu {
  position: fixed;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 27px;
  background: var(--green);
  clip-path: circle(0 at calc(100% - 44px) 44px);
  opacity: 0;
  pointer-events: none;
  transition: clip-path .52s cubic-bezier(.4, 0, .2, 1), opacity .18s ease;
}

.site-menu[hidden] { display: none; }
.site-menu.is-open { clip-path: circle(150vmax at calc(100% - 44px) 44px); opacity: 1; pointer-events: auto; }
.site-menu a {
  color: var(--gold);
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .24s ease, transform .24s ease;
}
.site-menu.is-open a { opacity: 1; transform: translateY(0); }
.site-menu a:nth-child(2) { transition-delay: .037s; }
.site-menu a:nth-child(3) { transition-delay: .074s; }
.site-menu a:nth-child(4) { transition-delay: .111s; }
.site-menu a:nth-child(5) { transition-delay: .148s; }
.site-menu a:nth-child(6) { transition-delay: .185s; }

.site-shell { width: min(100%, 792px); margin: 0 auto; background: var(--green); }
.section-title,
.hero h1,
.hero-stats dt,
.about-copy h3 { font-family: var(--serif); font-variant-numeric: lining-nums tabular-nums; }

.hero { position: relative; min-height: 939px; background: var(--green); }
.hero .eyebrow {
  position: absolute;
  top: 52px;
  left: 50%;
  width: 240px;
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  transform: translateX(-50%);
}
.hero h1 {
  position: absolute;
  top: 97px;
  right: 0;
  left: 0;
  margin: 0;
  color: var(--gold);
  font-size: 59px;
  font-weight: 400;
  line-height: .93;
  letter-spacing: -.07em;
  text-align: center;
  text-transform: uppercase;
}
.portrait-frame { position: absolute; }
.portrait-frame::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border: 1px solid var(--gold);
  content: '';
  transform: rotate(4deg);
}
.portrait-frame img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.portrait-frame--hero { top: 231px; left: 50%; width: 320px; height: 374px; transform: translateX(-50%); }
.hero-lead {
  position: absolute;
  top: 625px;
  left: 50%;
  width: 332px;
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: center;
  transform: translateX(-50%);
}
.hero-stats {
  position: absolute;
  top: 710px;
  left: 27px;
  display: grid;
  width: 336px;
  height: 93px;
  grid-template-columns: 42% 58%;
  border-top: 1px solid var(--gold);
  color: var(--white);
  text-align: center;
}
.hero-stats div { min-width: 0; padding: 17px 5px 0; }
.hero-stats div + div { border-left: 1px solid var(--gold); }
.hero-stats dt {
  color: var(--gold);
  font-size: 31px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -.055em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-stats .stat-plus {
  position: relative;
  top: -.08em;
  display: inline-block;
  margin-left: .015em;
  font-size: .78em;
  line-height: 1;
  letter-spacing: 0;
}
.hero-stats dd { margin: 8px 0 0; font-size: 15px; line-height: 18px; }

.cta {
  position: relative;
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  color: #000;
  background: var(--button);
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  isolation: isolate;
}
.hero > .cta { position: absolute; right: 14px; bottom: 60px; left: 14px; height: 60px; }
.cta-blink::after {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 76px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.66), transparent);
  content: '';
  pointer-events: none;
  transform: skewX(-20deg);
  animation: taplink-blink 3s linear infinite;
}
@keyframes taplink-blink {
  0% { left: -100%; margin-left: 0; }
  20%, 100% { left: 120%; margin-left: 5rem; }
}

#about {
  min-height: 1072px;
  padding: 0 0 44px;
  overflow: hidden;
  border-radius: 0;
  background: var(--paper);
  color: var(--green);
}
.about-static {
  position: relative;
  height: 887px;
  padding: 58px 14px 0;
  background: var(--paper);
}
.section-title { margin: 0; color: var(--gold); font-size: 44px; font-weight: 400; line-height: .9; letter-spacing: -.04em; text-align: center; text-transform: uppercase; }
#about .section-title { height: 53px; }
.portrait-frame--about { top: 132px; left: 50%; width: 316px; height: 376px; transform: translateX(-50%); }
.portrait-frame--about::before { inset: 0; }
.achievement-list { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; font-size: 14px; line-height: 17px; }
.about-static > .achievement-list { position: absolute; top: 548px; right: 26px; left: 26px; }
.achievement-list li { position: relative; padding-left: 24px; }
.achievement-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.2 6.5 11l6-6.5' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), var(--button);
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: 72% 72%, 100% 100%;
  content: '';
}
.disclosure { margin: 0; }
.about-controls { display: grid; gap: 14px; width: calc(100% - 28px); max-width: 792px; margin: 7px auto 0; }
.disclosure summary {
  position: relative;
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 10px 48px 10px 18px;
  border-radius: 5px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  text-transform: uppercase;
}
.disclosure > summary::after,
.text-disclosure > summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 10px;
  height: 10px;
  border: solid #514b40;
  border-width: 0 1.5px 1.5px 0;
  content: '';
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.disclosure[open] > summary::after,
.text-disclosure[open] > summary::after { transform: translateY(-20%) rotate(-135deg); }
.disclosure--about summary { border: 2px solid var(--gold); }
.disclosure--certificates summary { background: var(--button); }
#about .disclosure--about[open] > summary { margin-bottom: 14px; color: var(--ink); background: #fff; }
#about .disclosure--certificates[open] > summary { margin-bottom: 14px; color: var(--ink); background: var(--button); }
.disclosure[open] { height: auto; overflow: visible; }
details.is-animating { overflow: clip !important; }
.about-copy { container-type: inline-size; min-height: 0; padding: 20px 18px 24px; overflow: visible; background: var(--paper); color: var(--green); }
.about-copy .achievement-list { margin: 0; }
.about-copy .about-expanded-list { gap: 8px; font-size: 14px; line-height: 20px; }
.about-copy .about-expanded-list li { padding-left: 24px; }
.about-copy .about-expanded-list li::before { width: 16px; height: 16px; border-radius: 5px; font-size: 11px; }
.about-copy h3 {
  margin: 32px 0;
  color: transparent;
  background: linear-gradient(90deg, #266b55, #e2c774 52%, #266b55);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 30px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
.about-life { display: grid; gap: 24px; min-height: 0; }
.about-copy .about-life-list { width: 100%; gap: 8px; font-size: 14px; line-height: 20px; }
.about-copy .about-life-list li { padding-left: 24px; }
.about-copy .about-life-list li::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.2 6.5 11l6-6.5' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), linear-gradient(135deg, #164b3b, #8db2a2);
}
.about-life-photo { position: relative; width: min(78%, 280px); aspect-ratio: 3 / 4; margin: 0 auto; overflow: hidden; }
.about-life-photo::before { position: absolute; z-index: 2; inset: 0; border: 1px solid var(--gold); content: ''; transform: rotate(4deg); }
.about-life-photo img { position: absolute; z-index: 1; top: -161%; left: -173%; width: 284%; max-width: none; height: auto; }
.certificate-carousel { padding: 14px 14px 7px; overflow: hidden; background: var(--paper); }
.certificate-track { display: grid; grid-auto-columns: 100%; grid-auto-flow: column; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.certificate-track::-webkit-scrollbar { display: none; }
.certificate-track img { width: 100%; height: auto; object-fit: contain; scroll-snap-align: start; }
.certificate-dots,
.reviews-dots { display: flex; height: 24px; align-items: center; justify-content: center; }
.certificate-dots button,
.reviews-dots button { position: relative; width: 21px; height: 24px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.certificate-dots button::after,
.reviews-dots button::after { position: absolute; top: 10px; left: 3px; width: 15px; height: 4px; border-radius: 4px; background: rgba(223,190,118,.3); content: ''; }
.certificate-dots button.is-active::after,
.reviews-dots button.is-active::after { background: var(--gold); }

#directions,
#groups,
#contacts { padding-right: 14px; padding-left: 14px; background: var(--green); }
#directions { padding-top: 36px; padding-bottom: 9px; }
#directions .section-title { height: 64px; font-size: 40px; line-height: .79; }
.direction-list { display: grid; gap: 8px; margin-top: 30px; }
.direction-card { overflow: visible; color: var(--white); }
.direction-card summary {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr 26px;
  align-items: center;
  gap: 5px;
  padding: 0 23px 0 18px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.direction-card:nth-child(1) summary,
.direction-card:nth-child(2) summary,
.direction-card:nth-child(3) summary { min-height: 44px; }
.direction-card strong { font: inherit; white-space: nowrap; }
.direction-card i { display: grid; width: 26px; height: 26px; place-items: center; border-radius: 5px; color: var(--green); background: var(--button); font-size: 18px; font-style: normal; line-height: 1; transition: transform .2s ease; }
.direction-card[open] i { transform: none; }
.direction-detail {
  container-type: inline-size;
  display: grid;
  margin: 10px 0 8px;
  color: var(--green);
  background: var(--green);
  font-size: 14px;
  line-height: 20px;
}
.direction-card:nth-child(1) .direction-detail { height: auto; grid-template-rows: auto; gap: 15px; padding: 7px 0 8px; }
.direction-card:nth-child(2) .direction-detail { height: auto; grid-template-rows: auto; gap: 16px; padding: 11px 0 12px; }
.direction-card:nth-child(3) .direction-detail { height: auto; grid-template-rows: auto; gap: 15px; padding: 3px 0; }
.direction-card:nth-child(3) .direction-detail { font-size: 10px; line-height: 12px; }
.direction-card:nth-child(3) .direction-detail h3 { margin-bottom: 6px; font-size: 12px; line-height: 15px; }
.direction-card:nth-child(3) .direction-detail dl { gap: 4px; margin-top: 8px; }
.direction-detail__panel,
.direction-detail__price { min-height: 0; padding: 16px 13px; border-radius: 7px; background: var(--paper); }
.direction-detail__panel--gold { background: var(--button); }
.direction-detail h3 { margin: 0 0 10px; color: var(--ink); font-family: var(--sans); font-size: 15px; font-weight: 400; line-height: 18px; }
.direction-detail__panel--gold h3 { font-weight: 700; }
.direction-detail p { margin: 0; }
.direction-detail ul { display: grid; gap: 3px; margin: 0; padding: 0; list-style: none; }
.direction-detail li { position: relative; padding-left: 17px; }
.direction-detail li::before { position: absolute; top: 0; left: 0; color: #a47a2c; content: '✓'; font-weight: 700; }
.direction-detail dl { display: grid; gap: 6px; margin: 10px 0 0; }
.direction-detail dl div { display: grid; gap: 2px; }
.direction-detail dt { color: #8e6724; font-weight: 700; }
.direction-detail dd { margin: 0; }
.direction-detail__price { display: grid; gap: 0; place-content: center; text-align: center; }
.direction-detail__price p { color: var(--ink); font-size: 16px; font-weight: 400; line-height: 19px; text-transform: uppercase; }
.direction-detail__price s { font-family: var(--sans); font-size: 11px; line-height: 14px; }
.direction-detail__price strong { color: var(--ink); font-family: var(--sans); font-size: 19px; line-height: 22px; }
.direction-detail__price small { color: #514b40; font-size: 8px; line-height: 10px; text-transform: uppercase; }
.action-stack { display: grid; gap: 14px; }
#directions .action-stack { margin-top: 20px; }

#groups { padding-top: 68px; padding-bottom: 91px; }
#groups .section-title { height: 80px; font-size: 39px; line-height: .8; }
#groups .text-disclosure { margin-top: 32px; border: 0; }
#groups .text-disclosure + .text-disclosure { margin-top: 14px; }
.text-disclosure summary { flex-direction: column; min-height: 68px; padding: 12px 50px 12px 18px; background: var(--button); }
.text-disclosure summary span { display: block; font-size: 14px; font-weight: 700; line-height: 17px; text-transform: uppercase; }
.text-disclosure summary small { display: block; margin-top: 3px; color: #514b40; font-size: 13px; line-height: 16px; }
#groups .text-disclosure:nth-of-type(2) summary { min-height: 83px; }
#groups .text-disclosure[open] > summary {
  margin-bottom: 0;
  border-bottom: 1px solid #e5e2dc;
  border-radius: 5px 5px 0 0;
  background: #fff;
}
.text-disclosure.cta-pulse > summary { animation: taplink-pulse 2s linear infinite; transform-origin: center; }
.text-disclosure[open].cta-pulse > summary { animation: none; }
@keyframes taplink-pulse {
  0% { transform: scale(1); }
  10% { transform: scale(1.05); }
  20% { transform: scale(1); }
  100% { transform: none; }
}
.rich-text { padding: 14px 14px 22px; border-radius: 0 0 5px 5px; color: var(--green); background: var(--paper); font-size: 14px; line-height: 21px; }
.rich-text p { margin: 0 0 14px; }
.program-title,
.program-subtitle {
  margin: 0;
  color: var(--green);
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
}
.program-title { margin-bottom: 16px; font-size: 20px; line-height: 29px; }
.program-subtitle { margin-top: 2px; margin-bottom: 8px; font-size: 16px; line-height: 22px; }
.program-lead { margin-bottom: 5px !important; }
.program-list {
  display: grid;
  gap: 3px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.program-list li { position: relative; min-height: 18px; padding-left: 30px; }
.program-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: 72% 72%, 100% 100%;
  content: '';
}
.program-list--gold li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.2 6.5 11l6-6.5' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), linear-gradient(135deg, #e4bc60, #ffebb5);
}
.program-list--green li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.2 6.5 11l6-6.5' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), linear-gradient(135deg, #285f4e, #a9bcb4);
}
.rich-text .price { color: #8e6724; font-weight: 700; }
.rich-text .cta { margin-top: 14px; }
.group-apply { flex-direction: column; }
.group-apply small {
  display: block;
  margin-top: 3px;
  color: #514b40;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  text-transform: none;
}
.group-payment {
  margin-top: 14px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--button);
}
.group-payment > summary {
  position: relative;
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 10px 52px 10px 18px;
  color: #000;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  text-transform: uppercase;
}
.group-payment > summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border: solid #514b40;
  border-width: 0 1.5px 1.5px 0;
  content: '';
  transform: translateY(-50%) rotate(-45deg);
}
.group-payment[open] > summary::after { transform: translateY(-50%) rotate(-45deg); }
.group-payment .checkout-form {
  display: grid;
  gap: 14px;
  padding: 16px 14px 20px;
  border-top: 1px solid rgba(76, 69, 55, .28);
  background: rgba(255, 255, 255, .22);
}
.group-payment .checkout-form p { margin: 0; color: #39342c; font-size: 13px; line-height: 19px; }
.group-payment .checkout-form p a { color: #24221f; text-underline-offset: 2px; }
.group-payment .checkout-form .cta { margin-top: 0; }

#reviews { padding: 0 0 37px; background: var(--green); }
#reviews .section-title { height: 109px; padding: 29px 14px 23px; background: var(--paper); font-size: 40px; line-height: 57px; }
.reviews { --review-gutter: 14px; width: 100vw; margin-top: 0; margin-left: calc(50% - 50vw); overflow: visible; padding: 0 0 21px; }
.reviews-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc(100vw - 28px); gap: 6px; padding: 0 var(--review-gutter); overflow-x: auto; scroll-padding-inline: var(--review-gutter); scroll-snap-type: x mandatory; scrollbar-width: none; }
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track img { width: 100%; height: auto; aspect-ratio: 1; border-radius: 5px; object-fit: cover; scroll-snap-align: start; }
.reviews-dots { margin-top: 8px; }

#contacts { padding-top: 0; padding-bottom: 0; }
#contacts .section-title { height: 109px; font-size: 37px; line-height: 109px; }
#contacts .action-stack { margin-top: 14px; }
.site-footer { display: grid; gap: 0; margin-top: 7px; padding: 0 0 0; color: var(--white); font-size: 13px; line-height: 18px; text-align: center; }
.site-footer p { margin: 0; }
.site-footer a { color: var(--white); text-underline-offset: 4px; }
.site-footer p:first-child { padding: 7px 24px 0; font-size: 12px; line-height: 17px; }
.site-footer p:nth-child(2) { padding: 5px 16px 4px; }
.legal-disclosure {
  width: 100%;
  margin: 8px auto 0;
  overflow: hidden;
  border: 1px solid rgba(232, 199, 123, .7);
  border-radius: 5px;
  color: var(--white);
  background: rgba(255, 255, 255, .025);
}
.legal-disclosure summary {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 7px 42px;
  cursor: pointer;
  list-style: none;
  text-align: center;
}
.legal-disclosure summary::-webkit-details-marker { display: none; }
.legal-disclosure summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border: solid currentColor;
  border-width: 0 1px 1px 0;
  content: '';
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.legal-disclosure.is-expanded summary::after { transform: translateY(-30%) rotate(225deg); }
.legal-disclosure summary:hover,
.legal-disclosure summary:focus-visible,
.legal-links a:hover,
.legal-links a:focus-visible,
.legal-link-button:hover,
.legal-link-button:focus-visible { background: rgba(255, 255, 255, .08); }
.legal-disclosure summary:focus-visible,
.legal-links a:focus-visible,
.legal-link-button:focus-visible { outline: 2px solid var(--gold); outline-offset: -3px; }
.legal-links,
.legal-disclosure:not([open]) > .legal-links {
  display: grid;
  overflow: hidden;
  grid-template-rows: 0fr;
  padding: 0;
  border-top: 0 solid rgba(255, 255, 255, .16);
  visibility: hidden;
  transition: grid-template-rows .36s cubic-bezier(.4, 0, .2, 1), padding .36s cubic-bezier(.4, 0, .2, 1), border-width .36s cubic-bezier(.4, 0, .2, 1), visibility 0s linear .36s;
}
.legal-disclosure.is-expanded > .legal-links {
  grid-template-rows: 1fr;
  padding: 4px 0 10px;
  border-top-width: 1px;
  visibility: visible;
  transition-delay: 0s;
}
.legal-links__inner { display: grid; min-height: 0; overflow: hidden; }
.legal-links a,
.legal-link-button {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 12px;
  line-height: 17px;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.site-footer > a:last-child { min-height: 41px; margin-top: 14px; padding: 10px 12px; }

.privacy-choice-panel { position: fixed; z-index: 60; right: 0; bottom: 0; left: 0; padding: 14px; border-top: 1px solid rgba(255,255,255,.16); background: #14191c; color: var(--white); box-shadow: 0 -12px 32px rgba(0,0,0,.24); }
.privacy-choice-panel__inner { display: grid; width: min(100%, 1180px); margin: 0 auto; gap: 12px; }
.privacy-choice-panel__copy { display: grid; gap: 4px; }
.privacy-choice-panel p { margin: 0; font-size: 12px; line-height: 17px; }
.privacy-choice-panel .privacy-choice-panel__title { color: var(--gold); font-size: 13px; font-weight: 700; line-height: 18px; }
.privacy-choice-panel a { text-underline-offset: 3px; }
.privacy-choice-panel__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.cookie-choice { display: flex; width: 100%; min-height: 46px; align-items: center; justify-content: center; padding: 9px 14px; border: 1px solid var(--gold); border-radius: 5px; font-size: 12px; font-weight: 700; line-height: 16px; text-align: center; cursor: pointer; transition: color .2s ease, background-color .2s ease, border-color .2s ease; }
.cookie-choice--necessary { color: var(--white); background: transparent; }
.cookie-choice--all { color: #111; background: var(--gold); }
.cookie-choice:hover { border-color: #ffe2a3; }
.cookie-choice--necessary:hover { background: rgba(255,255,255,.08); }
.cookie-choice--all:hover { background: #ffe2a3; }
.cookie-choice:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.privacy-choice-panel.is-hidden { display: none; }

@media (min-width: 561px) {
  .privacy-choice-panel { padding: 16px 22px; }
  .privacy-choice-panel__actions { grid-template-columns: repeat(2, minmax(190px, 1fr)); }
  .cookie-choice { font-size: 13px; }
}

@media (min-width: 860px) {
  .privacy-choice-panel__inner { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 24px; }
  .privacy-choice-panel__actions { grid-template-columns: repeat(2, 190px); }
}

@media (min-width: 561px) {
  .menu-toggle { top: 28px; right: 28px; }
  .hero { min-height: 1776px; }
  .hero .eyebrow { top: 108px; width: 520px; font-size: 26px; line-height: 32px; }
  .hero h1 { top: 201px; font-size: 112px; line-height: .82; letter-spacing: -.04em; }
  .portrait-frame--hero { top: 469px; width: 650px; height: 757px; }
  .hero-lead { top: 1269px; width: 680px; font-size: 30px; line-height: 38px; }
  .hero-stats { top: 1422px; left: 56px; width: 680px; height: 154px; }
  .hero-stats { grid-template-columns: 42% 58%; }
  .hero-stats div { padding-top: 28px; }
  .hero-stats dt { font-size: 58px; line-height: 55px; }
  .hero-stats dd { margin-top: 12px; font-size: 23px; line-height: 28px; }
  .hero > .cta { right: 0; bottom: 60px; left: 0; }

  #about { min-height: 1987px; padding: 0 0 37px; border-radius: 24px; background: var(--paper); }
  .about-static { height: 1800px; padding: 116px 24px 0; }
  #about .section-title { height: 94px; font-size: 92px; }
  .portrait-frame--about { top: 290px; width: 650px; height: 800px; }
  .achievement-list { gap: 13px; font-size: 29px; line-height: 37px; }
  .about-static > .achievement-list { top: 1182px; right: 32px; left: 32px; }
  .achievement-list li { padding-left: 48px; }
  .achievement-list li::before { width: 32px; height: 32px; border-radius: 9px; font-size: 21px; }
  .about-controls { width: calc(100% - 28px); margin-top: 7px; }
  .disclosure summary { font-size: 14px; }
  .certificate-track { grid-auto-columns: 100%; }
  .about-copy { position: relative; padding: 2.762cqw 3.315cqw 2.21cqw; overflow: visible; }
  .about-copy .about-expanded-list { gap: 1.105cqw; font-size: 20px; line-height: 28px; }
  .about-copy .about-expanded-list li { padding-left: 40px; }
  .about-copy .about-expanded-list li::before { width: 26px; height: 26px; border-radius: 7px; font-size: 18px; }
  .about-copy h3 { margin: 5.525cqw -1.105cqw 7.735cqw; font-size: 4.42cqw; line-height: 4.972cqw; }
  .about-life { position: relative; display: block; min-height: 71.271cqw; }
  .about-copy .about-life-list { width: 54.696cqw; gap: 8px; font-size: 20px; line-height: 28px; }
  .about-copy .about-life-list li { padding-left: 40px; }
  .about-copy .about-life-list li::before { width: 26px; height: 26px; font-size: 18px; }
  .about-life-photo { position: absolute; top: 0; right: 0; width: 35.912cqw; height: 64.088cqw; margin: 0; aspect-ratio: auto; }
  .about-life-photo img { top: -75.414cqw; right: auto; bottom: auto; left: -60.773cqw; width: 100cqw; height: auto; object-fit: initial; object-position: initial; }

  #directions,
  #groups,
  #contacts { padding-right: 0; padding-left: 0; }
  #directions { padding-top: 86px; padding-bottom: 14px; }
  #directions .section-title { height: 150px; font-size: 88px; }
  .direction-list { margin-top: 42px; }
  .direction-list { gap: 8px; }
  .direction-card summary { grid-template-columns: auto 1fr 57px; padding-right: 51px; padding-left: 38px; font-size: 40px; }
  .direction-card:nth-child(1) summary,
  .direction-card:nth-child(2) summary,
  .direction-card:nth-child(3) summary { min-height: 76px; }
  .direction-card i { width: 57px; height: 57px; border-radius: 10px; font-size: 38px; }
  .direction-card:nth-child(1) .direction-detail {
    width: min(100%, 545px);
    height: auto;
    aspect-ratio: 545 / 800;
    grid-template-rows: 36.875% 37.5% 16.375%;
    gap: 2.75%;
    margin-right: auto;
    margin-left: auto;
    padding: 1.125% 0 2.625%;
    font-size: 18px;
    line-height: 22px;
  }
  .direction-card:nth-child(2) .direction-detail {
    width: min(100%, 819px);
    height: auto;
    aspect-ratio: 819 / 800;
    grid-template-rows: 44% 44.125%;
    gap: 4.625%;
    margin-right: auto;
    margin-left: auto;
    padding: 3.5% 0 3.75%;
    font-size: 25px;
    line-height: 31px;
  }
  .direction-card:nth-child(3) .direction-detail {
    width: min(100%, 607px);
    height: auto;
    aspect-ratio: 607 / 800;
    grid-template-rows: 53.625% 41.875%;
    gap: 3.125%;
    margin-right: auto;
    margin-left: auto;
    padding: 1.125% 0 .25%;
    font-size: 17px;
    line-height: 22px;
  }
  .direction-detail__panel,
  .direction-detail__price { padding: 4.4cqw 3.67cqw; border-radius: 1.3cqw; }
  .direction-detail h3 { margin-bottom: 2.57cqw; font-size: 4.22cqw; line-height: 5.14cqw; }
  .direction-card:nth-child(3) .direction-detail h3 { margin-bottom: 8px; font-size: 18px; line-height: 22px; }
  .direction-card:nth-child(3) .direction-detail dl { gap: 4px; margin-top: 8px; }
  .direction-detail ul { gap: .73cqw; }
  .direction-detail li { padding-left: 3.12cqw; }
  .direction-detail dl { gap: 1.1cqw; margin-top: 2cqw; }
  .direction-detail__price p { font-size: 4.4cqw; line-height: 5.2cqw; }
  .direction-detail__price s { font-size: 3cqw; line-height: 3.8cqw; }
  .direction-detail__price strong { font-size: 5.2cqw; line-height: 5.8cqw; }
  .direction-detail__price small { font-size: 2cqw; line-height: 2.6cqw; }
  .direction-detail,
  .rich-text { padding: 22px 24px 28px; font-size: 20px; line-height: 28px; }
  .program-title { margin-bottom: 22px; font-size: 28px; line-height: 38px; }
  .program-subtitle { margin-bottom: 12px; font-size: 22px; line-height: 30px; }
  .program-list { gap: 5px; margin-bottom: 22px; }
  .program-list li { min-height: 26px; padding-left: 40px; }
  .program-list li::before { top: 2px; width: 26px; height: 26px; border-radius: 7px; }

  #groups { padding-top: 86px; padding-bottom: 81px; }
  #groups .section-title { height: 150px; font-size: 92px; }
  #groups .text-disclosure { margin-top: 55px; }
  #groups .text-disclosure + .text-disclosure { margin-top: 14px; }
  .text-disclosure summary,
  #groups .text-disclosure:nth-of-type(2) summary { min-height: 67px; }
  .group-payment > summary { min-height: 60px; }

  #reviews { padding-bottom: 37px; }
  #reviews .section-title { height: 199px; padding: 52px 0 37px; font-size: 92px; line-height: 110px; }
  .reviews { --review-gutter: max(14px, calc((100vw - 792px) / 2)); width: 100vw; max-width: none; margin-top: 0; margin-left: calc(50% - 50vw); padding: 0 0 21px; }
  .reviews-track { grid-auto-columns: 389px; gap: 14px; padding-inline: var(--review-gutter); }
  .reviews-dots { width: min(calc(100vw - (2 * var(--review-gutter))), 792px); margin-left: var(--review-gutter); }

  #contacts { padding-top: 0; padding-bottom: 0; }
  #contacts .section-title { height: 221px; font-size: 92px; line-height: 221px; }
  #contacts .action-stack { margin-top: 14px; }
  .site-footer { gap: 0; height: auto; min-height: 410.5px; margin-top: 7px; padding: 0; border-top: 0; font-size: 20px; line-height: 27px; }
  .site-footer p:first-child { display: flex; height: 90px; align-items: flex-end; justify-content: center; padding: 0 48px 10px; font-size: 18px; line-height: 25px; }
  .site-footer p:nth-child(2) { height: 156px; padding: 10px 24px; }
  .legal-disclosure summary { min-height: 67px; padding-top: 12px; padding-bottom: 12px; }
  .legal-disclosure summary::after { right: 30px; width: 10px; height: 10px; }
  .legal-disclosure.is-expanded > .legal-links { padding-bottom: 14px; }
  .legal-links a,
  .legal-link-button { min-height: 52px; padding: 10px 36px; font-size: 17px; line-height: 23px; }
  .site-footer > a:last-child { display: flex; min-height: 97px; align-items: center; justify-content: center; margin: 0; padding: 0; }
}

@media (min-width: 561px) and (max-width: 791px) {
  .hero { min-height: 224.242vw; }
  .hero .eyebrow { top: 13.636vw; width: 65.657vw; font-size: 3.283vw; line-height: 4.04vw; }
  .hero h1 { top: 25.379vw; font-size: 14.141vw; }
  .portrait-frame--hero { top: 59.217vw; width: 82.071vw; height: 95.581vw; }
  .hero-lead { top: 160.227vw; width: 85.859vw; font-size: 3.788vw; line-height: 4.798vw; }
  .hero-stats { top: 179.545vw; left: 7.071vw; width: 85.859vw; height: 19.444vw; }
  .hero-stats div { padding-top: 3.535vw; }
  .hero-stats dt { font-size: 7.323vw; line-height: 6.944vw; }
  .hero-stats dd { margin-top: 1.515vw; font-size: 2.904vw; line-height: 3.535vw; }
  .hero > .cta { right: 14px; left: 14px; }

  #about { min-height: 1868px; }
  .about-static { height: 1684px; padding: 108px 22px 0; }
  #about .section-title { height: 88px; font-size: 86px; }
  .portrait-frame--about { top: 271px; width: 607px; height: 747px; }
  .achievement-list { gap: 12px; font-size: 27px; line-height: 35px; }
  .about-static > .achievement-list { top: 1104px; right: 30px; left: 30px; }
  .achievement-list li { padding-left: 45px; }
  .achievement-list li::before { width: 30px; height: 30px; border-radius: 8px; font-size: 20px; }
  .about-controls { width: calc(100% - 28px); }

  #directions,
  #groups,
  #contacts { padding-right: 14px; padding-left: 14px; }
  #directions { min-height: 784px; padding-top: 80px; padding-bottom: 16px; }
  #directions .section-title { height: 140px; font-size: 82px; }
  .direction-list { margin-top: 40px; }
  .direction-card summary { grid-template-columns: auto 1fr 53px; padding-right: 48px; padding-left: 35px; font-size: 37px; }
  .direction-card:nth-child(1) summary,
  .direction-card:nth-child(2) summary,
  .direction-card:nth-child(3) summary { min-height: 72px; }
  .direction-card i { width: 53px; height: 53px; border-radius: 9px; font-size: 35px; }
  .direction-card:nth-child(2) .direction-detail { font-size: 23px; line-height: 29px; }

  #groups { min-height: 593px; padding-top: 80px; padding-bottom: 81px; }
  #groups .section-title { height: 140px; font-size: 86px; }
  #groups .text-disclosure { margin-top: 52px; }
  #groups .text-disclosure + .text-disclosure { margin-top: 14px; }
  .text-disclosure summary,
  #groups .text-disclosure:nth-of-type(2) summary { min-height: 67px; }
  .group-payment > summary { min-height: 60px; }

  #reviews { padding-bottom: 37px; }
  #reviews .section-title { width: calc(100% - 28px); height: 188px; margin: 0 14px; padding: 39px 0; font-size: 86px; line-height: 110px; }
  .reviews { --review-gutter: 14px; width: 100vw; margin-left: calc(50% - 50vw); padding-bottom: 21px; }
  .reviews-track { grid-auto-columns: 363px; padding-inline: var(--review-gutter); }
  .reviews-dots { width: 740px; margin-left: var(--review-gutter); }

  #contacts { padding-top: 0; padding-bottom: 0; }
  #contacts .section-title { height: 206px; font-size: 86px; line-height: 206px; }
  #contacts .action-stack { margin-top: 14px; }
  .site-footer { width: 100%; height: auto; min-height: 384.5px; margin-top: 7px; }
  .site-footer p:first-child { height: 84px; padding-right: 44px; padding-left: 44px; font-size: 17px; line-height: 23px; }
  .site-footer p:nth-child(2) { height: 146px; }
  .legal-disclosure summary { min-height: 63px; }
  .site-footer > a:last-child { min-height: 91px; }
}

@media (max-width: 374px) {
  .hero-stats { left: 14px; width: calc(100% - 28px); grid-template-columns: 42% 58%; }
  .hero-stats dt { font-size: 29px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .site-menu,
  .site-menu a,
  .menu-icon,
  .menu-icon::before,
  .menu-icon::after,
  .legal-disclosure summary::after,
  .legal-links,
  .cookie-choice { transition: none; }
}

/* Финальный release-gate: доступный фокус, компактный первый экран и WCAG-контраст. */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 70;
  padding: 12px 16px;
  border-radius: 5px;
  color: var(--green);
  background: #fff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  pointer-events: auto;
}

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

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #805916;
}

:where(main, section, [id]) { scroll-margin-top: 84px; }

.section-title--light { color: #8a641e; }

.cta-blink::after { display: none; }
.text-disclosure.cta-pulse > summary { animation: none; }

.certificate-dots button { width: 28px; height: 32px; }
.certificate-dots button::after { top: 14px; left: 6px; width: 16px; }
.certificate-dots button.is-active::after { left: 3px; width: 22px; }

@media (max-width: 374px) {
  .hero .eyebrow {
    left: 14px;
    width: calc(100% - 96px);
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
    transform: none;
  }

}

@media (min-width: 375px) and (max-width: 390px) {
  .hero .eyebrow {
    left: 14px;
    width: calc(100% - 96px);
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
    transform: none;
  }
}

@media (max-width: 347px) {
  .portrait-frame--hero {
    width: calc(100% - 28px);
    height: auto;
    aspect-ratio: 320 / 374;
  }
}

@media (max-width: 359px) {
  .hero-lead { width: calc(100% - 28px); }
}

@media (min-width: 391px) and (max-width: 560px) {
  .hero-stats {
    left: 50%;
    width: min(calc(100% - 28px), 430px);
    transform: translateX(-50%);
  }
}

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