/* ═══════════════════════════════════════════════════════
   Hampton by Hilton — 10 лет | Юбилейный сайт
   Цвета: брендбук Hampton (синий #0047b5, красный #d03242)
   Стиль: 2026, минимализм, плавные анимации
   ═══════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Merriweather';
  src: url('fonts/merriweather/Merriweather-Light.ttf') format('truetype');
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url('fonts/merriweather/Merriweather-LightItalic.ttf') format('truetype');
  font-style: italic;
  font-weight: 300;
  font-display: swap;
}

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

@font-face {
  font-family: 'Merriweather';
  src: url('fonts/merriweather/Merriweather-Italic.ttf') format('truetype');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

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

@font-face {
  font-family: 'Merriweather';
  src: url('fonts/merriweather/Merriweather-BoldItalic.ttf') format('truetype');
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url('fonts/merriweather/Merriweather-Black.ttf') format('truetype');
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url('fonts/merriweather/Merriweather-BlackItalic.ttf') format('truetype');
  font-style: italic;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: 'Simple Joys';
  src:
    local('Simple Joys'),
    local('Simple Joys 2.0'),
    local('SimpleJoys'),
    url('fonts/merriweather/SimpleJoys-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

/* ── CSS Variables ── */
:root {
  --blue: #0047b5;
  --blue-dark: #003080;
  --blue-light: #e8f0fe;
  --red: #d03242;
  --red-light: #fde8ea;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --cream: #f0ece4;
  --ink: #0a1628;
  --ink-light: #3d4f6f;
  --ink-muted: #7a8ba8;
  --gold: #ffc83d;
  --teal: #00a5a8;

  --font-sans: 'Merriweather', Georgia, 'Times New Roman', serif;
  --font-serif: 'Merriweather', Georgia, 'Times New Roman', serif;
  --font-script: 'Simple Joys', 'Merriweather', Georgia, 'Times New Roman', serif;
  --font-accent: 'Merriweather', Georgia, 'Times New Roman', serif;

  --container: min(1280px, calc(100% - 48px));
  --container-sm: min(900px, calc(100% - 48px));

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;

  --shadow-xl: 0 32px 64px rgba(0, 71, 181, 0.12);
  --shadow-lg: 0 20px 48px rgba(10, 22, 40, 0.1);
  --shadow-md: 0 12px 32px rgba(10, 22, 40, 0.08);
  --shadow-sm: 0 4px 16px rgba(10, 22, 40, 0.06);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 80px;
  --safe-top: env(safe-area-inset-top, 0px);

  --hex: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--blue-dark);
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

::selection {
  background: rgba(0, 71, 181, 0.15);
  color: var(--blue-dark);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: var(--blue);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.preloader.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.05);
}

.preloader__hex {
  position: relative;
  width: 120px;
  height: 104px;
}

.preloader__svg {
  width: 100%;
  height: 100%;
}

.preloader__outline {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: preloaderDraw 2s var(--ease) forwards;
  stroke: rgba(255, 255, 255, 0.6);
}

@keyframes preloaderDraw {
  to { stroke-dashoffset: 0; }
}

.preloader__num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  animation: preloaderPulse 1.2s ease-in-out infinite alternate;
}

@keyframes preloaderPulse {
  from { opacity: 0.5; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.preloader__bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.preloader__fill {
  height: 100%;
  width: 0;
  background: var(--white);
  border-radius: 10px;
  transition: width 0.3s linear;
}

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
  mix-blend-mode: difference;
  display: none;
}

.cursor--dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border: none;
  mix-blend-mode: normal;
}

@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
}

.cursor.is-active {
  width: 60px;
  height: 60px;
  border-color: var(--red);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: calc(var(--nav-h) + var(--safe-top));
  padding-top: var(--safe-top);
  display: flex;
  align-items: center;
  transition: background 0.4s, box-shadow 0.4s, transform 0.4s var(--ease);
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0, 71, 181, 0.08);
}

.nav.is-hidden {
  transform: translateY(-100%);
}

.nav__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--nav-h);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.16);
  flex-shrink: 0;
}

