@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root{
  --bg:#f6fbff;
  --surface:#ffffff;
  --surface-2:#f1f6ff;
  --text:#0f172a;
  --muted:#475569;
  --border:#e2e8f0;
  --primary:#1F5B86;       /* brand blue */
  --primary-2:#163D59;     /* deeper brand blue */
  --primary-rgb:31,91,134;
  --accent:#79A93A;        /* brand green */
  --accent-rgb:121,169,58;
  --success:#16a34a;
  --danger:#ef4444;
  --shadow:0 18px 48px rgba(2, 8, 23, .10);
  --shadow-sm:0 10px 24px rgba(2, 8, 23, .08);
  --radius:12px;
  --radius-sm:10px;
  --container:1320px;
  --ease:cubic-bezier(.2,.8,.2,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg, #ffffff, var(--bg));
  line-height:1.6;
  font-size:16px;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
p{margin:0 0 14px}
h1,h2,h3{line-height:1.15;margin:0 0 12px;font-family:inherit;letter-spacing:-.02em}
h1,h2,h3{font-weight:700}
h1{font-size:clamp(2rem, 4.2vw, 3.2rem)}
h2{font-size:clamp(1.5rem, 2.8vw, 2.2rem)}
h3{font-size:1.25rem}

.container{
  max-width:min(var(--container), 100%);
  margin:0 auto;
  padding:0 20px;
}
.muted{color:var(--muted)}
.text-accent{color:var(--primary)}
.spacer-sm{height:14px}
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

.skip-link{
  position:absolute;left:-9999px;top:12px;z-index:9999;
  background:#fff;color:var(--text);padding:10px 12px;border-radius:10px;
}
.skip-link:focus{left:12px}

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid rgba(226,232,240,.85);
}
.site-header.is-scrolled{box-shadow:0 12px 30px rgba(2,8,23,.10)}
.topbar{
  background:linear-gradient(90deg, var(--primary-2), var(--primary));
  color:rgba(255,255,255,.92);
  border-bottom:1px solid rgba(255,255,255,.10);
  font-size:.86rem;
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:7px 0;
}
.topbar-left{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.topbar-link{color:rgba(255,255,255,.92)}
.topbar-link:hover{color:#fff}
.topbar-sep{opacity:.7}
.topbar-right{display:flex;align-items:center;gap:10px}
.social-icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:34px;height:34px;border-radius:12px;
  color:rgba(255,255,255,.92);
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  transition:transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.social-icon:hover{transform:translateY(-1px);background:rgba(255,255,255,.16);color:#fff;border-color:rgba(255,255,255,.22)}
.header-inner{position:relative;display:flex;align-items:center;justify-content:space-between;gap:14px;padding:14px 0}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  padding:2px 0;
  min-width:0;
}
.brand-logo{
  border-radius:0;
  background:transparent;
  padding:0;
  border:0;
  box-shadow:none;
  height:78px;
  width:auto;
  object-fit:contain;
}
.brand-text{display:flex;flex-direction:column;gap:4px;line-height:1.15}
.brand-name{
  font-family:inherit;
  font-weight:700;
  letter-spacing:.01em;
  font-size:1.5rem;
  color:rgba(15,23,42,.92);
}
.brand-tagline{
  font-size:.95rem;
  color:rgba(71,85,105,.92);
}

.site-nav{display:flex;align-items:center;gap:8px}
.nav-link{
  padding:10px 10px;border-radius:12px;color:rgba(15,23,42,.82);
  font-weight:600;
  letter-spacing:.015em;
  transition:background .2s ease,color .2s ease, transform .2s ease;
}
.nav-link:hover{background:rgba(var(--accent-rgb),.12);color:var(--text);transform:translateY(-1px)}
.nav-link.active{background:rgba(var(--primary-rgb),.10);color:var(--text);border:1px solid rgba(var(--primary-rgb),.20)}

.nav-toggle{
  display:none;border:1px solid rgba(2,8,23,.12);
  background:rgba(2,8,23,.04);
  border-radius:14px;padding:10px 12px;cursor:pointer;color:var(--text);
}
.nav-toggle-bar{display:block;width:18px;height:2px;background:var(--text);opacity:.9;margin:4px 0;border-radius:10px}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:12px 16px;border-radius:14px;border:1px solid transparent;
  font-weight:700;letter-spacing:.01em;transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn-sm{padding:10px 12px;border-radius:12px}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--primary) 0%, var(--primary-2) 100%);
  box-shadow:0 14px 30px rgba(var(--primary-rgb),.24);
}
.btn-primary:hover{box-shadow:0 18px 36px rgba(var(--primary-rgb),.30)}
.btn-outline{
  background:#fff;
  border-color:rgba(226,232,240,.95);
  box-shadow:0 10px 22px rgba(2,8,23,.06);
}
.btn-ghost{
  background:transparent;
  border-color:rgba(226,232,240,.95);
}
.btn-outline:hover{border-color:rgba(var(--primary-rgb),.22)}
.btn-ghost:hover{background:rgba(var(--primary-rgb),.08)}
.btn-whatsapp{
  color:#fff;
  background:linear-gradient(135deg, rgba(34,197,94,.98), rgba(16,185,129,.98));
  border-color:rgba(34,197,94,.34);
  box-shadow:0 16px 34px rgba(34,197,94,.20);
}
.btn-whatsapp:hover{box-shadow:0 20px 42px rgba(34,197,94,.26)}

