:root {
  --bg: #071224;
  --bg-soft: #0d1c34;
  --card: rgba(12, 27, 49, 0.78);
  --card-solid: #0f203a;
  --text: #f7f8fb;
  --muted: #d7dfed;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #f0c64b;
  --accent-dark: #c69b1c;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(240,198,75,0.12), transparent 24%),
    linear-gradient(180deg, #06101f 0%, #0b1730 40%, #08111d 100%);
  color: var(--text);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(55px);
  pointer-events: none;
  z-index: -1;
}
.orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(240,198,75,0.12);
  top: 8%;
  left: -5%;
}
.orb-2 {
  width: 360px;
  height: 360px;
  background: rgba(71,113,201,0.18);
  right: -6%;
  bottom: 10%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(6, 16, 31, 0.65);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.14);
}
.brand strong,
.section-head h2,
.hero h1,
.contact-form h3,
.intro-card h3,
.info-card h3,
.trip-card h3 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.02em;
}
.brand strong { display:block; font-size: 1.15rem; }
.brand span { color: var(--muted); font-size: 0.85rem; }
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.nav a {
  color: var(--muted);
  font-size: 0.96rem;
}
.nav a:hover,
.text-link,
.contact-list a:hover { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #f6d96f);
  color: #071224;
  font-weight: 800;
  border: none;
  box-shadow: 0 14px 30px rgba(240,198,75,0.25);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(240,198,75,0.35); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: none;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg { object-fit: cover; object-position: center; }
.hero-overlay {
  background: linear-gradient(120deg, rgba(5,12,24,0.88) 16%, rgba(6,16,31,0.55) 45%, rgba(5,12,24,0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 6rem 0;
}
.eyebrow,
.section-tag {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(240,198,75,0.12);
  border: 1px solid rgba(240,198,75,0.32);
  color: #f7d97b;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: .95;
  text-transform: uppercase;
}
.hero p {
  max-width: 640px;
  font-size: 1.07rem;
  line-height: 1.85;
  color: var(--muted);
  margin: 1.4rem 0 2rem;
}
.hero-actions, .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero-badges { margin-top: 1.35rem; }
.hero-badges span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  font-size: 0.92rem;
}

.section { padding: 5.6rem 0; }
.section-head { margin-bottom: 2rem; }
.section-head h2 {
  margin: 0.25rem 0 .65rem;
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 1;
  text-transform: uppercase;
}
.section-head p,
.intro-copy p,
.intro-card p,
.info-card p,
.trip-card p,
.social-card p,
.form-note,
.contact-list,
.contact-copy p { color: var(--muted); line-height: 1.8; }

.intro-grid,
.video-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}
.intro-copy,
.intro-card,
.info-card,
.trip-card,
.social-card,
.contact-form,
.contact-copy,
.video-frame {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.intro-copy,
.contact-copy { padding: 2rem; }
.intro-card {
  padding: 2rem;
  text-align: center;
}
.intro-card img {
  width: 132px;
  height: 132px;
  margin: 0 auto 1rem;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 12px 34px rgba(0,0,0,0.24);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}
.stats article {
  padding: 1.2rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}
.stats strong { display:block; font-size: 1.15rem; color: var(--accent); margin-bottom: .35rem; }
.stats span { font-size: .92rem; color: var(--muted); }

.cards-grid,
.trip-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.trip-grid { grid-template-columns: repeat(4, 1fr); }
.social-grid { grid-template-columns: repeat(3, 1fr); }
.info-card,
.social-card { padding: 1.8rem; }
.info-card h3,
.trip-card h3,
.contact-form h3 { margin-top: 0; font-size: 1.55rem; text-transform: uppercase; }
.trip-card { overflow: hidden; }
.trip-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.trip-body { padding: 1.2rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.video-frame { overflow: hidden; min-height: 430px; }
.video-frame iframe { width: 100%; height: 100%; min-height: 430px; border: 0; }
.social-card span { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .85rem; }
.social-card strong { display:block; margin: .7rem 0 .5rem; font-size: 1.1rem; }
.social-card:hover { border-color: rgba(240,198,75,0.42); transform: translateY(-4px); }

.contact-list { list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
.contact-list li { margin-bottom: .8rem; }
.map-wrap {
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
}
.map-wrap iframe { width:100%; height:320px; border:0; }
.contact-form {
  padding: 2rem;
  display: grid;
  gap: 1rem;
}
.contact-form label { display: grid; gap: .5rem; }
.contact-form span { font-weight: 700; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(240,198,75,0.55);
  box-shadow: 0 0 0 4px rgba(240,198,75,0.12);
}
.form-note { margin: 0; font-size: .9rem; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(4,10,20,0.75);
}
.footer-wrap {
  padding: 1.5rem 0 2.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer p { margin: 0; color: var(--muted); }
.site-footer a { color: var(--accent); }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  box-shadow: 0 18px 36px rgba(0,0,0,0.28);
  z-index: 40;
}
.whatsapp-float svg { width: 30px; height: 30px; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 18, 0.93);
  display: none;
  place-items: center;
  padding: 1rem;
  z-index: 50;
}
.lightbox.active { display: grid; }
.lightbox img {
  max-width: min(92vw, 900px);
  max-height: 78vh;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.lightbox p {
  margin: .9rem 0 0;
  text-align: center;
  color: var(--muted);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .26s; }

@media (max-width: 1080px) {
  .trip-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-wrap { padding: 0.9rem 0; flex-direction: column; }
  .nav { gap: 0.75rem 1rem; }
  .mobile-hide { display: none; }
  .intro-grid,
  .video-grid,
  .contact-grid,
  .cards-grid,
  .social-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding: 5rem 0; }
}

@media (max-width: 640px) {
  .section { padding: 4.4rem 0; }
  .hero h1 { font-size: clamp(2.3rem, 12vw, 4rem); }
  .stats,
  .trip-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .container { width: min(100% - 1.2rem, 1140px); }
  .intro-copy,
  .intro-card,
  .info-card,
  .social-card,
  .contact-copy,
  .contact-form { padding: 1.35rem; }
  .video-frame iframe,
  .video-frame { min-height: 280px; }
  .whatsapp-float { width: 56px; height: 56px; }
}