.nav.is-scrolled .nav__brand {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 71, 181, 0.08);
}

.nav__logo {
  height: 40px;
  width: auto;
  display: block;
  transition: transform 0.3s var(--ease);
}

.nav__brand:hover .nav__logo {
  transform: scale(1.02);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav.is-scrolled .nav__link {
  color: var(--ink-light);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: width 0.4s var(--ease), background 0.3s;
}

.nav.is-scrolled .nav__link::after {
  background: var(--blue);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--white);
}

.nav.is-scrolled .nav__link:hover,
.nav.is-scrolled .nav__link.is-active {
  color: var(--blue);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 24px;
  border-radius: 999px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}

.nav.is-scrolled .nav__cta {
  background: var(--blue);
  border-color: var(--blue);
}

.nav__cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s;
}

.nav.is-scrolled .nav__burger span {
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 71, 181, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--safe-top);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

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

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu__link {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.3s;
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(7) { transition-delay: 0.35s; }

.mobile-menu__link:hover {
  color: var(--gold);
}

.mobile-menu__link--cta {
  margin-top: 16px;
  font-size: 18px;
  padding: 14px 36px;
  border: 2px solid var(--white);
  border-radius: 999px;
}

/* ══════════════ HERO ══════════════ */
.hero {
  position: relative;
  min-height: calc(100vh + var(--safe-top));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 60%, #001a4d 100%);
  padding: calc(120px + var(--safe-top)) 24px 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__hex {
  position: absolute;
  clip-path: var(--hex);
  opacity: 0.06;
  animation: hexFloat 20s ease-in-out infinite;
}

.hero__hex--1 {
  width: 400px; height: 400px;
  top: -80px; right: -60px;
  background: var(--white);
  animation-delay: 0s;
}
.hero__hex--2 {
  width: 250px; height: 250px;
  bottom: 10%; left: -40px;
  background: var(--red);
  animation-delay: -5s;
}
.hero__hex--3 {
  width: 180px; height: 180px;
  top: 30%; right: 15%;
  background: var(--gold);
  animation-delay: -10s;
}
.hero__hex--4 {
  width: 300px; height: 300px;
  bottom: -60px; right: 25%;
  background: var(--white);
  animation-delay: -15s;
}
.hero__hex--5 {
  width: 120px; height: 120px;
  top: 15%; left: 20%;
  background: var(--teal);
  animation-delay: -8s;
}

@keyframes hexFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-30px) rotate(3deg); }
  50% { transform: translateY(15px) rotate(-2deg); }
  75% { transform: translateY(-15px) rotate(1deg); }
}

.hero__particles {
  position: absolute;
  inset: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  padding: 8px 24px;
  border-radius: 999px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.5s var(--ease) forwards;
}

.hero__badge-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 0.7s var(--ease) forwards;
}

.hero__logo-image {
  width: min(100%, 600px);
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 32px rgba(10, 22, 40, 0.22));
}

.hero__logo-city {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  min-height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: clamp(13px, 2vw, 18px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.hero__anniversary {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 0.9s var(--ease) forwards;
}

.hero__slogan {
  width: min(100%, 520px);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(10, 22, 40, 0.22));
}

.hero__ten {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero__ten-num {
  font-family: var(--font-accent);
  font-size: clamp(100px, 18vw, 220px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.85;
  text-shadow: 0 4px 60px rgba(0, 71, 181, 0.5), 0 0 120px rgba(208, 50, 66, 0.2);
  position: relative;
  background: linear-gradient(180deg, #ffffff 40%, rgba(255, 200, 61, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 30px rgba(0, 71, 181, 0.3));
}

.hero__ten-num::after {
  content: '';
  position: absolute;
  bottom: 2%;
  left: -8%;
  right: -8%;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), var(--red), transparent);
  border-radius: 4px;
  opacity: 0.8;
}

.hero__ten-word {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.hero__ten-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
}

.hero__ten-sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
  line-height: 1.6;
}

.hero__lead {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 1.1s var(--ease) forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 1.3s var(--ease) forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.6s var(--ease) forwards;
}

.hero__scroll span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--white);
  color: var(--blue);
}

