/* ============================================
   BALI DESA RAFTING — Design Tokens
   ============================================ */
:root {
  --maroon-900: #4a0b10;
  --maroon: #731018;
  --maroon-700: #8a1a20;
  --rust: #ab4239;
  --gold: #facb5b;
  --gold-600: #e3ac2f;
  --ink: #000000;
  --cream: #fffbf3;
  --cream-2: #f7ead2;
  --white: #ffffff;

  --font-display: "Baloo 2", "Arial Rounded MT Bold", sans-serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  --container: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================
   Eyebrow / Utility text
   ============================================ */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--maroon-900);
  box-shadow: 0 6px 0 var(--gold-600);
}

.btn-gold:hover {
  box-shadow: 0 8px 0 var(--gold-600);
}

.btn-gold:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--gold-600);
}

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--cream);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-maroon {
  background: var(--maroon);
  color: var(--cream);
  box-shadow: 0 6px 0 var(--maroon-900);
}
.btn-maroon:hover {
  box-shadow: 0 8px 0 var(--maroon-900);
}
.btn-maroon:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--maroon-900);
}

/* ============================================
   Navigation
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 243, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
  background: var(--maroon);
  color: var(--cream);
}

.nav-links a.active {
  background: var(--maroon);
  color: var(--cream);
}

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

.nav-cta .btn {
  padding: 11px 22px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--maroon);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--cream-2);
  border-radius: 999px;
  padding: 3px;
  flex-shrink: 0;
}

.nav-links .lang-toggle {
  display: none;
}

.lang-toggle button {
  border: none;
  background: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--maroon-900);
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-toggle button.active {
  background: var(--maroon);
  color: var(--cream);
}

@media (max-width: 480px) {
  .nav-brand span {
    font-size: 15px !important;
  }
  .nav-brand img {
    height: 32px !important;
  }
  .nav-cta .btn {
    padding: 9px 16px;
    font-size: 13px;
  }
  .lang-toggle button {
    padding: 6px 9px;
    font-size: 11px;
  }
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transform: translateY(-130%);
    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 16px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-cta .btn-outline {
    display: none;
  }
  .nav-cta .lang-toggle {
    display: none;
  }
  .nav-links .lang-toggle {
    display: flex;
    align-self: flex-start;
    margin: 4px 16px 8px;
  }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  color: var(--cream);
  padding: 76px 0 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 140% at 78% 8%, var(--maroon-700) 0%, var(--maroon) 45%, var(--maroon-900) 100%);
  opacity: 0.82;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 60px;
}

.hero-eyebrow {
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  margin-top: 18px;
  color: var(--cream);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.6;
  max-width: 46ch;
  color: rgba(255, 251, 243, 0.88);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 46px;
  flex-wrap: wrap;
}

.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--gold);
}

.hero-stat span {
  font-size: 13px;
  color: rgba(255, 251, 243, 0.7);
  letter-spacing: 0.04em;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art-glow {
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(250, 203, 91, 0.28) 0%, transparent 70%);
  z-index: 0;
}

.river-divider {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  margin-top: -2px;
}

/* ============================================
   Section basics
   ============================================ */
.section {
  padding: 90px 0;
}

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

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head .eyebrow {
  color: var(--rust);
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-top: 14px;
  color: var(--maroon-900);
}

.section-head p {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.65;
  color: #3a2320;
}

/* ============================================
   Feature cards
   ============================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 26px rgba(74, 11, 16, 0.06);
}

.card .icon {
  width: 54px;
  height: 54px;
  color: var(--maroon);
  margin-bottom: 20px;
}

.card h3 {
  font-size: 21px;
  color: var(--maroon-900);
}

.card p {
  margin-top: 10px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #4a3936;
}

/* ============================================
   Journey / timeline (river route)
   ============================================ */
.journey {
  position: relative;
  padding-left: 0;
}

.journey-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  position: relative;
  padding-bottom: 48px;
}

