/* ==========================================================================
   Go Tours Travel — site.css
   Hand-built static site. No frameworks, no build dependencies.
   Sections: 1 Tokens · 2 Reset · 3 Type · 4 Layout · 5 Header · 6 Footer
             7 Hero · 8 Components · 9 Gallery · 10 Forms · 11 Utilities
   ========================================================================== */

/* 1 ── TOKENS ───────────────────────────────────────────────────────────── */
:root {
  /* Colour — ocean blue and warm sunset coral, wide-horizon travel agency */
  --ink:        #0b2033;
  --ink-soft:   #17334a;
  --sea:        #146f96;
  --sea-deep:   #0c4c68;
  --sea-light:  #86bcd4;
  --sand:       #f4efe3;
  --sand-deep:  #e6dac2;
  --paper:      #fdfbf6;
  --sun:        #e0672c;
  --sun-soft:   #eda06e;
  --white:      #ffffff;

  --text:       #23343f;
  --text-soft:  #5c6f79;
  --text-faint: #8598a0;
  --line:       #e1d9cb;
  --line-soft:  #efe9de;

  /* Type */
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Scale — fluid, clamps to sane sizes on phones and big screens */
  --t-xs:   0.78rem;
  --t-sm:   0.88rem;
  --t-base: clamp(1rem, 0.97rem + 0.15vw, 1.09rem);
  --t-lg:   clamp(1.13rem, 1.05rem + 0.35vw, 1.3rem);
  --t-xl:   clamp(1.4rem, 1.25rem + 0.7vw, 1.85rem);
  --t-2xl:  clamp(1.85rem, 1.55rem + 1.4vw, 2.75rem);
  --t-3xl:  clamp(2.35rem, 1.8rem + 2.6vw, 4rem);
  --t-4xl:  clamp(2.9rem, 1.9rem + 4.6vw, 5.75rem);

  /* Space */
  --s-1: 0.25rem;  --s-2: 0.5rem;   --s-3: 0.75rem;  --s-4: 1rem;
  --s-5: 1.5rem;   --s-6: 2rem;     --s-7: 2.75rem;  --s-8: 3.5rem;
  --s-9: 5rem;     --s-10: 7rem;    --s-11: 9.5rem;

  --section: clamp(3.5rem, 2rem + 6vw, 7rem);

  /* Structure */
  --wide:   1280px;
  --normal: 1080px;
  --narrow: 720px;
  --gutter: clamp(1.25rem, 0.6rem + 2.6vw, 3rem);

  --radius:    4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(11,32,51,.06), 0 2px 8px rgba(11,32,51,.05);
  --shadow:    0 4px 12px rgba(11,32,51,.07), 0 12px 32px rgba(11,32,51,.08);
  --shadow-lg: 0 10px 30px rgba(11,32,51,.11), 0 30px 70px rgba(11,32,51,.13);

  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 76px;
}

@media (max-width: 800px) { :root { --header-h: 62px; } }