.btn--primary:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 200, 61, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
}

.btn--blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 71, 181, 0.3);
}

.btn--white {
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
}

.btn--white:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ── Marquee ── */
.marquee {
  background: var(--blue);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 25s linear infinite;
}

.marquee__track span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.marquee__dot {
  color: var(--gold) !important;
  font-size: 10px !important;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Section Common ── */
.section {
  padding: 120px 0;
  position: relative;
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 6px 16px;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  margin-bottom: 20px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}

.section__title em {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.16em;
  color: var(--blue);
  font-style: normal;
  font-weight: 700;
  line-height: 0.92;
}

.section__desc {
  font-size: 17px;
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1.7;
}

.section__note {
  margin: -8px 0 16px;
  font-size: 14px;
  font-style: italic;
  color: var(--red);
}

/* ── Reveal animation ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* ══════════════ TIMELINE ══════════════ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto 80px;
  padding-left: 40px;
}

.timeline__line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cream);
}

.timeline__line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--blue), var(--red));
  border-radius: 2px;
  transition: height 1.5s var(--ease);
}

.timeline.is-animated .timeline__line::after {
  height: 100%;
}

.timeline__item {
  position: relative;
  padding: 0 0 48px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -46px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border: 3px solid var(--blue);
  border-radius: 50%;
  z-index: 2;
  transition: background 0.3s, transform 0.3s var(--ease);
}

.timeline__item:hover .timeline__dot {
  background: var(--blue);
  transform: scale(1.3);
}

.timeline__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 71, 181, 0.06);
  transition: box-shadow 0.4s, transform 0.4s var(--ease);
}

.timeline__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.timeline__year {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.timeline__card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.timeline__card p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ── Stats ── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stats__item {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 71, 181, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.stats__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stats__num {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.stats__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
}

.history__notice {
  max-width: 860px;
  margin: 0 auto 30px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(0, 71, 181, 0.08);
  border: 1px solid rgba(0, 71, 181, 0.18);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-light);
}

.stats__meta {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
}

/* ══════════════ TESTIMONIALS ══════════════ */
.testimonials {
  background: var(--off-white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  padding: 24px 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(0, 71, 181, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-light);
  margin-bottom: 14px;
}

.testimonial-card span {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.03em;
}

.testimonials__cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 71, 181, 0.14);
  background: linear-gradient(135deg, #f1f6ff 0%, #f9fbff 100%);
}

.testimonials__cta p {
  font-size: 15px;
  color: var(--ink-light);
}

/* ══════════════ ROUTES ══════════════ */
.routes {
  background: linear-gradient(180deg, #f7f9ff 0%, #eef4ff 100%);
}

.routes__location {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(0, 71, 181, 0.1);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.routes__location h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.routes__location p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-light);
}

.routes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.route-card {
  padding: 24px 24px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 71, 181, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.route-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.route-card__time {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
}

.route-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 10px;
}

.route-card ul {
  list-style: disc;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.route-card li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-light);
}

/* ══════════════ ADVANTAGES ══════════════ */
.advantages {
  background: var(--off-white);
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.adv-card {
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 71, 181, 0.08);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.adv-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  margin-bottom: 16px;
}

.adv-card__icon svg {
  width: 24px;
  height: 24px;
}

.adv-card h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  margin-bottom: 8px;
}

.adv-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* ══════════════ AWARDS ══════════════ */
.awards {
  background: var(--cream);
}

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

.award-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 28px 24px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 71, 181, 0.08);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.award-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.award-card--brand {
  background: linear-gradient(180deg, rgba(0, 71, 181, 0.04) 0%, var(--white) 42%);
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.award-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.award-card__year {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
}

.award-card__series {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.45;
  color: var(--ink-muted);
  text-align: right;
}

.award-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.1;
  margin: 0;
  max-width: 15ch;
}

.award-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 38ch;
}

