/* ============================================================
   Bright Travel Agency  —  built on the Kemp-IT framework
   ------------------------------------------------------------
   Palette derived from the Bright Travel logo:
     orange #f7b100 · green #74c8b1 · blue #267ac4 · light blue #51b8ea
   Feel: Mediterranean sunlight — warm stucco neutrals, sea blues,
   a sun-orange CTA. Type: Newsreader (warm editorial serif) + Outfit
   (geometric sans echoing the logo's rounded letterforms).
   Deliberately divergent from Holt-Travel (moody navy/teal, Fraunces+
   Inter) and Adventure-Vacations (pine/terracotta, Cormorant+Mulish).
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand — from the logo */
  --deep:        #17568b;   /* deepened brand blue — headings, dark panels */
  --deeper:      #0d3a5f;
  --sun:         #f7b100;   /* brand orange — primary CTA (takes dark text) */
  --sun-soft:    #ffc74a;
  --sun-light:   #ffe6b0;
  --sky:         #51b8ea;   /* brand light blue — accents, eyebrows */
  --sky-light:   #a9ddf5;
  --mint:        #74c8b1;   /* brand green — tertiary accent */
  --sea:         #267ac4;   /* brand medium blue — links, hovers */

  /* Neutrals (warm, sunlit) */
  --ink:         #1c2b39;
  --ink-soft:    #4e6373;
  --paper:       #ffffff;
  --mist:        #fdf7ec;
  --mist-2:      #f6ecd9;
  --line:        #ecdfc6;

  /* Accent-derived (used by component rules) */
  --sun-ink:     #3a2a00;   /* readable text on --sun */
  --sun-hover:   #e4a200;
  --sun-shadow:  rgba(191, 136, 0, .34);
  --sun-shadow-2:rgba(191, 136, 0, .44);

  /* Type */
  --font-head: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Metrics */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(23, 86, 139, .08);
  --shadow:    0 14px 38px rgba(23, 86, 139, .16);
  --shadow-lg: 0 30px 70px rgba(13, 58, 95, .30);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.08; color: var(--deep); letter-spacing: 0; }
h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.75rem); }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700;
  font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sun);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--sky); border-radius: 2px; }
.panel--dark .eyebrow { color: var(--sky-light); }
.panel--dark .eyebrow::before { background: var(--sun); }

.script-accent { font-style: italic; color: var(--sun); font-weight: 600; }
.panel--dark .script-accent { color: var(--sun-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.7rem; border-radius: 999px;
  font-weight: 700; font-size: .92rem; letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--sun); color: var(--sun-ink); box-shadow: 0 8px 20px var(--sun-shadow); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px var(--sun-shadow-2); background: var(--sun-hover); }
