:root {
  --bg: #050607;
  --panel: rgba(18, 17, 14, 0.72);
  --panel-strong: rgba(24, 22, 18, 0.9);
  --text: #f6efe1;
  --muted: #c9bdab;
  --soft: #8d8478;
  --line: rgba(224, 180, 111, 0.24);
  --line-strong: rgba(246, 202, 135, 0.58);
  --gold: #f2c783;
  --amber: #d98231;
  --copper: #a75f35;
  --teal: #8eb9ad;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  --serif: "Cormorant Garamond", "Forum", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body.hy-page {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.72), #050607 420px),
    #050607;
  font-family: var(--sans);
  overflow-x: hidden;
}

@supports (overflow-x: clip) {
  html,
  body.hy-page {
    overflow-x: clip;
  }
}

body.hy-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(242, 199, 131, 0.045) 50%, transparent 51%),
    radial-gradient(ellipse at 50% 0%, rgba(142, 185, 173, 0.08), transparent 44%),
    radial-gradient(ellipse at 80% 12%, rgba(217, 130, 49, 0.1), transparent 34%);
}

body.hy-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(242, 199, 131, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 199, 131, 0.12) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 70%, transparent);
}

a {
  color: inherit;
}

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

.hy-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(5, 6, 7, 0.86), rgba(5, 6, 7, 0.48), transparent);
  backdrop-filter: blur(14px);
}

.hy-logo {
  display: inline-flex;
  align-items: center;
  min-width: 122px;
  height: 54px;
  text-decoration: none;
}

.hy-logo img {
  width: auto;
  height: 54px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.52));
}

.hy-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  color: rgba(246, 239, 225, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hy-nav a {
  position: relative;
  text-decoration: none;
  transition: color 180ms ease;
}

.hy-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: transform 220ms ease;
}

.hy-nav a:hover {
  color: #fff7e8;
}

.hy-nav a:hover::after {
  transform: scaleX(1);
}

.hy-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid rgba(242, 199, 131, 0.13);
}

.hy-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hy-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  filter: saturate(0.8) contrast(1.04) brightness(0.72);
  transform: scale(1.04);
  animation: hyHeroDrift 18s ease-in-out infinite alternate;
}

.hy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96), rgba(5, 6, 7, 0.76) 42%, rgba(5, 6, 7, 0.36) 66%, rgba(5, 6, 7, 0.86)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.22), rgba(5, 6, 7, 0.78) 84%, #050607);
}

.hy-hero::after {
  content: "";
  position: absolute;
  inset: 12vh 8vw auto auto;
  width: min(560px, 48vw);
  aspect-ratio: 1;
  z-index: -1;
  border: 1px solid rgba(242, 199, 131, 0.18);
  border-radius: 50%;
  opacity: 0.5;
  background:
    repeating-radial-gradient(circle, transparent 0 34px, rgba(242, 199, 131, 0.16) 35px, transparent 36px),
    conic-gradient(from 80deg, transparent, rgba(242, 199, 131, 0.18), transparent, rgba(142, 185, 173, 0.12), transparent);
  mask-image: radial-gradient(circle, transparent 0 30%, black 31% 70%, transparent 71%);
  animation: hyBreath 7s ease-in-out infinite;
}

.hy-hero__inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 128px 0 74px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hy-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
}

