@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;0,800;1,400&display=swap');

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

:root {
  --red: #b91c1c;
  --red-bright: #c61a1b;
  --dark: #0b161d;
  --darkest: #09090b;
  --slate: #0f172a;
  --white: #ffffff;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --glass-bg: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.2);
}

html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--dark); color: var(--white); overflow-x: hidden; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── CONTAINER ── */
.container { max-width: 1820px; margin: 0 auto; padding: 0 90px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
  letter-spacing: -0.18px; text-transform: uppercase;
  padding: 0 50px; height: 60px; border-radius: 79px;
  border: none; cursor: pointer; overflow: hidden;
  position: relative; text-decoration: none;
}
.btn-primary img { width: 24px; height: auto; flex-shrink: 0; }

.btn-primary-sm {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: -0.16px; text-transform: uppercase;
  padding: 0 30px; height: 45px; border-radius: 79px;
  border: none; cursor: pointer; overflow: hidden;
  position: relative; text-decoration: none;
}
.btn-primary-sm img { width: 16px; height: 10px; flex-shrink: 0; }

.btn-secondary-sm {
  display: inline-flex; align-items: center; justify-content: center;
  align-self: flex-start; width: fit-content;
  background: var(--darkest); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: -0.16px; text-transform: uppercase;
  padding: 0 30px; height: 45px; border-radius: 79px;
  border: 2px solid transparent; cursor: pointer; overflow: hidden;
  position: relative; text-decoration: none;
  transition: border-color 0.25s;
}
.btn-secondary-sm:hover { border: 2px solid #000; }
.btn-secondary-sm img { width: 19px; flex-shrink: 0; }

.btn-outline-sm {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: -0.16px; text-transform: uppercase;
  padding: 0 30px; height: 45px; border-radius: 79px;
  border: 1.5px solid #fff; cursor: pointer; overflow: hidden;
  position: relative; white-space: nowrap; text-decoration: none;
}
.btn-outline-sm img { width: 19px; flex-shrink: 0; }

/* Circle ripple */
.btn-circle {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}
.btn-primary:hover .btn-circle,
.btn-primary-sm:hover .btn-circle,
.btn-secondary-sm:hover .btn-circle,
.btn-outline-sm:hover .btn-circle { transform: translate(-50%, -50%) scale(1); }

/* Text slide layers */
.btn-inner {
  display: inline-flex; align-items: center; gap: 12px;
  position: relative; z-index: 1;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}
.btn-inner--clone {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  transform: translateY(110%);
  color: #000;
}
.btn-inner--clone img { filter: invert(1); }
.btn-primary:hover .btn-inner:not(.btn-inner--clone),
.btn-primary-sm:hover .btn-inner:not(.btn-inner--clone),
.btn-secondary-sm:hover .btn-inner:not(.btn-inner--clone),
.btn-outline-sm:hover .btn-inner:not(.btn-inner--clone) { transform: translateY(-110%); opacity: 0; }

.btn-primary:hover .btn-inner--clone,
.btn-primary-sm:hover .btn-inner--clone,
.btn-secondary-sm:hover .btn-inner--clone,
.btn-outline-sm:hover .btn-inner--clone { transform: translateY(0); }

/* ── HEADER ── */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  position: fixed;
  background: #0000004a;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 7px 0;
  border-bottom: 1px solid #ffffff38;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 90px;
}
.site-logo {
  display: flex; align-items: center; gap: 16px;
}
.site-logo__icon { width: 100%; max-width: 364px; flex-shrink: 0; transition: max-width 0.3s ease; }
.scrolled .site-logo__icon { max-width: 254px; }

.site-nav {
  display: flex; align-items: center; gap: 70px;
}
.site-nav a {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 14px; color: #fff; text-transform: uppercase;
  letter-spacing: 0; line-height: 1.4;
  display: flex; align-items: center; gap: 10px;
  position: relative; text-decoration: none;
}
.site-nav a .nav-arrow {
  width: 18px; height: auto; opacity: 0.7;
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
}
.site-nav a.active .nav-arrow { opacity: 0.7; transform: translateX(0); }