/* ══════════════ MICE ══════════════ */
.mice {
  background: radial-gradient(circle at 20% 20%, #0f5dcf 0%, #003e9e 60%, #003483 100%);
  color: var(--white);
}

.mice__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.mice__content,
.mice__cta {
  border-radius: var(--radius-xl);
  padding: 30px;
}

.mice__content {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.mice .section__label {
  color: var(--gold);
  border-color: rgba(255, 200, 61, 0.58);
}

.mice__title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.mice__title em {
  color: var(--gold);
  font-style: italic;
}

.mice__content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.mice__list {
  list-style: disc;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.mice__list li {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.mice__cta {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.mice__cta h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--blue-dark);
}

.mice__cta p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-light);
  margin-bottom: 18px;
}

.mice__hint {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-muted);
}

/* ══════════════ VIDEO STORY ══════════════ */
.video-story {
  background: linear-gradient(180deg, #f9fbff 0%, #edf3ff 100%);
}

.video-story__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.video-story__frame {
  position: relative;
  border-radius: var(--radius-xl);
  min-height: 320px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 200, 61, 0.24), transparent 42%),
    radial-gradient(circle at 80% 78%, rgba(0, 165, 168, 0.2), transparent 35%),
    linear-gradient(135deg, #0c2f71 0%, #0047b5 55%, #0a5fd4 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.video-story__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: videoPulse 2.2s ease-in-out infinite;
}

.video-story__play svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
}

@keyframes videoPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.07); }
}

.video-story__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.video-story__frame p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 500px;
}

.video-story__steps {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 71, 181, 0.12);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.video-story__steps h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  margin-bottom: 14px;
  color: var(--blue-dark);
}

.video-story__steps ul {
  list-style: disc;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.video-story__steps li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-light);
}

/* ══════════════ GALLERY ══════════════ */
.gallery {
  background: var(--ink);
  overflow: hidden;
}

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

.gallery .section__label {
  color: var(--gold);
  border-color: var(--gold);
}

.gallery .section__title {
  color: var(--white);
}

.gallery .section__title em {
  color: var(--gold);
}

.gallery .section__desc {
  color: rgba(255, 255, 255, 0.5);
}

.gallery__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) transparent;
}

.gallery__scroll::-webkit-scrollbar {
  height: 4px;
}

.gallery__scroll::-webkit-scrollbar-track {
  background: transparent;
}

.gallery__scroll::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 4px;
}

.gallery__track {
  display: flex;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - 1280px) / 2 + 24px));
  width: max-content;
}

.gallery__item {
  flex-shrink: 0;
  width: 380px;
}

.gallery__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gallery__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

.gallery__item:hover .gallery__img {
  transform: scale(1.04);
}

.gallery__img--lobby {
  object-position: 50% 52%;
}

.gallery__img--room {
  object-position: 50% 58%;
}

.gallery__img--breakfast {
  object-position: 50% 52%;
}

.gallery__img--meeting {
  object-position: 50% 46%;
}

.gallery__img--fitness {
  object-position: 52% 46%;
}

.gallery__img--facade {
  object-position: 50% 42%;
}

.gallery__img--group {
  object-position: 50% 50%;
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a2a4a, #0a1628);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.4s;
}

.gallery__placeholder svg {
  width: 48px;
  height: 48px;
}

.gallery__placeholder span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery__item:hover .gallery__placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.gallery__item figcaption {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
  padding: 0 4px;
}

/* ══════════════ TEAM ══════════════ */
.team {
  background: linear-gradient(180deg, var(--off-white), var(--cream));
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.team__card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 71, 181, 0.06);
  transition: box-shadow 0.4s, transform 0.4s var(--ease);
}

.team__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.team__avatar {
  flex-shrink: 0;
}

.team__avatar-hex {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 71, 181, 0.16), rgba(0, 165, 168, 0.08));
  box-shadow: 0 12px 28px rgba(0, 71, 181, 0.14);
  border: 4px solid rgba(255, 255, 255, 0.92);
}

.team__avatar-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 28%;
}

.team__avatar-img--klyuev {
  object-position: 50% 24%;
}

.team__avatar-img--nazarova {
  object-position: 50% 18%;
}

.team__avatar-img--chef {
  object-position: 50% 24%;
}

