/* ============================================================
   GO CABS & TAXI KIGALI — Dark Luxury Design System
   Palette: deep charcoal-green surfaces, champagne gold accents
   Type: Cormorant Garamond (display) + Manrope (body)
   ============================================================ */

:root {
  --bg: #0b0f0e;
  --surface: #121815;
  --surface-2: #1a221e;
  --surface-3: #222b26;
  --line: rgba(212, 175, 97, 0.14);
  --line-strong: rgba(212, 175, 97, 0.32);
  --gold: #d4af61;
  --gold-bright: #e9c87e;
  --gold-deep: #a8873f;
  --text: #ede9df;
  --muted: #a3aaa2;
  --faint: #879086;
  --green-accent: #3e5c4b;
  --danger: #e05252;
  --whatsapp: #22c15e;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.45);
  --shadow-lift: 0 18px 60px rgba(0, 0, 0, 0.6);

  --z-nav: 100;
  --z-overlay: 40;
  --z-badge: 10;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

a { color: var(--gold); text-decoration: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 var(--space-3);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.35rem, 2.6vw, 1.7rem); }

p { margin: 0 0 var(--space-3); }

.container {
  width: min(1160px, 100% - 40px);
  margin-inline: auto;
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-3);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold-deep);
}

.section { padding: var(--space-8) 0; }
.section-tight { padding: var(--space-7) 0; }

.section-head { max-width: 640px; margin-bottom: var(--space-6); }
.section-head p { color: var(--muted); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #17130a;
}
.btn-gold:hover { box-shadow: 0 8px 28px rgba(212, 175, 97, 0.35); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #06210f;
}
.btn-whatsapp:hover { box-shadow: 0 8px 28px rgba(34, 193, 94, 0.35); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  background: rgba(11, 15, 14, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(11, 15, 14, 0.92);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.brand-mark {
  width: 60px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.brand-mark svg { width: 60px; height: 30px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  white-space: nowrap;
}
.brand-name span { color: var(--gold); }
.brand-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 2px;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--gold-bright); }
.nav-links .nav-cta a::after { display: none; }
.nav-cta { margin-left: var(--space-2); }
.nav-links .nav-cta a,
.nav-links .nav-cta a:hover {
  color: #17130a;
  padding: 12px 28px;
  border-bottom: none;
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text);
  width: 46px;
  height: 46px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11, 15, 14, 0.98);
    border-bottom: 1px solid var(--line);
    padding: var(--space-3) var(--space-4) var(--space-5);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.05rem;
  }
  .nav-links a::after { display: none; }
  .nav-links a[aria-current="page"] { border-bottom-color: var(--gold); }
  .nav-cta { margin: var(--space-3) 0 0; }
}

/* ---------- Hero (video) ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 15, 14, 0.55) 0%, rgba(11, 15, 14, 0.35) 45%, var(--bg) 100%),
    radial-gradient(70% 90% at 25% 60%, rgba(11, 15, 14, 0.55), transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 var(--space-8);
  max-width: 720px;
}

/* Hero entrance choreography */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
.hero-content > * {
  opacity: 0;
  animation: hero-rise 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.12s; }
.hero-content > *:nth-child(2) { animation-delay: 0.26s; }
.hero-content > *:nth-child(3) { animation-delay: 0.40s; }
.hero-content > *:nth-child(4) { animation-delay: 0.54s; }
.hero-content > *:nth-child(5) { animation-delay: 0.70s; }
@media (prefers-reduced-motion: reduce) {
  .hero-content > * { animation: none; opacity: 1; }
}
.hero-content h1 span { color: var(--gold-bright); font-style: italic; }
.hero-lede {
  font-size: 1.12rem;
  color: #cfd4cc;
  max-width: 540px;
  margin-bottom: var(--space-5);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-7);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(212, 175, 97, 0.22);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold-bright);
  line-height: 1.1;
}
.hero-stat span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero .hero-content { padding: 160px 0 var(--space-6); }

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: var(--space-4);
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lift);
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-media img { transform: scale(1.06); }
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 15, 14, 0.72) 100%);
}

.card-body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}
.card-body h3 { margin-bottom: 2px; }
.card-body .desc { color: var(--muted); font-size: 0.94rem; flex: 1; }

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}

/* ---------- Price display ---------- */
.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.price small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
.price-was {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--faint);
  text-decoration: line-through;
  margin-right: 8px;
}