/* Sections */
.section{padding:clamp(60px, 6vw, 80px) 0}
.section-soft{background:linear-gradient(180deg, rgba(var(--primary-rgb),.06), rgba(var(--primary-rgb),0))}
.section-head{display:flex;align-items:flex-start;justify-content:space-between;gap:24px;margin-bottom:26px}
.section-head p{max-width:720px}
.section-head h2{
  font-family:"Inter","Plus Jakarta Sans",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-weight:800;
  letter-spacing:-.03em;
  font-size:clamp(1.6rem, 3vw, 2.35rem);
}

.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-weight:700;font-size:.84rem;letter-spacing:.14em;text-transform:uppercase;color:rgba(15,23,42,.82);
}
.eyebrow::before{content:"";width:10px;height:10px;border-radius:999px;background:var(--accent);box-shadow:0 0 0 6px rgba(var(--accent-rgb),.18)}
.lead{font-size:1.02rem;color:rgba(15,23,42,.88);max-width:760px}

/* Hero */
.hero{position:relative;min-height:72vh;overflow:hidden}

/* Force truly full-bleed sections (prevents any right-side clipping from parent layout) */
.hero-slider{
  width:100vw;
  margin-left:calc(50% - 50vw);
}
.hero-inner{position:relative;display:grid;grid-template-columns:1.25fr .75fr;gap:22px;padding:68px 0}
.hero-copy h1{margin-top:8px}
.hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0 16px}
.hero-badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
.badge{
  background:#fff;
  border:1px solid rgba(226,232,240,.95);
  border-radius:14px;padding:10px 12px;min-width:170px
}
.badge-k{display:block;font-weight:800}
.badge-v{display:block;color:var(--muted);font-size:.92rem}
.hero-card{background:#fff;border:1px solid rgba(226,232,240,.95);border-radius:var(--radius);padding:18px;box-shadow:var(--shadow)}
.hero-card-title{font-weight:700;font-size:1.05rem;margin-bottom:6px}
.hero-card-actions{display:flex;gap:10px;margin:14px 0 8px}
.mini-note{font-size:.92rem;color:var(--muted)}

/* Slider */
.slider{position:relative;min-height:78vh;width:100%}
.slides{position:absolute;inset:0}
.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:translateX(10px);
  transition:opacity .75s var(--ease), transform .75s var(--ease);
  will-change:opacity,transform;
  pointer-events:none;
}
.slide.is-active{opacity:1;transform:translateX(0);pointer-events:auto}

.slider-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(2,8,23,.10) 0%, rgba(2,8,23,.06) 55%, rgba(2,8,23,.22) 100%);
}
.slider-overlay{opacity:1;transition:opacity .5s var(--ease)}
.slider.slide1-premium .slider-overlay{opacity:0}

/* Slide 1 (premium) */
.slide-hero-premium .hero-premium{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.slide-hero-premium .hero-premium-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:var(--bg-pos, center);
  filter:none;
  transform:none;
}
.slide-hero-premium .hero-premium-photos{
  position:absolute;
  inset:0;
  z-index:2;
}
.slide-hero-premium .hero-premium-photo{
  position:absolute;
  left:var(--x);
  top:var(--y);
  width:clamp(360px, 32vw, 620px);
  aspect-ratio:16/10;
  z-index:var(--z, 1);
  opacity:0;
  transform:translate(calc(-50% - 70px), -50%) rotate(var(--r, 0deg)) scale(.98);
  will-change:transform,opacity;
  pointer-events:none;
}
.slide-hero-premium.is-active .hero-premium-photo{
  animation:premiumPhotoIn 1150ms cubic-bezier(.2,.9,.2,1) var(--delay, 0ms) both;
}
.slide-hero-premium .hero-premium-frame{
  width:100%;
  height:100%;
  border-radius:18px;
  border:10px solid #fff;
  overflow:hidden;
  box-shadow:0 22px 60px rgba(2,8,23,.34);
  background:transparent;
}
.slide-hero-premium .hero-premium-frame img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:none;
}
@keyframes premiumPhotoIn{
  0%{opacity:0;transform:translate(calc(-50% - 70px), -50%) rotate(var(--r, 0deg)) scale(.98)}
  60%{opacity:1}
  100%{opacity:1;transform:translate(-50%, -50%) rotate(var(--r, 0deg)) scale(1)}
}

