/* =========================================
   1) Variables
========================================= */
/* =========================================
   2) Mixins
========================================= */
/* =========================================
   3) Base Reset
========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: #ffefdd;
  color: #292625;
  line-height: 1.45;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

/* =========================================
   4) Typography
========================================= */
h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
}

p {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: #292625;
}

small {
  font-size: 0.875rem;
}

/* =========================================
   5) Layout
========================================= */
.container {
  width: min(100%, 75rem);
  margin-inline: auto;
  padding-inline: 2.8125rem;
  box-sizing: border-box;
}

.section {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 239, 221, 0.95);
  backdrop-filter: blur(0.375rem);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9375rem;
  gap: 1.5rem;
}

/* =========================================
   6) Components
========================================= */
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(0.97);
}

.btn--primary {
  background: #ffb3d9;
  color: #292625;
}

.btn-link {
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.btn-link:hover,
.btn-link:focus-visible {
  border-color: currentColor;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo__img {
  display: block;
  width: 7.8125rem;
  height: 1.875rem;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Nav + Mobile */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}

.site-nav a {
  font-size: 1rem;
  font-weight: 600;
}

.site-header .site-nav .btn--primary {
  width: 12.5rem;
  height: 2.5rem;
  padding: 0;
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.625rem;
  border: 1px solid #292625;
  background: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #292625;
  margin: 0.25rem 0;
}

/* Hero */
.hero {
  overflow: clip;
  padding-top: 0;
  padding-bottom: clamp(4rem, 11vw, 8rem);
}

.hero__inner {
  position: relative;
  min-height: clamp(30rem, 84vw, 30rem);
  display: grid;
  place-items: center;
  text-align: center;
}

.hero__bg-hy {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 57.5rem;
  height: 28rem;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 0;
}

.hero__ring {
  position: absolute;
  top: 0;
  width: 38rem;
  height: 38rem;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
  animation: spin 38s linear infinite;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 2rem;
  margin-top: clamp(0rem, 13vw, 13rem);
}

.hero__content h1 span {
  display: block;
}

.hero__content h1 {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0;
}

.hero__content .btn {
  width: 12.5rem;
  height: 3.125rem;
  padding: 0;
  font-size: 1.125rem;
  font-weight: 600;
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.875rem;
  align-items: center;
}

.about.section {
  padding-block: clamp(3rem, 7vw, 5rem);
}

.about .container {
  max-width: 63.25rem;
  box-sizing: border-box;
}

.program.section {
  padding-top: 0;
  padding-bottom: 0;
}

.about__content h2 {
  max-width: 20ch;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.125rem;
}

.about__content p {
  max-width: 42ch;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
}

.about__media-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.ph--media {
  width: min(100%, 28rem);
  aspect-ratio: 16/10;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  box-shadow: none;
}

.media-link {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}

.media-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.media-link::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4.0625rem;
  height: 4.25rem;
  transform: translate(-50%, -50%);
  background: url("./images/play.svg") center/contain no-repeat;
  pointer-events: none;
  animation: playPulse 2.6s ease-in-out infinite;
  transition: transform 0.25s ease;
}

.media-link:hover::before,
.media-link:focus-visible::before {
  transform: translate(-50%, -50%) scale(1.08);
}

.about__ring {
  position: absolute;
  width: min(25rem, 84vw);
  height: auto;
  z-index: -1;
  animation: spin-reverse 44s linear infinite;
}

.page .container {
  max-width: 63.25rem;
  box-sizing: border-box;
}
.page h2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.page ul, .page ol {
  margin: 2rem 0;
}
.page ul ul, .page ol ul {
  margin: 0;
}
.page ul li, .page ol li {
  font-size: 1.125rem;
}
.page .table-wrap {
  margin: 2rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.page table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background: #ffffff;
}
.page th,
.page td {
  border: 1px solid #292625;
  padding: 0.75rem 0.875rem;
  text-align: left;
  vertical-align: top;
  font-size: 1rem;
  line-height: 1.2;
}
.page th {
  background: #f8e5d2;
  font-weight: 700;
}
.page tbody tr:nth-child(even) {
  background: #fff7ef;
}
.page tbody tr:hover {
  background: #fff1e4;
}
@media (max-width: 43.75rem) {
  .page table {
    min-width: 38rem;
  }
}

/* Card */
.card {
  background: #ffffff;
  border-radius: 0.625rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: none;
  text-align: center;
}

.card h2 {
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.program .card {
  border-radius: 0.625rem;
  padding: 3rem 1.5rem;
}

.program .card h2 {
  max-width: 25ch;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 2.375rem;
}

.program .card .btn {
  width: 12.5rem;
  height: 3.125rem;
  padding: 0;
  font-size: 1.125rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 70ch;
  margin-inline: auto;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3125rem 0.5625rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  border: none;
  position: relative;
  isolation: isolate;
  color: #292625;
}

@media (max-width: 582px) {
  .chip {
    width: 100%;
  }
}
.chip::before,
.chip::after {
  content: "";
  position: absolute;
  border-radius: 0.5rem;
  z-index: -1;
  pointer-events: none;
}

.chip::before {
  inset: -0.1875rem;
}

.chip::after {
  inset: -0.375rem;
}

.program .chips .chip:nth-child(1),
.program .chips .chip:nth-child(4) {
  background: #dedb7c;
}

.program .chips .chip:nth-child(1)::before,
.program .chips .chip:nth-child(4)::before {
  background: rgba(222, 219, 124, 0.5);
}

.program .chips .chip:nth-child(1)::after,
.program .chips .chip:nth-child(4)::after {
  background: rgba(222, 219, 124, 0.25);
}

.program .chips .chip:nth-child(2),
.program .chips .chip:nth-child(5) {
  background: #ffefdd;
}

.program .chips .chip:nth-child(2)::before,
.program .chips .chip:nth-child(5)::before {
  background: rgba(255, 239, 221, 0.5);
}

.program .chips .chip:nth-child(2)::after,
.program .chips .chip:nth-child(5)::after {
  background: rgba(255, 239, 221, 0.25);
}

.program .chips .chip:nth-child(3),
.program .chips .chip:nth-child(6),
.program .chips .chip:last-child {
  background: #01514e;
  color: #ffefdd;
}

.program .chips .chip:nth-child(3)::before,
.program .chips .chip:nth-child(6)::before,
.program .chips .chip:last-child::before {
  background: rgba(1, 81, 78, 0.5);
}

.program .chips .chip:nth-child(3)::after,
.program .chips .chip:nth-child(6)::after,
.program .chips .chip:last-child::after {
  background: rgba(1, 81, 78, 0.25);
}

/* Quote Panel */
.quote {
  position: relative;
  margin: 0;
  border-radius: 0.625rem;
  background: #ffb3d9 url("./images/hy-pink-bg.svg") center/cover no-repeat;
  padding: clamp(2rem, 7vw, 8.2rem);
  text-align: center;
  overflow: hidden;
}

.quote p {
  position: relative;
  z-index: 1;
  color: #292625;
  font-weight: 500;
  font-size: clamp(1.75rem, 6vw, 3.75rem);
  line-height: 1;
  max-width: 30ch;
  margin-inline: auto;
}

.quote-section.section {
  padding-top: 1.25rem;
  padding-bottom: 0;
}

/* Contact */
.contact {
  isolation: isolate;
  padding-block: clamp(5rem, 7vw, 11rem);
}

.contact__inner {
  max-width: 51.25rem;
  text-align: center;
}

.contact__inner h2 {
  margin-inline: auto;
  max-width: 20ch;
  font-size: clamp(2rem, 5.2vw, 3.125rem);
  line-height: 1;
  font-weight: 600;
  margin-bottom: 2rem;
}

.contact__lead {
  max-width: 60ch;
  margin-inline: auto;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 3rem;
}

.contact-form {
  text-align: left;
}

.contact-form__note {
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.75rem;
}

.form-alert {
  min-height: 1.25rem;
  margin-bottom: 0.625rem;
  color: #9f173d;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
}

.form-alert[data-type=error] {
  color: #9f173d;
}

.form-alert[data-type=success] {
  color: #2d5c56;
}

.form-alert[data-type=info] {
  color: #292625;
}

.form-grid {
  display: grid;
  gap: 1.875rem;
  margin-bottom: 1.875rem;
}

.form-grid--2 {
  grid-template-columns: 1fr 1fr;
}

.field:not(.field--checkbox) input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 179, 217, 0.45);
  background: #161616;
  color: #ffffff;
  border-radius: 0.3125rem;
  height: 3.125rem;
  padding: 0 1.25rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field:not(.field--checkbox) > label {
  font-size: 1.125rem;
  font-weight: 600;
}

.field textarea {
  height: 3.125rem;
  resize: vertical;
  min-height: 6.25rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.field:not(.field--checkbox) input::-moz-placeholder, .field textarea::-moz-placeholder {
  color: rgba(255, 179, 217, 0.92);
  font-size: 1.125rem;
  font-weight: 600;
}

.field:not(.field--checkbox) input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 179, 217, 0.92);
  font-size: 1.125rem;
  font-weight: 600;
}

