/* ==========================================================================
   TOP DANCERS — Premium Home Page Prototype
   ========================================================================== */

:root {
  /* Colors */
  --black: #0a0a0a;
  --black-deep: #050505;
  --surface: #131313;
  --surface-2: #1a1816;
  --border-subtle: rgba(212, 175, 106, 0.18);
  --border-subtle-2: rgba(255, 255, 255, 0.08);

  --gold: #d4af6a;
  --gold-light: #f5d78e;
  --gold-deep: #a97c34;
  --gold-gradient: linear-gradient(135deg, #f5d78e 0%, #d4af6a 45%, #a97c34 100%);

  --white: #f7f5f1;
  --off-white: #e8e4dc;
  --muted: #a8a29a;
  --muted-2: #7a746c;

  /* Type */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing / layout */
  --container-w: 1240px;
  --section-pad: clamp(4rem, 8vw, 7.5rem);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
svg { fill: currentColor; stroke: none; width: 100%; height: 100%; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.25rem;
  z-index: 999;
  font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
  text-transform: uppercase;
}

.gold-text { color: var(--gold); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.9rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
  scroll-margin-top: var(--header-h);
}
.hero { scroll-margin-top: var(--header-h); }
.section-alt { background: linear-gradient(180deg, var(--black) 0%, var(--surface) 100%); }

.text-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  display: inline-block;
}
.text-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.text-link:hover::after { transform: scaleX(1); }

/* ---------- Icons ---------- */
.icon-sm { width: 18px; height: 18px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-gold { width: 30px; height: 30px; flex-shrink: 0; fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon-gold-lg { width: 46px; height: 46px; margin: 0 auto 1.3rem; fill: none; stroke: var(--gold); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }

.btn-gold {
  background: var(--gold-gradient);
  color: var(--black);
  box-shadow: 0 0 0 rgba(212, 175, 106, 0);
}
.btn-gold:hover {
  box-shadow: 0 8px 30px -6px rgba(212, 175, 106, 0.55);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: rgba(212, 175, 106, 0.1);
  box-shadow: 0 8px 24px -8px rgba(212, 175, 106, 0.4);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(247, 245, 241, 0.35);
  color: var(--white);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.76rem; }
.btn-block { width: 100%; }

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

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(5,5,5,0.75) 0%, rgba(5,5,5,0));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.4s var(--ease), height 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(8, 7, 6, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px -14px rgba(0,0,0,0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.brand-logo { height: 44px; width: auto; }
.brand-word-main {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--white);
}

.brand-logos { gap: 0.5rem; }
.brand-logo-axova { height: 72px; transition: height 0.4s var(--ease); }
.site-header.is-scrolled .brand-logo-axova { height: 52px; }

.footer-brand .brand-logos { gap: 0.9rem; margin-bottom: 1.2rem; }
.footer-brand .brand-logo-axova { height: 84px; }
.footer-brand .brand-logo { height: 84px; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav-link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--off-white);
  padding: 0.4rem 0;
  transition: color 0.25s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}
.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s var(--ease);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(360px, 86vw);
  height: 100%;
  background: var(--black-deep);
  border-left: 1px solid var(--border-subtle);
  z-index: 900;
  padding: 1.4rem 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  transition: right 0.45s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { right: 0; }
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border-subtle-2);
  margin-bottom: 1.6rem;
}
.hamburger-close {
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  width: 40px; height: 40px;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 2rem; flex: 1; }
.mobile-nav-links a {
  display: block;
  padding: 0.9rem 0.2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-subtle-2);
  color: var(--off-white);
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.mobile-nav-links a:hover { color: var(--gold); padding-left: 0.6rem; }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  z-index: 850;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-nav-overlay.is-open { opacity: 1; pointer-events: auto; }
body.nav-open { overflow: hidden; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s var(--ease), transform 7s linear;
  z-index: 0;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.35) 0%, rgba(5,5,5,0.4) 35%, rgba(5,5,5,0.82) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.45) 42%, rgba(5,5,5,0.12) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 4rem;
  width: 100%;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}
.hero-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.hero-logo-mark {
  height: clamp(40px, 5vw, 60px);
  width: auto;
  display: block;
  margin-bottom: 0;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
}
.hero-brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-brand-tagline {
  font-family: 'Alex Brush', cursive;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--gold-light);
  line-height: 1.3;
  margin-top: 0.1rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.06;
  text-shadow: 0 6px 40px rgba(0,0,0,0.55);
  margin-bottom: 1.4rem;
}