/* Hero collage slider */
.hero-collage{
  position:absolute;
  inset:0;
  overflow:hidden;
  background:rgba(6, 18, 37, .92);
}
.hero-collage-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:var(--bg-pos, center);
  filter:none;
  transform:scale(1.01);
}
.hero-collage-vignette{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(2,8,23,.18) 0%, rgba(2,8,23,.04) 55%, rgba(2,8,23,.42) 100%);
}
.hero-collage-photos{
  position:absolute;
  inset:0;
  z-index:2;
}
.hero-photo{
  position:absolute;
  left:var(--x);
  top:var(--y);
  width:clamp(320px, 28vw, 520px);
  aspect-ratio:16/10;
  opacity:0;
  transform:translate(-50%, -50%) rotate(var(--r, 0deg)) translateX(-140px);
  transition:
    opacity 1000ms var(--ease) var(--delay, 0ms),
    transform 1250ms var(--ease) var(--delay, 0ms);
  will-change:opacity,transform;
}
.hero-photo:nth-child(2){z-index:4}
.hero-photo:nth-child(4){z-index:3}
.hero-photo:nth-child(1){z-index:2}
.hero-photo:nth-child(3){z-index:1}
.slide:not(.is-active) .hero-photo{transition-delay:0ms}
.slider.photos-ready .slide.is-active .hero-photo{
  opacity:1;
  transform:translate(-50%, -50%) rotate(var(--r, 0deg)) translateX(0);
}
.hero-photo-frame{
  width:100%;
  height:100%;
  border-radius:18px;
  background:#fff;
  border:10px solid #fff;
  box-shadow:0 20px 54px rgba(2,8,23,.30);
  overflow:hidden;
  position:relative;
}
.hero-photo-frame::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:14px;
  border:1px solid rgba(2,8,23,.10);
  pointer-events:none;
}
.hero-photo-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  background:transparent;
  filter:none;
}

.slider-controls{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;height:56px;border-radius:999px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(226,232,240,.95);
  color:rgba(15,23,42,.92);
  cursor:pointer;
  font-size:0;
  line-height:0;
  pointer-events:auto;
  box-shadow:0 12px 26px rgba(2,8,23,.14);
  transition:transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.slider-btn[data-slider-prev]{left:18px}
.slider-btn[data-slider-next]{right:18px}
.slider-btn::before{
  content:"";
  width:12px;height:12px;
  border-right:3px solid currentColor;
  border-bottom:3px solid currentColor;
  display:block;
  margin:0 auto;
  transform:rotate(135deg);
}
.slider-btn[data-slider-next]::before{transform:rotate(-45deg)}
.slider-btn:hover{transform:translateY(-50%) scale(1.02);background:#fff;border-color:rgba(var(--primary-rgb),.22);box-shadow:0 16px 30px rgba(2,8,23,.18)}
.slider-btn:active{transform:translateY(-50%) scale(.99)}
.slider-dots{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  align-items:center;
  pointer-events:auto;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.70);
  border:1px solid rgba(226,232,240,.95);
  backdrop-filter:saturate(140%) blur(8px);
  box-shadow:0 12px 26px rgba(2,8,23,.12);
}
.slider-dot{
  width:10px;height:10px;border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(226,232,240,.95);
  cursor:pointer;
  transition:transform .2s var(--ease), width .2s var(--ease), background .2s var(--ease);
}
.slider-dot[aria-current="true"]{width:26px;background:rgba(var(--primary-rgb),.92);transform:translateY(-1px)}

/* Destination collage */
.collage-section{
  position:relative;
  padding:58px 0;
  overflow:hidden;
}
.collage-section.full-bleed{
  width:100vw;
  margin-left:calc(50% - 50vw);
}
.collage-bg{
  position:absolute;
  inset:0;
  z-index:0;
}
.collage-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(6,18,37,.72), rgba(6,18,37,.22) 55%, rgba(6,18,37,.82));
}
.collage-bg-img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(1) contrast(1.05) brightness(.9);
  transform:scale(1.02);
}
.collage-inner{position:relative;z-index:1}
.collage-head{color:rgba(255,255,255,.92)}
.collage-head .muted{color:rgba(255,255,255,.78)}
.collage-tiles{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
}
.collage-tile{
  display:block;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(226,232,240,.95);
  border-radius:18px;
  padding:12px;
  box-shadow:0 16px 34px rgba(2,8,23,.18);
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.collage-tile:hover{transform:translateY(-2px);border-color:rgba(var(--primary-rgb),.22);box-shadow:0 20px 42px rgba(2,8,23,.22)}
.collage-media{
  aspect-ratio:4/3;
  border-radius:16px;
  border:1px solid rgba(226,232,240,.95);
  background:linear-gradient(135deg, rgba(var(--primary-rgb), .06), rgba(var(--accent-rgb), .06));
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.collage-media img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 12px 22px rgba(2,8,23,.16));
}
.collage-label{
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-weight:700;
  letter-spacing:.01em;
  color:rgba(15,23,42,.92);
}
.collage-pill{
  font-size:.82rem;
  font-weight:700;
  color:rgba(255,255,255,.95);
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius:999px;
  padding:6px 10px;
}

/* Collage entrance animations (staggered via existing reveal-stagger) */
.collage-tiles.reveal-stagger > *{transition-duration:.65s}
.collage-tiles.reveal-stagger > .from-left{transform:translateX(-18px)}
.collage-tiles.reveal-stagger > .from-right{transform:translateX(18px)}
.collage-tiles.reveal-stagger > .from-up{transform:translateY(-16px)}
.collage-tiles.reveal-stagger > .from-down{transform:translateY(16px)}

