/* Tripa Lanka — shared styles. Tokens at the top; page sections below. */
/* ════════════════════════════════════════════════════════════
   TOKENS
   Palette: ocean teal, tea-hill green, saffron, warm sand, night navy.
   Spacing follows an 8px grid via --s* variables.
════════════════════════════════════════════════════════════ */
:root {
  --teal: #0e5e6f;
  --teal-deep: #0a4a58;
  --green: #3a7d44;
  --saffron: #e8912d;
  --saffron-deep: #d9822b;
  --sand: #f5ebdd;
  --navy: #0b1d2a;

  --paper: #f5ebdd;
  --surface: #fbf5ec;
  --ink: #0b1d2a;
  --muted: #4a5a63;
  --line: rgba(11, 29, 42, 0.12);
  --link: #0e5e6f;
  --green-text: #2f6a39;
  --brand-teal: #0e5e6f;

  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.75);
  --glass-hover: rgba(255, 255, 255, 0.84);
  --glass-fallback: rgba(250, 246, 240, 0.96);
  --glass-highlight: rgba(255, 255, 255, 0.6);
  --shadow: 0 24px 48px -28px rgba(11, 29, 42, 0.45);

  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 40px;
  --s6: 48px;
  --s8: 64px;
  --s10: 80px;
  --s12: 96px;
  --s14: 112px;
  --s16: 128px;

  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 24px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  color-scheme: light;
}

[data-theme="night"] {
  --paper: #0b1d2a;
  --surface: #12283a;
  --ink: #f5ebdd;
  --muted: #b9c6ce;
  --line: rgba(245, 235, 221, 0.16);
  --link: #8fd0db;
  --green-text: #9bd0a3;
  --brand-teal: #8fd0db;
  --glass: rgba(11, 29, 42, 0.56);
  --glass-border: rgba(245, 235, 221, 0.22);
  --glass-hover: rgba(18, 40, 58, 0.7);
  --glass-fallback: rgba(11, 29, 42, 0.94);
  --glass-highlight: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.7);
  color-scheme: dark;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #0b1d2a;
    --surface: #12283a;
    --ink: #f5ebdd;
    --muted: #b9c6ce;
    --line: rgba(245, 235, 221, 0.16);
    --link: #8fd0db;
    --green-text: #9bd0a3;
    --brand-teal: #8fd0db;
    --glass: rgba(11, 29, 42, 0.56);
    --glass-border: rgba(245, 235, 221, 0.22);
    --glass-hover: rgba(18, 40, 58, 0.7);
    --glass-fallback: rgba(11, 29, 42, 0.94);
    --glass-highlight: rgba(255, 255, 255, 0.14);
    --shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.7);
    color-scheme: dark;
  }
}

/* ── Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Grain overlay: tactile paper texture across the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}
[data-theme="night"] body::after {
  mix-blend-mode: screen;
  opacity: 0.035;
}
img,
video {
  max-width: 100%;
  display: block;
}
a {
  color: var(--link);
  text-decoration: none;
}
a:hover {
  color: var(--saffron);
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 4px;
}
.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;
}

/* ── Type ── */
.display {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
.display em {
  font-weight: 400;
  font-style: italic;
}
h2.display {
  font-size: clamp(40px, 5vw, 64px);
}
h3.display {
  letter-spacing: -0.01em;
}
.eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-text);
}
.lede {
  margin: 0;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--muted);
}
.italic-note {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100;
  font-style: italic;
  font-weight: 400;
}

