@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ======= TOKENS ======= */
:root {
  --ink:        #18181B;
  --ink-soft:   #52525B;
  --ink-muted:  #A1A1AA;
  --surface:    #FAFAF9;
  --white:      #FFFFFF;
  --gold:       #C8923A;
  --gold-lt:    #E8B96A;
  --gold-dim:   rgba(200,146,58,.12);
  --teal:       #0D6B72;
  --teal-dim:   rgba(13,107,114,.1);
  --border:     rgba(226,232,240,.6);
  --shadow-xs:  0 1px 4px rgba(0,0,0,.04);
  --shadow-sm:  0 4px 16px rgba(0,0,0,.06);
  --shadow-md:  0 12px 40px rgba(0,0,0,.09);
  --shadow-lg:  0 24px 64px rgba(0,0,0,.12);
  --r-sm:       6px;
  --r:          14px;
  --r-lg:       24px;
  --r-xl:       36px;
  --ease:       cubic-bezier(.22,.68,0,1.2);
  --ease-out:   cubic-bezier(.16,1,.3,1);
}

/* ======= RESET ======= */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;font-size:16px;-webkit-font-smoothing:antialiased;}
body{font-family:'Outfit',sans-serif;background:var(--surface);color:var(--ink);overflow-x:hidden;line-height:1.6;}
img{display:block;max-width:100%;height:auto;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{cursor:pointer;border:none;background:none;font-family:inherit;}

/* ======= NAV ======= */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  padding:1.25rem 2rem;
  gap:1rem;
  transition:all .4s var(--ease-out);
}
.nav-center{
  display:flex;gap:1.8rem;
  flex:1;justify-content:center;
}
.nav-right{flex-shrink:0;}
.nav::before{
  content:'';position:absolute;inset:0;
  background:rgba(250,250,249,0);
  backdrop-filter:blur(0px);
  border-bottom:1px solid transparent;
  transition:all .4s ease;
  pointer-events:none;
}
.nav.scrolled::before{
  background:rgba(250,250,249,.92);
  backdrop-filter:blur(20px);
  border-bottom-color:var(--border);
}
.nav-logo{
  display:flex;align-items:center;gap:.75rem;
  position:relative;z-index:1;
}
.logo-mark{
  width:38px;height:38px;
  background:var(--ink);
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  font-family:'Fraunces',serif;font-size:1rem;font-weight:700;
  color:var(--gold-lt);
  flex-shrink:0;
  transition:transform .3s var(--ease);
}
.nav-logo:hover .logo-mark{transform:rotate(-6deg);}
.logo-name{font-family:'Fraunces',serif;font-size:1.2rem;font-weight:400;color:var(--ink);}
.logo-name em{font-style:italic;color:var(--gold);}

.nav-center{
  display:flex;gap:2.5rem;
  position:absolute;left:50%;transform:translateX(-50%);
  position:relative;z-index:1;
}
.nav-center a{
  font-size:.875rem;font-weight:500;color:var(--ink-soft);
  letter-spacing:.02em;transition:color .25s;position:relative;
}
.nav-center a::after{
  content:'';position:absolute;bottom:-3px;left:0;right:0;
  height:1.5px;background:var(--gold);
  transform:scaleX(0);transform-origin:right;
  transition:transform .3s var(--ease-out);
}
.nav-center a:hover{color:var(--ink);}
.nav-center a:hover::after,.nav-center a.active::after{transform:scaleX(1);transform-origin:left;}
.nav-center a.active{color:var(--ink);}

.nav-right{display:flex;align-items:center;gap:1rem;position:relative;z-index:1;}
.btn-nav{
  padding:.5rem 1.1rem;border-radius:50px;
  background:var(--ink);color:var(--white);
  font-size:.78rem;font-weight:600;letter-spacing:.02em;
  white-space:nowrap;
  transition:all .3s var(--ease);
}
.btn-nav:hover{background:var(--gold);transform:translateY(-1px);box-shadow:0 6px 20px rgba(200,146,58,.3);}

