:root {
  /* === COLOUR ROLES (locked semantic names; hex from project palette) === */
  --c-primary:        #0B5C6B;  /* teal — CTAs, brand */
  --c-primary-deep:   #073B46;  /* navy — headings on light, eyebrow on light, hover */
  --c-accent:         #F29F05;  /* secondary amber accent */
  --c-accent-bright:  #FFC247;  /* hero/sticky/final CTA yellow + dark-bg eyebrow */
  --c-cream:          #F7FAFC;  /* base light bg */
  --c-cream-soft:     #EEF4F6;  /* section-alt light bg */
  --c-travertine:     #CBD9DD;  /* subtle borders / surfaces */
  --c-travertine-soft:#E6EEF0;  /* Categories bg + featured-card outer */
  --c-olive:          #2E7D5A;  /* why-choose, faq, final CTA bg */
  --c-olive-deep:     #246347;  /* deeper olive for hover/border */
  --c-charcoal:       #172326;  /* gallery + footer bg, body text */
  --c-charcoal-mute:  #41585E;  /* supporting text on light (>=4.5:1 on cream) */
  --c-white:          #FFFFFF;

  /* === LEGACY / AUDIT ALIASES (literal hex for contrast_audit.py) === */
  --c-ice:           #F7FAFC;
  --c-mist:          #EEF4F6;
  --c-navy:          #073B46;
  --c-ocean:         #0B5C6B;
  --c-evergreen:     #2E7D5A;
  --c-slate:         #41585E;
  --c-amber:         #FFC247;
  --c-amber-bright:  #FFC247;
  --c-gold:          #F29F05;

  /* === TYPOGRAPHY === */
  --font-head: "Montserrat", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;

  /* === LAYOUT RAILS (locked two-rail system) === */
  --w-wide: min(980px, 100% - 2rem);   /* structural blocks: grids, tables, card lists, FAQ */
  --w-read: min(720px, 100% - 2rem);   /* single-column prose: heads, body, callouts, CTA inner */

  --section-py: clamp(3rem, 6vw, 5rem);
  --shadow:    0 22px 60px rgba(7, 59, 70, .16);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --radius:    8px;
  --radius-lg: 16px;
}

/* Phone rail-collapse: .section padding already supplies the gutter. */
@media (max-width: 600px) {
  :root { --w-wide: 100%; --w-read: 100%; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 5.5rem; }

body {
  margin: 0;
  color: var(--c-charcoal);
  background: var(--c-cream);
  font-family: var(--font-body);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-head);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--c-primary-deep);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--c-primary-deep);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  background: rgba(7, 59, 70, .88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.brand, .site-header a { text-decoration: none; }
.brand { font-family: var(--font-head); font-weight: 800; }
.site-header nav { display: flex; justify-content: flex-end; gap: 22px; font-size: 17px; font-weight: 700; }
.header-cta {
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--c-charcoal);
  background: var(--c-accent);
  font-weight: 800;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}
/* Yellow CTA — hero, sticky bar, final CTA (all on photo/dark/olive). */
.btn--gold { color: var(--c-charcoal); background: var(--c-accent-bright); }
.btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .72); }
.btn--teal { color: #fff; background: var(--c-primary); }
.btn--outline { color: var(--c-primary); border-color: var(--c-primary); background: #fff; }

/* ============ HERO (overlay text on gradient shade) ============ */
.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero picture,
.hero img,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero img { object-fit: cover; object-position: center; }
.hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 35, 40, .86), rgba(7, 35, 40, .48) 42%, rgba(7, 35, 40, .08) 72%),
    linear-gradient(0deg, rgba(7, 35, 40, .58), rgba(7, 35, 40, 0) 45%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: clamp(100px, 14vh, 168px);
  padding-bottom: clamp(56px, 9vh, 110px);
}
.hero__content h1 {
  max-width: 720px;
  font-size: clamp(46px, 8vw, 92px);
  color: #fff;
}
.hero .eyebrow { color: var(--c-accent); }
.hero strong { color: inherit; }
.hero__lede {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(255, 255, 255, .93);
}
.hero__actions,
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero__meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  font-weight: 800;
}
/* Hero CTA reverted to amber gold (pre-frosted-panel look); rest of page keeps the yellow .btn--gold */
.hero .btn--gold { background: var(--c-accent); color: var(--c-charcoal); }