@media (max-width: 980px){
  .collage-tiles{grid-template-columns:repeat(2, minmax(0, 1fr))}
}

/* Premium intro (below hero slider) */
.hero-intro{
  position:relative;
  padding:80px 0;
  overflow:hidden;
  border-bottom:1px solid rgba(226,232,240,.95);
  font-family:"Plus Jakarta Sans","Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(900px 520px at 12% 25%, rgba(var(--accent-rgb),.16), rgba(var(--accent-rgb),0) 60%),
    radial-gradient(900px 520px at 88% 32%, rgba(var(--primary-rgb),.18), rgba(var(--primary-rgb),0) 62%),
    linear-gradient(180deg, #ffffff, rgba(var(--primary-rgb),.05));
}
.hero-intro::before,
.hero-intro::after{
  content:"";
  position:absolute;
  width:520px;height:520px;
  border-radius:999px;
  filter:blur(46px);
  opacity:.55;
  pointer-events:none;
}
.hero-intro::before{
  left:-160px;top:-180px;
  background:radial-gradient(circle at 30% 30%, rgba(var(--accent-rgb),.46), rgba(var(--accent-rgb),0) 60%);
}
.hero-intro::after{
  right:-180px;bottom:-220px;
  background:radial-gradient(circle at 30% 30%, rgba(var(--primary-rgb),.48), rgba(var(--primary-rgb),0) 62%);
}
.hero-intro-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:42px;
  align-items:center;
}
.hero-intro .text-accent{
  color:var(--accent);
  text-shadow:0 8px 24px rgba(var(--accent-rgb),.18);
}
.hero-intro-left{padding:6px 0}
.intro-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.70);
  border:1px solid rgba(226,232,240,.92);
  box-shadow:0 10px 24px rgba(2,8,23,.06);
  backdrop-filter:saturate(140%) blur(10px);
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:.78rem;
  color:rgba(15,23,42,.82);
}
.intro-badge-dot{
  width:10px;height:10px;border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(var(--accent-rgb),.16);
}
.intro-title{
  margin-top:14px;
  font-family:"Inter","Plus Jakarta Sans",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-style:normal;
  font-weight:800;
  letter-spacing:-.03em;
  font-size:clamp(2.2rem, 4.6vw, 3.4rem);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
.intro-lead{
  margin:0;
  margin-top:10px;
  color:rgba(15,23,42,.84);
  font-size:1.05rem;
  max-width:62ch;
}
.hero-intro .hero-actions{margin:18px 0 0}
.intro-trust{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.intro-trust-item{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(226,232,240,.92);
  box-shadow:0 12px 26px rgba(2,8,23,.06);
  color:rgba(15,23,42,.86);
  font-weight:700;
}
.intro-trust-ic{
  width:30px;height:30px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(22,163,74,.18), rgba(var(--accent-rgb),.10));
  border:1px solid rgba(22,163,74,.20);
  color:rgba(22,163,74,.98);
}

.intro-card{
  position:relative;
  border-radius:16px;
  padding:18px;
  background:rgba(255,255,255,.52);
  border:1px solid rgba(255,255,255,.62);
  box-shadow:0 28px 70px rgba(2, 8, 23, .18);
  backdrop-filter:saturate(160%) blur(14px);
  overflow:hidden;
  transition:transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.intro-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:radial-gradient(580px 280px at 20% 10%, rgba(255,255,255,.72), rgba(255,255,255,0) 65%);
  pointer-events:none;
}
.intro-card:hover{
  transform:translateY(-4px);
  border-color:rgba(var(--primary-rgb),.18);
  box-shadow:0 34px 86px rgba(2, 8, 23, .22);
}
.intro-card > *{position:relative;z-index:1}
.intro-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.intro-card-title{
  font-weight:900;
  letter-spacing:-.02em;
  font-size:1.22rem;
}
.intro-card-sub{margin:6px 0 0}
.intro-quote-form{display:grid;gap:12px}
.intro-fields{display:grid;gap:10px}
.intro-field{display:grid;gap:8px}
.intro-label{font-weight:900;font-size:.86rem;letter-spacing:.02em;color:rgba(15,23,42,.86)}
.intro-card input,
.intro-card select{
  background:rgba(255,255,255,.86);
  border-color:rgba(226,232,240,.90);
}
.intro-submit{width:100%}
.intro-card-meta{
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  font-size:.92rem;
  color:var(--muted);
}
.intro-meta-link{color:rgba(71,85,105,.92)}
.intro-meta-link:hover{color:rgba(var(--primary-rgb),.98)}
.intro-meta-dot{opacity:.7}

/* Travel styles (image-first categories) */
.styles-grid{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(4, minmax(0, 1fr));
}
.style-card{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(226,232,240,.95);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(2,8,23,.08);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.style-card:hover{
  transform:translateY(-5px);
  border-color:rgba(var(--primary-rgb),.22);
  box-shadow:0 24px 56px rgba(2,8,23,.14);
}
.style-media{
  position:relative;
  aspect-ratio:16/10;
  overflow:hidden;
  background:linear-gradient(135deg, rgba(var(--primary-rgb),.12), rgba(var(--accent-rgb),.10));
}
.style-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1);
  transition:transform .3s ease;
}
.style-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(2,8,23,0) 35%, rgba(2,8,23,.34) 100%);
  opacity:.12;
  transition:opacity .3s ease;
}
.style-card:hover .style-media img{transform:scale(1.05)}
.style-card:hover .style-media::after{opacity:.55}