.hamburger{display:none;flex-direction:column;gap:5px;padding:4px;z-index:200;}
.hamburger span{display:block;width:22px;height:1.5px;background:var(--ink);border-radius:2px;transition:all .3s var(--ease);}
.hamburger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg);}
.hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0);}
.hamburger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg);}

.mobile-nav{
  display:none;position:fixed;inset:0;z-index:99;
  background:var(--ink);
  flex-direction:column;align-items:center;justify-content:center;gap:3rem;
  opacity:0;pointer-events:none;transition:opacity .4s ease;
}
.mobile-nav.open{display:flex;opacity:1;pointer-events:all;}
.mobile-nav a{font-family:'Fraunces',serif;font-size:2.5rem;font-weight:300;color:rgba(255,255,255,.85);font-style:italic;transition:color .3s;}
.mobile-nav a:hover{color:var(--gold-lt);}

/* ======= HERO ======= */
.hero{
  min-height:100dvh;
  display:grid;grid-template-columns:1fr 1fr;
  overflow:hidden;
  padding-top:80px;
}
.hero-left{
  display:flex;flex-direction:column;justify-content:center;
  padding:5rem 4rem 5rem 3rem;
  background:var(--surface);
  position:relative;
}
.hero-left::after{
  content:'';position:absolute;right:0;top:10%;bottom:10%;
  width:1px;background:linear-gradient(to bottom,transparent,var(--border),transparent);
}
.hero-tag{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.45rem 1rem;border-radius:50px;
  background:var(--gold-dim);border:1px solid rgba(200,146,58,.2);
  font-size:.75rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  color:var(--gold);margin-bottom:2rem;width:fit-content;
}
.hero-tag::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--gold);animation:pulse 2s infinite;}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(.8);}}

.hero-h1{
  font-family:'Fraunces',serif;
  font-size:clamp(3rem,5.5vw,5.2rem);
  font-weight:300;line-height:1.05;
  letter-spacing:-.03em;
  color:var(--ink);
  margin-bottom:1.8rem;
}
.hero-h1 em{font-style:italic;color:var(--gold);}
.hero-h1 .line-break{display:block;}

.hero-sub{
  font-size:1.05rem;color:var(--ink-soft);
  max-width:440px;line-height:1.75;margin-bottom:3rem;font-weight:300;
}
.hero-actions{display:flex;align-items:center;gap:1.2rem;flex-wrap:wrap;}
.btn-primary{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.9rem 2rem;border-radius:50px;
  background:var(--ink);color:var(--white);
  font-size:.9rem;font-weight:600;letter-spacing:.02em;
  transition:all .35s var(--ease);
}
.btn-primary:hover{background:var(--gold);transform:translateY(-2px);box-shadow:0 8px 28px rgba(200,146,58,.35);}
.btn-primary svg{width:16px;height:16px;transition:transform .3s var(--ease);}
.btn-primary:hover svg{transform:translateX(3px);}
.btn-ghost{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.9rem;font-weight:500;color:var(--ink-soft);
  border-bottom:1px solid var(--border);padding-bottom:2px;
  transition:all .3s;
}
.btn-ghost:hover{color:var(--ink);border-color:var(--ink);}

.hero-social-proof{
  display:flex;align-items:center;gap:1rem;margin-top:3.5rem;
  padding-top:2rem;border-top:1px solid var(--border);
}
.avatars{display:flex;}
.avatars img{
  width:32px;height:32px;border-radius:50%;
  border:2px solid var(--white);margin-right:-8px;
  object-fit:cover;
}
.proof-text{font-size:.82rem;color:var(--ink-muted);line-height:1.4;}
.proof-text strong{color:var(--ink);display:block;}

.hero-right{
  position:relative;overflow:hidden;
  background:var(--ink);
  min-height:600px;
}
.hero-right img{
  width:100%;height:100%;object-fit:cover;
  opacity:.75;
  transform:scale(1.04);
  animation:herozoom 20s ease-in-out infinite alternate;
}
@keyframes herozoom{from{transform:scale(1.04);}to{transform:scale(1.1);}}