.journey-item:last-child {
  padding-bottom: 0;
}

.journey-node {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  position: relative;
  z-index: 2;
}

.journey-item::before {
  content: "";
  position: absolute;
  left: 37px;
  top: 76px;
  bottom: -10px;
  width: 3px;
  background-image: linear-gradient(var(--rust) 60%, transparent 0%);
  background-size: 3px 14px;
  background-repeat: repeat-y;
}

.journey-item:last-child::before {
  display: none;
}

.journey-body h3 {
  font-size: 20px;
  color: var(--maroon-900);
}

.journey-body p {
  margin-top: 8px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #4a3936;
  max-width: 60ch;
}

/* ============================================
   Stats strip
   ============================================ */
.stats-strip {
  background: var(--maroon-900);
  color: var(--cream);
  padding: 46px 0;
}

.stats-strip .grid-3,
.stats-strip .grid-4 {
  text-align: center;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
}

.stat span {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: rgba(255, 251, 243, 0.75);
}

/* ============================================
   CTA banner
   ============================================ */
.cta-banner {
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 54px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--maroon-900);
  max-width: 18ch;
}

.cta-banner p {
  margin-top: 10px;
  color: var(--maroon-900);
  font-size: 15.5px;
  max-width: 44ch;
}

/* ============================================
   Package cards
   ============================================ */
.package-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  border: 2px solid var(--cream-2);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(74, 11, 16, 0.12);
}

.package-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--maroon);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}

.package-card h3 {
  font-size: 24px;
  color: var(--maroon-900);
}

.package-price {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--rust);
}

.package-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #4a3936;
  line-height: 1.5;
}

.package-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--rust);
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--maroon-900);
}

.faq-q .plus {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.25s ease;
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--maroon);
  border-radius: 2px;
}

.faq-q .plus::before {
  width: 100%;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-q .plus::after {
  width: 3px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding: 0 4px 22px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #4a3936;
  max-width: 70ch;
}

/* ============================================
   Team / people
   ============================================ */
.team-card {
  text-align: center;
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--rust), var(--maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}

.team-avatar svg {
  width: 46%;
  height: 46%;
}

.team-card h3 {
  font-size: 18px;
  color: var(--maroon-900);
}

.team-card span {
  font-size: 13.5px;
  color: var(--rust);
  font-weight: 600;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.testimonials-rating .score {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--maroon-900);
}

.testimonials-rating .stars {
  color: var(--gold-600);
  font-size: 19px;
  letter-spacing: 2px;
}

.testimonials-rating .count a {
  color: var(--rust);
  font-weight: 700;
  font-size: 14.5px;
  border-bottom: 1px solid rgba(199, 79, 46, 0.35);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 26px rgba(74, 11, 16, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.testimonial-card .stars {
  color: var(--gold-600);
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #3a2320;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonial-author strong {
  font-size: 15px;
  color: var(--maroon-900);
}

.testimonial-author span {
  font-size: 12.5px;
  color: #8a6f68;
  font-weight: 600;
}

/* ============================================
   Values
   ============================================ */
.value-row {
  display: flex;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.value-row:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}

.value-num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold-600);
  min-width: 54px;
}

.value-row h3 {
  font-size: 19px;
  color: var(--maroon-900);
}

.value-row p {
  margin-top: 6px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #4a3936;
  max-width: 62ch;
}

/* ============================================
   Page header (inner pages)
   ============================================ */
.page-header {
  background: radial-gradient(120% 160% at 15% 0%, var(--maroon-700) 0%, var(--maroon) 50%, var(--maroon-900) 100%);
  color: var(--cream);
  padding: 64px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-header .eyebrow {
  color: var(--gold);
}

.page-header h1 {
  margin-top: 16px;
  font-size: clamp(34px, 5vw, 54px);
  color: var(--cream);
}

.page-header p {
  margin-top: 16px;
  font-size: 17px;
  max-width: 58ch;
  color: rgba(255, 251, 243, 0.85);
  line-height: 1.6;
}

/* ============================================
   Contact
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-card .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--maroon);
  background: var(--cream-2);
  border-radius: 14px;
  padding: 11px;
}

.contact-card h3 {
  font-size: 17px;
  color: var(--maroon-900);
}

.contact-card p, .contact-card a {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.55;
  color: #4a3936;
}

.contact-card a.link {
  color: var(--rust);
  font-weight: 700;
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  height: 100%;
  min-height: 340px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 340px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, background 0.18s ease;
}

.social-btn:hover {
  background: var(--rust);
  transform: translateY(-3px);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   Press Feature
   ============================================ */
.press-feature {
  align-items: center;
  gap: 48px;
}

.press-feature-media {
  position: relative;
}

.press-feature-media img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(74, 11, 16, 0.2);
}

.press-feature-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--gold);
  color: var(--maroon-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(74, 11, 16, 0.25);
}