/* ── Layout ── */
.wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 720px) {
  .wrap {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .wrap {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.section {
  padding: var(--s10) 0 var(--s8);
}
@media (min-width: 720px) {
  .section {
    padding: var(--s14) 0 var(--s12);
  }
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--s4);
}
@media (min-width: 900px) {
  .section-head {
    margin-bottom: var(--s6);
  }
  .section-head--split {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--s8);
  }
  .section-head--split .lede {
    max-width: 460px;
    flex-shrink: 0;
  }
}
.section-head .display {
  margin-top: 2px;
}

/* ── Glass ── */
.glass {
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  backdrop-filter: blur(20px) saturate(1.25);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-highlight), var(--shadow);
}
.glass-navy {
  background: rgba(11, 29, 42, 0.46);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  backdrop-filter: blur(22px) saturate(1.2);
  border: 1px solid rgba(245, 235, 221, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: var(--sand);
}
/* Fallback for browsers without backdrop-filter (older Firefox etc.) */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass {
    background: var(--glass-fallback);
  }
  .glass-navy {
    background: rgba(11, 29, 42, 0.92);
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -12px rgba(11, 29, 42, 0.5);
}
.btn:active {
  transform: translateY(0);
}
.btn--saffron {
  background: var(--saffron);
  color: var(--navy);
}
.btn--saffron:hover {
  background: var(--saffron-deep);
  color: var(--navy);
}
.btn--teal {
  background: var(--teal);
  color: #fff;
}
.btn--teal:hover {
  background: var(--teal-deep);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover {
  color: var(--ink);
  border-color: var(--brand-teal);
}
.btn--block {
  width: 100%;
}
.btn svg {
  flex-shrink: 0;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  min-height: 44px;
}
.link-arrow svg {
  transition: transform 0.3s var(--ease);
}
.link-arrow:hover svg {
  transform: translateX(4px);
}

/* ── Forms ── */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.field__control {
  position: relative;
}
.field__control > svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-teal);
  pointer-events: none;
}
.input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.input::placeholder {
  color: var(--muted);
  opacity: 0.8;
  font-weight: 400;
}
.field__control > svg + .input {
  padding-left: 42px;
}
.input:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(14, 94, 111, 0.18);
}
select.input {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A5A63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
textarea.input {
  min-height: 128px;
  resize: vertical;
  line-height: 1.5;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 560px) {
  .form-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .form-grid .span-2 {
    grid-column: 1 / -1;
  }
}

/* ── Reveal & motion ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] {
  transition-delay: 0.1s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.2s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .card img,
  .link-arrow svg {
    transition: none !important;
  }
}

/* ── Divider: hand-drawn tea leaf ── */
.divider {
  display: flex;
  justify-content: center;
  padding: 0 16px var(--s8);
  color: var(--green);
}
.divider svg {
  width: min(320px, 80vw);
  height: auto;
}

/* ════════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 100;
  height: 60px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 14px;
  transition: top 0.3s var(--ease), box-shadow 0.3s;
}
.nav.is-scrolled {
  box-shadow: 0 16px 40px -20px rgba(11, 29, 42, 0.5);
}
.nav__logo {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.nav__logo img {
  height: 34px;
  width: auto;
}
[data-theme="night"] .nav__logo img {
  filter: brightness(0) invert(0.96) sepia(0.2);
}
.nav__links {
  display: none;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav__links a:hover {
  color: var(--brand-teal);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.icon-btn:hover {
  border-color: var(--line);
}
.icon-btn .icon-sun {
  display: none;
}
[data-theme="night"] .icon-btn .icon-sun {
  display: block;
}
[data-theme="night"] .icon-btn .icon-moon {
  display: none;
}
.nav__cta {
  display: none;
}
.nav__menu-btn {
  border-color: var(--line);
}
.nav__menu-btn .icon-close {
  display: none;
}
.nav__menu-btn[aria-expanded="true"] .icon-close {
  display: block;
}
.nav__menu-btn[aria-expanded="true"] .icon-menu {
  display: none;
}
.nav__sheet {
  position: fixed;
  top: 84px;
  left: 12px;
  right: 12px;
  z-index: 99;
  border-radius: var(--r-lg);
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.nav__sheet.is-open {
  display: flex;
}
.nav__sheet a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 16px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
}
.nav__sheet a:hover {
  background: var(--surface);
}
.nav__sheet .btn {
  margin-top: 8px;
}
@media (min-width: 900px) {
  .nav {
    top: 24px;
    left: 40px;
    right: 40px;
    height: 68px;
    border-radius: var(--r-lg);
    padding: 0 12px 0 20px;
  }
  .nav.is-scrolled {
    top: 12px;
  }
  .nav__logo img {
    height: 40px;
  }
  .nav__links {
    display: flex;
  }
  .nav__cta {
    display: inline-flex;
    min-height: 44px;
    padding: 0 18px;
  }
  .nav__menu-btn,
  .nav__sheet {
    display: none !important;
  }
}
@media (min-width: 1100px) {
  .nav {
    left: 64px;
    right: 64px;
  }
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  max-height: 960px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--sand);
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: -10% 0;
  z-index: -2;
  will-change: transform;
}
.hero__media img,
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
}
.hero__media video {
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__media video.is-playing {
  opacity: 1;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(11, 29, 42, 0.72) 0%, rgba(11, 29, 42, 0.14) 55%, rgba(11, 29, 42, 0.3) 100%);
}
.hero__inner {
  position: relative;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 136px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__eyebrow {
  margin: 0;
  font-size: 17px;
  opacity: 0.92;
}
.hero h1 {
  font-size: clamp(60px, 9.2vw, 116px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: #fff;
}
.hero__sub {
  margin: 4px 0 0;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  max-width: 520px;
  color: rgba(245, 235, 221, 0.9);
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(245, 235, 221, 0.85);
}
.hero__stats li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__stats li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--saffron);
}
@media (min-width: 900px) {
  .hero {
    min-height: 880px;
    align-items: center;
  }
  .hero__inner {
    padding-top: 160px;
    padding-bottom: 200px;
    max-width: 800px;
    gap: 24px;
  }
  .hero__eyebrow {
    font-size: 22px;
  }
}

/* Search widget: full-width card that overlaps the hero on mobile,
   anchored bottom-right on desktop */
.planner-wrap {
  position: relative;
  z-index: 5;
  margin-top: -96px;
}
.planner {
  border-radius: 22px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.planner__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.planner__head h2 {
  font-size: 26px;
}
.planner__head span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
.planner__note {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.planner .btn {
  min-height: 56px;
  border-radius: 14px;
  font-size: 16px;
}
@media (min-width: 900px) {
  .planner-wrap {
    margin-top: 0;
    height: 0;
  }
  .planner-wrap .wrap {
    display: flex;
    justify-content: flex-end;
  }
  .planner {
    width: 552px;
    border-radius: var(--r-xl);
    padding: 28px;
    transform: translateY(calc(-100% + 96px));
    gap: 16px;
  }
  .planner__head h2 {
    font-size: 28px;
  }
}

/* ════════════════════════════════════════════════════════════
   REGIONS — asymmetric magazine grid
════════════════════════════════════════════════════════════ */
.regions {
  padding-top: var(--s10);
}
@media (min-width: 900px) {
  .regions {
    padding-top: 176px;
  }
}
.region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 160px;
  gap: 12px;
}
.card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--r-lg);
  color: var(--ink);
}
.card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.card:hover img {
  transform: scale(1.045);
}
.card:hover .glass {
  background: var(--glass-hover);
}
.card__label {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: var(--r-sm);
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.card__label h3 {
  font-size: 20px;
  color: var(--ink);
}
.card__label p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}
.card__label svg {
  flex-shrink: 0;
  color: var(--brand-teal);
  transition: transform 0.35s var(--ease);
}
.card:hover .card__label svg {
  transform: translateX(4px);
}
.card--lg .card__label {
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 14px 16px;
  border-radius: 14px;
}
.card--lg .card__label h3 {
  font-size: 26px;
}
.card--lg .card__label p {
  font-size: 13px;
}
.tile {
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.tile p {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}
.tile--map {
  color: var(--ink);
  background: var(--paper);
}
.tile--map svg {
  width: 48px;
  height: auto;
  color: var(--green);
}
.tile--map span {
  font-weight: 600;
  font-size: 15px;
}
.r-cultural {
  grid-column: 1 / -1;
  grid-row: span 2;
}
.r-hill,
.r-south {
  grid-row: span 1;
}
.r-east {
  grid-column: 1 / -1;
}
.r-north {
  grid-column: 1 / -1;
}
.r-quote {
  grid-column: 1 / -1;
  grid-row: span 1;
  min-height: 160px;
}
.r-map {
  display: none;
}
@media (min-width: 720px) {
  .region-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 190px;
    gap: 16px;
  }
  .r-cultural {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
  }
  .r-hill {
    grid-column: 5 / 7;
    grid-row: 1 / 2;
  }
  .r-south {
    grid-column: 5 / 7;
    grid-row: 2 / 3;
  }
  .r-east {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }
  .r-north {
    grid-column: 3 / 5;
    grid-row: 3 / 4;
  }
  .r-quote {
    grid-column: 5 / 7;
    grid-row: 3 / 4;
  }
}
@media (min-width: 1100px) {
  .region-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 208px;
    gap: 24px;
  }
  .r-cultural {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    border-radius: var(--r-xl);
  }
  .r-cultural .card__label {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 18px 22px;
    border-radius: var(--r-md);
  }
  .r-cultural .card__label h3 {
    font-size: 32px;
  }
  .r-cultural .card__label p {
    font-size: 14px;
  }
  .r-hill {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
  }
  .r-south {
    grid-column: 8 / 11;
    grid-row: 2 / 4;
  }
  .r-east {
    grid-column: 11 / 13;
    grid-row: 2 / 3;
  }
  .r-north {
    grid-column: 1 / 5;
    grid-row: 3 / 4;
  }
  .r-quote {
    grid-column: 5 / 8;
    grid-row: 3 / 4;
    padding: 24px;
  }
  .r-quote p {
    font-size: 22px;
  }
  .r-map {
    display: flex;
    grid-column: 11 / 13;
    grid-row: 3 / 4;
  }
}