.hero-right-overlay{
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(13,27,53,.4) 0%,transparent 60%);
}
.hero-right-card{
  position:absolute;bottom:2.5rem;left:2rem;right:2rem;
  background:rgba(250,250,249,.1);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.15);
  border-radius:var(--r-lg);
  padding:1.5rem;
}
.hero-card-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:1rem;}
.hero-card-stat .num{
  font-family:'Fraunces',serif;font-size:2rem;font-weight:400;
  color:var(--white);line-height:1;display:block;
}
.hero-card-stat .lbl{font-size:.72rem;color:rgba(255,255,255,.55);text-transform:uppercase;letter-spacing:.1em;margin-top:.25rem;display:block;}

/* ======= MARQUEE ======= */
.marquee-band{
  overflow:hidden;border-top:1px solid var(--border);border-bottom:1px solid var(--border);
  padding:.9rem 0;background:var(--white);
}
.marquee-track{
  display:flex;gap:4rem;white-space:nowrap;
  animation:marquee 25s linear infinite;
}
.marquee-track:hover{animation-play-state:paused;}
@keyframes marquee{from{transform:translateX(0);}to{transform:translateX(-50%);}}
.marquee-item{
  display:inline-flex;align-items:center;gap:.7rem;
  font-size:.8rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  color:var(--ink-muted);flex-shrink:0;
}
.marquee-dot{width:4px;height:4px;border-radius:50%;background:var(--gold);flex-shrink:0;}

/* ======= SECTION BASE ======= */
.section{padding:clamp(4rem,8vw,7rem) 0;}
.container{max-width:1320px;margin:0 auto;padding:0 clamp(1.2rem,4vw,3rem);}

.sec-eyebrow{
  display:inline-flex;align-items:center;gap:.6rem;
  font-size:.72rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1.2rem;
}
.sec-eyebrow::before{content:'';width:24px;height:1.5px;background:var(--gold);}
.sec-title{
  font-family:'Fraunces',serif;
  font-size:clamp(2rem,4vw,3.2rem);
  font-weight:300;line-height:1.15;letter-spacing:-.02em;
  color:var(--ink);margin-bottom:1.2rem;
}
.sec-title em{font-style:italic;color:var(--gold);}
.sec-body{font-size:1rem;color:var(--ink-soft);max-width:520px;line-height:1.75;font-weight:300;}
.rule{width:40px;height:2px;background:var(--gold);border-radius:2px;margin:1.2rem 0;}

/* ======= VOYAGE CARDS — BENTO ======= */
.bento-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:1.5px;
  background:var(--border);
  border-radius:var(--r-xl);
  overflow:hidden;
  margin-top:3.5rem;
}
.bento-card{
  position:relative;overflow:hidden;
  background:var(--white);
  min-height:480px;
  cursor:pointer;
}
.bento-card.tall{grid-row:span 2;min-height:660px;}
.bento-card img{
  position:absolute;inset:0;
  width:100%;height:100%;object-fit:cover;
  filter:brightness(.55) saturate(.9);
  transition:transform .8s var(--ease-out),filter .6s ease;
}
.bento-card:hover img{transform:scale(1.06);filter:brightness(.4) saturate(.8);}
.bento-card-content{
  position:absolute;inset:0;
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:2.5rem;
  background:linear-gradient(to top,rgba(24,24,27,.9) 0%,rgba(24,24,27,.1) 55%,transparent 100%);
}
.bento-tag{
  display:inline-flex;align-items:center;gap:.4rem;
  padding:.3rem .75rem;border-radius:50px;
  background:rgba(200,146,58,.2);border:1px solid rgba(200,146,58,.35);
  font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--gold-lt);
  width:fit-content;margin-bottom:1rem;
}
.bento-title{
  font-family:'Fraunces',serif;
  font-size:clamp(1.4rem,2.5vw,2rem);
  font-weight:300;font-style:italic;
  color:var(--white);line-height:1.2;margin-bottom:.5rem;
}
.bento-meta{font-size:.8rem;color:rgba(255,255,255,.55);letter-spacing:.06em;margin-bottom:1.2rem;}
.bento-footer{
  display:flex;align-items:center;justify-content:space-between;
  padding-top:1.2rem;border-top:1px solid rgba(255,255,255,.1);
  opacity:0;transform:translateY(8px);
  transition:all .4s var(--ease-out);
}
.bento-card:hover .bento-footer{opacity:1;transform:translateY(0);}
.bento-price{
  font-family:'Fraunces',serif;font-size:1.5rem;font-weight:300;color:var(--white);
}
.bento-price span{font-size:.75rem;color:rgba(255,255,255,.5);font-family:'Outfit',sans-serif;margin-left:.3rem;}
.bento-btn{
  display:flex;align-items:center;justify-content:center;
  width:40px;height:40px;border-radius:50%;
  background:var(--gold);color:var(--white);
  font-size:1rem;transition:all .3s var(--ease);
}
.bento-card:hover .bento-btn{transform:scale(1.1) rotate(-45deg);}