/* ── BURGER ── */
.burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 6px; z-index: 200;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgb(9 9 11 / 87%);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu__nav {
  display: flex; flex-direction: column;
  align-items: center; gap: 36px;
}
.mobile-menu__link {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 22px; color: #fff; text-transform: uppercase;
  text-decoration: none; letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.mobile-menu__link:hover { opacity: 0.7; }
.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__close span {
  position: absolute; width: 26px; height: 2px;
  background: #fff; border-radius: 2px;
}
.mobile-menu__close span:nth-child(1) { transform: rotate(45deg); }
.mobile-menu__close span:nth-child(2) { transform: rotate(-45deg); }

@media (max-width: 1250px) {
  .site-nav, .site-header .btn-outline-sm { display: none; }
  .burger { display: flex; }
}

/* ── HERO ── */
.hero {
  position: relative; width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 700px;
  background: var(--dark); overflow: hidden;
}

.hero-slider { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  opacity: 0; transform: translateX(100%);
  pointer-events: none;
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.8, 0, 0.2, 1);
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-slide.active {
  opacity: 1; transform: translateX(0);
  pointer-events: auto;
}
.hero-slide.leaving {
  opacity: 1; transform: translateX(-100%);
  pointer-events: none;
}

.hero-slide__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.hero-slide__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgb(1 7 20 / 71%) 40%, rgb(2 9 28 / 30%) 100%);
}

/* Video slide */
.hero-slide__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-slide__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgb(2 11 24 / 67%) 40%, rgb(3 12 33 / 30%) 100%);
  pointer-events: none;
}

.hero-slide__content {
  position: relative; z-index: 1;
  width: 100%; padding: 0 90px 120px;
  display: flex; justify-content: space-between; align-items: flex-end;
}

.hero-slide__left { max-width: 900px; }
.hero-slide__copyright {
  font-size: 20px; color: #fff; opacity: 0.6; margin-bottom: 30px;
  font-style: italic; letter-spacing: -0.1px;
}

.hero-slide__subtitle-label {
  font-size: 14px; color: #fff; opacity: 0.7; margin-bottom: 8px;
}

.hero-slide__title {
  font-size: 68px; font-weight: 800; line-height: 1.1;
  text-transform: uppercase; letter-spacing: -0.5px;
  color: #fff; margin-bottom: 30px;
}