.btn--solid { background: var(--deep); color: #fff; }
.btn--solid:hover { background: var(--deeper); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--deep); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--sun); color: var(--sun); }
.btn--light { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--light:hover { background: #fff; color: var(--deep); }
.btn--sky { background: var(--sky); color: var(--deeper); }
.btn--sky:hover { background: #2f9fd8; transform: translateY(-2px); }

.textlink { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--sun); }
.textlink svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* ============================================================
   HEADER  —  top bar + masthead + always-on drawer
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 60; }

.topbar {
  background: var(--deeper); color: #cfe0f0;
  font-size: .82rem;
}
.topbar__inner {
  max-width: var(--maxw); margin: 0 auto; padding: .5rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.topbar a { display: inline-flex; align-items: center; gap: .45rem; color: #cfe0f0; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; }
.topbar__contact { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar__social { display: flex; gap: .6rem; }
.topbar__social a {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.08); justify-content: center;
}
.topbar__social a:hover { background: var(--sun); }
.topbar__social svg { width: 14px; height: 14px; }

.masthead {
  background: rgba(255,255,255,.93);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.masthead__inner {
  max-width: var(--maxw); margin: 0 auto; padding: .55rem var(--gutter);
  display: flex; align-items: center; gap: 1rem;
}
.hamburger {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .6rem .95rem; border-radius: 999px;
  background: var(--deep); color: #fff; font-weight: 700; font-size: .9rem;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.hamburger:hover { background: var(--deeper); transform: translateY(-1px); }
.hamburger__bars { display: grid; gap: 4px; width: 20px; }
.hamburger__bars span { height: 2px; background: currentColor; border-radius: 2px; display: block; }
.hamburger__label { letter-spacing: .04em; }

.brand { display: flex; align-items: center; gap: .9rem; }
.brand img { height: 62px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.55rem; color: var(--deep); white-space: nowrap; }
.brand__tag { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--sun); margin-top: 4px; font-family: var(--font-body); font-weight: 700; }

.masthead__right { margin-left: auto; display: flex; align-items: center; gap: .85rem; }
.masthead__cta { display: inline-flex; }

/* Drawer (half-page, always on) ------------------------- */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(9,32,54, .55); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.drawer {
  position: fixed; top: 0; right: 0; left: auto; z-index: 100;
  width: min(440px, 88vw); height: 100dvh;
  background: linear-gradient(170deg, var(--deep) 0%, var(--deeper) 100%);
  color: #e6eef7;
  transform: translateX(104%);
  transition: transform .42s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
body.nav-open, body.is-locked { overflow: hidden; }
body.nav-open .drawer { transform: translateX(0); }
body.nav-open .drawer-overlay { opacity: 1; visibility: visible; }

.drawer__head {
  padding: 1.6rem 1.8rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.drawer__brand { display: flex; flex-direction: column; gap: .15rem; }
.drawer__brand span { font-family: var(--font-head); font-size: 1.5rem; color: #fff; font-weight: 700; line-height: 1; }
.drawer__brand small { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--sky-light); font-family: var(--font-body); font-weight: 700; }
.drawer__close {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s; flex: none;
}
.drawer__close:hover { background: var(--sun); transform: rotate(90deg); }
.drawer__close svg { width: 20px; height: 20px; }

.drawer__nav { flex: 1; overflow-y: auto; padding: 1rem .9rem; }
.drawer__nav > a, .drawer__group > a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .72rem 1rem; border-radius: 12px;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; color: #e8f0f8;
  transition: background .22s var(--ease), color .22s, padding-left .22s var(--ease);
}
.drawer__nav a .chev { width: 18px; height: 18px; opacity: 0; transform: translateX(-6px); transition: .25s var(--ease); color: var(--sky); flex: none; }
.drawer__nav > a:hover, .drawer__nav a.is-active, .drawer__group > a:hover {
  background: rgba(255,255,255,.08); color: #fff; padding-left: 1.35rem;
}
.drawer__nav > a:hover .chev, .drawer__nav a.is-active .chev, .drawer__group > a:hover .chev { opacity: 1; transform: translateX(0); }
.drawer__nav a.is-active { color: var(--sky-light); }
/* Sub links (Favorite Trips / Vacations groups) */
.drawer__sub { display: grid; padding: .1rem .4rem .5rem 1.5rem; }
.drawer__sub a {
  display: block; padding: .42rem .7rem; border-radius: 9px;
  font-size: .92rem; color: #b3c7db; font-weight: 600;
  transition: color .2s, background .2s, padding-left .2s;
}
.drawer__sub a:hover { color: #fff; background: rgba(255,255,255,.06); padding-left: 1rem; }

.drawer__foot {
  padding: 1.4rem 1.8rem 1.8rem;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}
.drawer__foot h4 { color: #fff; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; margin-bottom: .9rem; }
.drawer__foot ul { display: grid; gap: .6rem; }
.drawer__foot li { display: flex; align-items: flex-start; gap: .7rem; font-size: .92rem; color: #cfe0f0; }
.drawer__foot li svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--sky); }
.drawer__foot a:hover { color: #fff; }
.drawer__social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.drawer__social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: inline-flex; align-items: center; justify-content: center; transition: background .25s, transform .25s;
}
.drawer__social a:hover { background: var(--sun); transform: translateY(-2px); }
.drawer__social svg { width: 17px; height: 17px; }

/* ============================================================
   PANELS  (full-width sections)
   ============================================================ */
.panel { padding: clamp(3.5rem, 8vw, 7rem) 0; position: relative; }
.panel__inner { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.panel--mist { background: var(--mist); }
.panel--dark { background: linear-gradient(160deg, var(--deep) 0%, var(--deeper) 100%); color: #dbe6f1; }
.panel--dark p { color: #b2c5d6; }
.panel--dark .panel__head h1, .panel--dark .panel__head h2, .panel--dark .panel__head h3 { color: #fff; }
.panel--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.panel__head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.panel__head.center { margin-inline: auto; text-align: center; }
.panel__head .eyebrow { margin-bottom: 1rem; }
.panel__head p { margin-top: 1rem; }

.prose { max-width: 760px; }
.prose p + p { margin-top: 1.1rem; }
.prose h3 { margin: 2rem 0 .8rem; }
.prose ul.bullets { display: grid; gap: .6rem; margin: 1.1rem 0; }
.prose ul.bullets li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink); }
.prose ul.bullets li::before { content: ""; width: 8px; height: 8px; margin-top: .6rem; border-radius: 50%; background: var(--sun); flex: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: clamp(560px, 88vh, 840px);
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(9,32,54,.86) 0%, rgba(9,32,54,.5) 46%, rgba(9,32,54,.12) 100%),
    linear-gradient(0deg, rgba(9,32,54,.55), rgba(9,32,54,0) 40%);
}
.hero__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.hero__content { max-width: 660px; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: italic; color: var(--sky-light); }
.hero__lead { color: #dfe9f2; font-size: clamp(1.1rem, 1.7vw, 1.35rem); margin-top: 1.3rem; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.6rem;
  padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.18);
}
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust b { font-family: var(--font-head); font-size: 1.7rem; color: #fff; font-weight: 700; line-height: 1; }
.hero__trust span { font-size: .82rem; letter-spacing: .04em; color: #b3c7db; margin-top: .3rem; }

/* ============================================================
   CARDS  (inside panels)
   ============================================================ */
.cards { display: grid; gap: clamp(1.1rem, 2.4vw, 1.8rem); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

/* Media card (image with overlay) */
.card-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.card-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform .8s var(--ease);
}
.card-media::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(9,32,54,.94) 0%, rgba(9,32,54,.80) 34%, rgba(9,32,54,.42) 62%, rgba(9,32,54,.10) 100%);
  transition: background .4s var(--ease);
}
.card-media:hover img { transform: scale(1.07); }
.card-media:hover::after { background: linear-gradient(to top, rgba(13,58,95,.94) 12%, rgba(247,177,0,.38) 60%, rgba(9,32,54,.1) 100%); }
.card-media__body { padding: 1.5rem 1.6rem 1.7rem; position: relative; }
.card-media__kicker { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sky-light); font-weight: 700; }
.card-media h3 { color: #fff; margin-top: .35rem; }
.card-media p { color: #cfdcea; font-size: .92rem; margin-top: .5rem; }
.card-media__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; font-weight: 700; font-size: .9rem; color: #fff; }
.card-media__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.card-media:hover .card-media__link svg { transform: translateX(5px); }
.card-media--tall { min-height: 420px; }

/* Destination card (caption below image) */
.card-dest {
  border-radius: var(--radius-lg); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.card-dest:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-dest__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card-dest__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card-dest:hover .card-dest__media img { transform: scale(1.08); }
.card-dest__flag {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  background: rgba(255,255,255,.93); color: var(--deep);
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px;
}
.card-dest__flag.soon { background: var(--sky); color: var(--deeper); }
.card-dest__body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card-dest__body h3 { font-size: 1.5rem; }
.card-dest__body p { font-size: .92rem; margin-top: .45rem; flex: 1; }
.card-dest__body .textlink { margin-top: 1rem; }

/* Plain feature card */
.card-feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.panel--mist .card-feature { background: #fff; }
.card-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: transparent; }
.card-feature__icon {
  width: 52px; height: 52px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--mist-2); color: var(--sun); margin-bottom: 1.1rem;
}
.card-feature__icon svg { width: 26px; height: 26px; }
.card-feature h3 { font-size: 1.3rem; }
.card-feature p { font-size: .94rem; margin-top: .5rem; color: var(--ink-soft); }
.panel--dark .card-feature { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.panel--dark .card-feature h3 { color: #fff; }
.panel--dark .card-feature p { color: #b2c5d6; }
.panel--dark .card-feature__icon { background: rgba(255,255,255,.1); color: var(--sky-light); }

/* ============================================================
   SPLIT / WELCOME
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 5/6; object-fit: cover; width: 100%; }
.split__badge {
  position: absolute; bottom: -26px; right: -18px;
  background: var(--sky); color: var(--deeper);
  border-radius: 18px; padding: 1.05rem 1.3rem; box-shadow: var(--shadow);
  text-align: center; max-width: 210px;
}
.split__badge b { font-family: var(--font-head); font-size: 1.9rem; display: block; line-height: 1; font-weight: 700; }
.split__badge span { font-size: .78rem; font-weight: 700; letter-spacing: .04em; }
.split__body h2 { margin-bottom: 1.1rem; }
.split__body p + p { margin-top: 1rem; }
.checklist { display: grid; gap: .7rem; margin: 1.5rem 0; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink); font-weight: 600; }
.checklist li svg { width: 22px; height: 22px; color: var(--sun); flex: none; margin-top: 2px; }
.split__cst { font-size: .82rem; color: var(--ink-soft); margin-top: 1.4rem; }

/* ============================================================
   NEWSLETTER strip
   ============================================================ */
.newsletter {
  background: linear-gradient(135deg, var(--deep) 0%, var(--deeper) 100%);
  border-radius: var(--radius-lg); overflow: hidden; color: #fff;
  padding: clamp(2.2rem, 5vw, 3.4rem) clamp(1.6rem, 4vw, 3.2rem);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center;
}
.newsletter h2 { color: #fff; }
.newsletter p { color: #c2d4e6; margin-top: .7rem; }
.newsletter .sf-note { margin-top: 1rem; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #d3e1ee; }
.newsletter .sf-note b { color: #fff; }
.news-form { display: flex; gap: .7rem; flex-wrap: wrap; }
.news-form input {
  flex: 1; min-width: 200px; font: inherit; font-size: .98rem;
  padding: .9rem 1.1rem; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.95); color: var(--ink);
}
.news-form input:focus { outline: none; box-shadow: 0 0 0 4px rgba(199,148,63,.4); }
.news-msg { margin-top: 1rem; font-size: .9rem; color: var(--sky-light); font-weight: 600; }

/* ============================================================
   CTA banner
   ============================================================ */
.cta {
  position: relative; isolation: isolate;
  border-radius: var(--radius-lg); overflow: hidden;
  padding: clamp(2.6rem, 6vw, 4.5rem) clamp(1.6rem, 5vw, 4rem);
  color: #fff; text-align: center;
}
.cta__bg { position: absolute; inset: 0; z-index: -2; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(13,58,95,.92), rgba(38,122,196,.70)); }
.cta h2 { color: #fff; max-width: 640px; margin: 0 auto; }
.cta p { color: #e8f0f8; max-width: 560px; margin: 1rem auto 0; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative; color: #fff; padding: clamp(4rem, 11vw, 8rem) 0 clamp(3rem, 7vw, 5rem);
  display: flex; align-items: center; overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(9,32,54,.86), rgba(9,32,54,.45)); }
.page-hero__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.page-hero h1 { color: #fff; max-width: 820px; }
.page-hero p { color: #d8e5f1; max-width: 600px; margin-top: 1rem; font-size: 1.1rem; }
.page-hero .eyebrow { color: var(--sky-light); margin-bottom: 1rem; }
.breadcrumb { font-size: .85rem; color: #a6c0d8; margin-bottom: 1rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: #fff; }

/* ============================================================
   ITINERARY timeline (Favorite Trips)
   ============================================================ */
.itinerary { display: grid; gap: 0; max-width: 820px; }
.itin-step { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; padding-bottom: 2rem; position: relative; }
.itin-step:not(:last-child)::before { content: ""; position: absolute; left: 23px; top: 48px; bottom: 0; width: 2px; background: var(--line); }
.itin-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--deep); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-head);
  font-weight: 700; font-size: 1.25rem; flex: none; box-shadow: 0 6px 16px rgba(13,58,95,.2); z-index: 1;
}
.itin-step h3 { font-size: 1.4rem; }
.itin-step .itin-place { color: var(--sun); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; display: block; margin-bottom: .2rem; }
.itin-step p { margin-top: .5rem; }

/* Inclusions list (two-col) */
.incl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem 2rem; margin-top: 1rem; }
.incl-grid li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink); font-weight: 600; font-size: .96rem; }
.incl-grid li svg { width: 20px; height: 20px; color: var(--deep); flex: none; margin-top: 3px; }

/* ============================================================
   SPECIALTY page bits — facts, things-to-do lists
   ============================================================ */
.fact-row { display: flex; flex-wrap: wrap; gap: 2.4rem; margin: 1.6rem 0 0; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.fact-row div { display: flex; flex-direction: column; }
.fact-row b { font-family: var(--font-head); font-size: 1.5rem; color: var(--deep); font-weight: 700; line-height: 1; }
.fact-row span { font-size: .8rem; letter-spacing: .06em; color: var(--ink-soft); margin-top: .35rem; text-transform: uppercase; }

.info-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); }
.info-block h3 { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; font-size: 1.4rem; }
.info-block h3 svg { width: 24px; height: 24px; color: var(--sun); }
.info-list { display: grid; gap: .85rem; }
.info-list li { display: grid; gap: .15rem; padding-bottom: .85rem; border-bottom: 1px dashed var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-list b { color: var(--deep); font-family: var(--font-head); font-size: 1.18rem; font-weight: 600; }
.info-list span { color: var(--ink-soft); font-size: .92rem; }
.panel--dark .info-list li { border-color: rgba(255,255,255,.14); }
.panel--dark .info-list b { color: #fff; }
.panel--dark .info-list span { color: #b2c5d6; }

/* Difficulty badge (Tours) */
.diff { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; }
.diff__dots { display: inline-flex; gap: 3px; }
.diff__dots i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: .25; }
.diff__dots i.on { opacity: 1; }
.diff--easy   { background: #e7f0e9; color: #2f6b46; }
.diff--moderate { background: #fbf0e2; color: #a9701f; }
.diff--active { background: #f7e6dd; color: #b1502c; }

/* ============================================================
   GALLERY + LIGHTBOX
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery--4 { grid-template-columns: repeat(4, 1fr); }
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1/1;
  cursor: pointer; box-shadow: var(--shadow-sm); background: var(--mist-2);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,32,54,.35), transparent 55%);
  opacity: 0; transition: opacity .3s;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__zoom {
  position: absolute; right: .7rem; bottom: .7rem; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--deep);
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(6px); transition: .3s var(--ease);
}
.gallery__item:hover .gallery__zoom { opacity: 1; transform: translateY(0); }
.gallery__zoom svg { width: 18px; height: 18px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem);
  background: rgba(8, 20, 16, .9); backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox__img { max-width: 100%; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; transition: background .2s;
}
.lightbox__btn:hover { background: var(--sun); }
.lightbox__btn svg { width: 26px; height: 26px; }
.lightbox__prev { left: clamp(.6rem, 3vw, 2rem); }
.lightbox__next { right: clamp(.6rem, 3vw, 2rem); }
.lightbox__close { top: clamp(.8rem, 3vw, 1.6rem); right: clamp(.8rem, 3vw, 1.6rem); transform: none; width: 46px; height: 46px; }
.lightbox__count { position: absolute; bottom: clamp(.8rem, 3vw, 1.6rem); left: 50%; transform: translateX(-50%); color: #e6eef7; font-size: .9rem; font-weight: 600; letter-spacing: .04em; }

/* ============================================================
   STORY / BLOG cards (Travel Stories)
   ============================================================ */
.card-story {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card-story:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-story__media { aspect-ratio: 16/10; overflow: hidden; }
.card-story__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card-story:hover .card-story__media img { transform: scale(1.07); }
.card-story__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.card-story__meta { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sun); font-weight: 800; margin-bottom: .5rem; display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }
.card-story__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--sky); }
.card-story h3 { font-size: 1.45rem; }
.card-story p { font-size: .94rem; margin-top: .5rem; flex: 1; }
.card-story .textlink { margin-top: 1.1rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2.5rem; justify-content: center; }
.tag-chip { font-size: .82rem; font-weight: 600; color: var(--deep); background: var(--mist); border: 1px solid var(--line); border-radius: 999px; padding: .35rem .85rem; }

/* ============================================================
   CONTACT page
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info { display: grid; gap: 1rem; }
.contact-info__item { display: flex; gap: 1rem; padding: 1.3rem 1.4rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.contact-info__item .ci-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--deep); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.contact-info__item .ci-ico svg { width: 22px; height: 22px; }
.contact-info__item h4 { font-family: var(--font-body); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sun); margin-bottom: .25rem; font-weight: 800; }
.contact-info__item p, .contact-info__item a { color: var(--ink); font-weight: 600; }
.contact-info__item a:hover { color: var(--sun); }
.contact-info__item span { display: block; font-size: .88rem; color: var(--ink-soft); font-weight: 400; }

/* Form */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3.5vw, 2.6rem); box-shadow: var(--shadow-sm); }
.sf-note { font-size: .8rem; color: var(--ink-soft); background: var(--mist); border: 1px dashed var(--line); border-radius: 10px; padding: .7rem .9rem; margin-bottom: 1.6rem; }
.sf-note b { color: var(--deep); }
.form-head { margin-bottom: 1.5rem; }
.form-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.form-head p { margin-top: .5rem; font-size: .95rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.05rem 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 700; color: var(--deep); }
.field label .req { color: var(--sun); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .95rem; color: var(--ink);
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: 10px; background: var(--mist);
  transition: border-color .2s, background .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sun); background: #fff; box-shadow: 0 0 0 4px rgba(247,177,0,.22);
}
.field input::placeholder, .field textarea::placeholder { color: #a89c86; }
.form-actions { margin-top: 1.6rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form-actions .privacy { font-size: .8rem; color: var(--ink-soft); }
.demo-msg { margin-top: 1.4rem; padding: 1rem 1.1rem; border-radius: 12px; background: rgba(31,77,62,.08); border: 1px solid rgba(31,77,62,.3); color: var(--deep); font-weight: 600; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); aspect-ratio: 21/9; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--deeper); color: #b2c5d6; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-top { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) 3rem; display: grid; grid-template-columns: 1.6fr 1fr 1.1fr 1.25fr 1.2fr; gap: 2.2rem; }
.footer-brand .footer-wordmark { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: #fff; line-height: 1; }
.footer-brand .footer-est { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--sky-light); font-weight: 700; display: block; margin-top: .35rem; }
.footer-brand p { color: #9db2c6; font-size: .92rem; max-width: 290px; margin-top: 1rem; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 800; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { color: #b2c5d6; font-size: .95rem; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: .6rem; font-size: .94rem; margin-bottom: .7rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--sky); flex: none; margin-top: 3px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--sun); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom__inner { max-width: var(--maxw); margin: 0 auto; padding: 1.3rem var(--gutter); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: #8ba1b6; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .gallery, .gallery--4 { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media { max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; gap: 1.6rem; }
  .info-cols { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .topbar__contact .label-hide { display: none; }
  .brand img { height: 50px; }
  .brand__name { font-size: 1.25rem; }
  .masthead__cta .btn { padding: .7rem 1.1rem; font-size: .85rem; }
  .cards--3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__trust { gap: 1.2rem; }
  .incl-grid { grid-template-columns: 1fr; }
  .gallery, .gallery--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cards--2, .cards--4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hamburger__label { display: none; }
  .topbar__inner { font-size: .76rem; }
  .masthead__cta { display: none; }
  .brand__text { display: none; }
  .brand img { height: 46px; }
  .fact-row { gap: 1.4rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* Reveal-on-scroll */
/* Scoped to .js so the page is fully readable when scripting is off or main.js
   fails to load — otherwise every .reveal block stays at opacity 0 forever. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   SecureForms embed — theme overrides (scoped so the live
   tysecureforms.rgkemp.com markup adopts the Adventure palette)
   ============================================================ */
.form-card .secure-form label { font-size: .85rem; font-weight: 700; color: var(--deep); margin-bottom: .4rem; display: block; }
.form-card .secure-form .required { color: var(--sun); }
.form-card .secure-form .form-control {
  font: inherit; font-size: .95rem; color: var(--ink); width: 100%;
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: 10px; background: var(--mist);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-card .secure-form .form-control::placeholder { color: #a89c86; }
.form-card .secure-form .form-control:focus {
  outline: none; border-color: var(--sun); background: #fff; box-shadow: 0 0 0 4px rgba(247,177,0,.22);
}
.form-card .secure-form textarea.form-control { min-height: 130px; resize: vertical; }
.form-card .secure-form .btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.9rem; border-radius: 999px; font-family: var(--font-body); font-weight: 700; font-size: .92rem;
  background: var(--sun); color: #fff; border: 0; cursor: pointer; box-shadow: 0 8px 20px var(--sun-shadow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.form-card .secure-form .btn-primary:hover { background: var(--sun-hover); transform: translateY(-2px); box-shadow: 0 12px 26px var(--sun-shadow-2); }
.form-card .secure-form .form-success, .form-card .secure-form .success-message {
  background: rgba(31,77,62,.08); border: 1px solid rgba(31,77,62,.3); color: var(--deep);
  border-radius: 12px; padding: 1rem 1.1rem; font-weight: 600;
}

/* Newsletter SecureForms — keep the sleek inline strip on the dark panel */
.news-secureform { display: flex; flex-wrap: wrap; gap: .7rem; align-items: flex-start; }
.news-secureform .form-group { margin: 0; }
.news-secureform .form-group:first-of-type { flex: 1; min-width: 220px; }
.news-secureform .form-control {
  width: 100%; font: inherit; font-size: .98rem; color: var(--ink);
  padding: .9rem 1.1rem; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.3); background: rgba(255,255,255,.95);
}
.news-secureform .form-control:focus { outline: none; box-shadow: 0 0 0 4px rgba(199,148,63,.4); }
.news-secureform .cf-turnstile { flex-basis: 100%; }
.news-secureform .form-success, .news-secureform .success-message { flex-basis: 100%; color: var(--sky-light); font-weight: 600; }

/* ============================================================
   Bright Travel additions
   ============================================================ */

/* ---------- Hero slideshow (crossfade) ---------- */
.hero__bg img {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.4s var(--ease);
}
.hero__bg img.is-active { opacity: 1; }
.hero__bg--static img { position: static; opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero__bg img { transition: none; }
}

/* ---------- Owner / signature card (About panel) ---------- */
.owner {
  display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.owner__figure { position: relative; }
.owner__figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.owner__badge {
  position: absolute; right: -14px; bottom: -18px;
  background: var(--paper); border-radius: var(--radius);
  padding: .7rem .9rem; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.owner__badge img { width: 132px; height: auto; border-radius: 4px; box-shadow: none; }
.owner__sig {
  font-family: var(--font-head); font-style: italic;
  font-size: 1.5rem; color: var(--deep); margin-top: 1.6rem;
}
.owner__sig small {
  display: block; font-family: var(--font-body); font-style: normal;
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600; margin-top: .35rem;
}
@media (max-width: 860px) {
  .owner { grid-template-columns: 1fr; }
  .owner__badge { right: 10px; bottom: -14px; }
}

/* ---------- Credentials strip ---------- */
.creds { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.creds span {
  font-size: .74rem; font-weight: 600; letter-spacing: .06em;
  padding: .42rem .85rem; border-radius: 999px;
  background: var(--mist-2); color: var(--deep); border: 1px solid var(--line);
}

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.4rem; }
.quote {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.9rem 1.7rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.quote::before {
  content: "\201C"; font-family: var(--font-head); font-size: 4.4rem; line-height: .72;
  color: var(--sun); display: block; margin-bottom: .35rem;
}
.quote p { color: var(--ink-soft); font-size: .98rem; flex: 1; }
.quote cite {
  font-style: normal; font-weight: 600; color: var(--deep);
  margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--line);
}
.quote cite small {
  display: block; font-weight: 400; color: var(--ink-soft);
  font-size: .8rem; margin-top: .15rem;
}

/* ---------- Contact split (form + details) ---------- */
.contact-grid {
  display: grid; grid-template-columns: minmax(0,1.35fr) minmax(0,1fr);
  gap: clamp(2rem, 4vw, 3.4rem); align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }
.contact-aside { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-block {
  background: var(--mist); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.7rem 1.6rem;
}
.contact-block h3 { font-size: 1.25rem; margin-bottom: .9rem; }
.contact-block ul { display: flex; flex-direction: column; gap: .85rem; }
.contact-block li { display: flex; gap: .75rem; align-items: flex-start; color: var(--ink-soft); font-size: .95rem; }
.contact-block svg { width: 19px; height: 19px; flex: none; color: var(--sun); margin-top: 3px; }
.contact-block a:hover { color: var(--sea); }

/* ---------- Footer: 3-column layout for a two-page site ---------- */
.footer-top { grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr; }
@media (max-width: 1080px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------- Headline wrapping ---------- */
/* Stops orphan words like a lone "go" on the CTA's second line. */
.panel__head h2, .cta h2, .cta p, .panel__head p, .hero__lead, .page-hero p {
  text-wrap: balance;
}

/* ---------- Narrow-viewport safety ---------- */
/* Grid items default to min-width:auto, so a wide intrinsic child (Chrome's
   date input is the usual culprit) can push the row past the viewport. */
.contact-grid > * { min-width: 0; }
.secure-form input, .secure-form select, .secure-form textarea { min-width: 0; max-width: 100%; }

/* Cloudflare Turnstile renders a fixed 300px widget, so trim the card's
   padding on very narrow phones to keep it inside the viewport. */
@media (max-width: 420px) {
  .form-card { padding-left: 1rem; padding-right: 1rem; }
  /* The widget is an inline-block sized to its 300px iframe, so it needs an
     explicit max-width before overflow-x can contain it. */
  .cf-turnstile { display: block !important; max-width: 100%; overflow-x: auto; }
}

/* ---------- Destination page: 2x2 info columns ---------- */
/* The base .info-cols is 3-up; the destination format calls for four blocks
   (do / go / see / eat), and 4 across is too narrow for list items. */
.info-cols--2x2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) { .info-cols, .info-cols--2x2 { grid-template-columns: 1fr; } }