.style-body{
  padding:14px 14px 16px;
  display:grid;
  gap:10px;
}
.style-title{
  font-family:"Inter","Plus Jakarta Sans",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-weight:800;
  letter-spacing:-.02em;
  color:rgba(15,23,42,.92);
  transition:color .25s ease, transform .25s ease, text-decoration-color .25s ease;
}
.style-card:hover .style-title{
  color:rgba(var(--accent-rgb),1);
  transform:translateX(2px);
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:4px;
  text-decoration-color:rgba(var(--accent-rgb),.6);
}
.style-dests{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:6px;
  color:rgba(71,85,105,.96);
  font-size:.94rem;
  line-height:1.25;
}
.style-dests li{
  display:flex;
  align-items:center;
  gap:10px;
}
.style-dests li::before{
  content:"";
  width:6px;height:6px;
  border-radius:999px;
  background:rgba(var(--accent-rgb),.9);
  box-shadow:0 0 0 4px rgba(var(--accent-rgb),.12);
  flex:0 0 auto;
}

@media (max-width: 1240px){
  .styles-grid{grid-template-columns:repeat(3, minmax(0, 1fr))}
}

@media (max-width: 680px){
  .styles-grid{grid-template-columns:1fr}
}

/* Page hero */
.page-hero{
  padding:48px 0 18px;
  background:linear-gradient(180deg, rgba(var(--primary-rgb),.10), rgba(var(--primary-rgb),0));
  border-bottom:1px solid rgba(226,232,240,.95);
}
.page-hero-inner{display:grid;grid-template-columns:1.1fr .9fr;gap:22px;align-items:center}
.page-hero-media img{max-height:420px;object-fit:cover;width:100%}

