/* ============================================================
   DREAM SHORE TRAVELS — style.css
   Editorial Island Journal — premium DMC storytelling site
   Palette: Ocean Teal · Tropical Green · Golden Sand · Sunset
   Type: Cormorant Garamond (display) · Montserrat (labels) · Lato (body)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Colour */
  --ocean:        #0e4a57;
  --ocean-deep:   #072d36;
  --ocean-mist:   #1c6577;
  --ocean-light:   #00ccff;
  --green:        #3d6b47;
  --green-deep:   #274a30;
  --sand:         #c39a52;
  --sand-light:   #ffae00;
  --sand-soft:    #efe3cb;
  --sunset:       #e07a3c;
  --sunset-deep:  #c65f28;
  --warm-white:   #fbf7f0;
  --beige:        #f2e9d8;
  --charcoal:     #211d18;
  --ink:          #322c24;
  --muted:        #6f6455;
  --line:         #e3d8c3;

  /* Type */
  --display: "Cormorant Garamond", Georgia, serif;
  --label:   "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --body:    "Lato", "Segoe UI", system-ui, sans-serif;

  /* Rhythm */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --sect-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 4px;

  /* Effects */
  --shadow-sm: 0 10px 30px -18px rgba(20, 30, 34, .35);
  --shadow-md: 0 26px 60px -30px rgba(14, 45, 55, .55);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--sunset); outline-offset: 3px; border-radius: 2px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.08; color: var(--charcoal); letter-spacing: .003em; }