.hy-kicker {
  margin: 0 0 18px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hy-hero h1,
.hy-section h2,
.hy-final h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.hy-hero h1 {
  max-width: 960px;
  font-size: clamp(58px, 7.6vw, 116px);
  color: transparent;
  background:
    linear-gradient(108deg, transparent 0%, transparent 39%, rgba(255, 255, 255, 0.92) 46%, #fff8dd 49%, rgba(242, 199, 131, 0.88) 52%, transparent 61%, transparent 100%),
    linear-gradient(110deg, #fff4db 0%, #c58b49 24%, #fff7e7 43%, #d7b77e 62%, #fff2d2 100%);
  background-size: 240% 100%, 100% 100%;
  background-position: -180% 0, 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 22px 52px rgba(0, 0, 0, 0.55);
  animation: hyTitleGlint 5.8s ease-in-out infinite;
}

.hy-hero h1 span {
  display: block;
  white-space: nowrap;
}

.hy-hero__lead {
  margin: 28px 0 0;
  max-width: 720px;
  font-family: var(--sans);
  font-size: clamp(26px, 2.9vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  color: #fff4df;
}

.hy-hero__text {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(246, 239, 225, 0.84);
  font-family: var(--sans);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1.55;
}

.hy-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 0;
}

.hy-hero__facts span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  color: rgba(246, 239, 225, 0.88);
  border: 1px solid rgba(242, 199, 131, 0.25);
  border-radius: 999px;
  background: rgba(12, 13, 12, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 14px;
}

.hy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hy-actions--center {
  justify-content: center;
}

.hy-actions--place {
  margin-top: 30px;
}

.hy-button {
  appearance: none;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 174px;
  padding: 14px 24px;
  border: 1px solid rgba(242, 199, 131, 0.35);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #fff4df;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hy-button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  transform: translateX(-120%) skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 244, 223, 0.36), transparent);
  transition: transform 520ms ease;
}

.hy-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 231, 188, 0.72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34), 0 0 38px rgba(217, 130, 49, 0.18);
}

.hy-button:hover::before {
  transform: translateX(120%) skewX(-22deg);
}

.hy-button--primary {
  background:
    linear-gradient(135deg, rgba(217, 130, 49, 0.95), rgba(242, 199, 131, 0.86)),
    #d98231;
  color: #fff8ec;
  border-color: rgba(255, 231, 188, 0.78);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.38);
}

.hy-button--ghost {
  background: rgba(11, 12, 12, 0.62);
}

.hy-section {
  position: relative;
  padding: clamp(72px, 10vw, 136px) 0;
  border-bottom: 1px solid rgba(242, 199, 131, 0.09);
}

.hy-section--intro {
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.92), rgba(11, 11, 10, 0.96)),
    #080907;
}

.hy-section--program {
  background:
    radial-gradient(ellipse at 10% 30%, rgba(167, 95, 53, 0.12), transparent 46%),
    linear-gradient(180deg, #050607, #090807);
}

.hy-section--place,
.hy-section--teacher {
  background:
    linear-gradient(90deg, rgba(142, 185, 173, 0.04), transparent 38%, rgba(217, 130, 49, 0.04)),
    #060706;
}

.hy-section__inner,
.hy-final__inner,
.hy-footer__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hy-section__head {
  width: 100%;
  max-width: 740px;
  margin-bottom: 40px;
}

.hy-section__head--benefits,
.hy-section__head--faq,
.hy-section__head--program {
  max-width: 1080px;
  margin: 0 auto 60px;
  text-align: center;
}

.hy-section .hy-section__head--benefits h2,
.hy-section .hy-section__head--faq h2,
.hy-section .hy-section__head--program h2 {
  font-size: 66px;
  line-height: 1.04;
}

.hy-section h2,
.hy-final h2 {
  color: #f8ead1;
  font-size: clamp(44px, 5.4vw, 84px);
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.hy-copy {
  color: rgba(246, 239, 225, 0.82);
  font-family: var(--sans);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1.55;
}

.hy-copy p {
  margin: 0 0 20px;
}

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

.hy-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
}

.hy-split--reverse {
  align-items: center;
}

.hy-split--fit {
  grid-template-columns: minmax(540px, 0.94fr) minmax(0, 1fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: center;
}

.hy-split--fit .hy-split__title h2 {
  font-size: clamp(52px, 4.2vw, 70px);
  line-height: 1.02;
}

.hy-heading-line {
  display: block;
}

.hy-heading-line--keep {
  white-space: nowrap;
}

.hy-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hy-benefit {
  position: relative;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(242, 199, 131, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 35%),
    rgba(16, 15, 13, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.hy-benefit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 34%, rgba(242, 199, 131, 0.13), transparent 28%),
    linear-gradient(110deg, transparent, rgba(142, 185, 173, 0.035), transparent);
  opacity: 0.42;
  transition: opacity 220ms ease, filter 220ms ease, transform 220ms ease;
}

.hy-benefit:hover,
.hy-program-card:hover,
.hy-place__panel:hover,
.hy-faq details:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 199, 131, 0.5);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.3), 0 0 36px rgba(217, 130, 49, 0.12);
}

.hy-benefit:hover::before {
  opacity: 0.82;
  filter: blur(1px);
  transform: scale(1.04);
}

