/* =========================================================
   GUNGCHIL RIVER CRUISE — Brand Stylesheet
   Palette drawn directly from the ship-mark logo.
   ========================================================= */

:root{
  /* --- Core palette --- */
  --white:        #ffffff;
  --paper:        #f8f6f2;   /* warm off-white for alternating sections */
  --paper-deep:   #f1ede5;
  --ink:          #121212;   /* near-black secondary */
  --ink-soft:     #4a4744;
  --ink-faint:    #8a8580;

  --maroon:       #6b0f13;   /* primary accent, sampled from logo */
  --maroon-deep:  #3d0507;
  --maroon-light: #93262b;
  --maroon-veil:  rgba(107,15,19,0.08);
  --maroon-line:  rgba(107,15,19,0.22);

  /* --- Type --- */
  --font-display: 'PT Serif', 'Anek Bangla', serif;
  --font-body:    'Inter', 'Anek Bangla', sans-serif;
  --font-bangla:  'Anek Bangla', 'Inter', sans-serif;

  /* --- Layout --- */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-sm: 4px;
  --radius-md: 10px;

  --ease: cubic-bezier(.22,.68,0,1.01);
}

html[lang="bn"] body{
  font-family: var(--font-bangla);
}

/* =========================== Reset =========================== */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight:700; margin:0; color: var(--ink); }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }

::selection{ background: var(--maroon); color: var(--white); }

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

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* reveal-on-scroll */
.reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible{ opacity:1; transform:none; }

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

/* =========================== Eyebrow / Section heads =========================== */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.6em;
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width: 26px; height:1px;
  background: var(--maroon);
  display:inline-block;
}

.section-head{
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.section-head .lede{
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 54ch;
}
.section-head.center .lede{ margin-left:auto; margin-right:auto; }

/* signature wave flourish — echoes the wake beneath the ship in the logo */
.wave-flourish{
  display:block;
  width: 118px;
  height: 22px;
  margin-top: 16px;
  overflow: visible;
}
.section-head.center .wave-flourish{ margin-left:auto; margin-right:auto; }
.wave-flourish path{
  fill:none;
  stroke: var(--maroon);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 1.1s var(--ease);
}
.reveal.is-visible .wave-flourish path{ stroke-dashoffset: 0; }

/* =========================== Buttons =========================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 15px 32px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing:.04em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--maroon);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(107,15,19,.55);
}
.btn-primary:hover{
  background: var(--maroon-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(107,15,19,.65);
}
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border-color: rgba(18,18,18,.25);
}
.btn-ghost:hover{
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-on-dark{
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-on-dark:hover{
  background: var(--white);
  color: var(--maroon-deep);
  border-color: var(--white);
}
.btn-sm{ padding: 11px 22px; font-size: .78rem; }
.btn svg{ width:14px; height:14px; }

/* =========================== Nav =========================== */
.site-nav{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 500;
  padding: 22px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-nav .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
}
.site-nav.is-scrolled{
  padding: 12px 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px -18px rgba(0,0,0,.35);
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand img{ height: 40px; width:auto; transition: filter .4s ease; }
.brand-word{
  display:flex;
  flex-direction: column;
  line-height: 1;
}
.brand-word .name{
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing:.03em;
  color: var(--ink);
}
.brand-word .tag{
  font-size: .58rem;
  letter-spacing:.28em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-top: 4px;
}
.site-nav.is-transparent-mode .brand-word .name{ color: var(--white); }
.site-nav.is-transparent-mode.is-scrolled .brand-word .name{ color: var(--ink); }

.nav-links{
  display:flex;
  align-items:center;
  gap: 34px;
}
.nav-links a{
  font-size: .86rem;
  font-weight: 500;
  letter-spacing:.02em;
  position: relative;
  padding: 4px 0;
  color: var(--ink);
}
.site-nav.is-transparent-mode:not(.is-scrolled) .nav-links a{ color: var(--white); }
.nav-links a::after{
  content:"";
  position:absolute; left:0; right:100%; bottom:0;
  height:1px; background: var(--maroon);
  transition: right .35s var(--ease);
}
.nav-links a:hover::after{ right:0; }

.nav-tools{
  display:flex;
  align-items:center;
  gap: 18px;
}

.lang-toggle{
  display:flex;
  border: 1px solid rgba(18,18,18,.22);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  background: rgba(255,255,255,.5);
}
.site-nav.is-transparent-mode:not(.is-scrolled) .lang-toggle{
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
}
.lang-toggle button{
  border:none;
  background: transparent;
  padding: 6px 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing:.05em;
  border-radius: 999px;
  color: inherit;
  transition: background .3s ease, color .3s ease;
}
.lang-toggle button.active{
  background: var(--maroon);
  color: var(--white);
}

.nav-burger{
  display:none;
  flex-direction:column;
  gap:5px;
  border:none;
  background:none;
  padding: 6px;
}
.nav-burger span{
  width: 24px; height:2px; background: var(--ink); display:block; transition: all .3s ease;
}
.site-nav.is-transparent-mode:not(.is-scrolled) .nav-burger span{ background: var(--white); }

/* =========================== Hero =========================== */
.hero{
  position: relative;
  min-height: 100svh;
  display:flex;
  align-items: flex-end;
  color: var(--white);
  overflow:hidden;
  background: var(--ink);
}
.hero-media{
  position:absolute; inset:0;
  z-index:0;
}
.hero-media img,
.hero-media video{
  width:100%; height:100%; object-fit:cover;
}
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,6,6,.35) 0%, rgba(10,6,6,.30) 32%, rgba(20,4,5,.72) 78%, rgba(9,2,2,.92) 100%),
    linear-gradient(100deg, rgba(61,5,7,.55), rgba(0,0,0,0) 55%);
}