.about-hero{
  position:relative;
  overflow:hidden;
  padding:76px 0 30px;
  background:
    linear-gradient(135deg, rgba(15,23,42,.82), rgba(31,91,134,.54)),
    linear-gradient(180deg, rgba(var(--primary-rgb),.12), rgba(var(--primary-rgb),0));
  border-bottom:0;
}
.about-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('../images/destinations-hero.jpg') center/cover no-repeat;
  opacity:.22;
  transform:scale(1.03);
}
.about-hero .container{position:relative;z-index:1}
.about-hero .eyebrow,
.about-hero h1,
.about-hero .lead{color:#fff}
.about-hero .eyebrow::before{background:var(--accent)}
.about-hero .lead{max-width:720px;color:rgba(255,255,255,.9)}
.about-hero .page-hero-inner{align-items:end}
.about-hero .page-hero-media{position:relative}
.about-hero .page-hero-media img{
  max-height:520px;
  border:1px solid rgba(255,255,255,.24);
  box-shadow:0 22px 50px rgba(2,8,23,.35);
}
.about-hero-badges{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.about-hero-badges span{
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  color:var(--text);
  font-weight:700;
  border:1px solid rgba(255,255,255,.6);
  box-shadow:0 10px 20px rgba(2,8,23,.12);
}

/* Grids & cards */
.grid{display:grid;gap:16px}
.cards-3{grid-template-columns:repeat(3, minmax(0, 1fr))}
.cards-4{grid-template-columns:repeat(4, minmax(0, 1fr))}
.card{
  background:#fff;
  border:1px solid rgba(226,232,240,.95);
  border-radius:var(--radius);
  padding:18px;
  transition:transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
  box-shadow:var(--shadow-sm);
}
.card:hover{transform:translateY(-3px);border-color:rgba(var(--primary-rgb),.26);background:#fff;box-shadow:0 16px 34px rgba(2,8,23,.12)}
.card-title{font-weight:700;margin-bottom:6px}
.card-text{color:var(--muted)}
.card-media{padding:0;overflow:hidden}
.card-media img{height:210px;width:100%;object-fit:cover}
.card-media .card-body{padding:16px 16px 18px}
.card-icon .icon{
  width:46px;height:46px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg, rgba(var(--primary-rgb),.14), rgba(var(--accent-rgb),.10));
  border:1px solid rgba(var(--primary-rgb),.16);
  margin-bottom:10px;
  color:rgba(var(--primary-rgb),.92);
}
.card-icon .icon svg{display:block;color:rgba(var(--primary-rgb),.92)}

/* Categories */
.category-grid{gap:14px}
.category-card{padding:16px}
.category-card{box-shadow:var(--shadow-sm)}
.category-card:hover{
  transform:translateY(-4px) scale(1.03);
  box-shadow:0 18px 44px rgba(2,8,23,.14);
  border-color:rgba(var(--accent-rgb),.35);
}
.category-card:hover .category-icon{
  color:rgba(var(--accent-rgb),1);
  border-color:rgba(var(--accent-rgb),.40);
  background:linear-gradient(135deg, rgba(var(--accent-rgb),.18), rgba(var(--primary-rgb),.10));
}
.category-top{display:flex;align-items:center;gap:10px;margin-bottom:10px}
.category-icon{
  width:44px;height:44px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg, rgba(var(--primary-rgb),.14), rgba(var(--accent-rgb),.10));
  border:1px solid rgba(var(--primary-rgb),.16);
  color:rgba(var(--primary-rgb),.92);
}
.category-title{font-weight:700}
.category-list{color:var(--muted);font-size:.93rem;line-height:1.35}

/* Carousel */
.carousel{position:relative}
.carousel-viewport{
  overflow:auto;
  scroll-snap-type:x mandatory;
  scroll-padding:8px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  border-radius:var(--radius);
}
.carousel-viewport::-webkit-scrollbar{display:none}
.carousel-track{
  display:flex;
  gap:16px;
  padding:8px 8px 16px;
}
.carousel-card{
  padding:0;
  overflow:hidden;
  flex:0 0 clamp(240px, calc((100% - 48px) / 4), 340px);
  scroll-snap-align:start;
  scroll-snap-stop:always;
}
.carousel-media img{height:260px;width:100%;object-fit:cover;display:block}
.carousel-body{padding:14px 14px 16px}
.carousel-title{font-weight:700}
.carousel-sub{color:var(--muted);font-size:.95rem}
.carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;height:52px;border-radius:999px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(226,232,240,.95);
  color:rgba(15,23,42,.92);
  cursor:pointer;
  font-size:28px;
  line-height:0;
  box-shadow:0 14px 28px rgba(2,8,23,.18);
}
.carousel-btn[data-carousel-prev]{left:8px}
.carousel-btn[data-carousel-next]{right:8px}
.carousel-btn:hover{background:#fff}
.carousel-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:10px;
}
.carousel-dot{
  width:8px;height:8px;border-radius:999px;
  border:0;
  background:rgba(var(--primary-rgb),.24);
  cursor:pointer;
  transition:width .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.carousel-dot[aria-current="true"]{width:26px;background:rgba(var(--primary-rgb),.92);transform:translateY(-1px)}

@media (max-width: 1240px){
  .carousel-card{flex-basis:clamp(240px, calc((100% - 32px) / 3), 380px)}
}
@media (max-width: 900px){
  .carousel-card{flex-basis:clamp(240px, calc((100% - 16px) / 2), 420px)}
}
@media (max-width: 620px){
  .carousel-card{flex-basis:min(84vw, 420px)}
}

/* Packages */
.package-card{padding:0;overflow:hidden}
.package-img{width:100%;height:260px;object-fit:cover;display:block}
.package-body{padding:18px 18px 20px}
.package-title{font-weight:700;margin-bottom:6px}
.package-meta{color:var(--muted);font-size:.94rem}
.package-meta{margin-bottom:14px}
.package-card .btn{width:100%;justify-content:center}
.packages-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
@media (max-width: 760px){
  .packages-grid{grid-template-columns:1fr}
}

/* Reviews */
.review-stars{color:rgba(var(--accent-rgb),.95);letter-spacing:.08em;font-weight:700;margin-bottom:10px}

.quote{color:var(--text)}
.quote-by{margin-top:10px;color:var(--muted);font-weight:700}

.rounded{border-radius:var(--radius)}
.shadow{box-shadow:var(--shadow)}

.split{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:center;
}
.media img{max-height:460px;object-fit:cover;width:100%}

.feature-list{margin:14px 0 0;padding:0;list-style:none;display:grid;gap:10px}
.feature-list li{
  padding:12px 14px;border-radius:14px;
  background:var(--surface-2);
  border:1px solid rgba(226,232,240,.95);
}

.stats{display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:12px;margin-top:18px}
.stat{padding:14px;border-radius:14px;background:rgba(var(--primary-rgb),.08);border:1px solid rgba(var(--primary-rgb),.14)}
.about-stats{grid-template-columns:repeat(4, minmax(0, 1fr))}
.stat-k{font-weight:800;font-size:1.5rem;color:var(--primary-2)}
.stat-v{color:var(--muted);font-weight:600}

.destination-grid .destination-card{
  background:linear-gradient(180deg, #fff, rgba(var(--primary-rgb),.04));
  border-color:rgba(var(--primary-rgb),.12);
}
.step-card{
  background:linear-gradient(180deg, #fff, rgba(var(--accent-rgb),.05));
}

.callout{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  background:linear-gradient(135deg, rgba(var(--primary-rgb),.16), rgba(var(--accent-rgb),.10));
  border:1px solid rgba(226,232,240,.95);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow-sm);
}
.callout-actions{display:flex;gap:10px;flex-wrap:wrap}

.cta{
  padding:58px 0;
  background:radial-gradient(900px 360px at 20% 30%, rgba(var(--accent-rgb),.16), rgba(var(--accent-rgb),0)),
             linear-gradient(135deg, rgba(var(--primary-rgb),.16), rgba(255,255,255,.96));
  border-top:1px solid rgba(226,232,240,.95);
}
.cta-inner{display:flex;align-items:center;justify-content:space-between;gap:16px}
.cta-actions{display:flex;gap:10px;flex-wrap:wrap}

/* Contact chips */
.contact-chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
.chip{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:999px;
  background:#fff;
  border:1px solid rgba(226,232,240,.95);
  color:var(--muted);
  transition:transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.chip:hover{transform:translateY(-1px);color:var(--text);background:#fff;border-color:rgba(var(--primary-rgb),.22)}

/* Forms */
.form{display:grid;gap:12px}
.form-row{display:grid;gap:8px}
label{font-weight:800}
input,textarea,select{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;
  color:var(--text);
  padding:12px 12px;
  outline:none;
}
select{appearance:none;background-image:linear-gradient(45deg, transparent 50%, rgba(15,23,42,.7) 50%),linear-gradient(135deg, rgba(15,23,42,.7) 50%, transparent 50%);background-position:calc(100% - 18px) calc(50% - 3px),calc(100% - 12px) calc(50% - 3px);background-size:6px 6px,6px 6px;background-repeat:no-repeat;padding-right:42px}
input:focus,textarea:focus,select:focus{border-color:rgba(var(--primary-rgb),.28);box-shadow:0 0 0 4px rgba(var(--primary-rgb),.10)}
textarea{resize:vertical}
.form-note{color:var(--muted);font-size:.92rem;margin:0}
.honeypot{display:none}
.req{color:var(--danger)}
.field-error{color:var(--danger);font-size:.86rem;line-height:1.3;display:none}
.field-error.is-visible{display:block}
.is-invalid{border-color:rgba(239,68,68,.55) !important;box-shadow:0 0 0 4px rgba(239,68,68,.10) !important}

/* Modal */
body.modal-open{overflow:hidden}
.modal{
  position:fixed;
  inset:0;
  z-index:200;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .22s var(--ease), visibility 0s linear .22s;
}
.modal.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transition:opacity .22s var(--ease), visibility 0s;
}
.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(2, 8, 23, .60);
  backdrop-filter:blur(2px);
  opacity:0;
  transition:opacity .22s var(--ease);
}
.modal.is-open .modal-backdrop{opacity:1}
.modal-dialog{
  position:relative;
  width:min(92vw, 560px);
  max-height:min(86vh, 720px);
  overflow:auto;
  margin:calc(10vh) auto 0;
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(226,232,240,.95);
  box-shadow:var(--shadow);
  padding:18px;
  opacity:0;
  transform:translateY(16px) scale(.98);
  transition:opacity .22s var(--ease), transform .22s var(--ease);
}
.modal.is-open .modal-dialog{opacity:1;transform:translateY(0) scale(1)}
.modal-close{
  position:absolute;
  top:12px;
  right:12px;
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;
  color:rgba(15,23,42,.82);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}
.modal-close:hover{transform:translateY(-1px);background:rgba(var(--primary-rgb),.05);border-color:rgba(var(--primary-rgb),.20)}
.modal-alert:empty{display:none}

.alert{
  border-radius:16px;
  padding:12px 14px;
  margin-bottom:12px;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;
}
.alert-success{border-color:rgba(22,163,74,.28);background:rgba(22,163,74,.08)}
.alert-error{border-color:rgba(239,68,68,.28);background:rgba(239,68,68,.08)}

.info-list{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.info-list li{display:flex;justify-content:space-between;gap:14px;color:var(--text)}
.info-list span:first-child{color:var(--muted);font-weight:800}

/* Footer */
.site-footer{
  padding:44px 0 26px;
  border-top:1px solid rgba(226,232,240,.95);
  background:linear-gradient(180deg, #0b1b35, #081225);
  color:rgba(255,255,255,.92);
}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.15fr;gap:22px;align-items:flex-start}
.footer-brand{display:flex;gap:14px;align-items:flex-start;margin-bottom:10px}
.footer-logo{
  width:64px;
  height:64px;
  object-fit:contain;
  border-radius:18px;
  background:rgba(255,255,255,.10);
  padding:8px;
  box-shadow:0 16px 34px rgba(0,0,0,.28);
}
.footer-title{font-weight:900;font-size:1.05rem;letter-spacing:-.01em}
.footer-subtitle{color:rgba(255,255,255,.75);font-size:.95rem}
.footer-note{color:rgba(255,255,255,.75);max-width:520px;margin:0}
.footer-heading{font-weight:700;margin-bottom:8px}
.footer-list{list-style:none;margin:0;padding:0;display:grid;gap:8px;color:rgba(255,255,255,.75)}
.footer-list a:hover{color:#fff}
.footer-bottom{
  margin-top:22px;
  padding-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:rgba(255,255,255,.72);
  border-top:1px solid rgba(255,255,255,.12);
}
.back-to-top{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(135deg, rgba(var(--primary-rgb),.98), rgba(var(--accent-rgb),.96));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 14px 34px rgba(0,0,0,.28);
  transition:transform .22s var(--ease), box-shadow .22s var(--ease), filter .22s var(--ease);
}
.back-to-top:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 44px rgba(0,0,0,.34);
  filter:saturate(1.05);
}
.back-to-top:focus-visible{
  outline:3px solid rgba(var(--accent-rgb),.55);
  outline-offset:3px;
}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{grid-template-columns:1fr;gap:16px;padding:54px 0}
  .hero-intro{padding:70px 0}
  .hero-intro-inner{grid-template-columns:1fr;gap:20px}
  .styles-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .page-hero-inner{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .cards-4{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .cards-3{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .footer-grid{grid-template-columns:1fr}
  .cta-inner{flex-direction:column;align-items:flex-start}
}

@media (min-width: 1100px){
  .slider{min-height:84vh}
}

@media (max-width: 760px){
  .nav-toggle{display:inline-flex}
  .brand-logo{height:62px}
  .brand-name{font-size:1.22rem}
  .brand-tagline{font-size:.84rem}
  .topbar-inner{padding:8px 0}
  .social-icon{width:32px;height:32px;border-radius:12px}
  .site-nav{
    position:absolute;
    right:0;
    top:calc(100% + 10px);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    width:min(92vw, 360px);
    padding:12px;
    background:rgba(255,255,255,.96);
    border:1px solid rgba(226,232,240,.95);
    border-radius:18px;
    box-shadow:var(--shadow);
  }
  .slider-btn{width:48px;height:48px}
  .slider-btn[data-slider-prev]{left:12px}
  .slider-btn[data-slider-next]{right:12px}
  .slider-dots{bottom:14px}
  .hero-collage-bg{object-fit:cover;transform:scale(1.01)}
  .hero-collage-photos{
    inset:auto 0 78px 0;
    width:min(94vw, 620px);
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
  }
  .slide-hero-premium .hero-premium-photos{
    inset:auto 0 78px 0;
    width:min(94vw, 720px);
    margin:0 auto;
  }
  .slide-hero-premium .hero-premium-photo{
    position:relative;
    left:auto;
    top:auto;
    width:100%;
    transform:translateX(-26px) rotate(0deg) scale(.99);
  }
  .slide-hero-premium.is-active .hero-premium-photo{
    animation:premiumPhotoInMobile 1050ms cubic-bezier(.2,.9,.2,1) var(--delay, 0ms) both;
  }
  @keyframes premiumPhotoInMobile{
    0%{opacity:0;transform:translateX(-26px) rotate(0deg) scale(.99)}
    60%{opacity:1}
    100%{opacity:1;transform:translateX(0) rotate(0deg) scale(1)}
  }
  .hero-photo{
    position:relative;
    left:auto;
    top:auto;
    width:100%;
    aspect-ratio:16/10;
    transform:rotate(0deg) translateX(-32px);
    opacity:0;
  }
  .slider.photos-ready .slide.is-active .hero-photo{transform:rotate(0deg) translateX(0);opacity:1}
  .hero-photo:nth-child(n+3){display:none}
  .hero-photo-frame{border-width:10px;border-radius:18px}
  .collage-section{padding:44px 0}
  .collage-tiles{grid-template-columns:1fr;gap:12px}
  .site-nav.is-open{display:flex}
  .nav-link{padding:12px 12px}
  .cards-4{grid-template-columns:1fr}
  .cards-3{grid-template-columns:1fr}
  .section-head{flex-direction:column;align-items:flex-start}
  .stats{grid-template-columns:1fr}
  .callout{flex-direction:column;align-items:flex-start}
  .info-list li{flex-direction:column;align-items:flex-start}
}

/* Reveal animations */
.reveal{opacity:0;transform:translateY(14px);transition:opacity .7s var(--ease), transform .7s var(--ease)}
.reveal.is-visible{opacity:1;transform:translateY(0)}
.reveal-stagger > *{opacity:0;transform:translateY(14px);transition:opacity .7s var(--ease), transform .7s var(--ease)}
.reveal-stagger.is-visible > *{opacity:1;transform:translateY(0)}
.reveal-stagger.is-visible > *:nth-child(1){transition-delay:.05s}
.reveal-stagger.is-visible > *:nth-child(2){transition-delay:.12s}
.reveal-stagger.is-visible > *:nth-child(3){transition-delay:.19s}
.reveal-stagger.is-visible > *:nth-child(4){transition-delay:.26s}
.reveal-stagger.is-visible > *:nth-child(5){transition-delay:.33s}
.reveal-stagger.is-visible > *:nth-child(6){transition-delay:.40s}
.reveal-stagger.is-visible > *:nth-child(7){transition-delay:.47s}
.reveal-stagger.is-visible > *:nth-child(8){transition-delay:.54s}

@media (prefers-reduced-motion: reduce){
  .slide{transition:none}
  .reveal,.reveal-stagger > *{opacity:1;transform:none;transition:none}
  .orb-1,.orb-2{animation:none}
}