.hy-benefit__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(242, 199, 131, 0.34);
  border-radius: 50%;
  color: var(--gold);
  background:
    repeating-radial-gradient(circle, transparent 0 14px, rgba(242, 199, 131, 0.1) 15px, transparent 16px),
    radial-gradient(circle, rgba(242, 199, 131, 0.13), rgba(8, 8, 8, 0.24) 62%);
  box-shadow: inset 0 0 30px rgba(242, 199, 131, 0.08), 0 0 24px rgba(217, 130, 49, 0.12);
  transition: transform 260ms ease, border-color 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.hy-benefit__icon svg,
.hy-program-card__icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hy-benefit:hover .hy-benefit__icon {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(255, 231, 188, 0.72);
  color: #ffe3ad;
  box-shadow: inset 0 0 38px rgba(242, 199, 131, 0.12), 0 0 34px rgba(217, 130, 49, 0.22);
}

.hy-benefit > div:not(.hy-benefit__icon) {
  position: relative;
  z-index: 1;
}

.hy-benefit h3,
.hy-program-card h3 {
  margin: 0;
  color: transparent;
  background:
    linear-gradient(104deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.9) 47%, #fff5d9 50%, rgba(242, 199, 131, 0.9) 53%, transparent 62%, transparent 100%),
    linear-gradient(110deg, #fff3d6 0%, #d7ad72 36%, #f7e4c4 68%, #fff7e8 100%);
  background-size: 240% 100%, 100% 100%;
  background-position: -170% 0, 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1;
  transition: transform 260ms ease;
  animation: hyWordGlint 4.6s ease-in-out infinite paused;
}

.hy-benefit:hover h3,
.hy-program-card:hover h3 {
  animation-play-state: running;
}

.hy-benefit p,
.hy-program-card p {
  margin: 10px 0 0;
  color: rgba(246, 239, 225, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

.hy-program {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hy-program-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 330px;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(242, 199, 131, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(24, 22, 18, 0.86), rgba(5, 6, 7, 0.72)),
    rgba(14, 13, 12, 0.82);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hy-program-card::before {
  content: "";
  position: absolute;
  inset: -18px;
  background:
    radial-gradient(circle at 50% 34%, rgba(242, 199, 131, 0.18), transparent 26%),
    repeating-radial-gradient(circle at 50% 38%, transparent 0 28px, rgba(242, 199, 131, 0.08) 29px, transparent 30px),
    linear-gradient(145deg, rgba(142, 185, 173, 0.08), rgba(217, 130, 49, 0.06), transparent 66%);
  opacity: 0.52;
  transform: scale(1);
  transition: opacity 260ms ease, filter 260ms ease, transform 260ms ease;
}

.hy-program-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(242, 199, 131, 0.12);
  border-radius: 6px;
  pointer-events: none;
}

.hy-program-card:hover::before {
  opacity: 0.88;
  filter: blur(4px);
  transform: scale(1.06);
}

.hy-program-card__step {
  position: relative;
  z-index: 1;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.hy-program-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 24px auto 32px;
  color: var(--gold);
  border: 1px solid rgba(242, 199, 131, 0.34);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 16px, rgba(242, 199, 131, 0.1) 17px, transparent 18px),
    rgba(5, 6, 7, 0.22);
  box-shadow: inset 0 0 34px rgba(242, 199, 131, 0.08), 0 0 34px rgba(217, 130, 49, 0.12);
  transition: transform 260ms ease, color 260ms ease, border-color 260ms ease, opacity 260ms ease;
}

.hy-program-card:hover .hy-program-card__icon {
  transform: translateY(-8px) scale(1.04);
  color: #ffe3ad;
  border-color: rgba(255, 231, 188, 0.72);
}

.hy-program-card__text {
  position: relative;
  z-index: 1;
  min-height: 108px;
  display: grid;
  align-content: end;
  text-align: center;
}

.hy-program-card h3 {
  font-size: clamp(26px, 2.25vw, 38px);
  line-height: 1.08;
}

.hy-program-card:hover h3 {
  transform: translateY(-10px);
}

.hy-program-card p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: max-height 260ms ease, opacity 220ms ease, transform 260ms ease;
}

.hy-program-card:hover p,
.hy-program-card:focus-within p {
  max-height: 150px;
  opacity: 1;
  transform: translateY(0);
}

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

.hy-checks li {
  position: relative;
  min-height: 58px;
  padding: 14px 18px 14px 46px;
  border: 1px solid rgba(242, 199, 131, 0.16);
  border-radius: 8px;
  background: rgba(17, 16, 14, 0.68);
  color: rgba(246, 239, 225, 0.84);
  font-size: clamp(20px, 1.8vw, 26px);
}

.hy-checks li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(242, 199, 131, 0.46);
}