.hero-slide__sub {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
.hero-slide__sub-label {
  font-size: 14px; color: #fff; opacity: 0.6; white-space: nowrap;
}
.hero-slide__sub-text {
  font-size: 26px; color: #fff; font-style: italic; line-height: 1.3;
  max-width: 532px;
}

.hero-slide__right {
  display: flex; flex-direction: column; gap: 48px;
  align-items: flex-end; max-width: 518px; min-width: 300px;
}
.hero-slide__right-label { font-size: 14px; color: #fff; opacity: 0.6; }
.hero-slide__right-title { font-size: 24px; color: #fff; font-style: italic; line-height: 1.3; }

.hero-cards { display: flex; gap: 22px; }

.hero-card {
  width: 248px; height: 314px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 25px; overflow: hidden;
  backdrop-filter: blur(14px);
  display: flex; flex-direction: column; padding: 18px 15px 15px;
  position: relative;
}
.hero-card__img {
  width: 100%; height: 169px; border-radius: 10px; object-fit: cover;
  margin-bottom: 11px; flex-shrink: 0;
}
.hero-card__title {
  font-size: 16px; font-weight: 700; color: #fff; line-height: 1.2;
  flex: 1;
}
.hero-card__footer {
  display: flex; align-items: center; justify-content: space-between; margin-top: 10px;
}
.hero-card__desc {
  font-size: 12px; color: #fff; line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  max-width: 174px;
}
.hero-card__arrow { width: 22px; height: 22px; flex-shrink: 0; }

/* Slider dots */
.hero-dots {
  position: absolute; bottom: 44px; left: 90px; right: 90px;
  display: flex; gap: 20px; z-index: 10;
}
.hero-dot {
  flex: 1; height: 3px; border-radius: 90px;
  background: rgba(217,217,217,0.29);
  cursor: pointer; border: none; padding: 0;
  position: relative; overflow: hidden;
}
.hero-dot__fill {
  display: block;
  position: absolute; top: 0; left: 0; height: 100%; width: 0;
  background: var(--red-bright);
  border-radius: 90px;
}
.hero-dot.active .hero-dot__fill {
  animation: dotProgress 1.2s cubic-bezier(0.8, 0, 0.2, 1) forwards;
}
@keyframes dotProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* Next slide preview */
.hero-preview {
  position: absolute;
  right: 90px;
  bottom: 120px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: flex-start;
}
.hero-preview__header {
  display: flex; align-items: center; gap: 14px;
}
.hero-preview__label {
  font-size: 14px; color: #fff; opacity: 0.6;
}
.hero-preview__next {
  font-size: 20px; font-weight: 700; color: #fff; font-style: italic;
  letter-spacing: -0.15px;
}
.hero-preview__card {
  width: 240px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 25px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  padding: 15px;
}
.hero-preview__card:hover { transform: translateY(-4px); }
.hero-preview__img {
  width: 100%; aspect-ratio: 4 / 2.8;
  object-fit: cover; flex-shrink: 0;
  border-radius: 10px;
}
.hero-preview__info {
  padding: 12px 0 4px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.hero-preview__title {
  font-size: 15px; font-weight: 700; color: #fff; line-height: 1.2;
  margin-bottom: 14px;
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.hero-preview__footer {
  display: flex; align-items: center; justify-content: space-between; gap: 15px;
}
.hero-preview__desc {
  font-size: 11px; color: rgba(255,255,255,0.65); line-height: 1.35;
  overflow: hidden;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  max-width: 210px;
  max-height: calc(1.35em * 2);
}
.hero-preview__arrow-wrap {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0; margin-left: 8px;
  overflow: hidden;
}
.hero-preview__arrow {
  width: 22px; height: 22px;
  display: block;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.hero-preview__arrow-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/arrow.svg') center / contain no-repeat;
  transform: translate(-100%, 100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-preview__card:hover .hero-preview__arrow {
  transform: translate(100%, -100%);
  opacity: 0;
}
.hero-preview__card:hover .hero-preview__arrow-wrap::after {
  transform: translate(0, 0);
}

/* ── ABOUT ── */
.about {
  background: #fff; padding: 120px 0;
}
.about .container {
  display: grid;
  grid-template-columns: 260px 1fr 568px;
  grid-template-rows: auto auto;
  gap: 0 80px;
  align-items: start;
}

.about__heading {
  grid-column: 1 / 3;
  grid-row: 1;
  padding-bottom: 40px;
}
.about__tag {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 14px; color: var(--slate);
  text-transform: uppercase; opacity: 0.5; margin-bottom: 23px;
  letter-spacing: 0;
}
.about__tag-arrow { width: 11px; height: 11px; filter: invert(1) brightness(0); }

.about__h2 {
  font-size: 56px;
  font-weight: 800;
  color: var(--slate);
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.about__h2 span { font-weight: 800; }

.about__img-left {
  grid-column: 1; grid-row: 1 / 3;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.about__img-left img {
  width: 100%; height: 290px; border-radius: 32px; object-fit: cover; display: block;
}

.about__body {
  grid-column: 2; grid-row: 2;
  display: flex; flex-direction: column; gap: 30px;
  padding-top: 0;
}
.about__body-title {
  font-size: 24px; font-weight: 700; color: var(--slate);
  line-height: 1.25; letter-spacing: -0.15px; text-transform: uppercase;
}
.about__body-text {
  font-size: 16px; font-weight: 500; color: var(--slate);
  line-height: 1.5; text-align: justify;
}

.about__img-right {
  grid-column: 3; grid-row: 1 / 3;
  width: 100%; height: 745px; border-radius: 32px; object-fit: cover;
  position: relative;
}

.about__img-right-inner {
  position: relative; width: 100%; height: 745px; border-radius: 32px; overflow: hidden;
}
.about__img-right-inner img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ── ACTIVITIES ── */
.activities {
  background: var(--darkest); padding: 120px 0;
  position: relative; overflow: hidden;
}
.activities__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.activities__overlay {
  position: absolute; inset: 0;
  background: rgb(21 21 26 / 87%);
  z-index: 1;
}
.activities .container { position: relative; z-index: 2; }
.activities__header { margin-bottom: 67px; }
.activities__tag {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 14px; color: var(--zinc-400);
  text-transform: uppercase; opacity: 0.8; margin-bottom: 23px;
}
.activities__tag-arrow { width: 11px; height: 11px; }

.activities__title {
  font-size: 56px; font-weight: 700; color: #fff;
  line-height: 1.2; letter-spacing: -0.5px; max-width: 793px;
}

.activities__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.activity-card {
  height: auto;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--glass-border);
  border-radius: 25px;
  overflow: hidden;
  backdrop-filter: blur(25px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  transition: background 0.2s;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.activity-card:hover { background: rgb(144 144 144 / 8%); border: 1px solid rgb(255 255 255 / 37%); }

.activity-card__img-wrap {
  width: 100%; aspect-ratio: 356/279; border-radius: 10px; overflow: hidden;
  flex-shrink: 0; margin-bottom: 10px;
}
.activity-card__img { width: 100%; height: 100%; object-fit: cover; }
.activity-card__title {
  font-size: 18px; font-weight: 700; color: #fff; line-height: 22px;
  flex: 1; overflow: hidden;
}
.activity-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 14px;
}
.activity-card__desc {
  font-size: 12px; color: #fff; line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  max-width: 174px; opacity: 0.8;
}
.activity-card__arrow-wrap {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
  overflow: hidden;
}
.activity-card__arrow {
  width: 22px; height: 22px;
  display: block;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.activity-card__arrow-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/arrow.svg') center / contain no-repeat;
  transform: translate(-100%, 100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.activity-card:hover .activity-card__arrow {
  transform: translate(100%, -100%);
  opacity: 0;
}
.activity-card:hover .activity-card__arrow-wrap::after {
  transform: translate(0, 0);
}

/* ── POPUP ── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 20px;
}
.popup-overlay.open { opacity: 1; pointer-events: auto; }

.popup {
  position: relative;
  background: var(--darkest);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
  width: 100%; max-width: 900px;
  transform: translateY(30px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.popup-overlay.open .popup { transform: translateY(0); }

.popup__close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08); border: none; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 1; transition: background 0.2s;
}
.popup__close:hover { background: rgba(255,255,255,0.15); }
.popup__close span {
  position: absolute; width: 16px; height: 1.5px;
  background: #fff; border-radius: 2px;
}
.popup__close span:nth-child(1) { transform: rotate(45deg); }
.popup__close span:nth-child(2) { transform: rotate(-45deg); }

.popup__left {
  padding: 50px 40px;
  background: rgba(255,255,255,0.03);
  display: flex; flex-direction: column; gap: 24px;
}
.popup__label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--red); opacity: 0.9;
}
.popup__title {
  font-size: 32px; font-weight: 800; color: #fff;
  line-height: 1.15; letter-spacing: -0.5px;
}
.popup__contacts { display: flex; flex-direction: column; gap: 16px; margin-top: auto; }
.popup__contact-item {
  display: flex; flex-direction: column; gap: 4px;
  text-decoration: none; padding: 14px 18px;
  border: 1px solid var(--glass-border); border-radius: 14px;
  transition: background 0.2s;
}
.popup__contact-item:hover { background: rgba(255,255,255,0.05); }
.popup__contact-label { font-size: 11px; color: #fff; opacity: 0.5; text-transform: uppercase; letter-spacing: 0.08em; }
.popup__contact-value { font-size: 15px; font-weight: 600; color: #fff; }

.popup__right { padding: 80px 40px 50px; }

.popup-form { display: flex; flex-direction: column; gap: 14px; height: 100%; }
.popup-form__field input,
.popup-form__field textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border); border-radius: 12px;
  padding: 14px 18px; color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.2s;
  resize: none;
}
.popup-form__field input::placeholder,
.popup-form__field textarea::placeholder { color: rgba(255,255,255,0.35); }
.popup-form__field input:focus,
.popup-form__field textarea:focus { border-color: rgba(255,255,255,0.3); }
.popup-form__submit { margin-top: auto; }
.popup-form__status { font-size: 13px; color: #fff; opacity: 0.7; text-align: center; min-height: 18px; }

@media (max-width: 640px) {
  .popup { grid-template-columns: 1fr; }
  .popup__left { padding: 40px 24px 24px; }
  .popup__right { padding: 24px; }
  .popup__title { font-size: 24px; }
}

/* ── CTA ── */
.cta-section {
  background: var(--darkest); position: relative; overflow: hidden;
  padding: 112px 0 0;
}
.cta-section__bg {
  position: absolute; top: 0; left: 0; width: 672px; height: 387px;
  opacity: 0.5; pointer-events: none;
}
.cta-section__bg img { width: 100%; height: 100%; object-fit: cover; }

.cta-section__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 60px;
  text-align: center; padding-bottom: 80px;
}
.cta-section__title {
  font-size: 90px; font-weight: 800; color: #fff;
  line-height: 1; letter-spacing: -0.8px; text-transform: uppercase;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--darkest); padding: 0 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.site-footer .container { padding-top: 0; padding-bottom: 0; }

.footer-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { display: flex; align-items: center; gap: 16px; }
.footer-logo__icon { flex-shrink: 0; }

.footer-nav {
  display: flex; align-items: center; gap: 40px;
}
.footer-nav a {
  font-size: 16px; font-weight: 500; color: #fff;
  text-transform: uppercase; letter-spacing: -0.18px; line-height: 22px;
}
.footer-nav a:hover { opacity: 0.7; }

.footer-contact {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 16px; font-weight: 500; color: #fff; letter-spacing: -0.18px;
}
.footer-contact-group { display: flex; gap: 10px; align-items: center; }
.footer-phones { display: flex; flex-direction: column; gap: 6px; }
.footer-phone-row { display: flex; align-items: center; gap: 8px; }
.footer-phone { color: #fff; text-decoration: none; font-weight: 800; transition: opacity 0.2s; }
.footer-phone:hover { opacity: 0.7; }
.footer-phone-note { font-size: 12px; font-weight: 400; opacity: 0.6; }
.popup__contact-note { font-size: 11px; font-weight: 400; opacity: 0.6; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0;
  font-size: 16px; font-weight: 400; color: var(--zinc-300);
  letter-spacing: -0.18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom a { color: var(--zinc-300); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; align-items: center; gap: 10px; }
.footer-dev { display: flex; align-items: center; gap: 10px; }

/* ── RESPONSIVE ── */
@media (max-width: 1520px) {
  .about .container { grid-template-columns: 1fr 460px; }
  .about__heading { grid-column: 1; }
  .about__body { grid-column: 1; grid-row: 2; }
  .about__img-left { display: none; }
  .about__img-right { grid-column: 2; grid-row: 1 / 3; }
}
@media (max-width: 1440px) {
  .hero-slide__title { font-size: 52px; }
  .about__h2 { font-size: 44px; }
  .activities__title { font-size: 44px; }
  .cta-section__title { font-size: 70px; }
  .activities__grid { grid-template-columns: repeat(4, 1fr); }
  .hero-slide__left { max-width: 730px; }
}
@media (max-width: 1200px) {
  .hero-slide__content { position: relative; z-index: 1; width: 100%; padding: 0 40px 120px; display: flex; justify-content: space-between; align-items: flex-end; }
  .hero-preview { position: absolute; right: 50px; bottom: 120px; z-index: 10; cursor: pointer; display: flex; flex-direction: column; gap: 36px; align-items: flex-start; }
  .site-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 0 50px; }
  .hero-dots { left: 40px; right: 40px; }
}
@media (max-width: 1250px) {
  .container { padding: 0 40px; }
}
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .site-header__inner { padding: 0 40px; }
  .hero-slide__title { font-size: 40px; }
  .hero-slide__content { padding: 0 40px 80px; }
  .hero-preview { display: none; }
  .about .container { grid-template-columns: 1fr; }
  .about__img-left, .about__img-right-inner, .about__img-right { display: none; }
  .about__heading, .about__body { grid-column: 1; }
  .activities__title { font-size: 36px; }
  .activities__grid { grid-template-columns: repeat(3, 1fr); }
  .cta-section__title { font-size: 50px; }
  .footer-main { flex-direction: column; gap: 30px; align-items: flex-start; }
}
@media (max-width: 820px) {
  .footer-bottom { flex-direction: column; gap: 16px; }
  .footer-contact { flex-direction: column; gap: 15px; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .activities__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .site-header__inner { padding: 0 16px; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-nav { display: flex; align-items: center; gap: 20px; flex-direction: column; width: 100%; }
}
@media (max-width: 480px) {
  .hero-slide__content { padding: 0 14px calc(70px + env(safe-area-inset-bottom, 0px)); }
  .hero-slide__sub-text { font-size: 16px; color: #fff; font-style: italic; line-height: 1.3; max-width: 532px; }
  .hero-slide__sub { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 45px; }
  .hero-dots { position: absolute; bottom: max(24px, env(safe-area-inset-bottom, 0px) + 12px); left: 16px; right: 16px; display: flex; gap: 10px; z-index: 10; }
  .about__h2 { font-size: 32px; }
  .about { background: #fff; padding: 60px 0; }
  .activities { background: var(--darkest); padding: 60px 0; position: relative; overflow: hidden; }
  .activities__title { font-size: 32px; }
  .activities__header { margin-bottom: 32px; }
  .container { padding: 0 16px; }
  .activities__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .about__body-title { font-size: 18px; font-weight: 800; color: var(--slate); line-height: 1.25; letter-spacing: -0.15px; text-transform: uppercase; }
  .cta-section__title { font-size: 35px; line-height: 1.2; }
  .cta-section__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center; padding-bottom: 80px; }
  .footer-nav { display: flex; align-items: center; gap: 20px; flex-direction: column; width: 100%; }
  .footer-contact { flex-direction: column; gap: 15px; }
  .footer-contact-group { display: flex; gap: 10px; align-items: center; flex-direction: column; }
  .footer-phone-row { flex-direction: column; gap: 2px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
}
@media (max-width: 400px) {
  .activities__grid { grid-template-columns: 1fr; }
}

/* ── 404 PAGE ── */
.error404 .site-header {
  position: fixed;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.page-404 {
  min-height: 100vh;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  padding: 120px 20px;
}
.page-404__inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 24px;
}
.page-404__code {
  font-size: 180px; font-weight: 800; line-height: 1;
  color: var(--red); letter-spacing: -4px;
  text-transform: uppercase;
}
.page-404__title {
  font-size: 40px; font-weight: 800; color: #fff;
  line-height: 1.1; letter-spacing: -0.5px; text-transform: uppercase;
}
.page-404__text {
  font-size: 16px; font-weight: 500; color: var(--zinc-400);
  line-height: 1.6; max-width: 440px; margin-bottom: 16px;
}
@media (max-width: 480px) {
  .page-404__code { font-size: 100px; letter-spacing: -2px; }
  .page-404__title { font-size: 26px; }
}

/* ── CF7 IN POPUP ── */
.popup .wpcf7 { height: 100%; }
.popup .wpcf7-form {
  display: flex; flex-direction: column; gap: 14px; height: 100%;
}
.popup .wpcf7-form p { margin: 0; }
.popup .wpcf7-form-control-wrap { display: block; width: 100%; }
.popup .wpcf7 input[type="text"],
.popup .wpcf7 input[type="email"],
.popup .wpcf7 input[type="tel"],
.popup .wpcf7 textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border); border-radius: 12px;
  padding: 14px 18px; color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.2s; resize: none;
}
.popup .wpcf7 input::placeholder,
.popup .wpcf7 textarea::placeholder { color: rgba(255,255,255,0.35); }
.popup .wpcf7 input:focus,
.popup .wpcf7 textarea:focus { border-color: rgba(255,255,255,0.4); }
.popup .wpcf7 input[type="submit"] {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 60px;
  background: var(--red); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 16px; text-transform: uppercase; letter-spacing: -0.18px;
  border: none; border-radius: 79px; cursor: pointer;
  margin-top: auto; transition: opacity 0.2s;
}
.popup .wpcf7 input[type="submit"]:hover { opacity: 0.88; }
.popup .wpcf7-response-output {
  font-size: 13px; color: #fff; opacity: 0.75; text-align: center;
  border: none !important; margin: 0 !important; padding: 0 !important;
}
.popup .wpcf7-not-valid-tip { font-size: 11px; color: #e74c3c; }
.popup .wpcf7 .wpcf7-spinner { display: none; }