/* ============ FACTS STRIP ============ */
.facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--c-primary-deep);
  color: var(--c-cream);
}
.facts div {
  padding: 22px clamp(14px, 2vw, 28px);
  border-right: 1px solid rgba(255, 255, 255, .14);
}
.facts span {
  display: block;
  color: var(--c-accent-bright);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.facts strong { display: block; margin-top: 6px; font-size: 18px; }

/* ============ SECTIONS ============ */
.section { padding: var(--section-py) clamp(18px, 5vw, 72px); }
.section--pale { background: var(--c-cream-soft); }
.section--dark { color: var(--c-cream); background: linear-gradient(145deg, var(--c-primary-deep), var(--c-primary)); }
.section--olive { color: var(--c-cream); background: var(--c-olive); }

.section-head {
  max-width: var(--w-read);
  margin: 0 auto 34px;
  text-align: center;
}
.section-head h2 { color: var(--c-primary-deep); font-size: clamp(30px, 5vw, 52px); }
.section-head p:not(.eyebrow) { margin-top: 14px; color: var(--c-charcoal-mute); font-size: 18px; }
.section--dark .section-head h2,
.section--dark .section-head p:not(.eyebrow),
.section--olive .section-head h2,
.section--olive .section-head p:not(.eyebrow) { color: var(--c-cream); }
.section--dark .eyebrow,
.section--olive .eyebrow { color: var(--c-accent-bright); }

.center-cta { max-width: var(--w-read); margin: 28px auto 0; text-align: center; }

/* ============ INTRO ============ */
.intro__body {
  max-width: var(--w-read);
  margin: 0 auto;
}
.intro__body p { font-size: 19px; }
.verdict {
  max-width: var(--w-read);
  margin: 24px auto 0;
  padding: 22px 26px;
  border-left: 4px solid var(--c-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--c-white);
  box-shadow: var(--shadow-sm);
}
.verdict h3 { color: var(--c-primary); font-size: 24px; }
.verdict p { margin-bottom: 0; }
.intro-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: var(--w-wide);
  margin: 30px auto 0;
}
.intro-col {
  padding: 26px;
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius);
  background: var(--c-white);
}
.intro-col h3 {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--c-travertine);
  color: var(--c-primary-deep);
  font-size: 22px;
}
.intro-col ul { margin: 0; padding-left: 18px; }
.intro-col li { margin-bottom: 8px; }
.intro-col li::marker { color: var(--c-primary); }