.hy-place {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 500px);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
}

.hy-place__content p {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(246, 239, 225, 0.78);
  font-family: var(--sans);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1.5;
}

.hy-place__content .hy-place__note {
  margin-top: 18px;
  color: #f2c783;
  font-weight: 800;
}

.hy-place__content .hy-place__donation {
  margin-top: 8px;
}

@media (min-width: 981px) {
  .hy-place__content .hy-place__address {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(14px, 1.15vw, 17px);
  }
}

.hy-place__panel {
  padding: 28px;
  border: 1px solid rgba(242, 199, 131, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(24, 22, 18, 0.9), rgba(8, 8, 8, 0.75)),
    rgba(17, 16, 14, 0.88);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hy-place__panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hy-place__panel strong {
  display: block;
  color: #fff1d5;
  font-family: var(--sans);
  font-size: clamp(16px, 1.25vw, 21px);
  font-weight: 800;
  line-height: 1.18;
  white-space: nowrap;
}

.hy-place__panel a {
  display: inline-flex;
  margin-top: 24px;
  color: #f4c987;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 199, 131, 0.45);
}

.hy-section--signup {
  scroll-margin-top: 84px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(217, 130, 49, 0.11), transparent 42%),
    radial-gradient(ellipse at 14% 82%, rgba(142, 185, 173, 0.07), transparent 36%),
    #070806;
}

.hy-signup {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.hy-signup__text p:not(.hy-kicker) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(246, 239, 225, 0.78);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1.5;
}

.hy-signup__text .hy-signup__required {
  color: rgba(242, 199, 131, 0.84);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hy-form {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(242, 199, 131, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(24, 22, 18, 0.88), rgba(8, 8, 8, 0.72)),
    rgba(17, 16, 14, 0.86);
  box-shadow: var(--shadow);
}

.hy-form::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(242, 199, 131, 0.1);
  border-radius: 6px;
}

.hy-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.hy-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hy-form label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: rgba(246, 239, 225, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hy-form input[type="text"],
.hy-form input[type="email"],
.hy-form input[type="tel"] {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  border: 1px solid rgba(242, 199, 131, 0.24);
  border-radius: 8px;
  outline: none;
  background: rgba(5, 6, 7, 0.58);
  color: #fff7e8;
  font: 600 16px/1.2 var(--sans);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hy-form input::placeholder {
  color: rgba(246, 239, 225, 0.34);
}

.hy-form input:focus {
  border-color: rgba(255, 231, 188, 0.72);
  background: rgba(5, 6, 7, 0.76);
  box-shadow: 0 0 0 3px rgba(242, 199, 131, 0.12), 0 0 30px rgba(217, 130, 49, 0.12);
}

.hy-form__wide,
.hy-consent,
.hy-form__actions,
.hy-form__status {
  position: relative;
  z-index: 1;
}

.hy-form__wide {
  margin-top: 16px;
}

.hy-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 20px;
  color: rgba(246, 239, 225, 0.78);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.hy-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--amber);
}

.hy-consent a,
.hy-footer__privacy {
  color: #f4c987;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 199, 131, 0.42);
}

.hy-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hy-form .hy-button {
  border-radius: 8px;
  cursor: pointer;
}

.hy-form .hy-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.hy-form__status {
  min-height: 22px;
  margin: 18px 0 0;
  color: rgba(246, 239, 225, 0.74);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.hy-form__status.is-success {
  color: #ffe3ad;
}

.hy-form__status.is-error {
  color: #ffb58c;
}

body.hy-modal-open {
  overflow: hidden;
}

.hy-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.hy-modal[hidden] {
  display: none;
}

.hy-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hy-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 58% 22%, rgba(242, 199, 131, 0.13), transparent 34%),
    rgba(4, 5, 5, 0.78);
  backdrop-filter: blur(14px);
}