/* ======= PROMO STRIP ======= */
.promo-strip{
  background:var(--ink);
  padding:5rem 0;
  position:relative;overflow:hidden;
}
.promo-strip::before{
  content:'';position:absolute;right:-200px;top:-200px;
  width:600px;height:600px;border-radius:50%;
  background:radial-gradient(circle,rgba(200,146,58,.15),transparent 70%);
  pointer-events:none;
}
.promo-inner{
  display:flex;align-items:center;justify-content:space-between;gap:3rem;flex-wrap:wrap;
}
.promo-left .sec-eyebrow::before{background:var(--gold);}
.promo-left .sec-title{color:var(--white);}
.promo-left .sec-body{color:rgba(255,255,255,.55);}
.countdown{display:flex;gap:1rem;margin-top:2rem;}
.cd-box{
  min-width:72px;text-align:center;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r);padding:1rem .75rem;
}
.cd-box .n{
  font-family:'Fraunces',serif;font-size:2.2rem;font-weight:300;
  color:var(--gold-lt);line-height:1;display:block;
}
.cd-box .l{font-size:.65rem;color:rgba(255,255,255,.35);text-transform:uppercase;letter-spacing:.1em;margin-top:.3rem;display:block;}
.promo-cta{display:flex;flex-direction:column;align-items:flex-end;gap:1rem;}
.btn-gold{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:1rem 2.4rem;border-radius:50px;
  background:var(--gold);color:var(--white);
  font-size:.95rem;font-weight:600;letter-spacing:.02em;
  transition:all .35s var(--ease);
}
.btn-gold:hover{background:#b07c2a;transform:translateY(-2px);box-shadow:0 10px 32px rgba(200,146,58,.4);}
.btn-gold svg{width:16px;height:16px;transition:transform .3s var(--ease);}
.btn-gold:hover svg{transform:translateX(3px);}
.promo-note{font-size:.78rem;color:rgba(255,255,255,.3);text-align:right;}

/* ======= WHY — ZIG ZAG ======= */
.zigzag{display:flex;flex-direction:column;gap:0;}
.zig-row{
  display:grid;grid-template-columns:1fr 1fr;
  min-height:500px;
  border-top:1px solid var(--border);
}
.zig-row:last-child{border-bottom:1px solid var(--border);}
.zig-img{overflow:hidden;position:relative;}
.zig-img img{width:100%;height:100%;object-fit:cover;filter:brightness(.88);transition:transform .8s var(--ease-out);}
.zig-row:hover .zig-img img{transform:scale(1.04);}
.zig-content{
  display:flex;flex-direction:column;justify-content:center;
  padding:clamp(2rem,5vw,5rem);
  background:var(--white);
}
.zig-row:nth-child(even) .zig-img{order:2;}
.zig-row:nth-child(even) .zig-content{order:1;background:var(--surface);}
.zig-num{
  font-family:'Fraunces',serif;font-size:5rem;font-weight:300;font-style:italic;
  color:var(--border);line-height:1;margin-bottom:1.5rem;
  transition:color .4s;
}
.zig-row:hover .zig-num{color:rgba(200,146,58,.2);}
.zig-title{font-family:'Fraunces',serif;font-size:1.8rem;font-weight:400;color:var(--ink);margin-bottom:.8rem;line-height:1.2;}
.zig-body{font-size:.95rem;color:var(--ink-soft);line-height:1.75;font-weight:300;}

/* ======= TESTIMONIALS ======= */
.testi-bg{background:var(--ink);}
.testi-header .sec-title{color:var(--white);}
.testi-header .sec-eyebrow{color:var(--gold);}
.testi-header .sec-body{color:rgba(255,255,255,.5);}
.testi-grid{
  display:grid;grid-template-columns:1.6fr 1fr;
  gap:1.5rem;margin-top:3.5rem;
}
.testi-card{
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07);
  border-radius:var(--r-lg);padding:2.5rem;
  transition:all .4s var(--ease);
}
.testi-card:hover{background:rgba(255,255,255,.07);border-color:rgba(200,146,58,.25);}
.testi-card.featured{background:rgba(200,146,58,.08);border-color:rgba(200,146,58,.2);}
.testi-stars{display:flex;gap:3px;margin-bottom:1.5rem;}
.testi-stars svg{width:15px;height:15px;fill:var(--gold);}
.testi-quote{
  font-family:'Fraunces',serif;font-size:1.2rem;font-weight:300;font-style:italic;
  color:rgba(255,255,255,.85);line-height:1.65;margin-bottom:2rem;
}
.testi-author{display:flex;align-items:center;gap:.9rem;}
.testi-avatar{width:44px;height:44px;border-radius:50%;object-fit:cover;border:2px solid rgba(200,146,58,.3);}
.testi-name{font-size:.9rem;font-weight:600;color:var(--white);}
.testi-info{font-size:.78rem;color:rgba(255,255,255,.4);margin-top:.15rem;}
.testi-secondary{display:flex;flex-direction:column;gap:1.5rem;}