.team__avatar-img--shestakova {
  object-position: 50% 18%;
}

.team__avatar-img--koroleva {
  object-position: 50% 22%;
}

.team__avatar-img--minova {
  object-position: 50% 24%;
}

.team__avatar-img--grunenkov {
  object-position: 50% 22%;
}

.team__avatar-img--birukova {
  object-position: 50% 24%;
}

.team__avatar-img--shkuro {
  object-position: 50% 24%;
}

.team__info {
  flex: 1;
  min-width: 0;
}

.team__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team__role {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  display: block;
  margin-bottom: 16px;
}

.team__quote {
  font-size: 15px;
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.7;
  border-left: 3px solid var(--blue);
  padding-left: 16px;
  margin: 0;
}

/* ══════════════ PROGRAM ══════════════ */
.program {
  background: var(--off-white);
}

.program__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.program__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 71, 181, 0.06);
  transition: box-shadow 0.4s, transform 0.4s var(--ease);
}

.program__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.program__time {
  font-family: var(--font-accent);
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  padding-top: 4px;
  grid-row: 1 / -1;
}

.program__content h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.program__content p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.program__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 12px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 71, 181, 0.25);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.program__card:hover .program__icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(0, 71, 181, 0.35);
}

.program__icon svg {
  width: 20px;
  height: 20px;
}

.program__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 32px 40px;
  background: var(--blue);
  border-radius: var(--radius-xl);
  color: var(--white);
}

.program__detail {
  text-align: left;
  padding-left: 4px;
}

.program__detail-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.program__detail-value {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
}

.program__cta .btn--primary {
  margin-left: auto;
}

/* ══════════════ PARTNERS ══════════════ */
.partners {
  background: var(--cream);
}

.partners__ticker {
  margin-bottom: 64px;
  overflow: hidden;
  padding: 16px 0;
}

.partners__ticker-track {
  display: flex;
  gap: 32px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.partners__badge {
  flex-shrink: 0;
  padding: 12px 32px;
  background: var(--white);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-light);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 71, 181, 0.06);
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}

.partners__badge:hover {
  background: var(--blue);
  color: var(--white);
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partners__card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 71, 181, 0.06);
  text-align: center;
  transition: box-shadow 0.4s, transform 0.4s var(--ease);
}

.partners__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.partners__card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  color: var(--blue);
}

.partners__card-icon--logo {
  width: 100%;
  height: 88px;
  background: transparent;
  border-radius: 0;
  margin-bottom: 24px;
}

.partners__card-logo {
  display: block;
  max-width: 180px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partners__card-icon svg {
  width: 28px;
  height: 28px;
}

.partners__card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.partners__card p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ══════════════ FOOTER ══════════════ */
.footer {
  position: relative;
  background: var(--off-white);
}

.footer__wave {
  position: relative;
  margin-top: -1px;
}

.footer__wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.footer__inner {
  background: var(--blue);
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 80px 0 60px;
}

.footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer__heading {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__list li strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.footer__list a {
  transition: color 0.3s;
}

.footer__list a:hover {
  color: var(--gold);
}

.footer__col--rsvp p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ── RSVP Form ── */
.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rsvp-form__group {
  position: relative;
}

.rsvp-form__input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-sans);
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}

.rsvp-form__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.rsvp-form__input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}

.rsvp-form__btn {
  margin-top: 4px;
  cursor: pointer;
  border: none;
}

.rsvp-form__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.rsvp-form__prize {
  padding: 8px 10px;
  border-radius: var(--radius-xs);
  background: rgba(255, 200, 61, 0.16);
  border: 1px solid rgba(255, 200, 61, 0.34);
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.rsvp-form__msg {
  font-size: 13px;
  line-height: 1.5;
  min-height: 20px;
}

.form-consent {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.45;
}

.footer .form-consent {
  color: rgba(255, 255, 255, 0.68);
}

.footer .form-consent a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rsvp-form__msg--success {
  color: #4ade80;
}

.rsvp-form__msg--error {
  color: #fca5a5;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__made {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Back to Top ── */
.to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s var(--ease), background 0.3s;
  z-index: 100;
}

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

.to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-4px);
}

