:root {
  --red: #E50026;
  --red-dark: #B3001E;
  --navy: #005B7F;
  --navy-dark: #003D55;
  --navy-deep: #002B3E;
  --white: #FFFFFF;
  --off-white: #F7F9FB;
  --light-gray: #EEF2F5;
  --text-dark: #2B3038;
  --text-body: #5E697B;
  --text-muted: rgba(255,255,255,0.65);
  --border: rgba(0,0,0,0.09);
  --success: #1B7A3F;
  --error: #E50026;
  --font: 'Raleway', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-label--light { color: rgba(255,255,255,0.6); }

.section-title {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.section-title--light { color: var(--white); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.35s, box-shadow 0.35s;
}
.nav--solid {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.06);
}
.nav__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo img {
  height: 44px;
  width: auto;
  transition: filter 0.35s;
}
.nav--solid .nav__logo img { filter: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav--solid .nav__link { color: var(--text-dark); }
.nav__link:hover { color: var(--red) !important; }
.nav__link--active { color: var(--white) !important; }
.nav--solid .nav__link--active { color: var(--red) !important; }

.nav__cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--red);
  color: var(--white) !important;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background-color 0.25s;
}
.nav__cta:hover { background: var(--red-dark) !important; }

.nav__right { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0;
  padding: 6px 10px;
  cursor: pointer;
  font-family: var(--font);
  transition: border-color 0.25s;
}
.nav--solid .lang-toggle { border-color: var(--border); }
.lang-toggle__option {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}
.nav--solid .lang-toggle__option { color: var(--text-body); }
.lang-toggle__option--active { color: var(--white) !important; font-weight: 800; }
.nav--solid .lang-toggle__option--active { color: var(--text-dark) !important; }
.lang-toggle__divider { color: rgba(255,255,255,0.25); font-size: 0.72rem; }
.nav--solid .lang-toggle__divider { color: var(--border); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
.nav--solid .nav__hamburger span { background: var(--text-dark); }
.nav__hamburger--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger--active span:nth-child(2) { opacity: 0; }
.nav__hamburger--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu--active { opacity: 1; pointer-events: all; }
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-menu__link {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.mobile-menu__link:hover { color: var(--red); }
.mobile-menu__cta {
  padding: 14px 40px;
  background: var(--red);
  border-radius: 0;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.mobile-menu__cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #002B3E 0%, #004466 50%, #003050 100%);
  z-index: 0;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.7;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 840px;
  width: 100%;
  box-sizing: border-box;
}
.hero__logo-img {
  display: block;
  margin: 0 auto 48px;
  height: 120px;
  width: auto;
  max-width: 100%;
  filter: brightness(0) invert(1);
}
.hero__title {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero__divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 24px;
}
.hero__label {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}
.hero__date {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}
.hero__location {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
}
.hero__cta {
  display: inline-block;
  padding: 16px 52px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background-color 0.25s, transform 0.2s;
}
.hero__cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== ABOUT ===== */
.about {
  padding: 110px 0;
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 72px;
}
.about__description {
  font-size: 1.02rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.about__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}
.about__meta-item svg { color: var(--navy); flex-shrink: 0; }

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about__stat {
  background: var(--off-white);
  padding: 28px 20px;
  text-align: center;
  border-top: 3px solid var(--red);
}
.about__stat-number {
  display: block;
  font-family: var(--font);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.about__stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-body);
  text-transform: uppercase;
}

/* Timeline */
.timeline {
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.timeline__title {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.35rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-dark);
}
.timeline__track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: 0 16px;
  overflow-x: auto;
  gap: 8px;
}
.timeline__line {
  position: absolute;
  top: 8px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--red), var(--navy));
  opacity: 0.2;
}
.timeline__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
  position: relative;
  z-index: 1;
}
.timeline__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--navy);
  margin-bottom: 12px;
  transition: background-color 0.3s, border-color 0.3s;
}
.timeline__item--active .timeline__dot {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(229,0,38,0.15);
}
.timeline__year {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.timeline__text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-body);
  text-align: center;
  max-width: 120px;
}