/* ======= DETAIL PAGE ======= */
.detail-hero{position:relative;height:80dvh;overflow:hidden;}
.detail-hero img{width:100%;height:100%;object-fit:cover;filter:brightness(.45);}
.detail-hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(24,24,27,.95) 0%,rgba(24,24,27,.2) 55%,transparent 100%);
}
.detail-hero-content{
  position:absolute;bottom:0;left:0;right:0;
  padding:clamp(2rem,5vw,4rem) clamp(1.2rem,4vw,3rem);
  max-width:1320px;margin:0 auto;
}
.detail-hero-content h1{
  font-family:'Fraunces',serif;
  font-size:clamp(2.5rem,5vw,4.5rem);
  font-weight:300;font-style:italic;
  color:var(--white);line-height:1.05;margin-bottom:.8rem;
}
.detail-chips{display:flex;gap:.8rem;flex-wrap:wrap;margin-bottom:2rem;}
.chip{
  display:inline-flex;align-items:center;gap:.4rem;
  padding:.4rem 1rem;border-radius:50px;
  background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.15);
  font-size:.8rem;color:rgba(255,255,255,.75);font-weight:500;
}
.chip-gold{background:rgba(200,146,58,.2);border-color:rgba(200,146,58,.35);color:var(--gold-lt);}

.sticky-bar{
  position:sticky;top:70px;z-index:50;
  background:rgba(250,250,249,.95);backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  padding:.9rem 0;
}
.sticky-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;}
.sticky-info{display:flex;gap:2rem;flex-wrap:wrap;}
.sticky-item{display:flex;align-items:center;gap:.5rem;font-size:.85rem;color:var(--ink-soft);}
.sticky-item strong{color:var(--ink);}
.sticky-price{
  font-family:'Fraunces',serif;font-size:1.6rem;font-weight:300;color:var(--ink);
  display:flex;align-items:baseline;gap:.4rem;
}
.sticky-price small{font-family:'Outfit',sans-serif;font-size:.78rem;color:var(--ink-muted);}

.detail-layout{display:grid;grid-template-columns:1fr 380px;gap:3rem;align-items:start;}
.detail-sticky{position:sticky;top:150px;}