/* ---------- Discount sticker ---------- */
.sticker {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: var(--z-badge);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #191307;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}
.sticker svg { width: 13px; height: 13px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line-strong);
  padding: 5px 12px;
  border-radius: 999px;
  width: fit-content;
}

/* ---------- Filter pills ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.filter-pill {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.filter-pill:hover { color: var(--text); border-color: var(--gold); }
.filter-pill[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  border-color: transparent;
  color: #17130a;
}
.filter-count {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--faint);
  letter-spacing: 0.06em;
}
@media (max-width: 640px) {
  .filter-count { width: 100%; margin-left: 0; }
}

/* ---------- Itinerary / detail list ---------- */
.itinerary {
  list-style: none;
  margin: var(--space-2) 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.itinerary li {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}
.itinerary .time {
  flex: none;
  width: 74px;
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding-top: 1px;
}

.ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.ticks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.93rem;
}
.ticks svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--gold);
  margin-top: 3px;
}

/* ---------- Route table ---------- */
.route-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.route-table th,
.route-table td {
  text-align: left;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.route-table th {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  background: var(--surface-2);
}
.route-table tr:last-child td { border-bottom: none; }
.route-table td.route-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-bright);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.route-table td .note { display: block; font-size: 0.8rem; color: var(--faint); margin-top: 3px; }
.route-name { font-weight: 700; color: var(--text); }
.route-sub { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 2px; }
.route-book { white-space: nowrap; }

.table-scroll { overflow-x: auto; border-radius: var(--radius-lg); }

/* On phones the route table reflows into stacked route cards */
@media (max-width: 720px) {
  .table-scroll { overflow-x: visible; }
  .route-table { display: block; border: none; background: transparent; }
  .route-table thead { display: none; }
  .route-table tbody { display: grid; gap: var(--space-3); }
  .route-table tr {
    display: block;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: var(--shadow-card);
  }
  .route-table td {
    display: block;
    border: none;
    padding: 0;
  }
  .route-table td.route-price {
    font-size: 1.45rem;
    padding: 10px 0 12px;
  }
  .route-table td:last-child { padding-top: 2px; }
  .route-table .route-book { width: 100%; }
}

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1.05fr; }
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
}

/* ---------- Rental cards ---------- */
.rate-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.rate-week {
  font-size: 0.82rem;
  color: var(--whatsapp);
  font-weight: 700;
}

.deal-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  background: linear-gradient(120deg, rgba(212, 175, 97, 0.14), rgba(212, 175, 97, 0.04));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-6);
}
.deal-banner .deal-pct {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.deal-banner p { margin: 0; color: var(--muted); max-width: 560px; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-deep);
  opacity: 0.55;
  line-height: 1;
  display: block;
  margin-bottom: var(--space-3);
}
.step h3 { font-size: 1.25rem; }
.step p { color: var(--muted); font-size: 0.93rem; margin: 0; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
}
.cta-band-bg {
  position: absolute;
  inset: 0;
}
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 15, 14, 0.93) 30%, rgba(11, 15, 14, 0.55));
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  padding: var(--space-7) var(--space-6);
  max-width: 620px;
}
.cta-band-inner p { color: var(--muted); }
@media (max-width: 640px) { .cta-band-inner { padding: var(--space-6) var(--space-4); } }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-6);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.contact-row {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .ico {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--gold);
}
.contact-row .ico svg { width: 19px; height: 19px; }
.contact-row strong { display: block; font-size: 0.95rem; }
.contact-row a, .contact-row span.val { color: var(--muted); font-size: 0.92rem; }
.contact-row a:hover { color: var(--gold-bright); }

/* FAQ */
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: var(--space-2);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 0.97rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 22px 18px; color: var(--muted); font-size: 0.93rem; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: #080b0a;
  padding: var(--space-7) 0 var(--space-5);
  margin-top: var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-5);
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: var(--space-3);
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer ul a { color: var(--muted); font-size: 0.92rem; }
.footer ul a:hover { color: var(--gold-bright); }
.footer .about { color: var(--muted); font-size: 0.92rem; max-width: 300px; }
.footer-bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  color: var(--faint);
  font-size: 0.82rem;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: var(--z-nav);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #06210f;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(34, 193, 94, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 38px rgba(34, 193, 94, 0.55); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 200;
  background: var(--gold);
  color: #17130a;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus { left: 12px; }