/* ===== PROGRAM ===== */
.program {
  padding: 110px 0;
  background: var(--navy-deep);
  position: relative;
}
.program .section-label,
.program .section-title { text-align: center; }
.program__grid {
  max-width: 680px;
  margin: 48px auto 0;
}
.program__item {
  display: flex;
  gap: 36px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: flex-start;
}
.program__item--last { border-bottom: none; }
.program__time {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--red);
  flex-shrink: 0;
  width: 70px;
  padding-top: 2px;
}
.program__content { flex: 1; }
.program__name {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
}
.program__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}
.program__note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 40px;
  font-style: italic;
}

/* ===== REGISTRATION ===== */
.register {
  padding: 110px 0;
  background: var(--off-white);
}
.register .section-label,
.register .section-title { text-align: center; }
.register__subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 48px;
}
.register__card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 0;
  padding: 48px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.07);
  border-top: 4px solid var(--red);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 4px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(0,0,0,0.13);
  border-radius: 0;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,91,127,0.08);
}
.form-group input.error,
.form-group select.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(229,0,38,0.08);
}
.form-hint {
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 4px;
  display: block;
  min-height: 1.2em;
}
.form-hint--error { color: var(--error); }
.form-hint--info { color: var(--navy); }

.form-separator {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

/* Radio & Checkbox */
.radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.radio-label, .checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
}
.radio-label input, .checkbox-label input { display: none; }

.radio-custom {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.25s;
}
.radio-label input:checked + .radio-custom { border-color: var(--red); }
.radio-label input:checked + .radio-custom::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--red);
  border-radius: 50%;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: 0;
  position: relative;
  flex-shrink: 0;
  transition: background-color 0.25s, border-color 0.25s;
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--red);
  border-color: var(--red);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 6px;
  height: 10px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.register__submit {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 0;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.register__submit:hover { background: var(--red-dark); }
.register__submit:disabled { opacity: 0.6; cursor: not-allowed; }

.register__success {
  text-align: center;
  padding: 40px 0;
}
.register__success svg { margin-bottom: 24px; }
.register__success h3 {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--success);
  margin-bottom: 12px;
}
.register__success p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== HOTELS ===== */
.hotels {
  padding: 110px 0;
  background: var(--light-gray);
}
.hotels .section-label { color: var(--navy); }
.hotels .section-label,
.hotels .section-title { text-align: center; }
.hotels .section-title { color: var(--text-dark); }
.hotels__subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 32px;
}
.hotels__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 18px 24px;
  background: rgba(229, 0, 38, 0.06);
  border-left: 4px solid var(--red);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
}
.hotels__note svg { flex-shrink: 0; color: var(--red); margin-top: 2px; }
.hotels__note p { margin: 0; }
.hotels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hotel-card {
  background: var(--white);
  border-top: 3px solid transparent;
  overflow: hidden;
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}
.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-top-color: var(--red);
}
.hotel-card__image {
  height: 200px;
  background: linear-gradient(135deg, #E8EEF2, #D4E0E8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hotel-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.hotel-card:hover .hotel-card__image img {
  transform: scale(1.04);
}
.hotel-card__placeholder { color: rgba(0,91,127,0.2); }
.hotel-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 0;
}
.hotel-card__body { padding: 22px; }
.hotel-card__name {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.hotel-card__address {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hotel-card__address svg { flex-shrink: 0; color: var(--navy); }
.hotel-card__phone {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hotel-card__phone svg { flex-shrink: 0; color: var(--navy); }
.hotel-card__name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.hotel-card__name a:hover { color: var(--navy); }
.hotel-card__desc {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 14px;
}
.hotel-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.hotel-card__amenities span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border: 1px solid rgba(0,91,127,0.2);
  color: var(--navy);
  background: rgba(0,91,127,0.04);
}
.hotel-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px;
  background: transparent;
  border: 1.5px solid var(--red);
  border-radius: 0;
  color: var(--red);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.25s, color 0.25s;
}
.hotel-card__btn:hover {
  background: var(--red);
  color: var(--white);
}

/* ===== TRAVEL ===== */
.travel {
  padding: 110px 0;
  background: var(--white);
}
.travel .section-label { color: var(--navy); }
.travel .section-label,
.travel .section-title { text-align: center; }
.travel .section-title { color: var(--text-dark); }
.travel__subtitle {
  text-align: center;
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto 50px;
  line-height: 1.7;
}
.travel__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.travel__card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 28px 30px;
  border: 1px solid rgba(13,27,42,0.08);
  position: relative;
  overflow: hidden;
}
.travel__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
  border-radius: 4px 0 0 4px;
}
.travel__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.travel__card-icon {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.travel__card-icon svg { color: rgba(255,255,255,0.85); }
.travel__card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 3px;
  line-height: 1.3;
}
.travel__card-code {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.12em;
}
.travel__card-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.travel__card-time {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  font-family: var(--font-head);
  letter-spacing: -0.02em;
}
.travel__card-dist {
  font-size: 0.88rem;
  color: var(--text-mid);
}
.travel__card-note {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* ===== THINGS TO DO ===== */
.things {
  padding: 110px 0;
  background: var(--light-gray);
}
.things .section-label { color: var(--navy); }
.things .section-label,
.things .section-title { text-align: center; }
.things .section-title { color: var(--text-dark); }
.things__subtitle {
  text-align: center;
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 720px;
  margin: 0 auto 50px;
  line-height: 1.7;
}
.things__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.things__card {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(13,27,42,0.08);
  box-shadow: 0 4px 24px rgba(13,27,42,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.things__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(13,27,42,0.12);
}
.things__image {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.things__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.things__card:hover .things__image img { transform: scale(1.05); }
.things__body {
  position: relative;
  padding: 30px 30px 28px;
}
.things__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 12px;
  margin: -54px 0 18px;
  border: 3px solid var(--white);
  box-shadow: 0 4px 14px rgba(13,27,42,0.18);
}
.things__icon svg { color: rgba(255,255,255,0.9); }
.things__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px;
  line-height: 1.35;
}
.things__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}
.things__badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--red);
  background: var(--white);
  padding: 5px 11px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(13,27,42,0.18);
}