/* ════════════════════════════════════════════════════════════
   TOURS — glass cards over a tea-hill photo
════════════════════════════════════════════════════════════ */
.tours {
  position: relative;
  overflow: hidden;
  color: var(--sand);
  isolation: isolate;
}
.tours__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.tours__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.tours__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 29, 42, 0.74) 0%, rgba(11, 29, 42, 0.48) 50%, rgba(11, 29, 42, 0.74) 100%);
}
.tours .eyebrow {
  color: var(--saffron);
}
.tours .display {
  color: #fff;
}
.tours .tour .display {
  color: var(--ink);
}
.tours .lede {
  color: rgba(245, 235, 221, 0.85);
}
.tour-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.tour {
  border-radius: 22px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--ink);
}
.tour__media {
  position: relative;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
}
.tour__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.tour:hover .tour__media img {
  transform: scale(1.045);
}
.pill {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.tour__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 2px 6px 6px;
}
.tour__title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.tour__title-row h3 {
  font-size: 26px;
}
.rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.rating svg {
  color: var(--saffron);
}
.tour__route {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.tour__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price__from {
  font-size: 12px;
  color: var(--muted);
}
.price__usd {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}
.price__lkr {
  font-size: 12px;
  color: var(--muted);
}
.tours__fine {
  margin: var(--s3) 0 0;
  font-size: 13px;
  color: rgba(245, 235, 221, 0.75);
}
@media (min-width: 720px) {
  .tour-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (min-width: 1100px) {
  .tour-grid {
    gap: 24px;
  }
  .tour {
    border-radius: var(--r-xl);
    padding: 14px;
    gap: 18px;
  }
  .tour--offset {
    margin-top: 40px;
  }
  .tour__media {
    height: 232px;
    border-radius: var(--r-md);
  }
  .tour__title-row h3 {
    font-size: 30px;
  }
  .tour__route {
    font-size: 15px;
  }
  .price__usd {
    font-size: 30px;
  }
  .price__lkr {
    font-size: 13px;
  }
}

/* ════════════════════════════════════════════════════════════
   ITINERARY — the Classic Loop, day by day
════════════════════════════════════════════════════════════ */
.itin-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}
.days {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  counter-reset: day;
}
.day {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.day__num {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100;
  font-style: italic;
  font-size: 14px;
  color: var(--green-text);
}
.day h3 {
  font-size: 22px;
}
.day__route {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.day p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.day ul {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  line-height: 1.45;
}
.day li {
  padding-left: 18px;
  position: relative;
}
.day li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 1.5px;
  background: var(--green);
}
.covered {
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
}
.covered__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.covered__facts div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.covered__facts dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.covered__facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.covered__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.covered__price .price__usd {
  font-size: 40px;
}
.covered__price small {
  font-size: 14px;
  color: var(--muted);
}
.covered__lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.covered__lists h4 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.covered__lists ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}
.covered__lists li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.covered__lists li svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.covered__lists .yes h4 {
  color: var(--green-text);
}
.covered__lists .no h4 {
  color: var(--muted);
}
@media (min-width: 560px) {
  .days {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .covered__lists {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .itin-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: var(--s5);
    align-items: start;
  }
  .days {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .covered {
    position: sticky;
    top: 112px;
    padding: 28px;
  }
  .covered__lists {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1300px) {
  .days {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ════════════════════════════════════════════════════════════
   EXPERIENCES
════════════════════════════════════════════════════════════ */
.exp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}
.exp-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.exp-intro img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--r-lg);
  margin-top: 8px;
}
.exp-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.exp {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.exp:last-child {
  border-bottom: 1px solid var(--line);
}
.exp svg {
  flex-shrink: 0;
  color: var(--brand-teal);
  width: 28px;
  height: 28px;
}
.exp h3 {
  font-size: 21px;
}
.exp p {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
@media (min-width: 720px) {
  .exp-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 32px;
  }
  .exp:last-child,
  .exp:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }
}
@media (min-width: 1100px) {
  .exp-layout {
    grid-template-columns: 4fr 8fr;
    gap: var(--s6);
  }
  .exp-intro {
    padding-right: 24px;
    gap: 20px;
  }
  .exp-intro img {
    height: 300px;
    margin-top: 16px;
  }
  .exp-list {
    gap: 0 40px;
    padding-top: 12px;
  }
  .exp {
    gap: 18px;
    padding: 24px 0;
  }
  .exp svg {
    width: 32px;
    height: 32px;
  }
  .exp h3 {
    font-size: 24px;
  }
  .exp p {
    font-size: 15px;
  }
}

/* ════════════════════════════════════════════════════════════
   MAP
════════════════════════════════════════════════════════════ */
.map-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.map-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}
.map-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.places {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 0;
  list-style: none;
}
.places a {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  min-height: 56px;
}
.places a:hover,
.places a:focus-visible {
  color: var(--ink);
}
.places a:hover strong,
.places a:focus-visible strong {
  color: var(--brand-teal);
}
.places .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
}
.places strong {
  display: block;
  font-weight: 600;
  font-size: 16px;
}
.places small {
  font-size: 12px;
  color: var(--muted);
}
.places .time {
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-teal);
}
.map-fig {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0;
}
.map-fig svg {
  width: min(330px, 100%);
  height: auto;
  overflow: visible;
}
.map-fig .pin {
  fill: var(--teal);
  stroke: var(--paper);
  stroke-width: 1.5;
  transition: transform 0.3s var(--ease);
  transform-box: fill-box;
  transform-origin: center;
}
.map-fig .pin.is-active {
  fill: var(--saffron);
  transform: scale(1.8);
}
.map-fig text {
  fill: var(--ink);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
}
.map-fig .label-hide {
  display: none;
}
.map-tip {
  position: absolute;
  right: 0;
  top: 40px;
  width: 176px;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.map-tip img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.map-tip strong {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100;
  font-size: 16px;
  font-weight: 600;
  display: block;
}
.map-tip span {
  font-size: 11px;
  line-height: 1.35;
  color: var(--muted);
}
@media (min-width: 720px) {
  .map-fig svg {
    width: min(440px, 100%);
  }
  .map-fig text {
    font-size: 9px;
  }
  .map-fig .label-hide {
    display: block;
  }
  .map-tip {
    width: 240px;
    border-radius: var(--r-md);
    padding: 14px 16px;
    top: 96px;
    right: 24px;
  }
  .map-tip img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
  }
  .map-tip strong {
    font-size: 18px;
  }
  .map-tip span {
    font-size: 12px;
  }
}
@media (min-width: 1100px) {
  .map-layout {
    grid-template-columns: 5fr 7fr;
    gap: var(--s6);
    align-items: start;
  }
  .map-copy {
    gap: 24px;
  }
  .map-fig svg {
    width: min(560px, 100%);
  }
  .places a {
    grid-template-columns: 40px 1fr auto;
    gap: 16px;
    padding: 16px 0;
  }
  .places strong {
    font-size: 17px;
  }
  .places small {
    font-size: 13px;
  }
  .places .time {
    font-size: 14px;
  }
}