/* 2 ── RESET ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  font-family: var(--body);
  font-size: var(--t-base);
  line-height: 1.68;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

::selection { background: var(--sun); color: #fff; }

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

/* 3 ── TYPE ─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: "SOFT" 0, "WONK" 0;
  text-wrap: balance;
}

h1 { font-size: var(--t-3xl); }
h2 { font-size: var(--t-2xl); }
h3 { font-size: var(--t-xl); line-height: 1.22; }
h4 { font-size: var(--t-lg); line-height: 1.3; }

p { text-wrap: pretty; }
p + p { margin-top: 1.1em; }

a { color: var(--sea); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--sun); }

strong, b { font-weight: 600; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: var(--s-3);
  display: block;
}
.eyebrow--light { color: var(--sun-soft); }

.lead {
  font-size: var(--t-lg);
  line-height: 1.6;
  color: var(--text-soft);
}

.prose > * + * { margin-top: 1.15em; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.6em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .4em; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul li {
  position: relative;
  padding-left: 1.5em;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: .25em; top: .65em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sea-light);
}
.prose ol { padding-left: 1.4em; }
.prose ol li::marker { color: var(--sea); font-weight: 600; }

blockquote {
  font-family: var(--display);
  font-size: var(--t-xl);
  line-height: 1.4;
  color: var(--ink);
  border-left: 3px solid var(--sun);
  padding-left: var(--s-5);
  margin: var(--s-7) 0;
}

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: var(--s-8) 0;
}

/* 4 ── LAYOUT ───────────────────────────────────────────────────────────── */
.wrap      { width: 100%; max-width: var(--normal); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide   { max-width: var(--wide); }
.wrap--narrow { max-width: var(--narrow); }

.section       { padding-block: var(--section); }
.section--tight { padding-block: calc(var(--section) * .6); }
.section--sand  { background: var(--sand); }
.section--paper { background: var(--paper); }
.section--ink   { background: var(--ink); color: #cdd9df; }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--white); }
.section--ink .lead { color: #a7bac2; }
.section--sea   { background: var(--sea-deep); color: #d0e5ec; }
.section--sea h2, .section--sea h3 { color: var(--white); }

.section-head { max-width: 46rem; margin-bottom: var(--s-8); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: var(--s-4); }

.grid { display: grid; gap: var(--s-6); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }

/* Split: image one side, text the other */
.split {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--flip .split__media { order: 2; }
  .split--wide-media { grid-template-columns: 1.2fr 1fr; }
}
.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split__media--tall img { aspect-ratio: 3 / 4; }

/* 5 ── HEADER ───────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  width: 100%;
  max-width: var(--wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--s-6);
}

/* Transparent over a hero, solid once scrolled or on inner pages */
.header--solid,
.header.is-stuck {
  background: rgba(253,251,246,.94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
  transition: color .35s var(--ease);
}
.brand__mark {
  width: 150px;
  height: auto;
  flex-shrink: 0;
  background: #fff;
  padding: 5px 8px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,.35);
}

@media (max-width: 560px) {
  .brand__mark { width: 118px; padding: 4px 6px; }
}

.brand__name {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.brand__sub {
  display: block;
  font-family: var(--body);
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .75;
  margin-top: 4px;
}
.header--solid .brand,
.header.is-stuck .brand { color: var(--ink); }

@media (max-width: 560px) {
  .brand__name { font-size: 1.1rem; }
}

/* Desktop nav */
.nav { margin-left: auto; display: flex; align-items: center; gap: var(--s-2); }
@media (max-width: 1080px) { .nav { display: none; } }

.nav__item { position: relative; }

.nav__link {
  display: block;
  padding: .55rem .7rem;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.header--solid .nav__link,
.header.is-stuck .nav__link { color: var(--text); }
.nav__link:hover,
.nav__item:focus-within > .nav__link { color: var(--sun); }
.nav__link[aria-current="page"] { color: var(--sun); }

.nav__link--has-menu::after {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  margin-left: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: .6;
}

.nav__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 15rem;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--s-2);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav__item:hover > .nav__menu,
.nav__item:focus-within > .nav__menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__menu a {
  display: block;
  padding: .5rem .75rem;
  font-size: .85rem;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav__menu a:hover { background: var(--sand); color: var(--sea); }

.header__cta { margin-left: var(--s-3); }
@media (max-width: 1080px) { .header__cta { margin-left: auto; } }
@media (max-width: 560px) { .header__cta { display: none; } }

/* Burger */
.burger {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  margin-left: var(--s-2);
  border-radius: var(--radius);
  flex-shrink: 0;
}
@media (max-width: 1080px) { .burger { display: flex; } }
.burger__box { position: relative; width: 22px; height: 14px; }
.burger__box span {
  position: absolute; left: 0;
  width: 100%; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), background .35s var(--ease);
}
.burger__box span:nth-child(1) { top: 0; }
.burger__box span:nth-child(2) { top: 6.25px; }
.burger__box span:nth-child(3) { top: 12.5px; }
.header--solid .burger__box span,
.header.is-stuck .burger__box span { background: var(--ink); }
body.nav-open .burger__box span { background: var(--ink); }
body.nav-open .burger__box span:nth-child(1) { transform: translateY(6.25px) rotate(45deg); }
body.nav-open .burger__box span:nth-child(2) { opacity: 0; }
body.nav-open .burger__box span:nth-child(3) { transform: translateY(-6.25px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--paper);
  padding: calc(var(--header-h) + var(--s-5)) var(--gutter) var(--s-8);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
body.nav-open .drawer { opacity: 1; visibility: visible; transform: none; }
body.nav-open { overflow: hidden; }

.drawer__group { border-bottom: 1px solid var(--line-soft); }
.drawer__top {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: var(--s-4) 0;
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
}
.drawer__top .chev {
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--text-faint);
  border-bottom: 1.5px solid var(--text-faint);
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
  flex-shrink: 0;
  margin-right: 4px;
}
.drawer__group.is-open .chev { transform: rotate(-135deg); }
.drawer__sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s var(--ease);
}
.drawer__group.is-open .drawer__sub { grid-template-rows: 1fr; }
.drawer__sub > div { overflow: hidden; }
.drawer__sub a {
  display: block;
  padding: .5rem 0 .5rem var(--s-4);
  font-size: .95rem;
  color: var(--text-soft);
  text-decoration: none;
  border-left: 2px solid var(--line);
  margin-left: 2px;
}
.drawer__sub a:hover { color: var(--sea); border-left-color: var(--sea-light); }
.drawer__sub > div { padding-bottom: var(--s-4); }
.drawer__foot { margin-top: var(--s-7); display: grid; gap: var(--s-3); }

/* 6 ── FOOTER ───────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: #93a5af;
  padding-block: var(--s-9) var(--s-6);
  font-size: var(--t-sm);
}
.footer a { color: #ccdae0; text-decoration: none; }
.footer a:hover { color: var(--sun-soft); }
.footer__grid {
  display: grid;
  gap: var(--s-7);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  padding-bottom: var(--s-8);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer__brand { grid-column: 1 / -1; }
@media (min-width: 900px) { .footer__brand { grid-column: span 2; max-width: 22rem; } }
.footer__brand .brand { color: var(--white); }
.footer__brand .brand__mark { width: 190px; }
.footer__brand .brand__name { font-size: 1.5rem; }
.footer__brand p { margin-top: var(--s-4); line-height: 1.6; }
.footer h4 {
  color: var(--white);
  font-family: var(--body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.footer ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer__bottom {
  padding-top: var(--s-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  justify-content: space-between;
  align-items: center;
  font-size: var(--t-xs);
  color: #6d818b;
}
/* Social icons — footer and contact page */
.social { display: flex; gap: var(--s-3); align-items: center; }
.social a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  color: #ccdae0;
  transition: background .22s var(--ease), border-color .22s var(--ease),
              color .22s var(--ease), transform .22s var(--ease);
}
.social a:hover {
  background: var(--sun);
  border-color: var(--sun);
  color: #fff;
  transform: translateY(-2px);
}
.social svg { width: 17px; height: 17px; fill: currentColor; display: block; }

/* Same icons on a light background */
.social--dark a { border-color: var(--line); color: var(--text-soft); }
.social--dark a:hover { background: var(--sun); border-color: var(--sun); color: #fff; }

/* 7 ── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(92svh, 900px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero--short { min-height: min(66svh, 620px); }
.hero--page  { min-height: min(58svh, 540px); }

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(7,17,27,.86) 0%, rgba(7,17,27,.34) 42%, rgba(7,17,27,.22) 68%, rgba(7,17,27,.5) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--wide);
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(3rem, 1.5rem + 5vw, 6rem);
}
.hero__title {
  color: var(--white);
  font-size: var(--t-4xl);
  line-height: .98;
  letter-spacing: -0.025em;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.28);
}
.hero__sub {
  margin-top: var(--s-5);
  max-width: 40ch;
  font-size: var(--t-lg);
  color: rgba(255,255,255,.9);
  text-shadow: 0 1px 16px rgba(0,0,0,.3);
}
.hero__actions { margin-top: var(--s-7); display: flex; flex-wrap: wrap; gap: var(--s-3); }

.hero__meta {
  position: absolute;
  bottom: clamp(3rem, 1.5rem + 5vw, 6rem);
  right: var(--gutter);
  text-align: right;
  font-size: var(--t-xs);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  z-index: 1;
}
@media (max-width: 900px) { .hero__meta { display: none; } }

/* Page hero used on interior pages */
.hero--page .hero__title { font-size: var(--t-3xl); max-width: 20ch; }

/* Scrolling marquee strip */
.marquee {
  background: var(--sun);
  color: #fff;
  overflow: hidden;
  padding-block: .7rem;
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 3rem;
  padding-left: 3rem;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* 8 ── COMPONENTS ───────────────────────────────────────────────────────── */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  font-family: var(--body);
  font-size: .87rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .22s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--sun); color: #fff; }
.btn--primary:hover { background: #c1522a; color: #fff; }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--sea-deep); color: #fff; }

.btn--ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff; }

.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }

.btn--sm { padding: .6rem 1.1rem; font-size: .76rem; }
.btn--block { width: 100%; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sea);
}
.link-arrow::after {
  content: "→";
  transition: transform .22s var(--ease);
}
.link-arrow:hover::after { transform: translateX(4px); }
.link-arrow--light { color: var(--sun-soft); }

/* Card */
.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  height: 100%;
}
a.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--sand-deep);
}
.card__media { position: relative; overflow: hidden; background: var(--sand); }
.card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
a.card:hover .card__media img { transform: scale(1.045); }
.card__body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: var(--s-2); }
.card__body p { font-size: .93rem; color: var(--text-soft); }
.card__foot { margin-top: auto; padding-top: var(--s-4); }
.card__tag {
  position: absolute;
  top: var(--s-3); left: var(--s-3);
  background: rgba(11,32,51,.8);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border-radius: 2px;
}