/* BOOKING CARD */
.book-card{
  background:var(--white);border-radius:var(--r-xl);
  box-shadow:var(--shadow-lg);overflow:hidden;
  border:1px solid var(--border);
}
.book-head{
  background:var(--ink);padding:2rem 2rem 1.8rem;
}
.book-head .from{font-size:.75rem;color:rgba(255,255,255,.45);text-transform:uppercase;letter-spacing:.1em;margin-bottom:.3rem;}
.book-head .price{font-family:'Fraunces',serif;font-size:2.8rem;font-weight:300;color:var(--white);line-height:1;}
.book-head .price em{font-size:1rem;font-style:normal;color:var(--gold-lt);}
.book-head .per{font-size:.78rem;color:rgba(255,255,255,.35);margin-top:.3rem;}
.book-body{padding:1.8rem 2rem;}
.book-field{margin-bottom:1.2rem;}
.book-field label{display:block;font-size:.7rem;font-weight:700;color:var(--ink);letter-spacing:.1em;text-transform:uppercase;margin-bottom:.4rem;}
.book-field select,.book-field input{
  width:100%;padding:.8rem 1rem;
  border:1.5px solid var(--border);border-radius:var(--r-sm);
  font-family:'Outfit',sans-serif;font-size:.9rem;color:var(--ink);
  background:var(--surface);outline:none;
  transition:border-color .25s;
}
.book-field select:focus,.book-field input:focus{border-color:var(--gold);}
.book-total{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.2rem 0 1rem;border-top:1px solid var(--border);margin-top:.5rem;
}
.book-total .lbl{font-size:.82rem;color:var(--ink-muted);}
.book-total .amt{font-family:'Fraunces',serif;font-size:1.6rem;color:var(--ink);}
.book-guarantee{display:flex;align-items:center;gap:.5rem;font-size:.78rem;color:var(--ink-muted);margin-top:.8rem;}
.book-guarantee svg{width:15px;height:15px;color:var(--teal);flex-shrink:0;}

/* ITINERARY */
.itin-day{display:flex;gap:1.5rem;padding-bottom:2rem;position:relative;}
.itin-day:not(:last-child)::before{content:'';position:absolute;left:19px;top:42px;bottom:0;width:1.5px;background:linear-gradient(to bottom,var(--gold),var(--border));}
.day-badge{
  width:40px;height:40px;flex-shrink:0;border-radius:50%;
  background:var(--ink);display:flex;align-items:center;justify-content:center;
  font-family:'Fraunces',serif;font-size:.9rem;font-weight:700;color:var(--gold-lt);
  position:relative;z-index:1;
}
.day-body h4{font-family:'Fraunces',serif;font-size:1.1rem;font-weight:400;color:var(--ink);margin-bottom:.4rem;}
.day-body p{font-size:.9rem;color:var(--ink-soft);line-height:1.7;font-weight:300;}