/* ════════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.about-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 360px;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-stat {
  position: absolute;
  left: 16px;
  top: 16px;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
}
.about-stat strong {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}
.about-stat span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.about-panel {
  position: relative;
  border-radius: var(--r-xl);
  padding: 24px;
  margin: -48px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-panel h2 {
  font-size: clamp(34px, 4vw, 48px);
}
.about-panel p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.about-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-features svg {
  flex-shrink: 0;
  color: var(--brand-teal);
  margin-top: 2px;
}
.about-features strong {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.about-features span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
@media (min-width: 1000px) {
  .about-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
  }
  .about-photo {
    grid-column: 1 / 8;
    grid-row: 1;
    height: 640px;
    border-radius: var(--r-xl);
  }
  .about-stat {
    left: 24px;
    top: auto;
    bottom: 24px;
    padding: 16px 20px;
  }
  .about-stat strong {
    font-size: 40px;
  }
  .about-panel {
    grid-column: 7 / 13;
    grid-row: 1;
    margin: 0;
    padding: 40px;
    gap: 20px;
  }
  .about-panel p {
    font-size: 16px;
  }
}

/* ════════════════════════════════════════════════════════════
   STORIES
════════════════════════════════════════════════════════════ */
.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}
.story {
  margin: 0;
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.story .stars {
  color: var(--saffron);
  display: flex;
  gap: 2px;
}
.story p {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
}
.story footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}
.story footer strong {
  font-weight: 600;
}
.story footer span {
  color: var(--muted);
}
.story:nth-child(2) {
  margin-left: 24px;
}
.story:nth-child(3) {
  margin-right: 24px;
}
@media (min-width: 900px) {
  .stories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .story {
    padding: 32px;
    border-radius: var(--r-xl);
    gap: 20px;
  }
  .story p {
    font-size: 22px;
  }
  .story:nth-child(2) {
    margin: 56px 0 0;
  }
  .story:nth-child(3) {
    margin: 112px 0 0;
  }
}
.google-reviews {
  margin-top: var(--s8);
  border-top: 1px solid var(--line);
  padding-top: var(--s5);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.google-reviews__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.google-reviews__head h3 {
  font-size: 28px;
}
.google-reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}
.google-reviews__badge .stars {
  color: var(--saffron);
  display: inline-flex;
  gap: 1px;
}