/* Feature tile — image with text overlaid, used for destinations/activities */
.tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 22rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
}
.tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .7s var(--ease);
}
.tile::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(7,17,27,.85) 8%, rgba(7,17,27,.28) 55%, rgba(7,17,27,.12) 100%);
  transition: background .4s var(--ease);
}
.tile:hover img { transform: scale(1.05); }
.tile:hover::after { background: linear-gradient(to top, rgba(7,17,27,.9) 8%, rgba(7,17,27,.42) 60%, rgba(7,17,27,.2) 100%); }
.tile__body { padding: var(--s-5); width: 100%; }
.tile__body h3 { color: #fff; font-size: var(--t-xl); }
.tile__body p { font-size: .9rem; color: rgba(255,255,255,.82); margin-top: var(--s-2); }
.tile--tall { min-height: 30rem; }

/* Stat / fact row */
.facts {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
}
.fact__num {
  font-family: var(--display);
  font-size: var(--t-2xl);
  line-height: 1;
  color: var(--sea);
}
.section--ink .fact__num, .section--sea .fact__num { color: var(--sun-soft); }
.fact__label {
  margin-top: var(--s-2);
  font-size: var(--t-sm);
  color: var(--text-soft);
  line-height: 1.45;
}
.section--ink .fact__label, .section--sea .fact__label { color: #9db1b8; }

/* Rate / package card */
.rate {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  height: 100%;
}
.rate--feature {
  border-color: var(--sea);
  border-width: 2px;
  box-shadow: var(--shadow);
  position: relative;
}
.rate--feature::before {
  content: "Popular";
  position: absolute;
  top: -.75rem; left: var(--s-6);
  background: var(--sea);
  color: #fff;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 2px;
}
.rate__name { font-size: var(--t-lg); }
.rate__price {
  font-family: var(--display);
  font-size: var(--t-2xl);
  color: var(--ink);
  line-height: 1;
  margin-top: var(--s-4);
}
.rate__price small {
  display: block;
  font-family: var(--body);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: var(--s-2);
}
.rate__list { list-style: none; padding: 0; margin: var(--s-5) 0 0; display: grid; gap: .55rem; font-size: .92rem; }
.rate__list li { position: relative; padding-left: 1.6rem; color: var(--text-soft); }
.rate__list li::before {
  content: "";
  position: absolute; left: 0; top: .48em;
  width: 10px; height: 6px;
  border-left: 1.7px solid var(--sea);
  border-bottom: 1.7px solid var(--sea);
  transform: rotate(-45deg);
}
.rate__foot { margin-top: auto; padding-top: var(--s-6); }

/* Price table */
.ptable { width: 100%; border-collapse: collapse; font-size: .93rem; }
.ptable caption {
  text-align: left;
  font-family: var(--display);
  font-size: var(--t-lg);
  color: var(--ink);
  padding-bottom: var(--s-4);
}
.ptable th, .ptable td { padding: .8rem .9rem; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.ptable th {
  font-family: var(--body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
  border-bottom-color: var(--line);
}
.ptable td:last-child { text-align: right; white-space: nowrap; font-weight: 600; color: var(--ink-soft); }
.ptable tbody tr:hover { background: var(--sand); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Accordion */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  width: 100%;
  padding: var(--s-5) 0;
  text-align: left;
  font-family: var(--display);
  font-size: var(--t-lg);
  color: var(--ink);
}
.acc__name { flex: 1; min-width: 0; }
.acc__depth {
  flex: 0 0 auto;
  min-width: 7.5rem;
  text-align: right;
  font-family: var(--body);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--text-faint);
  white-space: nowrap;
}
@media (max-width: 560px) {
  .acc__depth { min-width: 0; font-size: .68rem; letter-spacing: .06em; }
}

.acc__btn .plus {
  position: relative;
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.acc__btn .plus::before, .acc__btn .plus::after {
  content: "";
  position: absolute;
  background: var(--sea);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.acc__btn .plus::before { top: 7.25px; left: 0; width: 16px; height: 1.5px; }
.acc__btn .plus::after { left: 7.25px; top: 0; width: 1.5px; height: 16px; }
.acc__item.is-open .plus::after { transform: rotate(90deg); opacity: 0; }
.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s var(--ease);
}
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel .inner { padding-bottom: var(--s-5); color: var(--text-soft); }

/* Testimonial */
.quote {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.quote__mark {
  font-family: var(--display);
  font-size: 3rem;
  line-height: .7;
  color: var(--sand-deep);
  margin-bottom: var(--s-3);
}
.quote__text { font-size: .96rem; color: var(--text-soft); }
.quote__text p + p { margin-top: .8em; }
.quote__by {
  margin-top: auto;
  padding-top: var(--s-5);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .02em;
}
.quote__by span { display: block; font-weight: 400; color: var(--text-faint); margin-top: 2px; }
.quote--feature {
  background: var(--sea-deep);
  border-color: var(--sea-deep);
  color: #d8e9ee;
}
.quote--feature .quote__mark { color: rgba(255,255,255,.28); }
.quote--feature .quote__text { color: #d8e9ee; font-size: var(--t-lg); font-family: var(--display); line-height: 1.5; }
.quote--feature .quote__by { color: #fff; }
.quote--feature .quote__by span { color: var(--sea-light); }

/* Callout / CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding-block: var(--section);
}
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(7,17,27,.68), rgba(7,17,27,.72));
}
.cta-band__inner { position: relative; z-index: 1; max-width: 44rem; margin-inline: auto; padding-inline: var(--gutter); }
.cta-band h2 { color: #fff; }
.cta-band p { margin-top: var(--s-4); color: rgba(255,255,255,.86); font-size: var(--t-lg); }
.cta-band .hero__actions { justify-content: center; }

/* Note / aside box */
.note {
  background: var(--sand);
  border-left: 3px solid var(--sea);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--s-5);
  font-size: .93rem;
  color: var(--text-soft);
}
.note strong { color: var(--ink); }
.note--warn { border-left-color: var(--sun); }

/* Definition list of specs */
.specs {
  display: grid;
  gap: var(--s-4) var(--s-6);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
  padding: var(--s-5) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-block: var(--s-6);
}
.specs dt {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 3px;
}
.specs dd { margin: 0; font-weight: 500; color: var(--ink); font-size: .95rem; }

/* Breadcrumb */
.crumbs {
  font-size: var(--t-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  margin-bottom: var(--s-4);
}
.crumbs a { color: rgba(255,255,255,.8); text-decoration: none; }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: .5; margin-inline: .5rem; }

/* Next/prev page nav */
.pager {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  border-top: 1px solid var(--line);
  padding-top: var(--s-6);
  margin-top: var(--s-8);
}
.pager a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: .9rem;
}
.pager a strong { display: block; font-family: var(--display); font-size: var(--t-lg); color: var(--ink); margin-top: 2px; font-weight: 500; }
.pager a:hover strong { color: var(--sea); }
.pager .is-next { text-align: right; }

/* 9 ── GALLERY ──────────────────────────────────────────────────────────── */
.gal {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
}
.gal--lg { grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr)); }
.gal__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
  cursor: zoom-in;
  border: none;
  padding: 0;
  width: 100%;
}
.gal__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .5s var(--ease), filter .3s var(--ease);
}
.gal__item:hover img { transform: scale(1.05); filter: brightness(1.05); }

/* Lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6,14,21,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), visibility .28s;
  padding: clamp(1rem, 3vw, 3rem);
}
.lb.is-open { opacity: 1; visibility: visible; }
.lb__img {
  max-width: 100%;
  max-height: 82svh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
}
.lb__cap {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: var(--t-sm);
  text-align: center;
  max-width: 40rem;
  padding-inline: 1rem;
}
.lb__btn {
  position: absolute;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  transition: background .2s var(--ease);
}
.lb__btn:hover { background: rgba(255,255,255,.22); }
.lb__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lb__prev { left: clamp(.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lb__next { right: clamp(.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lb__prev { left: .5rem; } .lb__next { right: .5rem; }
  .lb__btn { width: 40px; height: 40px; }
}

/* 10 ── FORMS ───────────────────────────────────────────────────────────── */
.form { display: grid; gap: var(--s-5); }
.form__row {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}
.field { display: grid; gap: .45rem; }
.field > label,
.fieldset > legend {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.field .hint { font-size: var(--t-xs); color: var(--text-faint); letter-spacing: 0; text-transform: none; font-weight: 400; }

.input, .select, .textarea {
  width: 100%;
  padding: .75rem .9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .96rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(20,111,150,.13);
}
.input::placeholder, .textarea::placeholder { color: var(--text-faint); }
.textarea { min-height: 8rem; resize: vertical; line-height: 1.6; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%235c6f79' stroke-width='1.6' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.4rem;
}
.input:user-invalid, .select:user-invalid, .textarea:user-invalid {
  border-color: #c0492b;
  box-shadow: 0 0 0 3px rgba(192,73,43,.1);
}

.fieldset { border: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.fieldset > legend { padding: 0; margin-bottom: .2rem; }

/* Checkbox / radio chips — used for activity/destination selection */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { position: relative; }
.chip input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  margin: 0;
  cursor: pointer;
}
.chip span {
  display: block;
  padding: .5rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .88rem;
  color: var(--text-soft);
  transition: all .18s var(--ease);
  user-select: none;
}
.chip input:checked + span {
  background: var(--sea);
  border-color: var(--sea);
  color: #fff;
  font-weight: 500;
}
.chip input:focus-visible + span { outline: 2px solid var(--sun); outline-offset: 2px; }
.chip:hover span { border-color: var(--sea-light); }

.check {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--text-soft);
  cursor: pointer;
}
.check input { margin-top: .3rem; accent-color: var(--sea); width: 1rem; height: 1rem; flex-shrink: 0; }

.form__foot { display: flex; flex-wrap: wrap; gap: var(--s-4); align-items: center; }
.form__note { font-size: var(--t-sm); color: var(--text-faint); }

.form-panel {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2.4vw, 3rem);
  box-shadow: var(--shadow-sm);
}