.field:not(.field--checkbox) input:focus,
.field textarea:focus {
  border-color: #ffb3d9;
  box-shadow: 0 0 0 0.2rem rgba(255, 179, 217, 0.22);
}

.field-error {
  display: none;
  color: #9f173d;
  font-size: 0.85rem;
  line-height: 1.2;
}

.field-error:not(:empty) {
  display: block;
  margin-top: 0.35rem;
}

.field--checkbox {
  margin-top: 0.15rem;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.65rem;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 400;
  color: #292625;
}

.checkbox input[type=checkbox] {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  padding: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  box-shadow: none;
  background: url("./images/unchecked.svg") center/contain no-repeat;
  cursor: pointer;
}

.checkbox input[type=checkbox]:checked {
  background-image: url("./images/checked.svg");
}

.checkbox input[type=checkbox]:focus,
.checkbox input[type=checkbox]:focus-visible {
  outline: none;
  border: none;
  box-shadow: none;
}

.checkbox a {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.form-actions {
  margin-top: 1.25rem;
  text-align: center;
}

.contact .form-actions .btn {
  width: 21.875rem;
  height: 3.125rem;
  padding: 0;
}

.form-result {
  min-height: 1.25rem;
  margin-top: 0.85rem;
  text-align: center;
  font-weight: 500;
  color: #2d5c56;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding-block: 5rem 0;
}
.site-footer a {
  border-color: currentColor;
}
.site-footer a:hover {
  border-color: transparent;
}

.footer-bg {
  position: relative;
}

.footer__bg-by {
  position: absolute;
  left: 50%;
  bottom: -72rem;
  transform: translateX(-50%);
  width: min(134.75rem, 120vw);
  height: clamp(134.75rem, 22vw, 134.75rem);
  background: url("./images/fy.svg") center/contain no-repeat;
  color: transparent;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: -1;
}

#wrapper {
  overflow: hidden;
}