/* ════════════════════════════════════════════════════════════
   TIPS
════════════════════════════════════════════════════════════ */
.tips {
  background: var(--teal);
  color: var(--sand);
  padding: var(--s8) 0;
}
[data-theme="night"] .tips {
  background: var(--teal-deep);
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 20px;
}
.tip {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tip svg {
  color: var(--saffron);
}
.tip h3 {
  font-size: 19px;
  color: var(--sand);
}
.tip p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(245, 235, 221, 0.85);
}
@media (min-width: 900px) {
  .tips {
    padding: 72px 0;
  }
  .tips-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px;
  }
  .tip {
    padding-left: 20px;
    border-left: 1px solid rgba(245, 235, 221, 0.3);
    gap: 14px;
  }
  .tip h3 {
    font-size: 22px;
  }
  .tip p {
    font-size: 15px;
  }
}

/* ════════════════════════════════════════════════════════════
   NEWSLETTER
════════════════════════════════════════════════════════════ */
.news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
}
.news-copy h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.news-copy p {
  margin: 12px 0 0;
}
.news-form {
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
}
.news-form__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-form small {
  font-size: 12px;
  color: var(--muted);
}
@media (min-width: 720px) {
  .news-form__row {
    flex-direction: row;
  }
  .news-form__row .input {
    flex: 1;
  }
}
@media (min-width: 1000px) {
  .news-layout {
    grid-template-columns: 6fr 1fr 5fr;
    align-items: center;
  }
  .news-form {
    grid-column: 3;
    border-radius: var(--r-xl);
    padding: 28px;
  }
  .news-copy p {
    max-width: 480px;
  }
}

/* ════════════════════════════════════════════════════════════
   CONTACT — enquiry form (Formspree)
════════════════════════════════════════════════════════════ */
.contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--sand);
}
.contact__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.contact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}
.contact__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 29, 42, 0.8) 0%, rgba(11, 29, 42, 0.55) 60%, rgba(11, 29, 42, 0.85) 100%);
}
.contact .display {
  color: #fff;
}
.contact .enquiry .display {
  color: var(--ink);
}
.contact .eyebrow {
  color: var(--saffron);
}
.contact .lede {
  color: rgba(245, 235, 221, 0.85);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--sand);
  min-height: 64px;
}
.contact-method:hover {
  color: var(--sand);
  background: rgba(11, 29, 42, 0.6);
}
.contact-method svg {
  flex-shrink: 0;
  color: var(--saffron);
}
.contact-method small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 235, 221, 0.7);
  font-weight: 600;
}
.contact-method strong {
  font-weight: 600;
  font-size: 15px;
}
.contact-note {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245, 235, 221, 0.8);
  padding-left: 14px;
  border-left: 2px solid var(--saffron);
}
.enquiry {
  border-radius: var(--r-xl);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--ink);
}
.enquiry__head h3 {
  font-size: 26px;
}
.enquiry__head p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.form-status {
  display: none;
  padding: 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
  text-align: center;
  line-height: 1.45;
}
.form-status.is-ok {
  display: block;
  background: rgba(58, 125, 68, 0.14);
  border: 1px solid rgba(58, 125, 68, 0.4);
  color: var(--green-text);
}
.form-status.is-err {
  display: block;
  background: rgba(180, 30, 30, 0.1);
  border: 1px solid rgba(180, 30, 30, 0.35);
  color: #9b2a2a;
}
[data-theme="night"] .form-status.is-err {
  color: #ff9d9d;
}
@media (min-width: 1000px) {
  .contact-layout {
    grid-template-columns: 5fr 7fr;
    gap: var(--s8);
    align-items: start;
  }
  .enquiry {
    padding: 32px;
    gap: 14px;
  }
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: var(--sand);
  padding: var(--s8) 0 96px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand img {
  height: 40px;
  width: auto;
  align-self: flex-start;
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 10px;
}
.footer-brand p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #b9c6ce;
  max-width: 360px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-contact a {
  color: var(--sand);
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 15px;
}
.footer-contact a:hover {
  color: var(--saffron);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 16px;
}
.footer-col h3 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9fb0ba;
}
.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: var(--sand);
  font-size: 15px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
}
.footer-col a:hover {
  color: var(--saffron);
}
.footer-bar {
  margin-top: var(--s5);
  padding-top: 20px;
  border-top: 1px solid rgba(245, 235, 221, 0.16);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: #9fb0ba;
}
.footer-bar div {
  display: flex;
  gap: 20px;
}
.footer-bar a {
  color: #9fb0ba;
}
.footer-bar a:hover {
  color: var(--sand);
}
@media (min-width: 720px) {
  .footer-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1000px) {
  .footer {
    padding: var(--s12) 0 var(--s6);
  }
  .footer-bar {
    padding-right: 88px;
  }
  .footer-grid {
    grid-template-columns: 4fr 8fr;
    gap: var(--s8);
  }
  .footer-brand img {
    height: 44px;
  }
  .footer-brand p {
    font-size: 15px;
  }
}