.to-top svg {
  width: 20px;
  height: 20px;
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner__inner {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(10, 22, 40, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__btn {
  flex-shrink: 0;
  padding-inline: 20px;
}

/* ── Prize Roulette Popup ── */
.roulette-popup {
  position: fixed;
  inset: 0;
  z-index: 1400;
  padding: 24px;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.roulette-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.roulette-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.56);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.roulette-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 16px));
  max-height: min(92vh, 860px);
  overflow-y: auto;
  padding: 28px 28px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 71, 181, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: var(--shadow-xl);
  color: var(--ink);
}

.roulette-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(0, 71, 181, 0.08);
  transition: background 0.25s, color 0.25s;
}

.roulette-popup__close:hover {
  background: rgba(0, 71, 181, 0.16);
  color: var(--blue-dark);
}

.roulette-popup__close svg {
  width: 18px;
  height: 18px;
}

.roulette-popup__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 71, 181, 0.09);
}

.roulette-popup__title {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.16;
  color: var(--blue-dark);
}

.roulette-popup__subtitle {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-light);
}

.roulette-wheel-wrap {
  width: min(420px, 90%);
  margin: 18px auto 0;
  position: relative;
}

.roulette-pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 28px solid var(--red);
  z-index: 3;
  filter: drop-shadow(0 8px 14px rgba(208, 50, 66, 0.25));
}

.roulette-wheel {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 10px solid #fff;
  background:
    conic-gradient(
      from 0deg,
      #0c5ed8 0deg 45deg,
      #2f78de 45deg 90deg,
      #d03242 90deg 135deg,
      #2f78de 135deg 180deg,
      #0c5ed8 180deg 225deg,
      #2f78de 225deg 270deg,
      #00a5a8 270deg 315deg,
      #2f78de 315deg 360deg
    );
  box-shadow: 0 12px 36px rgba(0, 71, 181, 0.2);
  transform: rotate(0deg);
  transition: transform 5.4s cubic-bezier(0.12, 0.88, 0.14, 1);
}

.roulette-wheel::after {
  content: '';
  position: absolute;
  inset: 50%;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 30% 30%, #fff 0%, #dce7ff 55%, #b8cff7 100%);
  border: 5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 6px rgba(0, 71, 181, 0.15);
}

.roulette-wheel__labels {
  position: absolute;
  inset: 0;
}

.roulette-wheel__label {
  position: absolute;
  width: 120px;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: pre-line;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(10, 22, 40, 0.4);
}

.roulette-popup__spin-btn {
  margin: 20px auto 0;
  min-width: 240px;
  display: flex;
  justify-content: center;
}

.roulette-popup__spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.roulette-popup__result {
  min-height: 24px;
  margin-top: 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-dark);
}

.roulette-popup__result.is-win {
  color: var(--red);
}

.roulette-popup__required {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(208, 50, 66, 0.08);
  border: 1px solid rgba(208, 50, 66, 0.26);
  font-size: 13px;
  line-height: 1.45;
  color: #9a2632;
  font-weight: 600;
}

.roulette-claim {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 71, 181, 0.12);
}

.roulette-claim__note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-light);
  margin-bottom: 10px;
}

.roulette-claim__row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 10px;
}

.roulette-claim__row--single {
  grid-template-columns: 1fr;
}

.roulette-claim .rsvp-form__input {
  background: #fff;
  border: 1px solid rgba(0, 71, 181, 0.22);
  color: var(--ink);
}

.roulette-claim .rsvp-form__input::placeholder {
  color: var(--ink-muted);
}

.roulette-claim .rsvp-form__input:focus {
  background: #fff;
  border-color: var(--blue);
}

.roulette-claim__btn {
  width: 100%;
  justify-content: center;
}

.roulette-claim .form-consent {
  margin-top: 10px;
  color: var(--ink-muted);
}

