:root{
  /* Brand palette — 9 essential colors from logo */
  --navy:#1d3a6b;          /* primary brand · badge */
  --navy-deep:#142847;     /* dark sections / footer */
  --azure:#2d8fc9;         /* secondary · boat blue */
  --azure-pale:#d6ecf7;    /* subtle backgrounds */
  --yellow:#ffc933;        /* accent · EXPRESS sunshine */
  --orange:#ed7e2c;        /* accent · sunset */
  --rope:#b89455;          /* warm tan · chapter labels */
  --cream:#faf6ee;         /* light section bg */
  --ink:#0f2444;           /* body text */
  --muted:#6a7d96;         /* secondary text */
  --whatsapp:#25D366;
  --whatsapp-dark:#1da851;
  --radius:18px;
  --shadow:0 20px 60px rgba(29,58,107,.18);
  --shadow-soft:0 8px 30px rgba(29,58,107,.10);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;background:#b5d3e3}
body{
  font-family:'Outfit',system-ui,-apple-system,sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}

.container{max-width:1200px;margin:0 auto;padding:0 24px}

/* ---- NAV ---- */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:rgba(255,255,255,.45);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border-bottom:1px solid rgba(255,255,255,.25);
  transition:background .35s ease, border-color .35s ease, padding .35s ease, box-shadow .35s ease;
  padding:0;
}
.nav.scrolled{
  background:rgba(255,255,255,.94);
  border-bottom:1px solid rgba(29,58,107,.08);
  box-shadow:0 4px 24px rgba(29,58,107,.08);
}
.nav__inner{padding:10px 24px}
.nav__inner{
  max-width:1200px;margin:0 auto;padding:10px 16px;
  display:flex;align-items:center;justify-content:space-between;gap:8px;
}
@media (min-width:980px){.nav__inner{padding:10px 24px}}
.nav__logo{
  font-family:'Fraunces',Georgia,serif;
  font-size:20px;font-weight:700;
  display:flex;align-items:center;gap:12px;
  color:var(--navy);
  white-space:nowrap;
  min-width:0;
  transition:color .35s ease;
}
.nav__logo-wrap{
  position:relative;
  width:88px;height:88px;
  background:#fff;
  border-radius:50%;
  overflow:hidden;
  box-shadow:0 4px 14px rgba(29,58,107,.18);
  flex-shrink:0;
  transition:width .35s ease, height .35s ease, box-shadow .35s ease;
}
.nav.scrolled .nav__logo-wrap{
  width:64px;height:64px;
  box-shadow:0 4px 12px rgba(29,58,107,.22);
}
.nav__logo-img{
  position:absolute;
  top:50%;left:50%;
  width:124%;height:124%;
  transform:translate(-50%,-50%);
  object-fit:contain;
  display:block;
}
.nav__logo-text{
  white-space:nowrap;
  transition:color .35s ease;
}
.nav__logo-text em{
  font-style:italic;font-weight:500;
  color:var(--azure);
}
.nav__links{display:flex;align-items:center;gap:28px;font-size:14px;font-weight:500}
.nav__links a:not(.btn){
  color:var(--navy);
  transition:color .25s ease;
}
.nav__links a:not(.btn):hover{color:var(--azure)}

/* ---- BUTTONS ---- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:14px 28px;border-radius:999px;
  font-weight:600;font-size:15px;letter-spacing:.2px;
  cursor:pointer;border:none;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
  position:relative;overflow:hidden;
}
.btn--primary{
  background:linear-gradient(135deg,var(--azure),var(--navy));
  color:#fff;
  box-shadow:0 14px 34px rgba(45,143,201,.4), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--primary:hover{transform:translateY(-2px);box-shadow:0 20px 44px rgba(45,143,201,.55), inset 0 1px 0 rgba(255,255,255,.3)}
.btn--primary::before{
  content:"";position:absolute;top:0;left:-100%;width:100%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent);
  transition:left .6s ease;
}
.btn--primary:hover::before{left:100%}
.btn--gold{
  background:linear-gradient(135deg,var(--yellow),var(--orange));
  color:var(--navy-deep);
  box-shadow:0 14px 34px rgba(247,179,43,.45), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--gold:hover{transform:translateY(-2px);box-shadow:0 20px 44px rgba(247,179,43,.55)}
.btn--ghost{
  background:rgba(255,255,255,.08);color:#fff;
  border:1.5px solid rgba(255,255,255,.45);backdrop-filter:blur(8px);
}
.btn--ghost:hover{background:rgba(255,255,255,.18)}
.btn--small{padding:10px 22px;font-size:14px}
.btn--large{padding:18px 38px;font-size:16px}
.btn--whatsapp{
  background:var(--whatsapp);color:#fff;
  box-shadow:0 14px 34px rgba(37,211,102,.4);
}
.btn--whatsapp:hover{background:var(--whatsapp-dark);transform:translateY(-2px);box-shadow:0 20px 44px rgba(37,211,102,.5)}
.nav__links a.btn--small{
  background:linear-gradient(135deg,var(--yellow),var(--orange));
  color:var(--navy-deep)!important;
  text-shadow:none!important;
  box-shadow:0 6px 18px rgba(247,179,43,.35);
}
.nav__links a.btn--small:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 26px rgba(247,179,43,.5);
  color:var(--navy-deep)!important;
}

/* In-hero CTAs */
.btn-wa-hero{
  background:var(--whatsapp);color:#fff;
  box-shadow:0 14px 34px rgba(37,211,102,.4);
}
.btn-wa-hero:hover{background:var(--whatsapp-dark);transform:translateY(-2px);box-shadow:0 20px 44px rgba(37,211,102,.5)}
.btn-call{
  background:rgba(255,255,255,.08);color:#fff;
  border:1.5px solid rgba(255,255,255,.5);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
}
.btn-call:hover{background:rgba(255,255,255,.18);border-color:rgba(255,255,255,.8)}