.hero-sub {
  color: var(--off-white);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 520px;
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero benefits card */
.hero-benefits {
  background: rgba(15, 13, 11, 0.55);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.hero-benefits ul { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle-2);
}
.hero-benefits li:last-child { border-bottom: none; padding-bottom: 0; }
.hero-benefits h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.hero-benefits p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* Hero controls */
.hero-controls {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.hero-arrow {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  color: var(--white);
}
.hero-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-arrow:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,106,0.1); }

.hero-dots { display: flex; gap: 0.6rem; }
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.3s var(--ease);
}
.hero-dot.is-active { background: var(--gold); width: 26px; border-radius: 5px; }

.scroll-cue {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 3;
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 7px;
}
.scroll-cue span {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(10px); }
}

.hero-arc {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: clamp(50px, 8vw, 100px);
  z-index: 2;
  pointer-events: none;
}
.hero-arc path { filter: drop-shadow(0 0 6px rgba(212,175,106,0.65)); }

/* ==========================================================================
   DESTINATIONS
   ========================================================================== */
.destinations-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 1.5rem;
  max-width: calc(var(--container-w) + 3rem);
  margin: 0 auto;
}
.destinations-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(25% - 0.9rem);
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.destinations-track::-webkit-scrollbar { display: none; }

.dest-card {
  position: relative;
  scroll-snap-align: start;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.dest-card:hover img { transform: scale(1.1); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0) 35%, rgba(5,5,5,0.92) 100%);
}
.dest-info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease);
}
.dest-card:hover .dest-info { transform: translateY(0); }
.dest-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.15rem;
}
.dest-info p {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.dest-info .btn {
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.35s var(--ease);
}
.dest-card:hover .dest-info .btn { opacity: 1; transform: translateY(0); }

.dest-arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: all 0.3s var(--ease);
}
.dest-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dest-arrow:hover { background: var(--gold); color: var(--black); }
.dest-arrow:disabled { opacity: 0.25; pointer-events: none; }

.dest-dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
}
.dest-dots button {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.dest-dots button.is-active { background: var(--gold); }

.center-cta { margin-top: 3rem; }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.feature-col {
  padding: 0 2rem;
  position: relative;
}
.feature-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border-subtle-2);
}
.feature-col h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.03em;
}
.feature-col p { color: var(--muted); font-size: 0.92rem; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-image-border {
  position: absolute;
  top: 22px; left: 22px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-copy p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1.02rem; }
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0 2.2rem;
}
.about-stats .counter {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.about-stats small {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ==========================================================================
   PROCESS / STEPS
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle-2);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.step-card:hover { border-color: var(--border-subtle); transform: translateY(-6px); }
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 1rem;
}
@supports (-webkit-text-stroke: 1px #fff) {
  .step-num {
    color: transparent;
    opacity: 1;
    -webkit-text-stroke: 1px var(--gold);
  }
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.step-card p { color: var(--muted); font-size: 0.92rem; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.testimonials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 0.7rem);
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testi-card {
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border-subtle-2);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color 0.3s var(--ease);
}
.testi-card:hover { border-color: var(--border-subtle); }
.stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.95rem; }
.testi-card blockquote {
  font-size: 0.98rem;
  color: var(--off-white);
  line-height: 1.65;
  flex: 1;
}
.testi-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testi-card figcaption img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}
.testi-card figcaption span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ==========================================================================
   CLUB LOGOS
   ========================================================================== */
