:root {
  --bg: #f6f8fc;
  --bg-card: #ffffff;
  --bg-elevated: #eef2f8;
  --bg-alt: #e8f2ff;
  --text: #0f172a;
  --muted: #64748b;
  --brand-blue: #0078e7;
  --brand-red: #e52629;
  --accent: #0078e7;
  --accent-2: #005bb5;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.1);
  --shadow-hover: 0 16px 40px rgba(0, 120, 231, 0.12);
  --max: 1160px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--brand-blue); text-decoration: none; }
a:hover { color: var(--accent-2); }

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0);
  background: linear-gradient(180deg, rgba(6, 12, 28, 0.72) 0%, rgba(6, 12, 28, 0.2) 100%);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow);
}

.site-header .nav a {
  color: rgba(255, 255, 255, 0.82);
}

.site-header .nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .nav a {
  color: var(--muted);
}

.site-header.is-scrolled .nav a:hover {
  color: var(--text);
  background: var(--bg-elevated);
}

.site-header .menu-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.site-header.is-scrolled .menu-toggle {
  background: var(--bg-card);
  border-color: var(--border);
  color: var(--text);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.logo:hover { text-decoration: none; }

.logo-mark { height: 42px; width: auto; }
.logo-mark--footer { height: 32px; }

.logo-text {
  font-family: "Arial Black", Impact, Haettenschweiler, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
}

.logo-text--footer { font-size: 1.1rem; letter-spacing: 0.08em; }
.logo-good { color: var(--brand-blue); }
.logo-sky { color: var(--brand-red); }

.site-footer .footer-inner { gap: 0.75rem; }

.nav {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav a:hover {
  color: var(--text);
  background: var(--bg-elevated);
  text-decoration: none;
}

.nav-cta {
  background: linear-gradient(135deg, var(--brand-blue), var(--accent-2)) !important;
  color: #fff !important;
  padding: 0.55rem 1.15rem !important;
  margin-left: 0.5rem;
  box-shadow: 0 4px 14px rgba(0, 120, 231, 0.28);
}

.nav-cta:hover {
  opacity: 0.95;
  background: linear-gradient(135deg, var(--brand-blue), var(--accent-2)) !important;
}

.menu-toggle {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.1rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 5.5rem;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 42%;
  animation: hero-drift 28s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.07) translateY(-1.5%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media-img { animation: none; }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(6, 14, 32, 0.94) 0%, rgba(6, 14, 32, 0.72) 34%, rgba(6, 14, 32, 0.22) 58%, rgba(6, 14, 32, 0.45) 100%),
    linear-gradient(0deg, rgba(6, 14, 32, 0.88) 0%, transparent 42%),
    linear-gradient(180deg, rgba(6, 14, 32, 0.55) 0%, transparent 20%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 2rem;
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 2rem;
}

.hero-content {
  max-width: 640px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.badge--hero {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.hero-slogan {
  font-size: 0.82rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ff8a8c;
  margin: 0 0 0.65rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.02;
  margin: 0 0 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}

.hero h1 .logo-good { color: #4da3ff; }
.hero h1 .logo-sky { color: #ff5c5f; }

.hero-lead {
  font-size: clamp(1.02rem, 1.8vw, 1.12rem);
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 1.35rem;
  max-width: 520px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-offers {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.65rem;
  max-width: 360px;
}

.hero-offer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem 0.55rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.hero-offer:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  color: #fff;
}

.hero-offer--muted { opacity: 0.82; }

.hero-offer-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}

.hero-offer--muted .hero-offer-icon {
  background: linear-gradient(135deg, var(--brand-blue), var(--accent-2));
  box-shadow: 0 4px 14px rgba(0, 120, 231, 0.35);
}

.hero-offer-body {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.hero-offer-body strong {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-offer-body em {
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.hero-mosaic {
  position: relative;
  min-height: 420px;
  display: none;
}

.hero-mosaic-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  background: #0b1220;
}

.hero-mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-mosaic-card figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(6, 14, 32, 0.72);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-mosaic-card--main {
  position: absolute;
  inset: 0 18% 12% 0;
}

.hero-mosaic-card--plane {
  position: absolute;
  width: 46%;
  aspect-ratio: 4/3;
  right: 0;
  top: 4%;
  z-index: 2;
  transform: rotate(3deg);
}

.hero-mosaic-card--cabin {
  position: absolute;
  width: 42%;
  aspect-ratio: 4/3;
  right: 6%;
  bottom: 0;
  z-index: 3;
  transform: rotate(-2deg);
}

@media (min-width: 1025px) {
  .hero-mosaic { display: block; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 120, 231, 0.28);
}

.btn-primary:hover { color: #fff; }

.btn-secondary {
  background: #fff;
  border: 1px solid var(--border-strong);
  color: var(--text);
  box-shadow: var(--shadow);
}

.btn-secondary:hover { color: var(--text); border-color: var(--brand-blue); }

.btn-whatsapp {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.28);
}

.btn-whatsapp:hover { color: #fff; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover { color: #fff; background: rgba(255, 255, 255, 0.18); }

.hero-bottom {
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  backdrop-filter: blur(14px);
  transition: transform 0.2s, background 0.2s;
}

.stat:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
}

.stat strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.stat span { font-size: 0.78rem; color: rgba(255, 255, 255, 0.72); font-weight: 600; }

/* Sections */
section { padding: 5.5rem 0; }

.section-label {
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
}

.section-title {
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-desc {
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}

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

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  border: 4px solid #fff;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  flex-shrink: 0;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 120, 231, 0.2);
}

.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; font-weight: 800; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Dropzone gallery */
.dz-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(2, minmax(160px, 1fr));
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.dz-gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #fff;
  min-height: 180px;
}

.dz-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.dz-gallery-item:hover img { transform: scale(1.05); }

.dz-gallery-item figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dz-gallery-item--wide {
  grid-row: 1 / -1;
  min-height: 100%;
}

.dz-gallery-item--wide img { min-height: 340px; }

/* Tunnel */
.tunnel-section {
  background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 50%, #fff 100%);
}

.tunnel-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.tunnel-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
}

.tunnel-visual img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.tunnel-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

.tunnel-badge strong {
  display: block;
  color: var(--brand-blue);
  font-size: 1.05rem;
  font-weight: 800;
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.spec {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.spec-value {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1.2;
}

.spec-label { font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; font-weight: 600; }

.tunnel-features { display: grid; gap: 0.75rem; }

.tunnel-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.tunnel-feature-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-blue), var(--accent-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.tunnel-feature h4 { margin: 0 0 0.2rem; font-size: 0.98rem; font-weight: 800; }
.tunnel-feature p { margin: 0; color: var(--muted); font-size: 0.88rem; }

/* Jumps */
.jumps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.jump-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.jump-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.jump-card:hover img { transform: scale(1.06); }

.jump-card-body { padding: 1.5rem; }
.jump-card h3 { margin: 0 0 0.5rem; font-weight: 800; }
.jump-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.jump-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
}

.jump-meta span {
  background: var(--bg-alt);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: var(--brand-blue);
  font-weight: 700;
}

/* Infra */
.infra-section { background: #fff; }

.infra-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.infra-item {
  padding: 1.25rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: background 0.2s;
}

.infra-item:hover { background: var(--bg-alt); }

.infra-item h4 { margin: 0 0 0.35rem; font-size: 0.95rem; font-weight: 800; }
.infra-item p { margin: 0; color: var(--muted); font-size: 0.85rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-card h3 { margin: 0 0 1.5rem; font-weight: 800; }

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.15rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-item strong { display: block; font-size: 0.8rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-item a, .contact-item span { color: var(--text); font-size: 1.05rem; font-weight: 600; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
  box-shadow: var(--shadow);
}

.map-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 2rem;
  text-align: center;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(248, 250, 252, 0.95)),
    url("https://avatars.mds.yandex.net/get-altay/1871297/2a0000016e6e65096f0bcd1a64f61d74b5d0/XXL") center/cover;
}

.map-link:hover { text-decoration: none; color: var(--text); }
.map-link span { color: var(--brand-blue); font-weight: 800; margin-top: 0.5rem; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.social-links a {
  padding: 0.55rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-links a:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
  text-decoration: none;
}

/* Footer */
.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

/* Promo */
.promo-section {
  padding: 0;
  margin-top: -3.5rem;
  position: relative;
  z-index: 2;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.promo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
}

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

.promo-card--hot {
  border-color: rgba(229, 38, 41, 0.25);
  background: linear-gradient(135deg, #fff5f5, #fff);
}

.promo-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 0.45rem;
}

.promo-card--hot .promo-tag { color: var(--brand-red); }

.promo-card h3 { margin: 0 0 0.45rem; font-size: 1.05rem; font-weight: 800; }
.promo-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* Prices */
.prices-section { background: #fff; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.price-group {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.price-group h3 { margin: 0 0 1rem; font-size: 1.08rem; font-weight: 800; }

.price-table { width: 100%; border-collapse: collapse; }
.price-table td {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  font-weight: 500;
}

.price-table td:last-child {
  text-align: right;
  white-space: nowrap;
  color: var(--brand-blue);
  font-weight: 800;
}

.price-table tr:last-child td { border-bottom: none; }
.price-note { margin: 0.75rem 0 0; font-size: 0.8rem; color: var(--muted); }

.price-disclaimer {
  margin-top: 2rem;
  padding: 1.15rem 1.35rem;
  background: var(--bg-alt);
  border: 1px solid rgba(0, 120, 231, 0.15);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.92rem;
}

/* Schedule */
.schedule-section { background: var(--bg); }

.schedule-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.schedule-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.schedule-box h4 { margin: 0 0 1rem; font-size: 1rem; font-weight: 800; }
.schedule-box ul { margin: 0; padding-left: 1.2rem; color: var(--muted); font-size: 0.95rem; }
.schedule-box li { margin-bottom: 0.5rem; }

.camp-list { list-style: none; padding: 0; }
.camp-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}

.camp-list li:last-child { border-bottom: none; }
.camp-list span {
  flex-shrink: 0;
  min-width: 4.5rem;
  font-weight: 800;
  color: var(--brand-blue);
  font-size: 0.85rem;
}

.schedule-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* News */
.news-section { background: #fff; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.news-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.news-card time {
  font-size: 0.78rem;
  color: var(--brand-red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.news-card h3 { margin: 0 0 0.65rem; font-size: 1.05rem; font-weight: 800; }
.news-card p { margin: 0 0 1rem; color: var(--muted); font-size: 0.9rem; flex: 1; }
.news-card > a { font-weight: 800; font-size: 0.9rem; }

.social-hub {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.social-hub h3 { margin: 0 0 1rem; font-size: 1.1rem; font-weight: 800; }
.social-links--wide { flex-wrap: wrap; justify-content: center; }
.social-hub-note { margin: 1.25rem 0 0; font-size: 0.88rem; color: var(--muted); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-mosaic {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(148px, 44vw);
    gap: 0.65rem;
    min-height: auto;
    margin-top: 1.35rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.25rem;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-mosaic::-webkit-scrollbar { display: none; }

  .hero-mosaic-card--main,
  .hero-mosaic-card--plane,
  .hero-mosaic-card--cabin {
    position: relative;
    inset: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    transform: none;
    aspect-ratio: 4/3;
    scroll-snap-align: start;
  }

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

  .dz-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .dz-gallery-item--wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .dz-gallery-item--wide img { min-height: 220px; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .container {
    width: min(var(--max), calc(100% - 1.35rem));
  }

  .hero {
    min-height: auto;
    padding-bottom: 2.25rem;
  }

  .hero-media-img {
    object-position: 58% 38%;
    animation: none;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(6, 14, 32, 0.72) 0%, rgba(6, 14, 32, 0.88) 42%, rgba(6, 14, 32, 0.96) 100%);
  }

  .hero-grid {
    padding-top: 5.35rem;
    padding-bottom: 0.75rem;
  }

  .hero-content { max-width: none; }

  .hero-lead { max-width: none; }

  .hero-offers {
    max-width: none;
  }

  .hero-actions .btn {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: 9.5rem;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
  }

  .hero-actions .btn-ghost {
    flex: 1 1 100%;
  }

  .about-grid,
  .tunnel-grid,
  .contact-grid,
  .schedule-info { grid-template-columns: 1fr; }

  .about-image { aspect-ratio: 16/10; }

  .tunnel-visual img { aspect-ratio: 16/10; }

  .nav { display: none; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    background: #fff;
    padding: 0.65rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    align-items: stretch;
    gap: 0.15rem;
  }

  .nav.open a {
    border-radius: var(--radius-sm);
    color: var(--text) !important;
    padding: 0.7rem 0.85rem;
  }

  .nav.open a:hover {
    background: var(--bg-elevated);
    color: var(--text) !important;
  }

  .nav.open .nav-cta {
    margin-top: 0.35rem;
    text-align: center;
  }

  .nav-cta { margin-left: 0 !important; }

  .menu-toggle { display: block; }

  .promo-section { margin-top: -1.75rem; }
}

@media (max-width: 600px) {
  section { padding: 3.25rem 0; }

  .logo-text {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  .logo-mark { height: 36px; }

  .hero-grid { padding-top: 4.85rem; }

  .badge--hero {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.7rem;
    line-height: 1.35;
  }

  .hero-slogan {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.5rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
    margin-bottom: 0.85rem;
  }

  .hero-lead {
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
    line-height: 1.55;
  }

  .hero-offer-body strong { font-size: 0.82rem; }

  .hero-offer-body em { font-size: 0.72rem; }

  .hero-offer-icon {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.55rem;
  }

  .hero-actions .btn {
    width: 100%;
    flex: none;
    min-width: 0;
  }

  .hero-bottom { margin-top: 0.25rem; }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
  }

  .stat {
    padding: 0.75rem 0.85rem;
  }

  .stat strong {
    font-size: 1.15rem;
    line-height: 1.2;
  }

  .stat span {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .promo-section { margin-top: -0.75rem; }

  .promo-card {
    padding: 1.1rem 1.15rem;
  }

  .section-title {
    font-size: clamp(1.55rem, 6.5vw, 1.85rem);
  }

  .section-desc {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  .dz-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.65rem;
  }

  .dz-gallery-item,
  .dz-gallery-item img {
    min-height: 0;
  }

  .dz-gallery-item--wide img {
    min-height: 200px;
    aspect-ratio: 16/10;
  }

  .dz-gallery-item:not(.dz-gallery-item--wide) img {
    aspect-ratio: 16/10;
    min-height: 0;
  }

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

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

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

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

  .price-table td {
    font-size: 0.84rem;
    padding: 0.6rem 0;
  }

  .price-table td:last-child {
    white-space: normal;
  }

  .schedule-cta {
    flex-direction: column;
  }

  .schedule-cta .btn { width: 100%; }

  .contact-card { padding: 1.35rem; }

  .map-embed,
  .map-link { min-height: 240px; }

  .tunnel-badge {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    font-size: 0.78rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 380px) {
  .logo-text { display: none; }

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