/* ---- HERO ---- */
.hero{
  position:relative;min-height:100vh;
  display:flex;align-items:flex-end;justify-content:center;
  overflow:hidden;color:#fff;text-align:center;
}
.hero-bg{
  position:absolute;inset:0;
  background-image:url('hero.png');
  background-size:cover;
  background-position:center 22%;
  transform:scale(1.05);
  animation:heroZoom 22s ease-out forwards;
}
@keyframes heroZoom{ to{transform:scale(1.12)} }
@media (max-width:768px){
  .hero-bg{
    background-size:cover;
    background-position:center 45%;
    transform:none;
    animation:none;
  }
}
.hero-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(180deg,
      rgba(20,40,71,.20) 0%,
      rgba(20,40,71,0) 10%,
      transparent 28%,
      rgba(20,40,71,.40) 45%,
      rgba(20,40,71,.85) 60%,
      rgba(20,40,71,.95) 78%,
      rgba(20,40,71,.97) 100%);
}
.hero-content{
  position:relative;z-index:2;
  max-width:880px;width:100%;
  padding:0 24px 70px;
  text-align:center;
  animation:fadeUp 1s ease-out;
}
@media (max-width:768px){.hero-content{padding:0 20px 60px}}
@keyframes fadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}
.hero-eyebrow{
  display:inline-block;
  font-size:11px;font-weight:700;letter-spacing:.28em;
  text-transform:uppercase;color:var(--yellow);
  margin-bottom:18px;padding:6px 16px;
  background:rgba(20,40,71,.55);
  border:1px solid rgba(247,179,43,.5);
  border-radius:999px;
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  text-shadow:0 1px 4px rgba(0,0,0,.3);
}
@media (max-width:480px){
  .hero-eyebrow{font-size:9px;letter-spacing:.18em;padding:5px 14px;margin-bottom:14px;max-width:90%}
}
.hero-title{
  font-family:'Fraunces',Georgia,serif;
  font-size:clamp(36px,5.8vw,68px);
  font-weight:600;line-height:1.04;letter-spacing:-.02em;
  margin-bottom:16px;
  text-shadow:0 2px 14px rgba(0,0,0,.55),0 4px 28px rgba(0,0,0,.5);
}
.hero-title .hero-title-accent{
  display:inline-block;
  font-family:'Outfit',sans-serif;
  font-style:normal;
  font-size:.42em;
  font-weight:500;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin-top:14px;
  color:var(--yellow);
  background:none;
  -webkit-background-clip:initial;
  background-clip:initial;
  text-shadow:0 1px 6px rgba(0,0,0,.5);
}
.hero-title-accent{
  font-style:italic;
  background:linear-gradient(135deg,var(--yellow) 0%,#ffe89a 50%,var(--orange) 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero-sub{
  font-size:clamp(15px,1.4vw,19px);font-weight:400;
  max-width:580px;margin:0 auto 26px;
  color:rgba(255,255,255,.92);line-height:1.55;
  text-shadow:0 2px 12px rgba(0,0,0,.6);
}
.hero-sub strong{color:#fff;font-weight:700}
@media (max-width:480px){
  .hero-title{font-size:38px;margin-bottom:13px;line-height:1.06}
  .hero-title .hero-title-accent{font-size:.32em;margin-top:11px;letter-spacing:.14em}
  .hero-sub{font-size:14px;line-height:1.55;margin-bottom:22px}
}

.hero-bar{
  display:inline-flex;align-items:baseline;gap:12px;
  padding:14px 22px;
  background:rgba(20,40,71,.55);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.15);
  border-radius:999px;
  margin-bottom:18px;
  box-shadow:0 12px 40px rgba(0,0,0,.3);
  white-space:nowrap;
}
.bar-amount{
  font-family:'Fraunces',Georgia,serif;
  font-size:26px;font-weight:700;
  color:var(--yellow);line-height:1;
}
.bar-info{
  font-size:14px;color:rgba(255,255,255,.85);font-weight:500;
}
.bar-pp{
  font-size:13px;color:rgba(255,255,255,.7);font-weight:500;
}
.bar-sep{
  color:rgba(255,255,255,.35);font-size:14px;line-height:1;
}
@media (max-width:540px){
  .hero-bar{
    gap:8px;
    padding:11px 16px;
  }
  .bar-amount{font-size:20px}
  .bar-info{font-size:12px}
  .bar-pp{font-size:12px}
  .bar-sep{font-size:12px}
}
@media (max-width:380px){
  .hero-bar{gap:6px;padding:10px 12px}
  .bar-amount{font-size:18px}
  .bar-info{font-size:11px}
  .bar-pp{font-size:11px}
}

.hero-rating{display:inline-flex;align-items:center;gap:10px;margin:18px 0 4px}
.rating-stars{display:inline-flex;align-items:center;gap:2px;color:var(--yellow);filter:drop-shadow(0 1px 4px rgba(0,0,0,.4))}
.rating-stars svg{width:18px;height:18px}
.rating-text{font-size:14px;font-weight:600;color:rgba(255,255,255,.92);letter-spacing:.02em}
@media (max-width:540px){
  .rating-stars svg{width:16px;height:16px}
  .rating-text{font-size:13px}
}

.hero-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-bottom:8px}
@media (max-width:480px){.btn{padding:14px 24px;font-size:13px}}