/* ── WhatsApp float ── */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  transition: transform 0.2s var(--ease);
}
.wa-float:hover {
  transform: translateY(-2px);
  color: #fff;
}
@media (min-width: 900px) {
  .wa-float {
    right: 24px;
    bottom: 24px;
  }
}

/* ════════════════════════════════════════════════════════════
   SHARED PAGE CHROME (inner pages)
════════════════════════════════════════════════════════════ */
section[id],
header[id],
aside[id] {
  scroll-margin-top: 96px;
}
.nav__links a {
  position: relative;
}
.nav__links a[aria-current="page"] {
  color: var(--brand-teal);
}
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1.5px;
  background: var(--saffron);
}
.nav__sheet a[aria-current="page"] {
  color: var(--brand-teal);
}
.section--tight {
  padding-top: var(--s5);
}
.section--flush {
  padding-top: 0;
}
@media (min-width: 720px) {
  .section--tight {
    padding-top: var(--s8);
  }
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fade-in {
  animation: rise 0.5s var(--ease) both;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    animation: none;
  }
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 440px;
  height: 62svh;
  max-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--sand);
  isolation: isolate;
}
.page-hero--short {
  height: auto;
  min-height: 400px;
}
.page-hero--tall {
  min-height: 560px;
  height: 78svh;
  max-height: 820px;
}
.page-hero__media {
  position: absolute;
  inset: -10% 0;
  z-index: -2;
  will-change: transform;
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(11, 29, 42, 0.78) 0%, rgba(11, 29, 42, 0.22) 60%, rgba(11, 29, 42, 0.38) 100%);
}
.page-hero__inner {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-hero--facts .page-hero__inner {
  padding-bottom: 96px;
}
.page-hero h1 {
  font-size: clamp(48px, 7.4vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #fff;
}
.page-hero .eyebrow {
  color: var(--saffron);
}
.page-hero .lede {
  color: rgba(245, 235, 221, 0.9);
  max-width: 580px;
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 4px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  color: rgba(245, 235, 221, 0.8);
}
.crumbs a {
  color: rgba(245, 235, 221, 0.95);
}
.crumbs a:hover {
  color: var(--saffron);
}
.crumbs li + li::before {
  content: "/";
  margin-right: 8px;
  opacity: 0.6;
}
@media (min-width: 900px) {
  .page-hero__inner {
    padding-bottom: 72px;
  }
  .page-hero--facts .page-hero__inner {
    padding-bottom: 128px;
  }
}

/* Facts bar overlapping the hero */
.facts-wrap {
  position: relative;
  z-index: 5;
  margin-top: -64px;
}
.facts {
  border-radius: var(--r-lg);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  margin: 0;
  color: var(--ink);
}
.facts div,
.fact-list div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.facts dt,
.fact-list dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.facts dd,
.fact-list dd {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
}
@media (min-width: 900px) {
  .facts-wrap {
    margin-top: -80px;
  }
  .facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 22px 28px;
    border-radius: var(--r-xl);
  }
}

/* ════════════════════════════════════════════════════════════
   DESTINATIONS LISTING
════════════════════════════════════════════════════════════ */
.listing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.filters {
  border-radius: var(--r-xl);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: var(--ink);
}
.filters form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.filters__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.filters__head h2 {
  font-size: 26px;
  margin-right: auto;
}
.filters fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.filters legend {
  padding: 0;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.filters__note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  position: relative;
  display: inline-flex;
}
.chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}
.chip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  pointer-events: none;
}
.chip:hover span {
  border-color: var(--brand-teal);
}
.chip input:checked + span {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
[data-theme="night"] .chip input:checked + span {
  background: #8fd0db;
  border-color: #8fd0db;
  color: var(--navy);
}
.chip input:focus-visible + span {
  outline: 3px solid var(--saffron);
  outline-offset: 2px;
}
.link-btn {
  background: none;
  border: 0;
  padding: 0 4px;
  min-height: 44px;
  color: var(--link);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.link-btn:hover {
  color: var(--saffron);
}
.results-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.results-bar p {
  margin: 0 auto 0 0;
  font-weight: 600;
}
.results-bar .input {
  width: auto;
  min-height: 44px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 15px;
}
.count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--saffron);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}
.count-badge[hidden] {
  display: none;
}
.dest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.dest-card {
  border-radius: 22px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--ink);
  transition: transform 0.35s var(--ease), background 0.3s;
}
.dest-card:hover {
  color: var(--ink);
  transform: translateY(-3px);
  background: var(--glass-hover);
}
.dest-card__media {
  position: relative;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
}
.dest-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.dest-card:hover .dest-card__media img {
  transform: scale(1.045);
}
.dest-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 6px 6px;
  flex-grow: 1;
}
.dest-card__body h3 {
  font-size: 28px;
}
.dest-card__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: auto 0 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.meta svg {
  color: var(--brand-teal);
  flex-shrink: 0;
}
.empty {
  grid-column: 1 / -1;
  padding: 48px 24px;
  border-radius: var(--r-xl);
  border: 1px dashed var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.empty h3 {
  font-size: 28px;
}
.empty p {
  margin: 0;
  color: var(--muted);
  max-width: 420px;
}
.empty__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.scrim {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(11, 29, 42, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 999px) {
  .filters {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: 8px;
    z-index: 120;
    max-height: 84svh;
    overflow: auto;
    overscroll-behavior: contain;
    background: var(--glass-fallback);
    transform: translateY(110%);
    visibility: hidden;
    transition: transform 0.35s var(--ease), visibility 0s linear 0.35s;
  }
  .filters.is-open {
    transform: none;
    visibility: visible;
    transition: transform 0.35s var(--ease), visibility 0s;
  }
  .filters__apply {
    position: sticky;
    bottom: 0;
  }
}
@media (min-width: 640px) {
  .dest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (min-width: 1000px) {
  .listing {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }
  .filters {
    position: sticky;
    top: 112px;
  }
  .filters-toggle,
  .filters__close,
  .filters__apply {
    display: none !important;
  }
}
@media (min-width: 1320px) {
  .dest-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

/* ════════════════════════════════════════════════════════════
   DETAIL PAGES (destination + tour)
════════════════════════════════════════════════════════════ */
.detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1100px) {
  .detail {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 64px;
    align-items: start;
  }
  .detail--tour {
    grid-template-columns: minmax(0, 1fr) 380px;
  }
}
.prose p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}
.prose--lead p:first-child {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100;
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 24px;
}
.block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.block h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  margin-top: -8px;
}
.todo {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: todo;
  display: grid;
  grid-template-columns: 1fr;
}
.todo li {
  counter-increment: todo;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.todo li::before {
  content: counter(todo, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--green-text);
  padding-top: 3px;
}
.todo h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.todo p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}
@media (min-width: 720px) {
  .todo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
  }
}
.months {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.months li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.months .bar,
.months-key i {
  display: block;
  width: 100%;
  height: 44px;
  border-radius: 8px;
}
.m2 .bar,
.months-key .k2 {
  background: var(--green);
}
.m1 .bar,
.months-key .k1 {
  background: rgba(58, 125, 68, 0.32);
}
.m0 .bar,
.months-key .k0 {
  background: transparent;
  border: 1.5px dashed var(--line);
}
.months-key {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--muted);
}
.months-key li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.months-key i {
  width: 18px;
  height: 12px;
  border-radius: 4px;
}
@media (min-width: 560px) {
  .months {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
.aside-card {
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--ink);
}
.aside-card h2 {
  font-size: 28px;
}
.aside-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}
.fact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fact-list dd {
  font-weight: 500;
  font-size: 14px;
}
.aside-card .link-arrow {
  align-self: center;
  font-size: 15px;
}
@media (min-width: 1100px) {
  .aside-card,
  .booking {
    position: sticky;
    top: 112px;
  }
}
.nearby-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.nearby-grid .card {
  height: 260px;
}
@media (min-width: 640px) {
  .nearby-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .nearby-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .nearby-grid .card {
    height: 300px;
    border-radius: var(--r-xl);
  }
}
.tour--custom .tour__body {
  height: 100%;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 12px 12px;
}
.tour--custom h3 {
  font-size: 28px;
  margin: 6px 0 10px;
}
.tour--custom .eyebrow {
  color: var(--green-text);
}
.tour--custom .btn {
  align-self: flex-start;
}