.form-success {
  display: none;
  background: var(--sand);
  border-left: 3px solid var(--sea);
  padding: var(--s-6);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.form-success.is-visible { display: block; }
.form-success h3 { margin-bottom: var(--s-3); }

/* Honeypot — hidden from people, catches bots */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Contact detail block */
.contact-line {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}
.contact-line h4 {
  font-family: var(--body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--s-2);
}
.contact-line a { color: var(--ink); text-decoration: none; font-weight: 500; }
.contact-line a:hover { color: var(--sun); }

/* Accreditation badge row (IATA / ATAS / helloworld) */
.badges { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-6); }
.badges img { max-height: 52px; width: auto; }

/* 11 ── UTILITIES ───────────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute;
  top: -100px; left: var(--s-4);
  z-index: 300;
  background: var(--ink);
  color: #fff;
  padding: .7rem 1.2rem;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }
.mt-8 { margin-top: var(--s-8); }
.mb-6 { margin-bottom: var(--s-6); }
.mb-8 { margin-bottom: var(--s-8); }

.full-img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.full-img--tall { aspect-ratio: 4 / 3; }

figure figcaption {
  margin-top: var(--s-3);
  font-size: var(--t-sm);
  color: var(--text-faint);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* Print — clients do print itineraries and fee schedules */
@media print {
  .header, .drawer, .footer, .cta-band, .marquee, .hero__actions { display: none !important; }
  body { background: #fff; color: #000; }
  .hero { min-height: auto; padding-block: 2rem; }
  .hero__bg { display: none; }
  .hero__title, .hero__sub { color: #000; text-shadow: none; }
  a { text-decoration: underline; color: #000; }
}