/* ============ EXPERIENCE (5-step) ============ */
.steps {
  display: grid;
  gap: 16px;
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.steps li {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.steps span { color: var(--c-primary-deep); font-family: var(--font-head); font-size: 28px; font-weight: 800; }
.steps h3 { color: var(--c-primary-deep); font-size: 24px; }

/* ============ GUIDED (merged card + widget) ============ */
.guided__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: var(--w-wide);
  margin-inline: auto;
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.guided__mobilehead {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--c-travertine);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.guided__text { padding: clamp(20px, 3vw, 34px); }
.guided__text .eyebrow { color: var(--c-primary-deep); }
.guided__title-h2 { color: var(--c-primary-deep); font-size: clamp(26px, 4vw, 38px); margin-bottom: 12px; }
.guided__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
}
.guided__meta .price, .guided__meta .rating, .guided__meta .dur {
  font-weight: 800;
  color: var(--c-primary-deep);
}
.pill {
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--c-cream-soft);
  color: var(--c-primary-deep);
  font-size: 12px;
  font-weight: 800;
}
.guided__why {
  background: var(--c-cream-soft);
  border-left: 4px solid var(--c-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
}
.guided__why p { margin: 0; }
.guided__list { margin: 0 0 16px; padding-left: 18px; }
.guided__list li { margin-bottom: 6px; }
.guided__list li::marker { color: var(--c-primary); }
.guided__suggest { max-width: 640px; margin: 16px auto 0; padding: 12px 16px; border-left: 3px solid var(--c-accent); border-radius: 0 var(--radius) var(--radius) 0; background: var(--c-cream-soft); color: var(--c-charcoal-mute); font-size: 15px; text-align: left; }
.guided__suggest a { color: var(--c-primary-deep); font-weight: 700; }
.guided__note { color: var(--c-charcoal-mute); margin-bottom: 0; }
.guided__widget {
  padding: 1.5rem;
  order: -1;
  border-bottom: 1px solid var(--c-travertine);
  background: var(--c-white);
  min-height: 320px;
}
@media (min-width: 1024px) {
  .guided__grid { grid-template-columns: 1.05fr .95fr; }
  .guided__mobilehead { display: none; }
  .guided__widget { order: 0; border-bottom: 0; border-left: 1px solid var(--c-travertine); }
}
@media (max-width: 1023.98px) {
  .guided__title-h2, .guided__meta .price, .guided__meta .rating { display: none; }
  .guided__why { background: none; border-left: 0; padding: 0; border-radius: 0; }
}

/* ============ CARD GRIDS (highlights, why-choose) ============ */
.card-grid { display: grid; gap: 18px; max-width: var(--w-wide); margin-inline: auto; }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid article, .split article, .qa-grid article {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.card-grid h3, .split h3, .qa-grid h3 { color: var(--c-primary); font-size: 22px; }
.section--olive .card-grid article { color: var(--c-charcoal); }

/* ============ GALLERY (full-width scroll strip) ============ */
.gallery { background: var(--c-charcoal); color: var(--c-cream); padding: var(--section-py) 0; }
.gallery__head { max-width: var(--w-read); margin: 0 auto 28px; padding: 0 16px; text-align: center; }
.gallery h2 { color: #fff; font-size: clamp(28px, 5vw, 48px); }
.gallery__head .eyebrow { color: var(--c-accent-bright); }
.gallery__head p { margin-top: 12px; color: rgba(255, 255, 255, .8); }
.gallery__wrapper { position: relative; }
.gallery__wrapper--full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.gallery__strip {
  display: flex;
  flex-wrap: nowrap;
  gap: .4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .5) transparent;
  padding: .4rem max(1rem, calc((100vw - 1240px) / 2));
}
.gallery__strip::-webkit-scrollbar { height: 8px; }
.gallery__strip::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .45); border-radius: 4px; }
.gallery__item { flex: 0 0 min(78vw, 540px); margin: 0; scroll-snap-align: start; }
.gallery__item img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); }
.gallery__wrapper::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 90px; height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(23, 35, 38, 0), var(--c-charcoal));
}
.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--c-charcoal);
  font-size: 26px;
  cursor: pointer;
}
.gallery__arrow--prev { left: 14px; }
.gallery__arrow--next { right: 14px; }
@media (min-width: 1080px) { .gallery__arrow { display: flex; } }

/* ============ INCLUDED (split) ============ */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: var(--w-wide); margin-inline: auto; }
.split ul, .book-now ul { margin: 14px 0 0; padding-left: 20px; }

/* ============ REVIEWS ============ */
.reviews { background: var(--c-cream); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--w-wide);
  margin-inline: auto;
}
blockquote {
  margin: 0;
  padding: 26px;
  color: var(--c-charcoal);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
blockquote p { margin-top: 0; font-size: 17px; font-weight: 600; }
cite { color: var(--c-charcoal-mute); font-style: normal; font-weight: 700; }

/* ============ PRACTICAL INFO ============ */
.qa-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: var(--w-wide); margin-inline: auto; }