.hero-watermark{
  position:absolute;
  right: -6%;
  top: 8%;
  width: min(46vw, 620px);
  opacity: .16;
  z-index:1;
  filter: brightness(0) invert(1);
  animation: bob 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bob{
  0%,100%{ transform: translateY(0) rotate(-1deg); }
  50%{ transform: translateY(-18px) rotate(1deg); }
}

.hero-content{
  position:relative;
  z-index: 2;
  width:100%;
  padding-bottom: clamp(56px, 9vw, 108px);
  padding-top: 160px;
}
.hero-eyebrow{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:.8rem;
  letter-spacing:.32em;
  text-transform:uppercase;
  color: #e8c9ca;
  margin-bottom: 26px;
}
.hero-eyebrow span.line{
  width:48px; height:1px; background: rgba(255,255,255,.55);
  display:inline-block;
}
.hero h1{
  color: var(--white);
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  line-height: 1.04;
  letter-spacing:-.01em;
  max-width: 16ch;
}
.hero h1 em{
  font-style: italic;
  color: #f0d6d6;
}
.hero .sub{
  margin-top: 26px;
  max-width: 52ch;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(255,255,255,.82);
  font-weight:300;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 18px;
  margin-top: 44px;
}

.hero-bottom-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 40px;
  margin-top: 88px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-stats{
  display:flex;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}
.hero-stats .stat b{
  display:block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--white);
}
.hero-stats .stat span{
  font-size: .74rem;
  letter-spacing:.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.scroll-cue{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:.72rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
}
.scroll-cue .dot{
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
}
.scroll-cue .dot svg{ width:12px; height:12px; animation: nudge 1.8s ease-in-out infinite; }
@keyframes nudge{
  0%,100%{ transform: translateY(0); opacity:.6; }
  50%{ transform: translateY(4px); opacity:1; }
}

/* =========================== Marquee strip =========================== */
.marquee{
  background: var(--maroon);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 3;
}
.marquee-track{
  display:inline-flex;
  align-items:center;
  animation: scroll-left 32s linear infinite;
  padding: 13px 0;
}
.marquee-track span{
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  letter-spacing:.04em;
  padding: 0 28px;
  display:inline-flex;
  align-items:center;
  gap: 28px;
  opacity: .95;
}
.marquee-track span::after{
  content:"✦";
  font-style: normal;
  opacity:.6;
}
@keyframes scroll-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* =========================== Intro / About =========================== */
.about{
  padding: 128px 0 108px;
  background: var(--white);
}
.about .grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items:center;
}
.about-media{
  position: relative;
}
.about-media .frame{
  position: relative;
  border-radius: var(--radius-md);
  overflow:hidden;
  aspect-ratio: 4/5;
}
.about-media .frame img{
  width:100%; height:100%; object-fit:cover;
  transition: transform 1.2s var(--ease);
}
.about-media:hover .frame img{ transform: scale(1.06); }
.about-media .frame::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(200deg, rgba(107,15,19,.18), transparent 55%);
  z-index:1;
}
.about-media .badge{
  position:absolute;
  left: -28px; bottom: -28px;
  background: var(--ink);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  max-width: 210px;
  box-shadow: 0 20px 40px -18px rgba(0,0,0,.5);
}
.about-media .badge b{
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: #f0d6d6;
  display:block;
}
.about-media .badge span{
  font-size: .74rem;
  letter-spacing:.05em;
  color: rgba(255,255,255,.72);
}