/* ---- HIGHLIGHTS STRIP (right after hero) ---- */
.highlights{
  background:linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  padding:36px 0;
  position:relative;
  z-index:3;
  border-bottom:1px solid rgba(29,58,107,.06);
}
.highlights__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  align-items:center;
}
.highlight{
  display:flex;align-items:center;gap:14px;
  padding:14px 12px;
  text-align:left;
  position:relative;
}
.highlight + .highlight::before{
  content:"";position:absolute;left:-12px;top:50%;
  transform:translateY(-50%);
  width:1px;height:42px;
  background:linear-gradient(180deg,transparent,rgba(29,58,107,.15),transparent);
}
.highlight__icon{
  flex-shrink:0;width:44px;height:44px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--azure-pale),#fff);
  border:1px solid rgba(45,143,201,.18);
  color:var(--azure);
}
.highlight__icon svg{width:22px;height:22px}
.highlight:nth-child(4) .highlight__icon{
  background:linear-gradient(135deg,#fff5d4,#fff);
  border-color:rgba(247,179,43,.3);
  color:var(--yellow);
}
.highlight__value{
  font-family:'Fraunces',Georgia,serif;
  font-size:28px;font-weight:700;color:var(--navy);
  line-height:1;letter-spacing:-.02em;
}
.highlight__label{
  font-size:11px;text-transform:uppercase;
  letter-spacing:.18em;color:var(--muted);
  font-weight:600;margin-top:4px;
}
.highlight > div:not(.highlight__icon){display:flex;flex-direction:column}
@media (max-width:760px){
  .highlights{padding:22px 0}
  .highlights__grid{grid-template-columns:repeat(2,1fr);gap:14px}
  .highlight{padding:8px 6px;gap:10px}
  .highlight + .highlight::before{display:none}
  .highlight__icon{width:38px;height:38px}
  .highlight__icon svg{width:18px;height:18px}
  .highlight__value{font-size:22px}
  .highlight__label{font-size:9.5px;letter-spacing:.14em}
}

/* ---- SECTIONS ---- */
.section{padding:120px 0;position:relative;overflow:hidden}
.section--white{background:#fff}
.section--sand{background:#f5ecdc}
.section--cream + .section--white,
.section--white + .section--cream{
  border-top:1px solid rgba(29,58,107,.06);
}
.deco-watermark{
  position:absolute;
  top:60px;left:-20px;
  font-family:'Fraunces',Georgia,serif;
  font-size:clamp(180px,24vw,360px);
  font-weight:700;
  color:rgba(29,58,107,.04);
  line-height:.8;
  letter-spacing:-.04em;
  pointer-events:none;
  z-index:0;
}
.deco-watermark--right{left:auto;right:-30px;top:40px}
.section--dark .deco-watermark{color:rgba(255,255,255,.04)}
.chapter{
  display:inline-block;
  font-family:'Outfit',sans-serif;
  font-size:11px;font-weight:600;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--rope);
  margin-bottom:8px;
  padding-left:32px;
  position:relative;
}
.chapter::before{
  content:"";position:absolute;
  left:0;top:50%;transform:translateY(-50%);
  width:24px;height:1px;
  background:var(--rope);
}
.section--dark .chapter{color:var(--yellow)}
.section--dark .chapter::before{background:var(--yellow)}
.section--dark{
  background:linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color:#dde7f3;
}
.section--dark .eyebrow{color:var(--yellow)}
.section--dark .section__title{color:#fff}
.section--cream{background:var(--cream)}
.section__head{margin-bottom:60px}
.section__head.center{text-align:center;max-width:720px;margin-inline:auto}
.eyebrow{
  display:inline-block;font-size:12px;text-transform:uppercase;
  letter-spacing:3px;font-weight:700;color:var(--azure);margin-bottom:16px;
  position:relative;
}
.eyebrow::after{
  content:"";display:block;width:32px;height:2px;
  background:linear-gradient(90deg,var(--yellow),var(--orange));
  margin-top:10px;
}
.section__head.center .eyebrow::after{margin-left:auto;margin-right:auto}
.section--dark .eyebrow::after{background:linear-gradient(90deg,var(--yellow),var(--orange))}
.section__title{
  font-family:'Fraunces',Georgia,serif;
  font-size:clamp(36px,5vw,58px);font-weight:700;line-height:1.1;color:var(--navy);
  letter-spacing:-.01em;
}
.section__lead{color:var(--muted);margin-top:18px;font-size:17px}

.grid-2{display:grid;grid-template-columns:1fr 1.2fr;gap:80px;align-items:start}
.grid-2 .section__head{margin-bottom:0}

/* ---- EXPERIENCE editorial ---- */
.section-experience{position:relative}
.exp-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:80px;
  align-items:center;
  position:relative;z-index:1;
}
.exp-text{position:relative}
.exp-text--centered{
  text-align:center;
  max-width:780px;
  margin:0 auto 56px;
}
.exp-text--centered .chapter{display:inline-block}
.exp-text--centered .exp-lead{
  text-align:center;
  margin-top:24px;
  max-width:680px;margin-left:auto;margin-right:auto;
}
.exp-text--centered .exp-body{
  text-align:center;
  max-width:680px;margin-left:auto;margin-right:auto;
}

/* Lifestyle photos row */
.exp-photos{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  max-width:1100px;
  margin:0 auto 56px;
}
.exp-photo{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  aspect-ratio:4/5;
  box-shadow:0 14px 30px rgba(29,58,107,.14);
  transition:transform .35s ease, box-shadow .35s ease;
}
.exp-photo:hover{transform:translateY(-4px);box-shadow:0 22px 44px rgba(29,58,107,.20)}
.exp-photo img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform .6s ease;
}
.exp-photo:hover img{transform:scale(1.05)}
.exp-photo figcaption{
  position:absolute;left:0;right:0;bottom:0;
  padding:30px 20px 18px;
  background:linear-gradient(180deg,transparent,rgba(20,40,71,.85));
  color:#fff;
  font-family:'Fraunces',Georgia,serif;
  font-size:17px;font-weight:600;
  letter-spacing:-.01em;
}
@media (max-width:880px){
  .exp-photos{grid-template-columns:1fr;gap:14px;max-width:520px}
  .exp-photo{aspect-ratio:5/4}
  .exp-text--centered{margin-bottom:36px}
}
.dropcap{
  font-family:'Fraunces',Georgia,serif;
  float:left;
  font-size:64px;
  line-height:.85;
  margin:6px 10px 0 0;
  font-weight:700;
  background:linear-gradient(135deg,var(--azure),var(--navy));
  -webkit-background-clip:text;background-clip:text;
  color:transparent;
}
.exp-lead{
  margin-top:24px;
  font-size:17px;line-height:1.75;
  color:var(--ink);
}
.exp-lead strong{color:var(--navy);font-weight:600}
.exp-body{
  margin-top:18px;
  font-size:15.5px;line-height:1.75;
  color:var(--muted);
}
.exp-body strong{color:var(--navy)}
.exp-body em{color:var(--azure);font-weight:500;font-style:italic}
.pull-quote{
  margin:32px 0;
  padding:18px 24px 18px 56px;
  font-family:'Fraunces',Georgia,serif;
  font-size:21px;line-height:1.4;
  color:var(--navy);
  font-weight:500;
  font-style:italic;
  position:relative;
  border-left:3px solid transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(180deg,var(--azure),var(--yellow),var(--orange)) border-box;
}
.quote-mark{
  position:absolute;
  left:18px;top:6px;
  font-family:'Fraunces',Georgia,serif;
  font-size:64px;
  line-height:1;
  color:var(--yellow);
  font-weight:700;
}

/* Photo collage */
.exp-collage{
  position:relative;
  aspect-ratio:4/5;
  max-width:540px;
  margin-left:auto;
}
.collage-photo{
  position:absolute;
  background-size:cover;background-position:center;
  border-radius:18px;
  box-shadow:0 30px 70px rgba(29,58,107,.22);
  overflow:hidden;
}
.collage-photo--main{
  inset:0 0 18% 18%;
  z-index:1;
}
.collage-photo--top{
  width:46%;height:38%;
  top:-3%;left:-3%;
  z-index:2;
  border:5px solid #fff;
}
.collage-photo--bottom{
  width:42%;height:32%;
  bottom:0;right:0;
  z-index:3;
  border:5px solid #fff;
}
.collage-badge{
  position:absolute;
  top:14%;right:-10%;
  z-index:4;
  background:#fff;
  border-radius:50%;
  width:120px;height:120px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;
  box-shadow:0 14px 40px rgba(29,58,107,.25);
  border:4px solid var(--yellow);
  transform:rotate(-6deg);
}
.badge-num{
  font-family:'Fraunces',Georgia,serif;
  font-size:34px;font-weight:700;
  color:var(--navy);line-height:1;
}
.badge-num span{font-size:14px;font-weight:500;color:var(--muted)}
.badge-label{
  font-size:9px;font-weight:600;
  letter-spacing:.18em;text-transform:uppercase;
  color:var(--azure);
  margin-top:6px;line-height:1.3;
}
.collage-stat{
  position:absolute;
  bottom:8%;left:-6%;
  z-index:4;
  background:linear-gradient(135deg,var(--navy),var(--navy));
  color:#fff;
  padding:18px 22px;
  border-radius:14px;
  box-shadow:0 14px 40px rgba(29,58,107,.3);
  border:1px solid rgba(255,255,255,.1);
}
.stat-value{
  font-family:'Fraunces',Georgia,serif;
  font-size:32px;font-weight:700;
  line-height:1;color:var(--yellow);
}
.stat-label{
  font-size:11px;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;
  color:rgba(255,255,255,.85);
  margin-top:6px;line-height:1.3;
}

@media (max-width:980px){
  .exp-grid{grid-template-columns:1fr;gap:60px}
  .exp-collage{max-width:100%;margin:0 auto;aspect-ratio:4/4.2}
  .collage-badge{width:100px;height:100px;right:0}
  .badge-num{font-size:28px}
}
@media (max-width:540px){
  .pull-quote{font-size:18px;padding:14px 18px 14px 44px}
  .quote-mark{font-size:48px;left:12px}
  .dropcap{font-size:52px}
  .exp-collage{aspect-ratio:4/4.5}
  .collage-badge{width:84px;height:84px}
  .badge-num{font-size:22px}
  .badge-num span{font-size:11px}
  .badge-label{font-size:8px}
  .collage-stat{padding:14px 16px;left:0}
  .stat-value{font-size:24px}
  .stat-label{font-size:9.5px}
}
.section__body p{margin-bottom:18px;color:var(--muted);font-size:16px;line-height:1.75}
.section__body strong{color:var(--navy)}
.section__body em{color:var(--azure);font-weight:500;font-style:italic}

.features{
  list-style:none;margin-top:28px;
  display:flex;flex-wrap:wrap;gap:8px;
}
.features li{
  display:inline-flex;align-items:center;gap:8px;
  padding:9px 14px 9px 10px;
  background:#fff;border-radius:999px;
  border:1px solid rgba(29,58,107,.10);
  font-weight:500;font-size:13.5px;color:var(--navy);
  box-shadow:0 2px 6px rgba(29,58,107,.04);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.features li:hover{
  transform:translateY(-1px);
  border-color:rgba(45,143,201,.35);
  box-shadow:0 6px 14px rgba(29,58,107,.08);
}
.features li .ft-icon{
  width:24px;height:24px;flex-shrink:0;
  border-radius:50%;
  background:linear-gradient(135deg,var(--azure-pale),#fff);
  display:flex;align-items:center;justify-content:center;
  font-size:13px;line-height:1;
}
.lead-line{
  margin-top:24px!important;
  padding:14px 18px;
  background:linear-gradient(135deg,rgba(45,143,201,.08),rgba(247,179,43,.08));
  border-left:3px solid var(--yellow);
  border-radius:0 12px 12px 0;
  color:var(--navy)!important;
  font-weight:500;
  font-style:italic;
}

/* ---- ITINERARY editorial (zigzag with photos + sail legs) ---- */
.itinerary{
  position:relative;
  max-width:1000px;
  margin:0 auto;
}
.stop{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:48px;
  align-items:center;
  position:relative;
  padding:32px 0;
}
.stop--right{grid-template-columns:1fr 1.1fr}
.stop--right .stop__photo{order:2}
.stop--right .stop__content{order:1;text-align:right}
.stop__photo{
  aspect-ratio:5/4;
  background-size:cover;background-position:center;
  border-radius:20px;
  box-shadow:0 30px 60px rgba(29,58,107,.18);
  position:relative;
  overflow:hidden;
}
.stop__photo::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 60%,rgba(0,0,0,.2));
}
.stop__content{position:relative}
.stop__num{
  display:inline-block;
  font-family:'Fraunces',Georgia,serif;
  font-size:62px;font-weight:700;
  line-height:1;letter-spacing:-.04em;
  color:transparent;
  background:linear-gradient(135deg,var(--azure),var(--navy));
  -webkit-background-clip:text;background-clip:text;
  margin-bottom:8px;
}
.stop__content h3{
  font-family:'Fraunces',Georgia,serif;
  font-size:36px;font-weight:700;
  color:var(--navy);
  letter-spacing:-.02em;line-height:1.1;
  margin-bottom:14px;
}
.stop__content p{
  font-size:16px;line-height:1.7;
  color:var(--muted);
}

@media (max-width:880px){
  .stop, .stop--right{
    grid-template-columns:1fr;
    gap:20px;
    padding:24px 0;
  }
  .stop--right .stop__photo{order:1}
  .stop--right .stop__content{order:2;text-align:left}
  .stop__num{font-size:46px}
  .stop__content h3{font-size:26px}
  .stop__content p{font-size:14.5px}
}

/* ---- REVIEWS ---- */
.reviews-rating{
  display:inline-flex;align-items:center;gap:10px;
  margin-top:18px;
  padding:10px 18px;
  background:#fff;
  border:1px solid rgba(29,58,107,.08);
  border-radius:999px;
  box-shadow:var(--shadow-soft);
  font-size:14px;
}
.reviews-rating .rating-stars{color:var(--yellow);filter:none}
.reviews-rating .rating-stars svg{width:16px;height:16px}
.reviews-rating strong{font-family:'Fraunces',Georgia,serif;font-size:18px;color:var(--navy)}
.reviews-count{color:var(--muted);font-size:13px}
.reviews{
  margin-top:48px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  max-width:1080px;margin-left:auto;margin-right:auto;
}
.review{
  background:#fff;
  border-radius:18px;
  padding:32px 28px 28px;
  border:1px solid rgba(29,58,107,.07);
  box-shadow:var(--shadow-soft);
  transition:transform .3s ease, box-shadow .3s ease;
  display:flex;flex-direction:column;
  position:relative;
}
.review::before{
  content:"\201C";
  position:absolute;top:8px;left:24px;
  font-family:'Fraunces',Georgia,serif;
  font-size:96px;line-height:1;
  color:rgba(45,143,201,.10);
  font-weight:700;
  pointer-events:none;
}
.review:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.review__stars{
  display:flex;gap:2px;color:var(--yellow);margin-bottom:14px;
  position:relative;z-index:1;
}
.review__stars svg{width:16px;height:16px}
.review__text{
  color:var(--ink);font-size:15.5px;line-height:1.7;
  margin-bottom:22px;flex:1;
  position:relative;z-index:1;
}
.review__author{
  display:flex;align-items:center;gap:12px;
  padding-top:18px;
  border-top:1px solid rgba(29,58,107,.08);
}
.review__avatar{
  width:48px;height:48px;border-radius:50%;
  flex-shrink:0;
  object-fit:cover;
  display:block;
  border:2px solid #fff;
  box-shadow:0 2px 8px rgba(29,58,107,.18);
}
.review__source{
  position:absolute;top:18px;right:22px;
  font-size:10px;font-weight:600;
  letter-spacing:.16em;text-transform:uppercase;
  color:var(--rope);
  z-index:1;
}
.review__name{font-weight:600;color:var(--navy);font-size:14px}
.review__meta{font-size:12px;color:var(--muted);margin-top:2px}
@media (max-width:900px){.reviews{grid-template-columns:1fr;gap:16px}}

/* ---- GALLERY caption ---- */
.gallery__item figcaption{
  position:absolute;
  bottom:18px;left:18px;right:18px;
  z-index:2;
  color:#fff;
  font-family:'Fraunces',Georgia,serif;
  font-size:18px;font-weight:600;
  letter-spacing:-.01em;
  opacity:0;
  transform:translateY(8px);
  transition:opacity .3s ease, transform .3s ease;
  text-shadow:0 2px 8px rgba(0,0,0,.5);
}
.gallery__item:hover figcaption{opacity:1;transform:translateY(0)}
.gallery__item--big figcaption{font-size:24px;bottom:24px;left:24px}

/* ---- GALLERY ---- */
.gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:180px;
  gap:16px;
}
.gallery__item{
  border-radius:var(--radius);
  background-size:cover;background-position:center;
  cursor:pointer;transition:transform .5s ease,box-shadow .5s ease;
  box-shadow:var(--shadow);
  position:relative;overflow:hidden;
}
.gallery__item::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 40%,rgba(20,40,71,.4));
  opacity:0;transition:opacity .3s;
}
.gallery__item:hover{transform:translateY(-4px) scale(1.01)}
.gallery__item:hover::after{opacity:1}
.gallery__item--big{grid-column:span 2;grid-row:span 2}