.hy-modal__dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: min(88svh, 820px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(242, 199, 131, 0.32);
  border-radius: 8px;
  outline: none;
  background:
    linear-gradient(145deg, rgba(24, 22, 18, 0.94), rgba(7, 8, 8, 0.94)),
    rgba(12, 12, 10, 0.94);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.72), 0 0 48px rgba(217, 130, 49, 0.12);
  transform: translateY(18px) scale(0.985);
  transition: transform 220ms ease;
}

.hy-modal.is-open .hy-modal__dialog {
  transform: translateY(0) scale(1);
}

.hy-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(242, 199, 131, 0.1);
  border-radius: 6px;
}

.hy-modal__head {
  position: relative;
  z-index: 1;
  margin: 0 48px 26px 0;
}

.hy-modal__head h2 {
  margin: 0;
  color: #fff4df;
  font-family: var(--sans);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.hy-modal__close {
  appearance: none;
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242, 199, 131, 0.32);
  border-radius: 50%;
  background: rgba(6, 7, 7, 0.74);
  color: #ffe5ba;
  font: 400 30px/1 var(--sans);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hy-modal__close:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 231, 188, 0.7);
  box-shadow: 0 0 30px rgba(217, 130, 49, 0.2);
}

.hy-modal .hy-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hy-modal .hy-form::before {
  display: none;
}

.hy-modal__success {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 260px;
  gap: 18px;
  place-items: center;
  padding: 34px 18px;
  text-align: center;
}

.hy-modal__success[hidden] {
  display: none;
}

.hy-modal__success-title {
  max-width: 560px;
  margin: 0;
  color: #ffe3ad;
  font-family: var(--sans);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.14;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
}

.hy-modal__success-note {
  max-width: 520px;
  margin: 0;
  color: rgba(246, 239, 225, 0.76);
  font-family: var(--sans);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 700;
  line-height: 1.45;
}

.hy-modal__success-note a {
  color: #ffd08a;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 208, 138, 0.5);
}

.hy-modal__success-note a:hover {
  color: #fff2d9;
  border-bottom-color: rgba(255, 242, 217, 0.76);
}

.hy-teacher {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.hy-teacher__portrait {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(242, 199, 131, 0.28);
  border-radius: 8px;
  background:
    repeating-radial-gradient(circle, transparent 0 24px, rgba(242, 199, 131, 0.1) 25px, transparent 26px),
    linear-gradient(135deg, rgba(142, 185, 173, 0.08), rgba(217, 130, 49, 0.11)),
    rgba(14, 13, 12, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hy-teacher__portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 28%, transparent 0 42%, rgba(5, 6, 7, 0.1) 62%, rgba(5, 6, 7, 0.58) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.05), rgba(5, 6, 7, 0.62));
}

.hy-teacher__portrait::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 18px;
  border: 1px solid rgba(242, 199, 131, 0.18);
  border-radius: 6px;
}

.hy-teacher__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  opacity: 0.9;
  filter: saturate(0.86) contrast(1.07) brightness(0.76);
  transform: scale(1.02);
}

.hy-teacher__text p:not(.hy-kicker) {
  max-width: 740px;
  color: rgba(246, 239, 225, 0.78);
  font-family: var(--sans);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1.55;
}

.hy-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hy-faq details {
  min-height: 120px;
  padding: 22px;
  border: 1px solid rgba(242, 199, 131, 0.18);
  border-radius: 8px;
  background: rgba(17, 16, 14, 0.76);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hy-faq__center {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, calc((100% - 14px) / 2));
}

.hy-faq summary {
  cursor: pointer;
  color: #f7e4c4;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.hy-faq p {
  margin: 14px 0 0;
  color: rgba(246, 239, 225, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

.hy-faq a {
  color: #f4c987;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 199, 131, 0.42);
}

.hy-faq a:hover {
  color: #fff1d5;
  border-bottom-color: rgba(255, 241, 213, 0.78);
}

.hy-final {
  position: relative;
  padding: clamp(84px, 11vw, 150px) 0;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.7), #050607),
    url("../../assets/articles/bolshe-chem-fitnes/yoga-banner.png") center / cover;
}

.hy-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.92), rgba(5, 6, 7, 0.62), rgba(5, 6, 7, 0.92)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.4), #050607);
}

