/* style.css — Elite Collective Design Tokens & Components */

/* ========== DESIGN TOKENS ========== */
:root {
  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Cormorant', 'Georgia', serif;
  --font-body: 'Switzer', 'Helvetica Neue', sans-serif;
}

/* ========== LIGHT MODE (Default) ========== */
:root,
[data-theme='light'] {
  /* Warm sand & ocean-inspired palette */
  --color-bg: #faf8f5;
  --color-surface: #ffffff;
  --color-surface-2: #f5f2ed;
  --color-surface-offset: #ede9e2;
  --color-divider: #ddd8d0;
  --color-border: #cec8be;
  --color-text: #1a1a18;
  --color-text-muted: #6b6660;
  --color-text-faint: #a9a49d;
  --color-text-inverse: #faf8f5;

  /* Primary — Elite Navy (from logo) */
  --color-primary: #1e2d5e;
  --color-primary-hover: #162247;
  --color-primary-active: #0e1830;
  --color-primary-light: #e8ebf4;

  /* Accent — Elite Gold (from logo) */
  --color-accent: #b89a5a;
  --color-accent-hover: #9e8248;
  --color-accent-light: #faf6ee;

  /* Shadows */
  --shadow-sm: 0 1px 3px oklch(0.2 0.02 70 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.02 70 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.02 70 / 0.12);
  --shadow-xl: 0 20px 48px oklch(0.2 0.02 70 / 0.16);
}

/* ========== DARK MODE ========== */
[data-theme='dark'] {
  --color-bg: #111110;
  --color-surface: #1a1918;
  --color-surface-2: #222120;
  --color-surface-offset: #1d1c1b;
  --color-divider: #2d2c2a;
  --color-border: #3a3937;
  --color-text: #e8e5e0;
  --color-text-muted: #8a8580;
  --color-text-faint: #5a5754;
  --color-text-inverse: #1a1a18;

  --color-primary: #7d9bd4;
  --color-primary-hover: #5f82c5;
  --color-primary-active: #4568ae;
  --color-primary-light: #1a2035;

  --color-accent: #d4b87a;
  --color-accent-hover: #c5a462;
  --color-accent-light: #2a2416;

  --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.2);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
  --shadow-xl: 0 20px 48px oklch(0 0 0 / 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #111110;
    --color-surface: #1a1918;
    --color-surface-2: #222120;
    --color-surface-offset: #1d1c1b;
    --color-divider: #2d2c2a;
    --color-border: #3a3937;
    --color-text: #e8e5e0;
    --color-text-muted: #8a8580;
    --color-text-faint: #5a5754;
    --color-text-inverse: #1a1a18;
    --color-primary: #7d9bd4;
    --color-primary-hover: #5f82c5;
    --color-primary-active: #4568ae;
    --color-primary-light: #1a2035;
    --color-accent: #d4b87a;
    --color-accent-hover: #c5a462;
    --color-accent-light: #2a2416;
    --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.2);
    --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
    --shadow-xl: 0 20px 48px oklch(0 0 0 / 0.5);
  }
}

/* ========== LAYOUT ========== */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.container--narrow {
  max-width: var(--content-default);
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease, color 0.4s ease;
}

/* White nav text over hero when not scrolled */
.header:not(.header--scrolled) .header__nav a,
.header:not(.header--scrolled) .header__logo,
.header:not(.header--scrolled) .lang-selector__btn,
.header:not(.header--scrolled) .theme-toggle,
.header:not(.header--scrolled) .mobile-menu-btn {
  color: rgba(255,255,255,0.92);
}

.header:not(.header--scrolled) .logo-img {
  filter: brightness(0) invert(1);
}

.header--scrolled {
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-2) 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
}

.header__logo svg {
  width: 40px;
  height: 40px;
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.header__logo-text span {
  display: block;
  font-size: var(--text-xs);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: nowrap;
}

.header__nav a {
  font-size: var(--text-xs);
  white-space: nowrap;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition-interactive);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__nav a.nav--active {
  color: var(--color-gold);
}
.header__nav a.nav--active::after {
  width: 100%;
  background: var(--color-gold);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.lang-selector {
  position: relative;
  font-size: var(--text-sm);
}

.lang-selector__btn {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--color-text);
  cursor: pointer;
}

.lang-selector__btn:hover {
  background: var(--color-surface-2);
}

.lang-selector__dropdown {
  position: absolute;
  top: calc(100% + var(--space-2));
  right: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

.lang-selector__dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-selector__dropdown button {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  width: 100%;
  padding: var(--space-2) var(--space-3);
  text-align: left;
  font-size: var(--text-sm);
  color: var(--color-text);
  border: none;
  background: none;
  cursor: pointer;
}

.lang-selector__dropdown button:hover {
  background: var(--color-surface-2);
}

.lang-selector__dropdown button:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.lang-selector__dropdown button:last-child {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.theme-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text);
}

.theme-toggle:hover {
  background: var(--color-surface-2);
}

/* Mobile nav */
.mobile-menu-btn {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

/* Hide mobile nav on desktop */
.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
  }
  .mobile-nav a {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    text-decoration: none;
    color: var(--color-text);
  }
  .mobile-nav__close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
  }
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    oklch(0.1 0.01 70 / 0.3) 0%,
    oklch(0.1 0.01 70 / 0.55) 60%,
    oklch(0.1 0.01 70 / 0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: var(--space-32) var(--space-4) var(--space-16);
  max-width: 800px;
  margin-inline: auto;
  pointer-events: none;
}