.about-copy p{
  color: var(--ink-soft);
  font-size: 1.04rem;
  margin-bottom: 18px;
  max-width: 56ch;
}
.about-copy p:last-of-type{ margin-bottom: 0; }
.about-copy .section-head{ margin-bottom: 30px; }

.pillars{
  margin-top: 40px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 30px;
}
.pillar{
  display:flex;
  gap: 14px;
  align-items:flex-start;
}
.pillar .icon{
  flex: none;
  width: 42px; height:42px;
  border-radius: 50%;
  border: 1px solid var(--maroon-line);
  display:flex; align-items:center; justify-content:center;
  color: var(--maroon);
}
.pillar .icon svg{ width:19px; height:19px; }
.pillar h4{ font-size: 1rem; margin-bottom: 4px; }
.pillar p{ font-size: .88rem; color: var(--ink-soft); }

/* =========================== Ship Specifications =========================== */
.ship-specs{
  background: var(--white);
  padding: 100px 0 110px;
  position: relative;
}
.ship-specs .section-head.center{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
  display:flex;
  flex-direction: column;
  align-items: center;
}
.ship-specs .section-head.center .wave-flourish{ margin-top: 10px; }
.specs-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.spec-card{
  background: var(--paper);
  border: 1px solid rgba(18,18,18,.07);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  text-align: center;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.spec-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 30px 54px -30px rgba(20,4,5,.35);
  border-color: rgba(107,15,19,.22);
}
.spec-card .icon{
  width: 52px; height:52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1px solid var(--maroon-line);
  display:flex; align-items:center; justify-content:center;
  color: var(--maroon);
  background: var(--maroon-veil);
}
.spec-card .icon svg{ width:24px; height:24px; }
.spec-card h4{ font-size: 1.1rem; margin-bottom: 10px; }
.spec-card p{ font-size: .92rem; color: var(--ink-soft); line-height:1.6; }

@media (max-width: 860px){
  .specs-grid{ grid-template-columns: 1fr; }
}