@media (max-width: 782px) {
  .footer__bg-by {
    background: url("./images/fy.svg") center/cover no-repeat;
  }
  .contact .form-actions .btn {
    width: 12rem;
  }
}
.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 1rem;
}

.site-footer__copy {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  color: #292625;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 1.875rem;
}

.site-footer__social a {
  width: 1.875rem;
  height: 1.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__social img {
  width: 1.875rem;
  height: 1.875rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.site-footer__privacy {
  justify-self: end;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-footer__privacy:hover,
.site-footer__privacy:focus-visible {
  border-color: currentColor;
}

.site-footer__partners {
  background: #ffefdd;
  height: 150px;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
}

.site-footer__partners-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.site-footer__partners-text {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

.site-footer__partners-text--right {
  text-align: right;
}

.site-footer__partners-logos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
}

.site-footer__partner-logo--memoires {
  width: 131px;
  height: 53px;
  -o-object-fit: contain;
     object-fit: contain;
}

.site-footer__partner-logo--nezabudnuti {
  width: 98px;
  height: 84px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 56.25rem) {
  .site-footer__partners {
    height: auto;
    padding-block: 1.5rem;
  }
  .site-footer__partners-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  .site-footer__partners-text--right {
    text-align: center;
  }
}
/* =========================================
   7) Utilities
========================================= */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.text-center {
  text-align: center;
}

.js-reveal {
  opacity: 0;
  transform: translateY(0.875rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

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

.is-locked {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

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

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(56rem, 92vw);
}

.lightbox__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.625rem;
  overflow: hidden;
  background: #000;
}

.lightbox__video-wrap iframe,
.lightbox__video-wrap video {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 56.25rem) {
  .container {
    padding-inline: 1.25rem;
  }
  .site-header__inner {
    padding-block: 0.9375rem;
  }
  .nav-toggle {
    display: none;
  }
  .site-nav {
    position: static;
    min-width: auto;
    display: flex;
    justify-items: initial;
    gap: 1.875rem;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }
  .hero__ring {
    top: 2rem;
  }
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__content h2,
  .about__content p {
    max-width: none;
  }
  .about__media-wrap {
    margin-top: 0.6rem;
  }
  .form-grid--2 {
    grid-template-columns: 1fr;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.85rem;
  }
  .site-footer__privacy {
    justify-self: center;
  }
}
@media (max-width: 43.75rem) {
  .hero {
    padding-bottom: 0;
  }
  .about.section {
    padding-top: 0;
  }
  .hero__bg-hy {
    width: min(57.5rem, 120vw);
    height: auto;
  }
  .hero__ring {
    top: 2rem;
    width: min(34rem, 88vw);
    height: min(34rem, 88vw);
  }
  .site-nav .btn-link {
    display: none;
  }
  .site-header .site-nav .btn--primary {
    width: auto;
    min-width: 8.5rem;
    height: 2.25rem;
    padding: 0 0.875rem;
    font-size: 0.9rem;
  }
  .card {
    border-radius: 1.4rem;
  }
  .quote {
    border-radius: 1.35rem;
  }
  .site-footer {
    padding-top: 4rem;
  }
}
/* Motion */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes playPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.96);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.03);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.96);
  }
}
@media (prefers-reduced-motion: reduce) {
  .media-link::before {
    animation: none;
  }
  .js-reveal,
  .js-reveal.is-visible {
    transition: none;
    opacity: 1;
    transform: none;
  }
}/*# sourceMappingURL=styles.css.map */