h1 { font-size: clamp(2.8rem, 5.4vw, 5.6rem); font-weight: 500; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.7rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h2 em, h1 em, h3 em { font-style: italic; color: var(--ocean-light); font-weight: 500; }
p { max-width: 62ch; }
strong { font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: 1440px; }

.section { padding-block: var(--sect-y); position: relative; }
.section--tint { background: var(--beige); }
.section--sand { background: linear-gradient(180deg, var(--sand-soft), var(--beige)); }
.section--dark { background: var(--ocean-deep); color: #ece3d4; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark h2 em { color: var(--sand-light); }

/* ---------- Eyebrow (signature hairline + diamond) ---------- */
.eyebrow {
  font-family: var(--label);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--sand);
  display: inline-flex;
  align-items: center;
  gap: .85em;
  margin-bottom: 1.15rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: currentColor;
  opacity: .8;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 34px; height: 1px;
  background: currentColor;
  opacity: .8;
}
.diamond { color: var(--sand); }
.diamond::before { content: "\25C7"; }  /* ◇ */

.section-head {  }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1.1rem; color: var(--muted); font-size: 1.06rem; }
.section-head--center p { margin-inline: auto; }
.section--dark .section-head p { color: #c9bfae; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--label);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 1.05em 2.1em;
  display: inline-flex;
  align-items: center;
  gap: .7em;
  border-radius: var(--radius);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn i { font-size: 1em; }
.btn--solid { background: var(--sunset); color: #fff; box-shadow: 0 16px 34px -16px rgba(224,122,60,.7); }
.btn--solid:hover { background: var(--sunset-deep); }
.btn--ocean { background: var(--ocean); color: #fff; }
.btn--ocean:hover { background: var(--ocean-deep); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--outline { background: transparent; color: var(--ocean); border: 1px solid var(--ocean); }
.btn--outline:hover { background: var(--ocean); color: #fff; }
.btn--wa { background: #25d366; color: #06331b; }
.btn--wa:hover { background: #1eb959; color: #fff; }

.textlink {
  font-family: var(--label); font-size: .76rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ocean);
  display: inline-flex; align-items: center; gap: .6em;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: gap .3s var(--ease), border-color .3s var(--ease);
}
.textlink i { transition: transform .3s var(--ease); }
.textlink:hover { border-color: var(--sand); }
.textlink:hover i { transform: translateX(4px); }
.section--dark .textlink { color: var(--sand-light); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem var(--gutter);
  transition: background .45s var(--ease), padding .45s var(--ease), box-shadow .45s var(--ease);
}
.nav.scrolled {
  background: rgba(251,247,240,.94);
  backdrop-filter: blur(10px);
  padding-block: .95rem;
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.brand { display: flex; flex-direction: column; line-height: 1; z-index: 2; }
.brand__name {
  font-family: var(--display); font-size: 1.6rem; font-weight: 600;
  letter-spacing: .04em; color: #fff; transition: color .45s var(--ease);
}
.brand__tag {
  font-family: var(--label); font-size: .56rem; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase; color: var(--sand-light);
  margin-top: .35rem; transition: color .45s var(--ease);
}
.nav.scrolled .brand__name { color: var(--ocean-deep); }
.nav.scrolled .brand__tag { color: var(--sand); }

.nav__links { display: flex; align-items: center; gap: 2.1rem; }
.nav__links a {
  font-family: var(--label); font-size: .74rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.9);
  position: relative; padding: .35rem 0; transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--sunset); transition: width .3s var(--ease);
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav.scrolled .nav__links a { color: var(--ink); }
.nav__cta { display: inline-flex; }
.nav__cta .btn { padding: .8em 1.5em; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; z-index: 3; padding: .4rem; }
.nav__toggle span { width: 26px; height: 2px; background: #fff; transition: all .35s var(--ease); }
.nav.scrolled .nav__toggle span { background: var(--ocean-deep); }
.nav.open .nav__toggle span { background: #fff; }
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ocean-deep);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 1.6rem; text-align: center;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.drawer.open { opacity: 1; visibility: visible; transform: none; }
.drawer a {
  font-family: var(--display); font-size: 2rem; color: #f4ecdd; font-weight: 500;
}
.drawer a:hover { color: var(--sand-light); }
.drawer .btn { margin-top: 1rem; font-size: .8rem; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--sunset), var(--sand-light));
  z-index: 110; transition: width .1s linear;
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.12); animation: kenburns 22s ease-out forwards;
}
@keyframes kenburns { to { transform: scale(1); } }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,45,55,.55) 0%, rgba(7,45,55,.15) 35%, rgba(7,45,55,.55) 75%, rgba(7,45,55,.82) 100%),
    linear-gradient(90deg, rgba(7,45,55,.5), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: 2rem; }
.hero__inner .container { max-width: 1180px; }
.hero .eyebrow { color: var(--sand-light); }
.hero h1 { color: #fff; max-width: 25ch; text-shadow: 0 2px 24px rgba(0,0,0,.28); }
.hero h1 em { color: var(--sand-light); }
.hero__lede {
  color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 46ch; margin-top: 1.6rem; font-weight: 300;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-family: var(--label); font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.hero__scroll span { width: 1px; height: 46px; background: rgba(255,255,255,.6); position: relative; overflow: hidden; }
.hero__scroll span::after {
  content: ""; position: absolute; inset: 0; background: var(--sand-light);
  animation: scrolldot 2.2s var(--ease) infinite;
}
@keyframes scrolldot { 0% { transform: translateY(-100%);} 60%,100% { transform: translateY(100%);} }

/* Award ribbon */
.hero__badge {
  position: absolute; left: var(--gutter); bottom: 2.4rem; z-index: 3;
  display: flex; align-items: center; gap: .8rem;
  background: rgba(7,45,55,.5); backdrop-filter: blur(6px);
  border: 1px solid rgba(227,200,140,.4); border-radius: 3px;
  padding: .75rem 1.7rem;
}
.hero__badge i { color: var(--sand-light); font-size: 1.4rem; }
.hero__badge b { font-family: var(--display); font-size: 1.05rem; color: #fff; display: block; line-height: 1.1; }
.hero__badge small { font-family: var(--label); font-size: .56rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sand-light); white-space: nowrap; }

/* ============================================================
   ABOUT (split)
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__media--tall img { aspect-ratio: 3/4; }
.split__frame {
  position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--sand);
  border-radius: var(--radius); z-index: -1;
}
.split__body p + p { margin-top: 1.15rem; }
.about__sign {
  margin-top: 2rem; display: flex; align-items: center; gap: 1rem;
  font-family: var(--display); font-style: italic; font-size: 1.35rem; color: var(--ocean);
}
.about__sign span { flex: 1; height: 1px; background: var(--line); }

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--ocean-deep); padding: 2.1rem 1.2rem; text-align: center; }
.stat__num { font-family: var(--display); font-size: clamp(2.1rem, 3vw, 2.9rem); font-weight: 600; color: var(--sand-light); line-height: 1; }
.stat__num small { font-size: .55em; }
.stat__label { font-family: var(--label); font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin-top: .7rem; }
.stat__sub { font-size: .82rem; color: #b9ad99; margin-top: .35rem; }

/* ============================================================
   WHY SRI LANKA — theme cards
   ============================================================ */
.themes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 3rem; }
.theme {
  padding: 2rem 1.6rem; background: var(--warm-white); border: 1px solid var(--line);
  border-radius: var(--radius); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.theme:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.theme__icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: linear-gradient(140deg, var(--sand-soft), var(--beige));
  color: var(--ocean); font-size: 1.25rem;
}
.theme h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.theme p { font-size: .93rem; color: var(--muted); }

/* ============================================================
   DESTINATIONS — editorial portrait cards
   ============================================================ */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; margin-top: 3rem; }
.dest {
  position: relative; border-radius: var(--radius); overflow: hidden; display: block;
  aspect-ratio: 3/4.2; box-shadow: var(--shadow-sm); isolation: isolate;
}
.dest.span-2 { grid-column: span 2; aspect-ratio: auto; }
.dest img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.dest:hover img { transform: scale(1.07); }
.dest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(7,32,39,.28) 55%, rgba(7,32,39,.9) 100%); z-index: 1; }
.dest__cap { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 1.6rem 1.5rem; width: 100%; }
.dest__kicker { font-family: var(--label); font-size: .6rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--sand-light); }
.dest__name { font-family: var(--display); font-size: 1.75rem; font-weight: 600; color: #fff; line-height: 1.05; margin-top: .3rem; }
.dest__desc { color: rgba(255,255,255,.86); font-size: .9rem; margin-top: .55rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease), opacity .5s var(--ease), margin-top .5s var(--ease); }
.dest:hover .dest__desc { max-height: 6rem; opacity: 1; }
.dest__view { position: absolute; top: 1.1rem; right: 1.1rem; z-index: 2; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(4px); color: #fff; display: grid; place-items: center; opacity: 0; transform: scale(.85); transition: all .35s var(--ease); }
.dest:hover .dest__view { opacity: 1; transform: scale(1); }

/* ============================================================
   EXPERIENCES — mosaic tiles
   ============================================================ */
.exp-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 220px; gap: 1.1rem; margin-top: 3rem; }
.exp { position: relative; border-radius: var(--radius); overflow: hidden; color: #fff; }
.exp img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.exp::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(14,74,87,.12), rgba(7,32,39,.82)); transition: background .4s var(--ease); }
.exp:hover img { transform: scale(1.06); }
.exp:hover::after { background: linear-gradient(160deg, rgba(14,74,87,.32), rgba(7,32,39,.88)); }
.exp__body { position: absolute; inset: auto 0 0 0; padding: 1.5rem; z-index: 2; }
.exp__body i { color: var(--sand-light); font-size: 1.3rem; margin-bottom: .5rem; display: block; }
.exp__body h3 { color: #fff; font-size: 1.5rem; }
.exp__body p { color: rgba(255,255,255,.85); font-size: .88rem; margin-top: .35rem; max-width: 40ch; }
/* mosaic placements */
.exp.e-a { grid-column: span 5; grid-row: span 2; }
.exp.e-b { grid-column: span 4; }
.exp.e-c { grid-column: span 3; }
.exp.e-d { grid-column: span 4; }
.exp.e-e { grid-column: span 3; }
.exp.e-f { grid-column: span 5; grid-row: span 1; }
.exp.e-g { grid-column: span 4; }
.exp.e-h { grid-column: span 3; }

/* ============================================================
   TOURS — cards
   ============================================================ */
.tour-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: 3rem; }
.tour {
  display: grid; grid-template-columns: 42% 1fr; background: var(--warm-white);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tour:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tour__media { position: relative; overflow: hidden; min-height: 260px; }
.tour__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.tour:hover .tour__media img { transform: scale(1.07); }
.tour__len { position: absolute; top: 1rem; left: 1rem; background: var(--sunset); color: #fff; font-family: var(--label); font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: .45em .9em; border-radius: 2px; }
.tour__body { padding: 1.8rem; display: flex; flex-direction: column; }
.tour__body .eyebrow { margin-bottom: .7rem; }
.tour__body h3 { font-size: 1.65rem; }
.tour__body p { font-size: .92rem; color: var(--muted); margin-top: .5rem; flex: 1; }
.tour__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.tour__meta { font-family: var(--label); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ocean); }

/* ready-made chips grid */
.readymade { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.6rem; }
.rm {
  padding: 1.6rem 1.4rem; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius);
  background: rgba(255,255,255,.04); transition: background .35s var(--ease), transform .35s var(--ease);
}
.rm:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.rm__len { font-family: var(--label); font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--sand-light); }
.rm h4 { color: #fff; font-size: 1.35rem; margin: .35rem 0 .5rem; }
.rm p { font-size: .85rem; color: #c3b9a6; }

/* ============================================================
   PARTNER / VALUES + STEPS
   ============================================================ */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem 1.1rem; margin-top: 3rem; }
.value { display: flex; flex-direction: column; gap: .7rem; }
.value i { color: var(--sunset); font-size: 1.4rem; }
.value h4 { font-family: var(--display); font-size: 1.3rem; color: var(--charcoal); }
.value p { font-size: .9rem; color: var(--muted); }
.section--dark .value h4 { color: #fff; }
.section--dark .value p { color: #c3b9a6; }
.section--dark .value i { color: var(--sand-light); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 3rem; counter-reset: step; }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: 0; left: 0; font-family: var(--display); font-style: italic;
  font-size: 2.4rem; color: var(--sand); line-height: 1;
}
.step::after { content: ""; position: absolute; top: 1.1rem; left: 3.4rem; right: -.7rem; height: 1px; background: var(--line); }
.step:last-child::after { display: none; }
.step h4 { font-size: 1.25rem; margin-bottom: .45rem; }
.step p { font-size: .9rem; color: var(--muted); }
.section--dark .step p { color: #c3b9a6; }
.section--dark .step::after { background: rgba(255,255,255,.15); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.ta-badge { display: flex; align-items: center; gap: 1rem; background: var(--warm-white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.4rem; }
.ta-badge__circles { color: #34e0a1; font-size: 1.05rem; letter-spacing: 2px; }
.ta-badge__score { font-family: var(--display); font-size: 2rem; color: var(--charcoal); line-height: 1; }
.ta-badge small { font-family: var(--label); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 3rem; }
.review {
  background: var(--warm-white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem;
}
.review__stars { color: #34e0a1; font-size: .8rem; letter-spacing: 2px; }
.review__quote { font-family: var(--display); font-size: 1.22rem; line-height: 1.45; color: var(--ink); }
.review__text { font-size: .9rem; color: var(--muted); flex: 1; }
.review__by { display: flex; align-items: center; gap: .8rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(140deg, var(--ocean), var(--ocean-mist)); color: #fff; display: grid; place-items: center; font-family: var(--display); font-size: 1.15rem; }
.review__name { font-family: var(--label); font-size: .8rem; font-weight: 600; color: var(--charcoal); }
.review__place { font-size: .74rem; color: var(--muted); }

/* ============================================================
   CONTACT CTA
   ============================================================ */
.cta-band { position: relative; overflow: hidden; }
.cta-band__media { position: absolute; inset: 0; z-index: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(7,45,55,.92), rgba(7,45,55,.6)); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band h2 em { color: var(--sand-light); }
.cta-band p { color: rgba(255,255,255,.9); margin-top: 1rem; }
.cta-band .hero__actions { margin-top: 2.2rem; }

.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 3rem; }
.contact-card { display: flex; align-items: center; gap: 1.1rem; padding: 1.5rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); }
.contact-card i { color: var(--sand-light); font-size: 1.5rem; width: 28px; text-align: center; }
.contact-card b { color: #fff; font-family: var(--label); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; display: block; }
.contact-card span { color: #ded4c2; font-size: .98rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--charcoal); color: #b7ab97; padding-block: 4.5rem 2rem; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__tag { color: var(--sand); }
.footer__brand p { font-size: .92rem; margin-top: 1.2rem; color: #a89c88; max-width: 34ch; }
.footer h5 { font-family: var(--label); font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #fff; margin-bottom: 1.3rem; }
.footer__links a { display: block; padding: .35rem 0; font-size: .92rem; transition: color .3s var(--ease); }
.footer__links a:hover { color: var(--sand-light); }
.footer__contact li { display: flex; gap: .8rem; padding: .4rem 0; font-size: .92rem; }
.footer__contact i { color: var(--sand); width: 18px; text-align: center; margin-top: .2rem; }
.footer__socials { display: flex; gap: .7rem; margin-top: 1.4rem; }
.footer__socials a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; display: grid; place-items: center; color: #cabfa9; transition: all .3s var(--ease); }
.footer__socials a:hover { background: var(--sunset); border-color: var(--sunset); color: #fff; transform: translateY(-3px); }
.footer__bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .8rem; color: #8f846f; }

/* ============================================================
   FLOATING CONTROLS
   ============================================================ */
.fab-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 95;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 1.7rem; box-shadow: 0 12px 30px -8px rgba(37,211,102,.7);
  transition: transform .3s var(--ease);
  animation: wa-pulse 2.6s infinite;
}
.fab-wa:hover { transform: scale(1.08); color: #fff; }
@keyframes wa-pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }
.fab-wa__tip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  white-space: nowrap; background: var(--charcoal); color: #fff; font-family: var(--label);
  font-size: .68rem; letter-spacing: .06em; padding: .5em .8em; border-radius: 3px;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.fab-wa:hover .fab-wa__tip { opacity: 1; }

.to-top {
  position: fixed; left: 22px; bottom: 22px; z-index: 95;
  width: 48px; height: 48px; border-radius: 50%; background: var(--ocean); color: #fff;
  display: grid; place-items: center; font-size: 1.1rem; box-shadow: var(--shadow-sm);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .35s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--ocean-deep); color: #fff; transform: translateY(-3px); }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.pagehero { position: relative; min-height: 56vh; display: flex; align-items: flex-end; overflow: hidden; }
.pagehero__media { position: absolute; inset: 0; }
.pagehero__media img { width: 100%; height: 100%; object-fit: cover; }
.pagehero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,45,55,.5), rgba(7,45,55,.55) 60%, rgba(7,45,55,.9)); }
.pagehero .container { position: relative; z-index: 2; padding-bottom: 3.5rem; }
.pagehero .eyebrow { color: var(--sand-light); }
.pagehero h1 { color: #fff; }
.pagehero p { color: rgba(255,255,255,.9); margin-top: 1rem; max-width: 54ch; }
.crumbs { font-family: var(--label); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.crumbs a:hover { color: var(--sand-light); }

/* ============================================================
   ITINERARY (tours page)
   ============================================================ */
.itin { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 1.4rem; background: var(--warm-white); }
.itin__head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.3rem; padding: 1.6rem 1.8rem; cursor: pointer; transition: background .3s var(--ease); }
.itin__head:hover { background: var(--sand-soft); }
.itin__badge { width: 64px; height: 64px; border-radius: 50%; background: var(--ocean); color: #fff; display: grid; place-items: center; text-align: center; line-height: 1; }
.itin__badge b { font-family: var(--display); font-size: 1.5rem; }
.itin__badge small { font-family: var(--label); font-size: .5rem; letter-spacing: .14em; text-transform: uppercase; display: block; margin-top: 2px; }
.itin__title h3 { font-size: 1.55rem; }
.itin__title span { font-family: var(--label); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sunset); }
.itin__title p { font-size: .9rem; color: var(--muted); margin-top: .3rem; }
.itin__toggle { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ocean); font-size: 1rem; transition: all .35s var(--ease); }
.itin.open .itin__toggle { background: var(--ocean); color: #fff; transform: rotate(180deg); }
.itin__body { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease); }
.itin.open .itin__body { max-height: 3000px; }
.itin__inner { padding: 0 1.8rem 2rem; }
.day { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; padding: 1.2rem 0; border-top: 1px dashed var(--line); }
.day__marker { display: flex; flex-direction: column; align-items: center; }
.day__num { font-family: var(--label); font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sand); }
.day__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--sunset); margin-top: .4rem; box-shadow: 0 0 0 4px rgba(224,122,60,.15); }
.day__line { flex: 1; width: 1px; background: var(--line); margin-top: .4rem; }
.day h4 { font-size: 1.2rem; color: var(--ocean); }
.day .day__places { font-family: var(--label); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin: .4rem 0 .5rem; }
.day .day__places i { color: var(--sunset); margin-right: .35rem; }
.day p { font-size: .93rem; color: var(--ink); }

/* enquiry form (contact page — no backend) */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-family: var(--label); font-size: .64rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: .96rem; padding: .85rem 1rem; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--warm-white); color: var(--ink); transition: border-color .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ocean); }
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: .8rem; color: var(--muted); }

/* misc */
.lead { font-size: 1.14rem; color: var(--muted); }
.center { text-align: center; }
.mt-lg { margin-top: 3rem; }
.placeholder {
  display: grid; place-items: center; background:
    repeating-linear-gradient(45deg, var(--sand-soft), var(--sand-soft) 12px, var(--beige) 12px, var(--beige) 24px);
  color: var(--muted); font-family: var(--label); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
}