/* INCLUSIONS */
.inclusions-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin-top:1.5rem;}
.incl-list,.excl-list{display:flex;flex-direction:column;gap:.7rem;}
.incl-item,.excl-item{display:flex;align-items:flex-start;gap:.7rem;font-size:.9rem;line-height:1.5;}
.incl-item::before{content:'✓';width:20px;height:20px;border-radius:50%;background:rgba(13,107,114,.1);color:var(--teal);display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700;flex-shrink:0;}
.excl-item::before{content:'×';width:20px;height:20px;border-radius:50%;background:rgba(239,68,68,.08);color:#ef4444;display:flex;align-items:center;justify-content:center;font-size:.85rem;font-weight:700;flex-shrink:0;}

/* DATES TABLE */
.dates-tbl{width:100%;border-collapse:collapse;margin-top:1.2rem;}
.dates-tbl th{background:var(--ink);color:var(--white);padding:.9rem 1rem;font-size:.75rem;font-weight:600;letter-spacing:.08em;text-align:left;}
.dates-tbl th:first-child{border-radius:var(--r-sm) 0 0 0;}
.dates-tbl th:last-child{border-radius:0 var(--r-sm) 0 0;}
.dates-tbl td{padding:.9rem 1rem;border-bottom:1px solid var(--border);font-size:.88rem;}
.dates-tbl tr:hover td{background:var(--surface);}
.avail{display:inline-flex;align-items:center;gap:.4rem;font-size:.82rem;}
.avail::before{content:'';width:7px;height:7px;border-radius:50%;}
.avail-ok::before{background:#22c55e;}
.avail-few::before{background:#f59e0b;}
.avail-no::before{background:#ef4444;}

/* FAQ */
.faq-item{border-bottom:1px solid var(--border);}
.faq-q{
  display:flex;justify-content:space-between;align-items:center;
  padding:1.3rem 0;cursor:pointer;
  font-weight:600;font-size:.95rem;color:var(--ink);gap:1rem;
  transition:color .25s;
}
.faq-q:hover{color:var(--gold);}
.faq-icon{width:28px;height:28px;border-radius:50%;border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all .3s var(--ease);}
.faq-item.open .faq-icon{background:var(--gold);border-color:var(--gold);transform:rotate(45deg);}
.faq-icon svg{width:12px;height:12px;color:var(--ink-soft);transition:color .3s;}
.faq-item.open .faq-icon svg{color:var(--white);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .45s var(--ease-out);}
.faq-item.open .faq-a{max-height:400px;}
.faq-a p{padding-bottom:1.3rem;font-size:.9rem;color:var(--ink-soft);line-height:1.75;font-weight:300;}

/* ======= CONTACT ======= */
.contact-split{display:grid;grid-template-columns:1fr 1.2fr;gap:5rem;align-items:start;}
.contact-form-wrap{background:var(--white);border-radius:var(--r-xl);padding:3rem;box-shadow:var(--shadow-md);border:1px solid var(--border);}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
.form-group{display:flex;flex-direction:column;gap:.4rem;margin-bottom:1.1rem;}
.form-group label{font-size:.7rem;font-weight:700;color:var(--ink);letter-spacing:.1em;text-transform:uppercase;}
.form-group input,.form-group select,.form-group textarea{
  padding:.85rem 1rem;border:1.5px solid var(--border);border-radius:var(--r-sm);
  font-family:'Outfit',sans-serif;font-size:.92rem;color:var(--ink);
  background:var(--surface);outline:none;transition:border-color .25s;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--gold);}
.form-group textarea{resize:vertical;min-height:120px;}
.contact-info{display:flex;flex-direction:column;gap:2.5rem;}
.contact-info-item{display:flex;gap:1.2rem;align-items:flex-start;}
.ci-icon{
  width:46px;height:46px;border-radius:var(--r);
  background:var(--gold-dim);display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;flex-shrink:0;
}
.ci-label{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);margin-bottom:.2rem;}
.ci-val{font-size:.92rem;color:var(--ink-soft);}
.ci-val a{color:var(--ink-soft);transition:color .25s;}
.ci-val a:hover{color:var(--gold);}

/* ======= ABOUT ======= */
.about-split{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;}
.about-img-wrap{position:relative;}
.about-img-wrap img{width:100%;height:560px;object-fit:cover;border-radius:var(--r-xl);}
.about-img-badge{
  position:absolute;bottom:-1.5rem;right:-1.5rem;
  background:var(--ink);color:var(--white);
  border-radius:var(--r-lg);padding:1.8rem;
  box-shadow:var(--shadow-lg);
}
.about-img-badge .big{font-family:'Fraunces',serif;font-size:2.5rem;font-weight:300;color:var(--gold-lt);display:block;line-height:1;}
.about-img-badge .sm{font-size:.72rem;color:rgba(255,255,255,.45);text-transform:uppercase;letter-spacing:.1em;margin-top:.3rem;display:block;}
.values-list{display:flex;flex-direction:column;gap:1.5rem;margin-top:2.5rem;}
.val-item{display:flex;gap:1.2rem;align-items:flex-start;padding:1.5rem;border-radius:var(--r-lg);border:1px solid var(--border);transition:all .3s var(--ease);}
.val-item:hover{border-color:rgba(200,146,58,.3);background:var(--gold-dim);}
.val-icon{width:44px;height:44px;border-radius:var(--r);background:var(--gold-dim);display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0;}
.val-item h4{font-family:'Fraunces',serif;font-size:1.1rem;font-weight:400;color:var(--ink);margin-bottom:.3rem;}
.val-item p{font-size:.88rem;color:var(--ink-soft);font-weight:300;line-height:1.6;}

/* ======= NEWSLETTER ======= */
.nl{background:var(--gold);padding:4rem 0;}
.nl-inner{display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap;}
.nl .sec-title{color:var(--white);margin:0;}
.nl .sec-title em{color:var(--ink);}
.nl-form{display:flex;gap:.6rem;}
.nl-form input{
  padding:.85rem 1.4rem;border-radius:50px;border:none;
  font-family:'Outfit',sans-serif;font-size:.9rem;color:var(--ink);
  min-width:280px;outline:none;background:rgba(255,255,255,.9);
}
.nl-form input:focus{background:var(--white);}
.btn-dark{
  padding:.85rem 1.8rem;border-radius:50px;
  background:var(--ink);color:var(--white);
  font-size:.88rem;font-weight:600;transition:all .3s var(--ease);
  white-space:nowrap;
}
.btn-dark:hover{background:#333;transform:translateY(-1px);}

/* ======= FOOTER ======= */
.footer{background:var(--ink);padding:5rem 0 0;}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;padding-bottom:4rem;border-bottom:1px solid rgba(255,255,255,.06);}
.footer-brand p{color:rgba(255,255,255,.4);font-size:.88rem;line-height:1.75;max-width:260px;margin:1rem 0 1.5rem;font-weight:300;}
.footer-social{display:flex;gap:.7rem;}
.footer-social a{
  width:34px;height:34px;border-radius:50%;border:1px solid rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.4);font-size:.8rem;transition:all .3s;
}
.footer-social a:hover{background:var(--gold);border-color:var(--gold);color:var(--white);}
.footer-col h5{font-size:.72rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:rgba(255,255,255,.3);margin-bottom:1.2rem;}
.footer-col ul{display:flex;flex-direction:column;gap:.65rem;}
.footer-col a{font-size:.88rem;color:rgba(255,255,255,.45);transition:color .25s;font-weight:300;}
.footer-col a:hover{color:var(--gold-lt);}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding:1.5rem 0;}
.footer-bottom p{font-size:.78rem;color:rgba(255,255,255,.2);}
.footer-bottom a{color:rgba(255,255,255,.2);transition:color .25s;}
.footer-bottom a:hover{color:var(--gold-lt);}