/* ============ FAQ ============ */
.faq-list { display: grid; gap: 12px; max-width: var(--w-wide); margin-inline: auto; }
details { border: 1px solid var(--c-travertine); border-radius: var(--radius); background: #fff; }
summary { cursor: pointer; padding: 18px 20px; color: var(--c-primary-deep); font-weight: 800; }
details p { margin: 0; padding: 0 20px 20px; color: var(--c-charcoal-mute); }

/* ============ CATEGORIES (#also) ============ */
.also { background: var(--c-travertine-soft); }
.category-stack { display: grid; gap: 28px; max-width: var(--w-wide); margin-inline: auto; }
.category-block { overflow: hidden; border: 1px solid var(--c-travertine); border-radius: var(--radius); background: var(--c-cream-soft); box-shadow: var(--shadow); scroll-margin-top: 5.5rem; }
.category-block__img { width: 100%; height: 200px; object-fit: cover; transition: transform 220ms ease; }
#also-private .category-block__img { object-position: center 65%; }
.category-block:hover .category-block__img { transform: scale(1.03); }
.category-block__body { padding: clamp(22px, 3vw, 32px); }
.category-block .eyebrow { color: var(--c-primary-deep); }
.category-block h3 { color: var(--c-primary-deep); font-size: clamp(23px, 3.2vw, 30px); }
.category-block__desc { margin: 10px 0 22px; color: var(--c-charcoal-mute); }
.category-block__note { margin: -6px 0 22px; padding: 12px 16px; border-left: 3px solid var(--c-accent); border-radius: 0 var(--radius) var(--radius) 0; background: var(--c-white); color: var(--c-charcoal-mute); font-size: 15px; }
.category-block__note a { color: var(--c-primary-deep); font-weight: 700; }
.tour-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.tour-grid--one { grid-template-columns: minmax(0, 540px); }
.tour-card { display: flex; flex-direction: column; padding: 22px; border: 1px solid var(--c-travertine); border-radius: var(--radius); background: var(--c-white); box-shadow: var(--shadow-sm); }
.tour-card .tag { align-self: flex-start; margin-bottom: 10px; padding: 4px 10px; border-radius: 999px; background: var(--c-cream-soft); color: var(--c-primary-deep); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.tour-card h4 { color: var(--c-primary-deep); font-size: 18px; }
.tour-card__meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0; color: var(--c-primary-deep); font-size: 14px; font-weight: 800; }
.tour-card p { color: var(--c-charcoal-mute); font-size: 15px; }
.tour-card p:last-of-type { margin-bottom: 16px; }
.tour-card .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 720px) {
  .tour-grid, .tour-grid--one { grid-template-columns: 1fr; }
}

/* ============ FINAL CTA (olive) ============ */
.book-now-section { color: #fff; background: var(--c-olive); padding: clamp(44px, 7vw, 76px) clamp(18px, 5vw, 72px); }
.book-now {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  max-width: var(--w-wide);
  margin-inline: auto;
}
.book-now .btn { margin-top: 22px; }
.book-now .eyebrow { color: var(--c-accent-bright); }
.book-now h2 { color: #fff; font-size: clamp(30px, 5vw, 52px); }
.book-now p:not(.eyebrow) { max-width: 760px; color: rgba(255, 255, 255, .9); }
.disclosure { font-size: 13px; }

/* ============ STICKY CTA ============ */
.sticky-cta {
  position: fixed;
  z-index: 30;
  left: 12px; right: 12px; bottom: 12px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(23, 35, 38, .96);
  box-shadow: var(--shadow);
}
.sticky-cta span { font-size: 13px; font-weight: 800; }

/* ============ FOOTER ============ */
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, .82);
  background: var(--c-charcoal);
  font-size: 14px;
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 16px; }
.site-footer a { color: #fff; }

/* ============ LEGAL PAGES ============ */
.legal-page { background: var(--c-cream-soft); }
.legal-wrap {
  width: min(820px, calc(100% - 36px));
  margin: 80px auto;
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.legal-wrap h1 { color: var(--c-primary-deep); font-size: clamp(34px, 6vw, 58px); }
.back-link { display: inline-block; margin-bottom: 20px; color: var(--c-primary); font-weight: 800; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .facts, .book-now, .site-footer { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .card-grid.four, .split, .qa-grid, .also-grid, .review-grid, .intro-cols { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { position: absolute; padding: 14px 16px; }
  .header-cta { display: none; }
  .hero { min-height: 760px; }
  .hero__content { width: calc(100% - 32px); margin: 0 16px; }
  .hero__shade { background: linear-gradient(90deg, rgba(7, 35, 40, .9), rgba(7, 35, 40, .62)); }
  .facts, .steps li { grid-template-columns: 1fr; }
  .gallery__item img { height: 300px; }
  .sticky-cta.is-visible { display: flex; }
  .section { padding: 50px 16px; }
}