/* =========================== Offers =========================== */
.offers{
  background: var(--paper);
  padding: 128px 0 120px;
  position: relative;
}
.offers::before{
  content:"";
  position:absolute; inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--maroon-line), transparent);
}
.offer-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.offer-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 38px 32px 32px;
  position: relative;
  border: 1px solid rgba(18,18,18,.07);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  display:flex;
  flex-direction: column;
}
.offer-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 30px 54px -30px rgba(20,4,5,.35);
  border-color: rgba(107,15,19,.22);
}
.offer-card.featured{
  background: linear-gradient(165deg, var(--maroon-deep), var(--maroon) 60%);
  color: var(--white);
  border: none;
}
.offer-card .kicker{
  display:flex;
  justify-content: space-between;
  align-items:flex-start;
  margin-bottom: 22px;
}
.offer-card .num{
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing:.1em;
  color: var(--maroon);
  opacity: .75;
}
.offer-card.featured .num{ color: rgba(255,255,255,.75); }
.offer-card .ribbon{
  font-size: .64rem;
  letter-spacing:.12em;
  text-transform: uppercase;
  background: var(--maroon-veil);
  color: var(--maroon);
  padding: 5px 11px;
  border-radius: 999px;
  font-weight: 700;
}
.offer-card.featured .ribbon{
  background: rgba(255,255,255,.16);
  color: #f4dcdc;
}
.offer-card h3{
  font-size: 1.42rem;
  margin-bottom: 10px;
  line-height:1.25;
}
.offer-card.featured h3{
  color: var(--white);
}
.offer-meta{
  display:flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: .82rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(18,18,18,.08);
}
.offer-card.featured .offer-meta{
  color: rgba(255,255,255,.78);
  border-bottom-color: rgba(255,255,255,.2);
}
.offer-meta span{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.offer-meta svg{ width:14px; height:14px; opacity:.8; }

.offer-includes{
  flex:1;
  margin-bottom: 26px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 10px;
}
.offer-includes li{
  font-size: .85rem;
  color: var(--ink-soft);
  display:flex;
  align-items:flex-start;
  gap: 8px;
  line-height:1.35;
}
.offer-card.featured .offer-includes li{ color: rgba(255,255,255,.88); }
.offer-includes li svg{
  flex:none;
  width:13px; height:13px;
  margin-top:3px;
  color: var(--maroon);
}
.offer-card.featured .offer-includes li svg{ color: #f2caca; }

.offer-note{
  font-size: .78rem;
  color: var(--ink-faint);
  margin: -10px 0 20px;
  font-style: italic;
}
.offer-card.featured .offer-note{ color: rgba(255,255,255,.65); }

.offer-card .btn{ align-self:flex-start; }

.offers-footnote{
  margin-top: 46px;
  text-align:center;
  color: var(--ink-faint);
  font-size: .86rem;
  font-style: italic;
}

/* =========================== Destinations =========================== */
.destinations{
  padding: 128px 0;
  background: var(--white);
}
.dest-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dest-card{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.08);
  display:flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.dest-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 30px 54px -30px rgba(20,4,5,.32);
  border-color: rgba(107,15,19,.2);
}
.dest-card .media{
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--paper-deep);
}
.dest-card .media img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .7s var(--ease);
}
.dest-card:hover .media img{ transform: scale(1.08); }
.dest-card .media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(10,6,6,0) 55%, rgba(10,6,6,.55) 100%);
  pointer-events:none;
}
.dest-card .idx-badge{
  position:absolute; top:16px; left:16px;
  z-index:2;
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing:.06em;
  color: var(--white);
  background: rgba(18,18,18,.42);
  backdrop-filter: blur(6px);
  padding: 6px 13px;
  border-radius: 999px;
}
.dest-card .loc-badge{
  position:absolute; bottom:14px; left:16px; right:16px;
  z-index:2;
  font-size: .68rem;
  letter-spacing:.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  font-weight: 600;
}
.dest-card .body{
  padding: 24px 24px 22px;
  display:flex;
  flex-direction: column;
  flex: 1;
}
.dest-card h3{
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height:1.3;
}
.dest-card .body p{
  font-size: .87rem;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 20px;
}
.dest-card .foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.dest-card .tag{
  font-size: .68rem;
  letter-spacing:.09em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--maroon);
  background: var(--maroon-veil);
  padding: 7px 13px;
  border-radius: 999px;
}
.dest-card .arrow{
  width: 38px; height:38px;
  border-radius:50%;
  border:1px solid rgba(18,18,18,.18);
  display:flex; align-items:center; justify-content:center;
  color: var(--ink);
  transition: all .35s var(--ease);
  flex: none;
}
.dest-card .arrow svg{ width:15px; height:15px; }
.dest-card:hover .arrow{
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
  transform: rotate(45deg);
}

.dest-card-note{
  background: var(--paper);
  border: 1px dashed var(--maroon-line);
  align-items:center;
  justify-content:center;
  display:flex;
}
.dest-card-note .note-inner{
  padding: 32px 30px;
  display:flex;
  flex-direction: column;
  gap: 14px;
  align-items:flex-start;
}
.dest-card-note svg{ width:24px; height:24px; color: var(--maroon); }
.dest-card-note p{
  font-size: .92rem;
  color: var(--ink-soft);
  margin:0;
}

/* =========================== Gallery / Experience strip =========================== */
.experience{
  position: relative;
  padding: 0;
  background: var(--ink);
  color: var(--white);
  overflow:hidden;
}
.experience-inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.experience-media{
  position:relative;
  overflow:hidden;
}
.experience-media img{
  width:100%; height:100%; object-fit:cover;
  filter: saturate(1.05);
}
.experience-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, transparent 60%, rgba(10,6,6,.9));
}
.experience-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: clamp(40px,6vw,88px);
}
.experience-copy .section-head h2{ color: var(--white); }
.experience-copy .section-head .lede{ color: rgba(255,255,255,.72); }
.experience-quote{
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height:1.5;
  color: #f0d6d6;
  border-left: 2px solid var(--maroon-light);
  padding-left: 24px;
  margin: 30px 0 36px;
  max-width: 42ch;
}
.experience-feats{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
}
.experience-feats span{
  font-size: .76rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  border: 1px solid rgba(255,255,255,.25);
  padding: 9px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,.85);
}