.hy-final__inner {
  position: relative;
}

.hy-final p:not(.hy-kicker) {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(246, 239, 225, 0.76);
  font-family: var(--sans);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1.5;
}

.hy-footer {
  padding: 38px 0 44px;
  background: #050607;
}

.hy-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.hy-socials {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hy-socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(242, 199, 131, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease;
}

.hy-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 199, 131, 0.45);
}

.hy-socials img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.hy-footer__copy {
  color: rgba(246, 239, 225, 0.44);
  font-size: 13px;
}

.hy-footer__privacy {
  color: rgba(242, 199, 131, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes hyTitleGlint {
  0%, 18% {
    background-position: -180% 0, 0 0;
  }

  48%, 100% {
    background-position: 180% 0, 0 0;
  }
}

@keyframes hyWordGlint {
  0%, 22% {
    background-position: -170% 0, 0 0;
  }

  58%, 100% {
    background-position: 170% 0, 0 0;
  }
}

@keyframes hyHeroDrift {
  from {
    transform: scale(1.04) translate3d(-0.6%, -0.4%, 0);
  }
  to {
    transform: scale(1.08) translate3d(0.8%, 0.6%, 0);
  }
}

@keyframes hyBreath {
  0%, 100% {
    transform: scale(0.985);
    opacity: 0.46;
  }
  50% {
    transform: scale(1.025);
    opacity: 0.78;
  }
}

@media (max-width: 980px) {
  .hy-hero__inner {
    align-items: center;
    padding-top: 118px;
  }

  .hy-split,
  .hy-split--reverse,
  .hy-place,
  .hy-signup,
  .hy-teacher {
    grid-template-columns: 1fr;
  }

  .hy-benefits,
  .hy-faq {
    grid-template-columns: 1fr;
  }

  .hy-faq__center {
    width: 100%;
  }

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

  .hy-teacher__portrait {
    justify-self: center;
    width: min(100%, 360px);
    max-width: 360px;
  }
}

@media (max-width: 720px) {
  html,
  body.hy-page {
    min-width: 0;
  }

  .hy-header {
    position: absolute;
    width: 100%;
    min-height: 68px;
    gap: 14px;
    padding: 14px 20px;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    backdrop-filter: none;
  }

  .hy-logo {
    flex: 0 1 150px;
    min-width: 0;
    max-width: 44vw;
    height: auto;
  }

  .hy-logo img {
    width: 100%;
    height: auto;
    max-height: 46px;
    object-fit: contain;
  }

  .hy-nav {
    flex: 0 0 auto;
    justify-content: flex-end;
    max-width: 46vw;
    gap: 10px;
    font-size: 11px;
    overflow: hidden;
  }

  .hy-nav a:nth-child(2) {
    display: none;
  }

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

  .hy-hero__media img {
    object-position: 50% 50%;
  }

  .hy-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 6, 7, 0.56), rgba(5, 6, 7, 0.76) 34%, rgba(5, 6, 7, 0.98) 76%, #050607),
      linear-gradient(90deg, rgba(5, 6, 7, 0.7), rgba(5, 6, 7, 0.36), rgba(5, 6, 7, 0.7));
  }

  .hy-hero::after {
    top: 12vh;
    right: -22vw;
    width: 96vw;
  }

  .hy-hero__inner {
    width: min(100% - 44px, 1180px);
    min-height: 100svh;
    padding: 112px 0 50px;
    gap: 24px;
  }

  .hy-kicker {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .hy-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 10.4vw, 54px);
    line-height: 1.05;
  }

  .hy-hero h1 span {
    white-space: normal;
  }

  .hy-hero__lead {
    margin-top: 22px;
    max-width: 100%;
    font-size: clamp(25px, 7.2vw, 32px);
    line-height: 1.16;
  }

  .hy-hero__text {
    margin-top: 18px;
    max-width: 100%;
    font-size: clamp(18px, 5vw, 20px);
    line-height: 1.55;
  }

  .hy-hero__facts {
    gap: 8px;
    margin-top: 24px;
  }

  .hy-hero__facts span {
    width: 100%;
    justify-content: center;
    min-height: 36px;
    text-align: center;
    font-size: 13px;
  }

  .hy-actions {
    width: 100%;
    margin-top: 26px;
  }

  .hy-button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
  }

  .hy-section {
    padding: 70px 0;
  }

  .hy-section__inner,
  .hy-final__inner,
  .hy-footer__inner {
    width: min(100% - 44px, 1180px);
  }

  .hy-section h2,
  .hy-final h2 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 56px);
    line-height: 1.06;
  }

  .hy-section__head--benefits,
  .hy-section__head--faq,
  .hy-section__head--program {
    margin-bottom: 38px;
  }

  .hy-section .hy-section__head--benefits h2,
  .hy-section .hy-section__head--faq h2,
  .hy-section .hy-section__head--program h2 {
    max-width: 100%;
    font-size: clamp(28px, 7.4vw, 40px);
    line-height: 1.08;
  }

  .hy-heading-line--keep {
    white-space: normal;
  }

  .hy-split--fit .hy-split__title h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .hy-copy {
    font-size: 22px;
    line-height: 1.45;
  }

  .hy-benefit {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    min-height: 128px;
    padding: 14px;
  }

  .hy-benefit__icon {
    width: 66px;
    height: 66px;
  }

  .hy-benefit__icon svg {
    width: 38px;
    height: 38px;
  }

  .hy-benefit h3,
  .hy-program-card h3 {
    font-size: 30px;
  }

  .hy-benefit p,
  .hy-program-card p,
  .hy-faq p {
    font-size: 15px;
  }

  .hy-program {
    grid-template-columns: 1fr;
  }

  .hy-program-card {
    min-height: 0;
    padding: 22px;
  }

  .hy-program-card__icon {
    width: 74px;
    height: 74px;
    margin: 20px auto 18px;
  }

  .hy-program-card__icon svg {
    width: 42px;
    height: 42px;
  }

  .hy-program-card__text {
    min-height: 0;
  }

  .hy-program-card p {
    max-height: none;
    opacity: 1;
    transform: none;
  }

  .hy-checks li {
    min-height: 52px;
    padding: 13px 14px 13px 40px;
  }

  .hy-place__panel {
    padding: 22px;
  }

  .hy-place__panel strong {
    font-size: 30px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .hy-form__grid {
    grid-template-columns: 1fr;
  }

  .hy-form {
    padding: 22px;
  }

  .hy-modal {
    align-items: end;
    padding: 10px;
  }

  .hy-modal.is-success {
    align-items: center;
  }

  .hy-modal__dialog {
    width: 100%;
    max-height: 92svh;
    padding: 24px 18px;
  }

  .hy-modal__head {
    margin: 0 48px 22px 0;
  }

  .hy-modal__head h2 {
    font-size: 34px;
  }

  .hy-modal .hy-form {
    padding: 0;
  }

  .hy-form__actions {
    width: 100%;
  }

  .hy-teacher__portrait {
    justify-self: center;
    width: min(100%, 320px);
    max-width: 320px;
  }

  .hy-teacher__portrait img {
    object-position: 50% 18%;
  }

  .hy-faq details {
    min-height: 0;
  }

  .hy-faq summary {
    font-size: 25px;
  }

  .hy-footer__inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hy-section .hy-section__head--benefits h2,
  .hy-section .hy-section__head--faq h2,
  .hy-section .hy-section__head--program h2 {
    font-size: 28px;
  }
}

@media (max-width: 420px) {
  .hy-section .hy-section__head--benefits h2,
  .hy-section .hy-section__head--faq h2,
  .hy-section .hy-section__head--program h2 {
    font-size: 26px;
  }

  .hy-split--fit .hy-split__title h2 {
    font-size: clamp(34px, 10.8vw, 44px);
  }

  .hy-nav a:nth-child(3) {
    display: none;
  }

  .hy-benefit {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hy-benefit__icon {
    margin: 0 auto;
  }
}

@media (max-width: 360px) {
  .hy-section .hy-section__head--benefits h2,
  .hy-section .hy-section__head--faq h2,
  .hy-section .hy-section__head--program h2 {
    font-size: 25px;
  }
}

@media (max-width: 340px) {
  .hy-section .hy-section__head--benefits h2,
  .hy-section .hy-section__head--faq h2,
  .hy-section .hy-section__head--program h2 {
    font-size: 23px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