/* ======= REVEAL ======= */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .8s var(--ease-out),transform .8s var(--ease-out);}
.reveal.visible{opacity:1;transform:translateY(0);}
.reveal-d1{transition-delay:.1s;}
.reveal-d2{transition-delay:.2s;}
.reveal-d3{transition-delay:.3s;}

/* ======= RESPONSIVE ======= */
@media(max-width:1024px){
  .hero{grid-template-columns:1fr;min-height:auto;}
  .hero-right{display:none;}
  .hero-left{padding:6rem 2rem 4rem;}
  .detail-layout{grid-template-columns:1fr;}
  .detail-sticky{position:static;}
  .about-split{grid-template-columns:1fr;gap:3rem;}
  .about-img-wrap img{height:400px;}
  .about-img-badge{right:.5rem;bottom:.5rem;}
  .contact-split{grid-template-columns:1fr;gap:3rem;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2.5rem;}
  .bento-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto;}
  .bento-card.tall{grid-row:span 1;min-height:420px;}
  .testi-grid{grid-template-columns:1fr;}
}
@media(max-width:768px){
  .nav{padding:1rem 1.5rem;}
  .nav-center,.nav-right .btn-nav{display:none;}
  .hamburger{display:flex;}
  .bento-grid{grid-template-columns:1fr;gap:1.5px;}
  .bento-card,.bento-card.tall{min-height:320px;}
  .inclusions-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;gap:2rem;}
  .footer-bottom{flex-direction:column;gap:.4rem;text-align:center;}
  .nl-inner{flex-direction:column;}
  .nl-form{flex-direction:column;width:100%;}
  .nl-form input{min-width:unset;}
  .promo-inner{flex-direction:column;}
  .promo-cta{align-items:flex-start;}
  .zig-row{grid-template-columns:1fr;}
  .zig-row:nth-child(even) .zig-img,.zig-row:nth-child(even) .zig-content{order:unset;}
  .zig-img{min-height:260px;}
  .hero-card-grid{grid-template-columns:1fr 1fr 1fr;}
  .sticky-info{gap:1rem;}
}