/* =========================== CTA banner =========================== */
.cta-banner{
  position: relative;
  padding: 110px 0;
  background: linear-gradient(155deg, var(--maroon-deep), var(--maroon) 65%);
  color: var(--white);
  overflow:hidden;
  text-align:center;
}
.cta-banner .wm{
  position:absolute;
  bottom: -12%;
  left: 50%;
  transform: translateX(-50%);
  width: min(70vw, 900px);
  opacity: .08;
  filter: brightness(0) invert(1);
}
.cta-banner .inner{
  position:relative; z-index:2;
  max-width: 720px;
  margin: 0 auto;
}
.cta-banner .eyebrow{ color: #f2c9ca; justify-content:center; }
.cta-banner .eyebrow::before{ background:#f2c9ca; }
.cta-banner h2{
  color: var(--white);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height:1.15;
  margin-bottom: 22px;
}
.cta-banner p{
  color: rgba(255,255,255,.82);
  max-width: 48ch;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}
.cta-banner .actions{
  display:flex;
  gap:18px;
  justify-content:center;
  flex-wrap:wrap;
}

/* =========================== Footer =========================== */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,.72);
  padding: 80px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .brand img{ height: 46px; }
.footer-brand .brand-word .name{ color: var(--white); }
.footer-brand p{
  margin-top: 18px;
  font-size: .9rem;
  max-width: 32ch;
  color: rgba(255,255,255,.6);
}
.footer-social{
  display:flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a{
  width: 38px; height:38px;
  border-radius:50%;
  border: 1px solid rgba(255,255,255,.22);
  display:flex; align-items:center; justify-content:center;
  transition: all .3s ease;
}
.footer-social a:hover{ background: var(--maroon); border-color: var(--maroon); }
.footer-social svg{ width:16px; height:16px; }

.footer-col h4{
  color: var(--white);
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing:.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight:700;
}
.footer-col ul li{ margin-bottom: 13px; }
.footer-col a, .footer-col span{
  font-size: .89rem;
  color: rgba(255,255,255,.68);
  transition: color .3s ease;
}
.footer-col a:hover{ color: var(--white); }
.footer-contact li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
}
.footer-contact svg{ flex:none; width:15px; height:15px; margin-top:3px; color: #d69a9c; }

.footer-bottom{
  padding-top: 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a{ color: rgba(255,255,255,.6); }
.footer-bottom a:hover{ color: var(--white); }
.footer-legal-links{
  display:flex;
  align-items:center;
  gap: 10px;
}
.footer-legal-links span{ color: rgba(255,255,255,.3); }

.footer-credit{
  text-align:center;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-credit a{
  color: rgba(255,255,255,.72);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .3s ease;
}
.footer-credit a:hover{ color: var(--white); }

/* =========================== Booking mini-modal (stub link target) === */
.skip-link{
  position:absolute; left:-999px; top:auto;
  background:var(--maroon); color:#fff; padding:12px 18px; z-index:2000;
}
.skip-link:focus{ left: 12px; top: 12px; }

/* =========================== Responsive =========================== */
@media (max-width: 1080px){
  .offer-grid{ grid-template-columns: repeat(2, 1fr); }
  .about .grid{ grid-template-columns: 1fr; }
  .about-media{ max-width: 420px; margin: 0 auto 20px; }
  .dest-grid{ grid-template-columns: repeat(2, 1fr); }
  .experience-inner{ grid-template-columns: 1fr; }
  .experience-media{ min-height: 340px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px){
  .nav-links{ display:none; }
  .nav-burger{ display:flex; }
  .offer-grid{ grid-template-columns: 1fr; }
  .offer-includes{ grid-template-columns: 1fr; }
  .pillars{ grid-template-columns: 1fr; }
  .hero-bottom-row{ flex-direction:column; align-items:flex-start; gap:26px; }
  .dest-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand{ grid-column: 1 / -1; }
}

@media (max-width: 480px){
  .footer-grid{ grid-template-columns: 1fr; }
  .about-media .badge{ left: 0; bottom: -20px; padding: 16px 18px; }
}

/* Mobile nav drawer */
.mobile-drawer{
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 600;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  display:flex;
  flex-direction: column;
  padding: 100px 32px 40px;
}
.mobile-drawer.open{ transform: translateX(0); }
.mobile-drawer a{
  font-family: var(--font-display);
  font-size: 1.8rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(18,18,18,.1);
}
.mobile-drawer .btn{ margin-top: 30px; align-self:flex-start; }
.drawer-close{
  position:absolute; top: 26px; right: 26px;
  width: 42px; height:42px;
  border-radius:50%;
  border:1px solid rgba(18,18,18,.2);
  display:flex; align-items:center; justify-content:center;
  background:none;
}
body.no-scroll{ overflow: hidden; }