.press-feature-body h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--maroon-900);
  margin-top: 14px;
}

.press-feature-body p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #3a2320;
}

.press-links {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.press-links a {
  color: var(--rust);
  font-weight: 700;
  font-size: 14.5px;
  border-bottom: 1px solid rgba(199, 79, 46, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.press-links a:hover {
  color: var(--maroon-900);
  border-color: var(--maroon-900);
}

@media (max-width: 980px) {
  .press-feature {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Gallery
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 18px;
}

.gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(74, 11, 16, 0.12);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 11, 16, 0.55) 0%, rgba(74, 11, 16, 0) 38%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item--big {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--full {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(74, 11, 16, 0.55);
  border: 2px solid rgba(255, 251, 243, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  transition: transform 0.25s ease, background 0.2s ease;
}

.gallery-play-icon svg {
  width: 28px;
  height: 28px;
  color: var(--cream);
  margin-left: 4px;
}

.gallery-item--video:hover .gallery-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--maroon);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 4, 5, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox img,
.gallery-lightbox video {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item--big {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-item, .gallery-item--big, .gallery-item--wide, .gallery-item--full {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--maroon-900);
  color: var(--cream);
  padding: 64px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand img {
  height: 58px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 251, 243, 0.65);
  max-width: 34ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 14.5px;
  color: rgba(255, 251, 243, 0.75);
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 26px;
  font-size: 13px;
  color: rgba(255, 251, 243, 0.5);
}

/* ============================================
   WhatsApp float
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  z-index: 90;
  transition: transform 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  color: white;
}

button.wa-trigger {
  border: none;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

/* ============================================
   WhatsApp number picker
   ============================================ */
.wa-popover {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(74, 11, 16, 0.28);
  padding: 10px;
  min-width: 250px;
  z-index: 300;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.wa-popover.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wa-popover-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rust);
  padding: 6px 10px 8px;
}

.wa-popover-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 10px;
  color: var(--maroon-900);
  font-weight: 700;
  font-size: 14.5px;
  transition: background 0.15s ease;
}

.wa-popover-option:hover {
  background: var(--cream-2);
}

.wa-popover-option svg {
  width: 20px;
  height: 20px;
  color: #25d366;
  flex-shrink: 0;
}

.wa-popover-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.wa-popover-text strong {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--maroon-900);
}

.wa-popover-text small {
  font-size: 12.5px;
  font-weight: 600;
  color: #8a6f68;
}

.wa-numbers {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-art {
    order: -1;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }
  /* Keep footer text clear of the fixed WhatsApp float */
  .site-footer {
    padding-bottom: 104px;
  }
  .grid-3, .grid-2, .grid-4 {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    padding: 38px 26px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 24px;
  }
  .journey-item {
    grid-template-columns: 60px 1fr;
  }
  .journey-node {
    width: 60px;
    height: 60px;
    font-size: 12px;
  }
  .journey-item::before {
    left: 29px;
    top: 60px;
  }
}