/* Timeline */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 40px;
  width: 1.5px;
  background-image: linear-gradient(var(--brand-teal) 55%, transparent 0);
  background-size: 1.5px 9px;
}
.tl {
  position: relative;
  padding: 0 0 36px 60px;
}
.tl:last-child {
  padding-bottom: 0;
}
.tl__dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--brand-teal);
}
.tl__day {
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 2px;
}
.tl h3 {
  font-size: clamp(24px, 2.4vw, 30px);
}
.tl__route {
  margin: 6px 0 10px !important;
  font-size: 14px !important;
  font-weight: 600;
  color: var(--green-text) !important;
}
.tl p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 640px;
}
.ticks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  line-height: 1.45;
}
.ticks li {
  padding-left: 18px;
  position: relative;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 1.5px;
  background: var(--green);
}
@media (min-width: 560px) {
  .covered__lists--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.covered__lists--wide ul {
  font-size: 15px;
}

/* Stops */
.stops {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.stop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  min-height: 52px;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.stop:hover {
  color: var(--ink);
  border-color: var(--brand-teal);
  transform: translateY(-1px);
}
.stop img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 10px;
}
.gallery button {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--line);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery button:hover img {
  transform: scale(1.05);
}
.gallery button:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
@media (min-width: 720px) {
  .gallery {
    grid-auto-rows: 170px;
    gap: 12px;
  }
  .gallery--5 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .gallery--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Lightbox (glass modal) */
.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  width: min(1100px, 94vw);
  max-width: none;
  color: var(--sand);
}
.lightbox::backdrop {
  background: rgba(11, 29, 42, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.lightbox__frame {
  border-radius: var(--r-xl);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lightbox__frame img {
  width: 100%;
  max-height: 72svh;
  object-fit: contain;
  border-radius: 14px;
}
.lightbox__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0 4px 0 8px;
}
.lightbox__bar p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}
.lightbox__bar div {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.lightbox .icon-btn {
  color: var(--sand);
  border-color: rgba(245, 235, 221, 0.24);
}
.lightbox .icon-btn:hover {
  border-color: var(--sand);
}

/* Booking panel */
.booking {
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--ink);
}
.booking__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.booking__price .price__usd {
  font-size: 48px;
  line-height: 1;
}
.booking__price small {
  font-size: 14px;
  color: var(--muted);
}
.booking .price__lkr {
  margin-top: -6px;
  font-size: 13px;
}
.booking__calc {
  margin: 4px 0 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 8px;
  font-size: 14px;
}
.booking__calc div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.booking__calc dt {
  color: var(--muted);
}
.booking__calc dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}
.booking__calc .total {
  font-size: 16px;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
}
.booking__calc .total dt {
  color: var(--ink);
  font-weight: 600;
}
.booking .link-arrow {
  align-self: center;
  font-size: 15px;
}
.book-bar {
  position: fixed;
  left: 12px;
  right: 84px;
  bottom: 16px;
  z-index: 80;
  border-radius: var(--r-lg);
  padding: 8px 8px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.book-bar.is-hidden {
  transform: translateY(160%);
  opacity: 0;
  pointer-events: none;
}
.book-bar div {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.book-bar strong {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100;
  font-size: 22px;
  font-weight: 600;
}
.book-bar small {
  font-size: 12px;
  color: var(--muted);
}
.book-bar .btn {
  min-height: 44px;
  padding: 0 16px;
}
@media (min-width: 1100px) {
  .book-bar {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════
   ABOUT + CONTACT
════════════════════════════════════════════════════════════ */
.intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.intro__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pull {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.25;
  color: var(--ink);
}
@media (min-width: 1000px) {
  .intro {
    grid-template-columns: 5fr 7fr;
    gap: 64px;
  }
}
@media (min-width: 1100px) {
  .exp-list--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .exp-list--3 .exp {
    border-bottom: 1px solid var(--line);
  }
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 20px;
  margin: 0;
}
.stats div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
  border-left: 1px solid rgba(245, 235, 221, 0.3);
}
.stats dt {
  order: 2;
  font-size: 14px;
  color: rgba(245, 235, 221, 0.85);
}
.stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100;
  font-weight: 600;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  color: var(--sand);
}
@media (min-width: 900px) {
  .stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  counter-reset: step;
}
.step {
  counter-increment: step;
  border-radius: var(--r-lg);
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--green-text);
}
.step h3 {
  font-size: 23px;
}
.step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}
@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .steps--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
  .steps--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .steps .step:nth-child(even) {
    margin-top: 32px;
  }
}
.faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  max-width: 880px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 16px 0;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100;
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary svg {
  flex-shrink: 0;
  color: var(--brand-teal);
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary svg {
  transform: rotate(45deg);
}
.faq details p {
  margin: 0 0 20px;
  max-width: 720px;
  line-height: 1.65;
  color: var(--muted);
}
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--r-xl);
  padding: 48px 16px;
  display: flex;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(11, 29, 42, 0.55), rgba(11, 29, 42, 0.08));
}
.cta-band__panel {
  border-radius: var(--r-lg);
  padding: 24px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--ink);
}
.cta-band__panel h2 {
  font-size: clamp(32px, 4vw, 48px);
}
.cta-band__panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
@media (min-width: 900px) {
  .cta-band {
    padding: 96px 64px;
  }
  .cta-band__panel {
    padding: 36px;
    border-radius: var(--r-xl);
  }
}
.contact--page {
  padding-top: var(--s8);
}
.noscript {
  margin: 24px 0;
  padding: 16px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--surface);
}

/* ════════════════════════════════════════════════════════════
   MOBILE PERFORMANCE
════════════════════════════════════════════════════════════ */
@media (max-width: 899px) {
  /* The portrait mobile video fills the hero exactly, so centre it */
  .hero__media video {
    object-position: 50% 50%;
  }
  /* No parallax on phones, so the media does not need the extra bleed */
  .hero__media,
  .page-hero__media {
    inset: 0;
    will-change: auto;
  }
  /* A fixed full-page blend layer repaints on every scroll frame on phones */
  body::after {
    display: none;
  }
}