/* Restore pointer events on interactive elements inside hero */
.hero__content a,
.hero__content button,
.hero__content .live-elite-tag {
  pointer-events: auto;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.hero__subtitle {
  font-size: var(--text-base);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

/* ========== BOOKING WIDGET ========== */
.booking-widget {
  position: relative;
  z-index: 5;
  max-width: 900px;
  margin: calc(-1 * var(--space-12)) auto var(--space-16);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-6);
}

.booking-widget__form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: var(--space-4);
  align-items: end;
}

.booking-widget__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.booking-widget__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.booking-widget__input {
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  background: var(--color-bg);
  color: var(--color-text);
}

.booking-widget__input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    background var(--transition-interactive),
    transform var(--transition-interactive),
    box-shadow var(--transition-interactive);
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--primary:active {
  transform: translateY(0);
  background: var(--color-primary-active);
}

.btn--accent {
  background: var(--color-accent);
  color: #fff;
}

.btn--accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--ghost:hover {
  background: var(--color-surface-2);
  border-color: var(--color-text-muted);
}

.btn--hero {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn--hero:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .booking-widget__form {
    grid-template-columns: 1fr 1fr;
  }
  .booking-widget__form .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .booking-widget__form {
    grid-template-columns: 1fr;
  }
}

/* ========== SECTION COMMON ========== */
.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
}

.section--alt {
  background: var(--color-surface-2);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-16));
}

.section__overline {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  font-style: italic;
}

.section__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 55ch;
  margin: var(--space-4) auto 0;
}

/* ========== DESTINATIONS GRID ========== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

.destination-card:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 21/9;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card:hover img {
  transform: scale(1.04);
}

.destination-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.1 0.01 70 / 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
}

.destination-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  font-style: italic;
  margin-bottom: var(--space-1);
}

.destination-card__badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 3;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35em 1em;
  border-radius: var(--radius-full, 9999px);
}

@media (max-width: 600px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .destination-card:first-child {
    aspect-ratio: 4/3;
  }
}

/* ========== EXPERIENCE / WHY US ========== */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.experience-grid__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.experience-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.experience-grid__content {
  padding: var(--space-4) 0;
}

.experience-grid__content .section__overline {
  text-align: left;
}

.experience-grid__content .section__title {
  text-align: left;
  margin-bottom: var(--space-4);
}

.experience-grid__content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.experience-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.experience-feature {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.experience-feature__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-md);
}

.experience-feature__text h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.experience-feature__text p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== STATS BAR ========== */
.stats-bar {
  padding: clamp(var(--space-8), 4vw, var(--space-12)) 0;
  background: var(--color-primary);
  color: #fff;
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat__label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

@media (max-width: 600px) {
  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
}

.testimonial-card__stars {
  color: var(--color-accent);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-size: var(--text-base);
  color: var(--color-text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
}

.testimonial-card__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-card__location {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== CTA SECTION ========== */
.cta-section {
  position: relative;
  padding: clamp(var(--space-16), 10vw, var(--space-32)) 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: oklch(0.1 0.02 70 / 0.65);
}

.cta-section__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-inline: auto;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  font-style: italic;
  margin-bottom: var(--space-4);
}

.cta-section__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-8);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-surface-2);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid var(--color-divider);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

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

.footer__brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  max-width: 32ch;
}

.footer__col h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__col a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer__col a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.footer__socials {
  display: flex;
  gap: var(--space-3);
}

.footer__socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: color var(--transition-interactive), background var(--transition-interactive);
}

.footer__socials a:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}

@keyframes reveal-fade {
  to {
    opacity: 1;
  }
}

/* ========== BOOM INTEGRATION BANNER ========== */
.boom-banner {
  background: var(--color-accent-light);
  padding: var(--space-3) 0;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-divider);
}

.boom-banner strong {
  color: var(--color-primary);
}

/* ========== LIVE ELITE SLOGAN ========== */
.live-elite-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  font-family: var(--font-body);
}

.live-elite-tag::before,
.live-elite-tag::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.7;
}

/* Logo image — header */
.logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: none;
}

/* Hero logo lockup — large centered brand moment */
.hero__logo-lockup {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-8);
}

.hero__logo-img {
  height: 260px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 6px 32px rgba(0,0,0,0.4));
  opacity: 1;
}

@media (max-width: 768px) {
  .hero__logo-img {
    height: 160px;
  }
}

[data-theme='dark'] .logo-img {
  filter: brightness(0) invert(1);
}

/* Hero CTA row — button + LIVE ELITE tag side by side */
.hero__cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}

.hero__cta-row .live-elite-tag {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  width: 100%;
  justify-content: center;
}

.hero__cta-row .live-elite-tag::before,
.hero__cta-row .live-elite-tag::after {
  background: rgba(255,255,255,0.5);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ========== SKIP LINK ========== */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  z-index: 999;
  text-decoration: none;
  font-size: var(--text-sm);
}

.skip-link:focus {
  top: var(--space-2);
}