.logos-section {
  padding: 3.5rem 0;
  background: var(--black-deep);
  border-top: 1px solid var(--border-subtle-2);
  border-bottom: 1px solid var(--border-subtle-2);
}
.logos-label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 2rem;
}
.logos-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logos-track {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  width: max-content;
  animation: marquee 26s linear infinite;
  padding-right: clamp(2.5rem, 6vw, 5rem);
}
.logos-marquee:hover .logos-track { animation-play-state: paused; }
.logos-track span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0.05em;
  color: var(--muted);
  opacity: 0.75;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
  cursor: default;
}
.logos-track span:hover { color: var(--gold); opacity: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: calc(var(--container-w) + 3rem);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.blog-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 0.75rem);
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.2rem;
  scrollbar-width: none;
}
.blog-track::-webkit-scrollbar { display: none; }
.blog-card {
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-subtle-2);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--border-subtle); }
.blog-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-body { padding: 1.6rem; }
.blog-meta { display: flex; gap: 0.8rem; align-items: center; margin-bottom: 0.8rem; font-size: 0.76rem; color: var(--muted-2); }
.blog-cat {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.blog-body h3 { font-size: 1.08rem; margin-bottom: 0.6rem; text-transform: none; letter-spacing: 0; }
.blog-body p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.1rem; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
  background: radial-gradient(ellipse at 50% 0%, #1c1610 0%, var(--black) 65%);
  text-align: center;
  border-top: 1px solid var(--border-subtle-2);
  scroll-margin-top: var(--header-h);
}
.final-cta-glow {
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(212,175,106,0.22) 0%, rgba(212,175,106,0) 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  max-width: 780px;
  margin: 0 auto 1rem;
}
.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 2.2rem;
}
.final-cta .hero-cta { justify-content: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--black-deep);
  border-top: 1px solid var(--border-subtle-2);
  padding-top: 5rem;
  scroll-margin-top: var(--header-h);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 1.1rem 0 1.4rem;
  max-width: 280px;
}
.social-row { display: flex; gap: 0.7rem; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid var(--border-subtle-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.social-row svg { width: 16px; height: 16px; fill: none; stroke: var(--muted); stroke-width: 1.6; }
.social-row a:hover { border-color: var(--gold); background: rgba(212,175,106,0.08); }
.social-row a:hover svg { stroke: var(--gold); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.3rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; align-items: center; gap: 0.6rem; color: var(--muted); font-size: 0.9rem; }
.footer-contact .icon-sm { color: var(--gold); fill: none; stroke: currentColor; }
.footer-contact { margin-bottom: 1.4rem; }

.footer-bottom {
  border-top: 1px solid var(--border-subtle-2);
  padding: 1.6rem 0;
}
.footer-bottom p {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted-2);
}

@media (max-width: 480px) {
  .footer-bottom .container { padding-right: 4.2rem; }
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 1.2rem; right: 1.2rem; bottom: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(12, 11, 10, 0.96);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  z-index: 700;
  padding: 1.4rem 1.6rem;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p { color: var(--muted); font-size: 0.88rem; max-width: 560px; }
.cookie-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 400;
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: all 0.35s var(--ease);
  box-shadow: 0 10px 30px -10px rgba(212,175,106,0.6);
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-to-top svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.back-to-top:hover { transform: translateY(-3px) scale(1.05); }

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up, .hero-slide, .dest-card img, .blog-img img, .logos-track { transition: none !important; animation: none !important; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .destinations-track { grid-auto-columns: calc(50% - 0.6rem); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-actions .btn-outline-gold.btn-sm { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-benefits ul { flex-direction: row; flex-wrap: wrap; gap: 1.2rem; }
  .hero-benefits li { flex: 1 1 45%; border-bottom: none; padding-bottom: 0; }

  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .feature-col:nth-child(2)::after { display: none; }
  .feature-col::after { display: none; }
  .feature-col:nth-child(odd) { border-right: 1px solid var(--border-subtle-2); }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-border { display: none; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-track { grid-auto-columns: calc(50% - 0.6rem); }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }

  .site-header .brand-logo-axova,
  .site-header.is-scrolled .brand-logo-axova { height: 54px; }
  .hero-logo-row { gap: 0.5rem; }

  .hero { min-height: auto; padding-top: calc(var(--header-h) + 1.5rem); padding-bottom: 5rem; }
  .hero-inner { padding-top: 0.5rem; padding-bottom: 2.5rem; gap: 2rem; }
  .hero-title { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-benefits { padding: 1.5rem; }
  .hero-benefits ul { flex-direction: column; }
  .hero-benefits li { flex: 1 1 auto; border-bottom: 1px solid var(--border-subtle-2); padding-bottom: 1.2rem; }
  .hero-controls { bottom: 1rem; gap: 1rem; }
  .scroll-cue { display: none; }

  .destinations-track { grid-auto-columns: 82%; }
  .dest-arrow { display: none; }
  .dest-dots { display: flex; }

  .features-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .feature-col { border-right: none !important; }

  .about-stats { gap: 1.6rem; flex-wrap: wrap; }

  .steps-grid { grid-template-columns: 1fr; }
  .blog-track { grid-auto-columns: 82%; }

  .testimonials-track { grid-auto-columns: 88%; }
  .testi-prev, .testi-next { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.4rem; text-align: left; }

  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }

  .section { padding: 3.5rem 0; }
}

@media (max-width: 420px) {
  .container { padding: 0 1.1rem; }
  .hero-benefits li { flex: 1 1 100%; }
}