/* ===== VENUE ===== */
.venue {
  padding: 110px 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.venue__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,91,127,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(229,0,38,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.venue .section-label,
.venue .section-title { text-align: center; }
.venue__subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.venue__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
}
.venue__stat { text-align: center; }
.venue__stat-number {
  display: block;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.venue__stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.venue__graphic {
  max-width: 800px;
  margin: 0 auto 56px;
  opacity: 0.85;
}
.venue__blueprint-svg { width: 100%; height: auto; }
.venue__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 0;
  align-items: start;
}
.venue__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}
.venue__details { display: flex; flex-direction: column; gap: 14px; }
.venue__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.venue__detail svg { color: var(--red); flex-shrink: 0; }
.venue__map { overflow: hidden; box-shadow: 0 4px 30px rgba(0,0,0,0.3); }

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 28px;
  background: var(--navy-deep);
  border-top: 4px solid var(--red);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
  display: block;
}
.footer__tagline {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}
.footer__contact h4,
.footer__links h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.footer__contact a,
.footer__links a {
  display: block;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 8px;
  transition: color 0.25s;
}
.footer__contact a:hover,
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer__domain {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hotels__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .travel__cards { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__content { padding: 100px 20px 60px; }
  .hero__logo-img { height: auto; width: 85%; max-width: 320px; margin-bottom: 36px; }

  .about { padding: 80px 0; }
  .about__grid { gap: 40px; }
  .about__stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about__stat { padding: 20px 14px; }
  .about__stat-number { font-size: 1.8rem; }
  .about__meta { flex-direction: column; gap: 10px; }

  .timeline__track { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 16px; }

  .program { padding: 80px 0; }
  .program__item { gap: 20px; }
  .program__time { width: 55px; font-size: 1rem; }

  .register { padding: 80px 0; }
  .register__card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }

  .hotels { padding: 80px 0; }
  .hotels__grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  .travel { padding: 80px 0; }
  .travel__cards { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }

  .things { padding: 80px 0; }

  .venue { padding: 80px 0; }
  .venue__grid { grid-template-columns: 1fr; }
  .venue__stats { gap: 24px; flex-wrap: wrap; }
  .venue__stat-number { font-size: 1.8rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__logo-img { height: auto; width: 80%; max-width: 260px; }
  .register__card { padding: 20px 14px; }
  .travel__card { padding: 22px 20px; }
  .travel__card-time { font-size: 1.6rem; }
}