/* ---- THE BOAT (compact intro) ---- */
.section--compact{padding:80px 0}
.boat-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
/* Boat slider */
.boat-slider{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(29,58,107,.20);
  aspect-ratio:5/4;
  background:#0c1c33;
}
.boat-slides{
  position:relative;
  width:100%;height:100%;
}
.boat-slide{
  position:absolute;inset:0;
  opacity:0;
  transition:opacity .6s ease;
  pointer-events:none;
}
.boat-slide.is-active{opacity:1;pointer-events:auto}
.boat-slide img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}
.boat-tag{
  position:absolute;top:18px;left:18px;
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 14px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  border-radius:999px;
  font-size:11px;font-weight:600;
  letter-spacing:.18em;text-transform:uppercase;
  color:var(--navy);
  z-index:3;
}
.boat-arrow{
  position:absolute;top:50%;
  transform:translateY(-50%);
  width:40px;height:40px;border-radius:50%;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  color:var(--navy);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  box-shadow:0 6px 16px rgba(0,0,0,.18);
  transition:background .2s ease, transform .2s ease;
  z-index:3;
  opacity:0;
}
.boat-slider:hover .boat-arrow{opacity:1}
.boat-arrow:hover{background:#fff;transform:translateY(-50%) scale(1.05)}
.boat-arrow svg{width:18px;height:18px}
.boat-arrow--prev{left:14px}
.boat-arrow--next{right:14px}
.boat-dots{
  position:absolute;bottom:14px;left:50%;
  transform:translateX(-50%);
  display:inline-flex;gap:8px;
  padding:6px 10px;
  background:rgba(20,40,71,.45);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  border-radius:999px;
  z-index:3;
}
.boat-dot{
  width:7px;height:7px;border-radius:50%;
  background:rgba(255,255,255,.4);
  transition:background .25s ease, width .25s ease;
  cursor:pointer;
}
.boat-dot.is-active{
  background:#fff;
  width:22px;border-radius:999px;
}
@media (max-width:880px){
  .boat-arrow{opacity:1;width:36px;height:36px}
  .boat-arrow svg{width:16px;height:16px}
}
.bp-dot{
  width:6px;height:6px;border-radius:50%;
  background:var(--orange);
  box-shadow:0 0 0 3px rgba(237,126,44,.25);
}
.boat-info{position:relative}
.serif-italic{
  font-style:italic;font-weight:600;
  color:var(--azure);
}
.boat-tagline{
  font-family:'Fraunces',Georgia,serif;
  font-size:18px;font-weight:500;
  color:var(--navy);
  margin-top:10px;margin-bottom:14px;
  font-style:italic;
}
.boat-info > p:last-of-type{
  color:var(--muted);font-size:15.5px;line-height:1.7;
  margin-bottom:28px;
  max-width:440px;
}
.boat-specs{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border-top:1px solid rgba(29,58,107,.10);
  border-bottom:1px solid rgba(29,58,107,.10);
}
.bs-cell{
  padding:22px 12px;
  border-right:1px solid rgba(29,58,107,.08);
  text-align:center;
}
.bs-cell:last-child{border-right:none}
.bs-value{
  font-family:'Fraunces',Georgia,serif;
  font-size:30px;font-weight:700;
  color:var(--navy);
  line-height:1;letter-spacing:-.02em;
  display:flex;align-items:baseline;gap:3px;
  justify-content:center;
}
.bs-value em{
  font-family:'Outfit',sans-serif;
  font-size:11px;font-style:normal;font-weight:500;
  color:var(--muted);
  letter-spacing:.08em;
  text-transform:uppercase;
}
.bs-label{
  font-size:11px;font-weight:600;
  letter-spacing:.18em;text-transform:uppercase;
  color:var(--muted);
  margin-top:6px;
}
@media (max-width:880px){
  .boat-grid{grid-template-columns:1fr;gap:32px}
  .boat-photo{aspect-ratio:4/3}
  .bs-value{font-size:24px}
}
@media (max-width:480px){
  .boat-specs{grid-template-columns:repeat(2,1fr)}
  .bs-cell{
    border-right:1px solid rgba(29,58,107,.08);
    border-bottom:1px solid rgba(29,58,107,.08);
  }
  .bs-cell:nth-child(2n){border-right:none}
  .bs-cell:nth-child(n+3){border-bottom:none}
}

/* ---- Section CTA (reusable, gold, soft pulse) ---- */
.section__cta{
  margin-top:56px;
  text-align:center;
  display:flex;flex-direction:column;align-items:center;gap:14px;
}
.section__cta::before{
  content:"";
  width:48px;height:1px;
  background:linear-gradient(90deg,transparent,var(--rope),transparent);
  margin-bottom:8px;
}
.cta-line{
  font-family:'Fraunces',Georgia,serif;
  font-size:18px;font-weight:500;
  color:var(--navy);
  font-style:italic;
  margin:0;
}
.section--dark .cta-line{color:#fff}
.section--cream .cta-line, .section--white .cta-line, .section--sand .cta-line{color:var(--navy)}
/* Force ALL section CTAs to use the SAME gold gradient + soft pulse */
.section__cta .btn{
  margin-top:4px;
  background:linear-gradient(135deg,var(--yellow),var(--orange))!important;
  color:var(--navy-deep)!important;
  border:none!important;
  animation:ctaPulse 2.8s ease-in-out infinite;
}
.section__cta .btn:hover{
  animation-play-state:paused;
  transform:translateY(-2px);
}
.section--dark .section__cta .btn{
  /* keep same gold on dark sections */
  color:var(--navy-deep)!important;
}
@keyframes ctaPulse{
  0%,100%{
    box-shadow:0 10px 26px rgba(247,179,43,.32), 0 0 0 0 rgba(247,179,43,.0);
  }
  50%{
    box-shadow:0 14px 34px rgba(247,179,43,.45), 0 0 0 8px rgba(247,179,43,.10);
  }
}
@media (prefers-reduced-motion:reduce){
  .section__cta .btn{animation:none}
}
@media (max-width:540px){
  .section__cta{margin-top:40px}
  .cta-line{font-size:16px}
}

/* ---- WHAT'S ON BOARD (Included vs Add-ons) ---- */
.onboard{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:0;
  max-width:1080px;margin:0 auto;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 24px 60px rgba(29,58,107,.12);
  border:1px solid rgba(29,58,107,.07);
}
.onboard__col{padding:48px 44px;position:relative}
.onboard__col--included{
  background:
    radial-gradient(circle at 20% 0%, rgba(45,143,201,.08), transparent 60%),
    #fff;
}
.onboard__col--addons{
  background:
    linear-gradient(180deg,#fcf9f0 0%,#fff 100%);
  border-left:1px solid rgba(29,58,107,.08);
}
.onboard__head{margin-bottom:28px}
.onboard__tag{
  display:inline-block;
  font-size:10.5px;font-weight:600;
  letter-spacing:.22em;text-transform:uppercase;
  color:var(--azure);
  padding:6px 14px;
  background:var(--azure-pale);
  border-radius:999px;
  margin-bottom:14px;
}
.onboard__tag--gold{
  color:#a47322;
  background:rgba(255,201,51,.18);
}
.onboard__head h3{
  font-family:'Fraunces',Georgia,serif;
  font-size:28px;font-weight:700;
  color:var(--navy);
  letter-spacing:-.02em;line-height:1.1;
}

.onboard__list{
  list-style:none;
  display:flex;flex-direction:column;
  gap:16px;
}
.onboard__list li{
  display:flex;align-items:flex-start;gap:14px;
  padding:0;
}
.oi-mark{
  flex-shrink:0;
  width:22px;height:22px;border-radius:6px;
  background:#fff;
  border:1.5px solid rgba(29,58,107,.18);
  color:var(--navy);
  display:flex;align-items:center;justify-content:center;
  margin-top:2px;
  box-shadow:0 1px 3px rgba(29,58,107,.06), inset 0 -1px 0 rgba(29,58,107,.04);
  transition:transform .25s ease, border-color .25s ease, background .25s ease;
}
.onboard__list li:hover .oi-mark{
  background:linear-gradient(135deg,var(--yellow),var(--orange));
  border-color:var(--orange);
  color:#fff;
  transform:scale(1.06);
}
.oi-mark svg{width:14px;height:14px;stroke-width:3}
.onboard__list strong{
  display:block;
  color:var(--navy);font-weight:600;
  font-size:15px;line-height:1.4;
  margin-bottom:2px;
}
.onboard__list span{
  display:block;
  color:var(--muted);font-size:13.5px;line-height:1.5;
}

.addon-row{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;
  padding:16px 18px!important;
  background:#fff;
  border:1px solid rgba(29,58,107,.08);
  border-radius:12px;
  transition:border-color .25s ease, box-shadow .25s ease;
}
.addon-row:hover{
  border-color:var(--yellow);
  box-shadow:0 8px 20px rgba(255,201,51,.15);
}
.ar-info strong{color:var(--navy);font-weight:600;font-size:14.5px;display:block;margin-bottom:2px}
.ar-info span{color:var(--muted);font-size:13px;line-height:1.4}
.ar-price{
  flex-shrink:0;
  font-family:'Fraunces',Georgia,serif;
  font-size:24px;font-weight:700;
  color:var(--orange);
  letter-spacing:-.02em;line-height:1;
  display:inline-flex;align-items:baseline;gap:4px;
}
.ar-price em{
  font-family:'Outfit',sans-serif;
  font-size:11px;font-style:normal;font-weight:500;
  color:var(--muted);
  letter-spacing:.05em;
}
.onboard__note{
  margin-top:20px;
  font-size:12.5px;line-height:1.55;
  color:var(--muted);
  font-style:italic;
  padding-left:14px;
  border-left:2px solid var(--yellow);
}

@media (max-width:880px){
  .onboard{
    grid-template-columns:1fr;
    border-radius:18px;
  }
  .onboard__col{padding:32px 24px}
  .onboard__col--addons{border-left:none;border-top:1px solid rgba(29,58,107,.08)}
  .onboard__head h3{font-size:22px}
  .ar-price{font-size:20px}
}

/* ---- EXTRAS (legacy, unused) ---- */
.extras{
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
}
.extra-card{
  background:#fff;padding:32px 28px;border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(29,58,107,.07);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position:relative;text-align:center;
}
.extra-card::before{
  content:"";position:absolute;top:-1px;left:24px;right:24px;height:3px;
  background:linear-gradient(90deg,var(--azure),var(--yellow),var(--orange));
  border-radius:0 0 4px 4px;
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .35s cubic-bezier(.2,.8,.2,1);
}
.extra-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
  border-color:rgba(45,143,201,.2);
}
.extra-card:hover::before{transform:scaleX(1)}
.extra-card__icon{
  margin:0 auto 18px;
  width:72px;height:72px;border-radius:50%;
  background:radial-gradient(circle at 30% 30%, #fff, var(--azure-pale));
  border:1px solid rgba(45,143,201,.2);
  display:flex;align-items:center;justify-content:center;
  box-shadow:inset 0 -6px 14px rgba(45,143,201,.08);
  color:var(--azure);
}
.extra-card__icon svg{width:32px;height:32px}
.extra-card--featured{
  background:linear-gradient(135deg,#fff 0%,var(--azure-pale) 100%);
  border-color:rgba(247,179,43,.4);
  position:relative;
  transform:translateY(-8px);
}
.extra-card--featured .extra-card__icon{
  background:linear-gradient(135deg,#fff5d4,#ffe89a);
  border-color:rgba(247,179,43,.4);
  color:var(--orange);
  box-shadow:inset 0 -6px 14px rgba(247,179,43,.15);
}
.extra-card__ribbon{
  position:absolute;top:-12px;left:50%;
  transform:translateX(-50%);
  font-size:10px;font-weight:700;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--navy);
  padding:5px 14px;
  background:linear-gradient(135deg,var(--yellow),var(--orange));
  border-radius:999px;
  box-shadow:0 4px 14px rgba(247,179,43,.4);
}
@media (max-width:980px){
  .extra-card--featured{transform:none}
}
.extra-card h3{
  font-family:'Fraunces',Georgia,serif;font-size:20px;font-weight:700;
  color:var(--navy);margin-bottom:8px;letter-spacing:-.01em;
}
.extra-card p{color:var(--muted);font-size:14.5px;line-height:1.6}
@media (max-width:980px){
  .extras{grid-template-columns:1fr;gap:14px}
  .extra-card{padding:24px 22px}
  .extra-card__icon{width:52px;height:52px;font-size:24px;margin-bottom:12px}
  .extra-card h3{font-size:18px}
  .extra-card p{font-size:14px}
}

/* ---- MEETING (pickup points) ---- */
.section--dark .section__head p,
.section--dark .section__head .section__lead{color:#bdcfe2}
.section--dark .section__head strong{color:#fff}

.pickups{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  max-width:1100px;margin:0 auto;
}
.pickup{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  background:#0c1d36;
  border:1px solid rgba(255,255,255,.08);
  transition:transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
  box-shadow:0 14px 30px rgba(0,0,0,.25);
  display:flex;flex-direction:column;
}
.pickup:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 50px rgba(0,0,0,.4);
}
.pickup__photo{
  height:200px;
  background-image:var(--ph);
  background-size:cover;background-position:center;
  position:relative;
  transition:transform .6s cubic-bezier(.2,.8,.2,1);
}
.pickup__photo::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(20,40,71,.05) 0%,rgba(20,40,71,.6) 100%);
}
.pickup:hover .pickup__photo{transform:scale(1.05)}
.pickup__body{
  padding:24px 26px 26px;
  position:relative;
}
.pickup__num{
  position:absolute;
  top:-22px;right:24px;
  width:48px;height:48px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg,var(--yellow),var(--orange));
  color:var(--navy-deep);
  font-family:'Fraunces',Georgia,serif;
  font-size:18px;font-weight:700;
  box-shadow:0 8px 20px rgba(247,179,43,.4);
  border:2px solid var(--navy-deep);
}
.pickup h3{
  font-family:'Fraunces',Georgia,serif;
  font-size:24px;font-weight:700;
  color:#fff;
  letter-spacing:-.01em;
  margin:0 0 8px;
  padding-right:48px;
}
.pickup__area{
  font-size:11px;font-weight:600;
  letter-spacing:.18em;text-transform:uppercase;
  color:var(--yellow);
  margin:0 0 14px!important;
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.pickup__desc{
  color:#bdcfe2;
  font-size:14px;line-height:1.6;
  margin:0!important;
}

.pickups__note{
  max-width:680px;margin:48px auto 0;
  display:flex;align-items:flex-start;gap:14px;
  padding:20px 24px;
  background:rgba(45,143,201,.10);
  border:1px solid rgba(45,143,201,.25);
  border-radius:14px;
  text-align:left;
}
.pickups__note p{
  color:#dde7f3;
  font-size:14.5px;line-height:1.6;
  margin:0;
}
.pn-icon{font-size:22px;flex-shrink:0;line-height:1.2}

@media (max-width:880px){
  .pickups{grid-template-columns:1fr;gap:30px;max-width:520px}
  .pickup__photo{height:180px}
  .pickup h3{font-size:20px}
  .pickups__note{margin-top:32px;padding:16px 18px}
}

/* WhatsApp icon inline in CTAs */
.wa-ico{
  width:18px;height:18px;
  flex-shrink:0;
  fill:currentColor;
}
.btn--gold .wa-ico{fill:#1a3520}
.section__cta .btn{gap:9px}

/* ---- BOOK MODAL (full-screen overlay) ---- */
.book-modal{
  position:fixed;inset:0;z-index:200;
  display:flex;align-items:center;justify-content:center;
  padding:24px;
  opacity:0;visibility:hidden;
  transition:opacity .3s ease, visibility .3s ease;
}
.book-modal[hidden]{display:none}
.book-modal.is-open{opacity:1;visibility:visible}
.book-modal__backdrop{
  position:absolute;inset:0;
  background:rgba(6,18,36,.65);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.book-modal__panel{
  position:relative;
  background:#fff;
  border-radius:20px;
  max-width:520px;width:100%;
  max-height:calc(100vh - 48px);
  padding:32px 32px 24px;
  box-shadow:0 40px 80px rgba(0,0,0,.4);
  transform:translateY(20px) scale(.98);
  transition:transform .35s cubic-bezier(.2,.8,.2,1);
  display:flex;flex-direction:column;
}
.book-modal.is-open .book-modal__panel{transform:translateY(0) scale(1)}
.book-modal__close{
  position:absolute;top:16px;right:16px;
  width:38px;height:38px;border-radius:50%;
  background:rgba(29,58,107,.06);
  color:var(--navy);
  display:flex;align-items:center;justify-content:center;
  transition:background .2s ease, transform .2s ease;
  z-index:2;
}
.book-modal__close:hover{background:rgba(29,58,107,.12);transform:scale(1.05)}
.book-modal__close svg{width:18px;height:18px}
.book-modal__head{text-align:center;margin-bottom:18px}
.book-modal__head .eyebrow{color:var(--azure);margin-bottom:6px;font-size:10px;letter-spacing:.22em}
.book-modal__head .eyebrow::after{display:none}
.book-modal__title{
  font-family:'Fraunces',Georgia,serif;
  font-size:24px;
  font-weight:700;line-height:1.05;
  color:var(--navy);
  letter-spacing:-.02em;
  margin-bottom:8px;
}
.book-modal__head p{color:var(--muted);font-size:13px;line-height:1.5}
.book-modal__hint{
  margin-top:10px!important;
  padding:9px 14px;
  background:rgba(37,211,102,.08);
  border:1px solid rgba(37,211,102,.25);
  border-radius:10px;
  color:var(--ink)!important;
  font-size:12.5px!important;
  line-height:1.45;
  display:inline-flex;align-items:center;gap:9px;
  text-align:left;
}
.book-modal__hint::before{
  content:"";
  width:7px;height:7px;border-radius:50%;
  background:var(--whatsapp);
  flex-shrink:0;
  box-shadow:0 0 0 3px rgba(37,211,102,.25);
  animation:dotPulse 1.6s ease-in-out infinite;
}
.book-modal__hint strong{color:var(--whatsapp-dark);font-weight:600}

/* Compact form inside modal */
.book-form{flex:1}
.book-form .form-block{margin-bottom:14px}
.book-form .form-label{
  font-size:10px;letter-spacing:.18em;
  margin-bottom:8px;font-weight:600;
}
.book-form .date-tabs{gap:6px}
.book-form .date-tab{padding:9px 6px;border-radius:9px}
.book-form .date-day{font-size:12px}
.book-form .date-full{font-size:10px}
.book-form .time-slots{gap:6px}
.book-form .time-slot{padding:10px 6px;border-radius:9px}
.book-form .slot-name{font-size:12px}
.book-form .slot-hours{font-size:10px}
.book-form .guest-counter{padding:4px 4px 4px 14px;border-radius:9px}
.book-form .counter-btn{width:32px;height:32px;border-radius:7px;font-size:16px}
.book-form .counter-value{font-size:13px}

/* Foot row: total + WhatsApp button */
.book-foot{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  margin-top:14px;padding-top:14px;
  border-top:1px solid rgba(29,58,107,.10);
}
.book-foot__price{display:flex;flex-direction:column;line-height:1}
.bf-label{
  font-size:9px;font-weight:600;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--muted);
  margin-bottom:3px;
}
.bf-value{
  font-family:'Fraunces',Georgia,serif;
  font-size:28px;font-weight:700;color:var(--navy);
  letter-spacing:-.02em;
}
.book-foot .btn{
  flex:1;
  padding:13px 18px;
  font-size:14px;
  white-space:nowrap;
}
@keyframes dotPulse{
  0%,100%{box-shadow:0 0 0 4px rgba(37,211,102,.25)}
  50%{box-shadow:0 0 0 7px rgba(37,211,102,.10)}
}

@media (max-width:640px){
  .book-modal{padding:0;align-items:stretch}
  .book-modal__panel{
    max-width:100%;max-height:100vh;height:100vh;
    border-radius:0;
    padding:54px 18px 18px;
  }
  .book-modal__close{top:10px;right:10px;width:34px;height:34px}
  .book-modal__head{margin-bottom:14px}
  .book-modal__title{font-size:21px}
  .book-form .time-slots{grid-template-columns:repeat(3,1fr)}
  .book-foot{margin-top:12px;padding-top:12px}
  .bf-value{font-size:24px}
}

/* lock body scroll when modal open */
body.modal-open{overflow:hidden}

.book-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:48px;
}

.form-block{margin-bottom:28px}
.form-label{
  display:block;font-size:11px;font-weight:600;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--muted);margin-bottom:14px;
}

.date-tabs{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.date-tab{
  padding:14px 10px;background:transparent;
  border:1px solid rgba(29,58,107,.15);
  border-radius:10px;
  text-align:center;transition:border-color .2s ease, background .2s ease, color .2s ease;
  color:var(--ink);
}
.date-tab:hover{border-color:var(--navy)}
.date-tab.active{
  border-color:var(--navy);
  background:var(--navy);
  color:#fff;
}
.date-day{display:block;font-size:13px;font-weight:600;margin-bottom:2px}
.date-full{display:block;font-size:11px;opacity:.75}

.time-slots{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.time-slot{
  padding:14px 8px;background:transparent;
  border:1px solid rgba(29,58,107,.15);
  border-radius:10px;
  text-align:center;transition:border-color .2s ease, background .2s ease, color .2s ease;
  color:var(--ink);
}
.time-slot:hover{border-color:var(--navy)}
.time-slot.active{
  border-color:var(--navy);
  background:var(--navy);
  color:#fff;
}
.slot-name{display:block;font-size:13px;font-weight:600;margin-bottom:2px}
.slot-hours{display:block;font-size:11px;font-weight:400;opacity:.75}
@media (max-width:480px){.time-slots{grid-template-columns:1fr}}

.guest-counter{
  display:flex;align-items:center;justify-content:space-between;
  padding:6px 6px 6px 18px;
  border:1px solid rgba(29,58,107,.15);
  border-radius:10px;
}
.counter-btn{
  width:36px;height:36px;border-radius:8px;
  background:var(--navy);
  color:#fff;font-size:18px;font-weight:500;
  transition:opacity .2s ease;
}
.counter-btn:hover{opacity:.85}
.counter-value{font-size:14px;font-weight:500;color:var(--ink)}

.book-right{
  border-top:1px solid rgba(29,58,107,.10);
  padding-top:32px;
}

.summary__title{
  font-size:13px;font-weight:600;
  letter-spacing:.18em;text-transform:uppercase;
  color:var(--muted);margin-bottom:16px;
  font-family:'Outfit',sans-serif;
}
.summary__row{
  display:flex;justify-content:space-between;align-items:baseline;
  padding:8px 0;font-size:14px;color:var(--muted);
}
.summary__row span:last-child{color:var(--ink);font-weight:500}
.summary__row.total{
  font-size:14px;color:var(--ink);font-weight:600;
  margin-top:6px;
}
.summary__row.total span:first-child{
  font-size:11px;font-weight:600;
  letter-spacing:.18em;text-transform:uppercase;
  color:var(--muted);
}
.summary__row.total span:last-child{
  font-family:'Fraunces',Georgia,serif;
  font-size:32px;font-weight:600;color:var(--navy);
  letter-spacing:-.02em;
}
.muted{color:var(--muted)!important;font-weight:500!important;font-size:13px!important;letter-spacing:0;text-transform:none}
.summary__divider{height:1px;background:rgba(29,58,107,.08);margin:14px 0}

#whatsappBtn{width:100%;margin-top:28px}
.secure-note{text-align:center;margin-top:14px;font-size:12px;color:var(--muted)}

@media (max-width:480px){
  .date-tabs{grid-template-columns:1fr}
}

/* ---- FOOTER ---- */
.footer{
  background:var(--navy-deep);color:#a8bcd3;padding:60px 0 30px;
  border-top:3px solid var(--yellow);
}
.footer__inner{
  display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:24px;
}
.footer .nav__logo{color:#fff}
.footer .nav__logo em{color:var(--yellow)}
.footer .nav__logo-wrap{
  width:54px;height:54px;
  background:#fff;
}
.footer__tag{font-size:14px;margin-top:8px;color:#7a90a8}
.footer__links{display:flex;gap:24px;font-size:14px;flex-wrap:wrap}
.footer__links a:hover{color:var(--yellow)}
.footer__copy{width:100%;text-align:center;margin-top:30px;font-size:13px;color:#5b7390;border-top:1px solid rgba(255,255,255,.08);padding-top:24px}

/* ---- STICKY MOBILE CTA ---- */
.sticky-cta{
  display:none;
  position:fixed;bottom:16px;left:16px;right:16px;
  z-index:90;
  padding:16px 24px;
  background:var(--whatsapp);color:#fff;
  border-radius:14px;
  font-size:15px;font-weight:600;
  box-shadow:0 12px 32px rgba(37,211,102,.4);
  align-items:center;justify-content:space-between;
  opacity:0;transform:translateY(120%);
  transition:opacity .35s ease,transform .35s cubic-bezier(.2,.8,.2,1);
  pointer-events:none;
}
.sticky-cta.visible{opacity:1;transform:translateY(0);pointer-events:auto}
.sticky-price{font-family:'Fraunces',Georgia,serif;font-size:20px}
@media (max-width:768px){
  .sticky-cta{display:flex}
  .footer{padding-bottom:100px}
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .9s ease, transform .9s ease}
.reveal.in-view{opacity:1;transform:translateY(0)}

/* ---- RESPONSIVE ---- */
@media (max-width:980px){
  .grid-2{grid-template-columns:1fr;gap:24px}
  .gallery{grid-template-columns:repeat(2,1fr);grid-auto-rows:160px}
  .gallery__item--big{grid-column:span 2;grid-row:span 2}
  .extras{grid-template-columns:1fr;gap:18px}
  .nav__links a:not(.btn){display:none}
  .section{padding:80px 0}
  .features{grid-template-columns:1fr}
  .nav__logo-text{font-size:17px}
  .nav__logo-wrap{width:60px;height:60px}
  .nav.scrolled .nav__logo-wrap{width:48px;height:48px}
  .nav__logo{font-size:17px;gap:10px}
}

/* leaflet */
.leaflet-container{font-family:'Inter',sans-serif}