.roulette-claim .form-consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.roulette-claim__msg {
  min-height: 20px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.roulette-claim__msg--success {
  color: #0c8d44;
}

.roulette-claim__msg--error {
  color: #c53636;
}

/* ── Legal pages ── */
.legal {
  min-height: 100vh;
  background: linear-gradient(180deg, #ecf2ff 0%, #f8f7f4 100%);
  color: var(--ink);
}

.legal__container {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 80px;
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 24px;
}

.legal__title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.1;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.legal__updated {
  font-size: 14px;
  color: var(--ink-light);
  margin-bottom: 22px;
}

.legal__lead {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.legal__section {
  background: var(--white);
  border: 1px solid rgba(0, 71, 181, 0.12);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
}

.legal__section h2 {
  font-family: var(--font-serif);
  color: var(--blue-dark);
  margin-bottom: 10px;
  font-size: 24px;
}

.legal__section p,
.legal__section li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-light);
}

.legal__section ul {
  list-style: disc;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .team__grid { grid-template-columns: 1fr; }
  .program__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .routes__grid { grid-template-columns: repeat(2, 1fr); }
  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
  .awards__grid { grid-template-columns: repeat(2, 1fr); }
  .mice__layout { grid-template-columns: 1fr; }
  .video-story__layout { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .section {
    padding: 80px 0;
  }

  .section__head {
    margin-bottom: 48px;
  }

  .hero {
    min-height: calc(100svh + var(--safe-top));
    padding: calc(100px + var(--safe-top)) 20px 60px;
  }

  .hero__logo-image {
    width: min(100%, 500px);
  }

  .hero__logo-city {
    padding-inline: 16px;
    min-height: 38px;
    letter-spacing: 0.16em;
  }

  .hero__anniversary {
    flex-direction: column;
    gap: 16px;
  }

  .hero__slogan {
    width: min(100%, 460px);
  }

  .hero__ten-line {
    width: 60px;
    height: 1px;
  }

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

  .gallery__item {
    width: 300px;
  }

  .team__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team__avatar-hex {
    width: 124px;
    height: 124px;
  }

  .team__quote {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid var(--blue);
    padding-top: 16px;
  }

  .program__card {
    grid-template-columns: auto 1fr;
  }

  .program__icon {
    display: none;
  }

  .program__cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 32px 24px;
  }

  .program__detail {
    align-self: flex-start;
    text-align: left;
  }

  .program__cta .btn--primary {
    margin-left: 0;
  }

  .stats { grid-template-columns: 1fr 1fr; }
  .partners__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .routes__grid { grid-template-columns: 1fr; }
  .advantages__grid { grid-template-columns: 1fr; }
  .awards__grid { grid-template-columns: 1fr; }

  .award-card__top {
    flex-direction: column;
    gap: 10px;
  }

  .award-card__series {
    text-align: left;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 40px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .timeline {
    padding-left: 32px;
  }

  .timeline__dot {
    left: -38px;
  }

  .timeline__card {
    padding: 24px;
  }

  .testimonials__cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .routes__location {
    padding: 20px;
  }

  .routes__location h3 {
    font-size: 24px;
  }

  .mice__content,
  .mice__cta {
    padding: 24px 18px;
  }

  .video-story__frame,
  .video-story__steps {
    padding: 20px 18px;
  }

  .video-story__frame {
    min-height: 280px;
  }

  .roulette-popup {
    padding: 12px;
  }

  .roulette-popup__dialog {
    padding: 22px 16px 18px;
  }

  .roulette-wheel-wrap {
    width: min(360px, 100%);
  }

  .roulette-wheel__label {
    width: 92px;
    font-size: 10px;
  }

  .roulette-popup__spin-btn {
    width: 100%;
    min-width: 0;
  }

  .roulette-claim__row {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .legal__container {
    width: min(860px, calc(100% - 24px));
    padding-top: 24px;
  }

  .legal__section {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .hero__logo-image {
    width: min(100%, 320px);
  }

  .hero__logo-city {
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .hero__ten-num {
    font-size: 80px;
  }

  .hero__slogan {
    width: min(100%, 320px);
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

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

/* ── Smooth scroll offset for anchor links ── */
:target {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

/* ── Magnetic button effect area ── */
.btn {
  will-change: transform;
}

/* ── Grain texture overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
