﻿/* =========================================================
   OPEN ROADS — Affiliate sections
   Reusable sections from template-parts/sections/.
   Relies on the tokens defined in main.css.
   ========================================================= */

:root {
  --coral:       #FF6B4A;
  --teal:        #14A38B;
  --ease-back:   cubic-bezier(.34, 1.56, .64, 1);
  --ease-expo:   cubic-bezier(.77, 0, .18, 1);
  --swoosh-gold: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'%3E%3Cpath d='M3 10 C 50 3, 120 2, 197 8' fill='none' stroke='%23F0C040' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  --swoosh-sky:  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'%3E%3Cpath d='M3 10 C 50 3, 120 2, 197 8' fill='none' stroke='%235BB8D4' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ── Shared keyframes ───────────────────────────────────── */
@keyframes or-float   { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes or-spin    { to { transform: rotate(360deg); } }
@keyframes or-drift   { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes or-dash    { to { stroke-dashoffset: -200; } }
@keyframes or-reveal  { from { opacity: 0; translate: 0 28px; } to { opacity: 1; translate: 0 0; } }
@keyframes or-shift   { to { background-position: 300% 0; } }

/* ── Scroll reveal (class added by sections.js) ─────────── */
.js-reveal [data-reveal] { opacity: 0; }
.js-reveal [data-reveal].is-visible {
  animation: or-reveal .8s var(--ease-out) both;
  animation-delay: calc(var(--i, 0) * 80ms);
}


/* Decorative layers must never catch touches. Animated ones (e.g. the spinning
   stamp) get their own compositor layer and would otherwise block swipes on
   nearby scrollers such as the spotlight list on phones. */
.hotel-spotlight__rings,
.hotel-spotlight__dots,
.spot-stage__frame,
.spot-stage__stamp,
.promo-card__line,
.promo-card__circle,
.promo-card__visual,
.why-us__grid-bg,
.why-us__compass,
.why-us__route,
.hero-search__orb,
.tours-mosaic__bgword,
.arch-card__outline,
.hotel-tips__bell,
.key-card__nfc,
.window-card__shade,
.flight-map__placeholder svg { pointer-events: none; }


/* ═══════════════════════════════════════════════
   SECTION HEAD (shared)
═══════════════════════════════════════════════ */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 40px;
  margin-bottom: 48px;
}
.sec-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sec-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(26, 107, 138, .08);
  border: 1px solid rgba(26, 107, 138, .15);
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.sec-head__eyebrow .or-icon { color: var(--coral); }
.sec-head__title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--on-surface);
  max-width: 20ch;
  text-wrap: balance; /* no single orphan word on the last line */
}
.sec-head--center .sec-head__title { margin-inline: auto; }
.sec-head__title em {
  font-style: normal;
  color: var(--forest);
  padding-bottom: .12em;
  background: var(--swoosh-gold) no-repeat left bottom / 100% .32em;
}
.sec-head__sub {
  margin-top: 14px;
  max-width: 58ch;
  font-size: 1rem;
  color: var(--on-surface-muted);
  line-height: 1.7;
}
.sec-head--center .sec-head__sub { margin-inline: auto; }
.sec-head__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 12px 22px;
  border: 2px solid var(--forest);
  border-radius: 100px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest);
  transition: background .25s, color .25s, box-shadow .25s;
}
.sec-head__link:hover {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 10px 26px rgba(26, 107, 138, .3);
}
.sec-head__link .or-icon { transition: transform .25s; }
.sec-head__link:hover .or-icon { transform: translateX(4px); }

/* Light tone — on dark backgrounds */
.sec-head--light .sec-head__eyebrow {
  color: var(--lime);
  background: rgba(240, 192, 64, .1);
  border-color: rgba(240, 192, 64, .25);
}
.sec-head--light .sec-head__eyebrow .or-icon { color: var(--lime); }
.sec-head--light .sec-head__title { color: #fff; }
.sec-head--light .sec-head__title em { color: var(--lime); background-image: var(--swoosh-sky); }
.sec-head--light .sec-head__sub { color: rgba(255, 255, 255, .68); }
.sec-head--light .sec-head__link { border-color: rgba(240, 192, 64, .6); color: var(--lime); }
.sec-head--light .sec-head__link:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--forest-deep);
  box-shadow: 0 10px 26px rgba(240, 192, 64, .3);
}


/* ═══════════════════════════════════════════════
   HERO SEARCH
═══════════════════════════════════════════════ */
/* No overflow:hidden / isolation here: the search form's dropdowns and date
   pickers must be able to extend past the hero and above the stats strip.
   Clipping lives on .hero-search__decor instead. */
.hero-search {
  position: relative;
  overflow: visible;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 110px 0 200px;
  background: var(--forest-deep);
  color: #fff;
}
.hero-search__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-search__bg {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center;
  animation: hero-kenburns 30s ease-in-out infinite alternate;
}
@keyframes hero-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08) translate(-1%, -1%); }
}
.hero-search__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(10, 45, 69, .2) 0%, rgba(10, 45, 69, .7) 75%),
    linear-gradient(180deg, rgba(4, 14, 26, .6) 0%, rgba(10, 45, 69, .3) 45%, rgba(10, 45, 69, .75) 100%);
}

/* Flight route */
.hero-search__route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, .45);
  pointer-events: none;
}
.hero-search__route circle { color: var(--coral); }
.hero-search__ping {
  transform-box: fill-box;
  transform-origin: center;
  animation: hero-ping 2.4s ease-out infinite;
}
@keyframes hero-ping {
  0%   { transform: scale(.5); opacity: 1; }
  100% { transform: scale(2.6); opacity: 0; }
}
.hero-search__plane { color: var(--lime); }
.hero-search__plane path { transform: scale(1.6); }

/* Floating glow orbs */
.hero-search__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: or-float 12s ease-in-out infinite;
}
.hero-search__orb--1 { width: 360px; height: 360px; top: 6%; left: -120px; background: rgba(91, 184, 212, .45); }
.hero-search__orb--2 { width: 300px; height: 300px; bottom: 18%; right: -90px; background: rgba(240, 192, 64, .3); animation-delay: -6s; }

.hero-search__inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-search__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.hero-search__chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: or-reveal .7s var(--ease-out) both;
}
.hero-search__chips li:nth-child(2) { animation-delay: .08s; }
.hero-search__chips li:nth-child(3) { animation-delay: .16s; }
.hero-search__chips li:nth-child(4) { animation-delay: .24s; }
.hero-search__chips .or-icon { color: var(--lime); }

.hero-search__title {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.02em;
  max-width: 16ch;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .35);
  animation: or-reveal .9s .15s var(--ease-out) both;
}
.hero-search__title em {
  position: relative;
  display: inline-block;
  font-style: normal;
  color: var(--lime);
}
.hero-search__title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.1em;
  height: .26em;
  background: var(--swoosh-gold) no-repeat center / 100% 100%;
  transform-origin: left;
  animation: hero-swoosh 1.1s .8s var(--ease-expo) both;
}
@keyframes hero-swoosh { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-search__sub {
  max-width: 60ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255, 255, 255, .86);
  line-height: 1.65;
  margin-bottom: 38px;
  animation: or-reveal .9s .3s var(--ease-out) both;
}

/* Wide glass panel that hosts the search form shortcode.
   No overflow:hidden — form dropdowns/autocompletes must be able to overflow. */
.hero-search__panel {
  position: relative;
  z-index: 30; /* above the stats strip (z-index 6) and following sections */
  width: 100%;
  max-width: 1120px;
  padding: 10px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 30px 80px rgba(4, 14, 26, .45);
  /* "backwards" so no translate remains after the intro — a leftover transform
     would become the containing block for position:fixed date pickers. */
  animation: or-reveal .9s .45s var(--ease-out) backwards;
}
/* While the visitor is using the form, lift it above the sticky header (z-index 100):
   on phones the widget opens full-screen popups (date picker etc.) that would
   otherwise be hidden under the header. */
.hero-search__panel:focus-within { z-index: 1000; }
/* Glass background on a pseudo-element: backdrop-filter on the panel itself would
   also trap position:fixed popups of the widget inside the panel. */
.hero-search__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  pointer-events: none;
}
.hero-search__panel::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 5%;
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  animation: hero-sheen 6s ease-in-out infinite;
}
@keyframes hero-sheen {
  0%, 100% { left: 5%; }
  50%      { left: 65%; }
}
.hero-search__form {
  min-height: 96px;
  padding: 14px;
  border-radius: 16px;
  background: var(--dark-bg);
  color: var(--on-surface);
  text-align: left;
}
/* Separate desktop / phone forms (e.g. Hotels hero) — only one is visible */
.hero-search__form-mobile { display: none; }
@media (max-width: 1000px) {
  .hero-search__form-desktop { display: none; }
  .hero-search__form-mobile { display: block; }
}
.hero-search__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 68px;
  padding: 10px 18px;
  border: 2px dashed var(--border);
  border-radius: 12px;
  font-size: .86rem;
  color: var(--on-surface-muted);
}
.hero-search__placeholder strong { display: block; color: var(--on-surface); font-size: .95rem; }
.hero-search__placeholder .or-icon { color: var(--forest); flex-shrink: 0; }

.hero-search__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-top: 24px;
  animation: or-reveal .9s .6s var(--ease-out) both;
}
.hero-search__trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
}
.hero-search__trust .or-icon {
  color: var(--forest-deep);
  background: var(--lime);
  border-radius: 50%;
  padding: 2px;
}

/* Animated wave layers */
.hero-search__waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  overflow: hidden;
  pointer-events: none;
}
.hero-search__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  fill: var(--cream);
  animation: or-drift 20s linear infinite;
}
.hero-search__wave--back {
  opacity: .45;
  animation-duration: 28s;
  animation-direction: reverse;
}


/* ═══════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════ */
.stats-strip { position: relative; z-index: 6; padding: 40px 0 0; }
.stats-strip--overlap { margin-top: -130px; padding-top: 0; }

.stats-strip__card {
  list-style: none;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(10, 45, 69, .14);
}
.stats-strip__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--dusk), var(--lime), var(--coral), var(--forest));
  background-size: 300% 100%;
  animation: or-shift 8s linear infinite;
}
.stats-strip__item + .stats-strip__item { border-left: 1px dashed var(--border); }
.stats-strip__link {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: 30px 24px 26px;
  color: inherit;
  transition: background .3s;
}
.stats-strip__link:hover { background: var(--cream); color: inherit; }

.stats-strip__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--forest), var(--dusk));
  box-shadow: 0 10px 24px rgba(26, 107, 138, .3);
  transition: transform .45s var(--ease-back);
}
.stats-strip__item:nth-child(2) .stats-strip__icon { background: linear-gradient(135deg, var(--lime), #FF9A3C); box-shadow: 0 10px 24px rgba(240, 160, 64, .35); }
.stats-strip__item:nth-child(3) .stats-strip__icon { background: linear-gradient(135deg, var(--teal), var(--dusk)); box-shadow: 0 10px 24px rgba(20, 163, 139, .3); }
.stats-strip__item:nth-child(4) .stats-strip__icon { background: linear-gradient(135deg, var(--coral), #FFB347); box-shadow: 0 10px 24px rgba(255, 107, 74, .3); }
.stats-strip__link:hover .stats-strip__icon { transform: rotate(-10deg) scale(1.1); }

.stats-strip__body { display: flex; flex-direction: column; min-width: 0; }
.stats-strip__num {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--on-surface);
}
.stats-strip__num em { font-style: normal; color: var(--lime-dark); margin-left: 2px; }
.stats-strip__label {
  margin-top: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-surface-muted);
}
.stats-strip__go {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: auto;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: var(--forest);
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.stats-strip__link:hover .stats-strip__go {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
  transform: rotate(45deg);
}


/* ═══════════════════════════════════════════════
   TOURS MOSAIC
═══════════════════════════════════════════════ */
.tours-mosaic {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
}
.tours-mosaic::before {
  content: '';
  position: absolute;
  top: 30px;
  right: -60px;
  width: 440px;
  height: 440px;
  background-image: radial-gradient(rgba(26, 107, 138, .28) 1.5px, transparent 1.6px);
  background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(circle, #000 25%, transparent 70%);
          mask-image: radial-gradient(circle, #000 25%, transparent 70%);
  pointer-events: none;
}
.tours-mosaic__bgword {
  position: absolute;
  left: 50%;
  bottom: -.28em;
  transform: translateX(-50%);
  font-family: var(--font-headline);
  font-size: clamp(6rem, 19vw, 17rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(26, 107, 138, .12);
  pointer-events: none;
  user-select: none;
}
.tours-mosaic .container { position: relative; z-index: 1; }

.tours-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
}
.tours-mosaic__grid--bento .tour-tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.tours-mosaic__grid--bento .tour-tile:nth-child(6) { grid-column: span 2; }

.tour-tile {
  position: relative;
  isolation: isolate;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: 0 10px 30px rgba(10, 45, 69, .12);
  transition: transform .45s var(--ease-out), box-shadow .45s;
}
.tour-tile:hover {
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(10, 45, 69, .25);
}
.tour-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .9s var(--ease-out);
}
.tour-tile__img--empty { background: linear-gradient(135deg, var(--forest), var(--dusk)); }
.tour-tile:hover .tour-tile__img { transform: scale(1.08); }
.tour-tile__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(10, 45, 69, .88) 0%, rgba(10, 45, 69, .25) 45%, transparent 75%);
}
/* Light sweep */
.tour-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-20deg);
  transition: left .9s var(--ease-out);
  pointer-events: none;
}
.tour-tile:hover::before { left: 130%; }
/* Inner frame */
.tour-tile::after {
  content: '';
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1.5px solid transparent;
  border-radius: 14px;
  transition: border-color .4s, inset .4s;
  pointer-events: none;
}
.tour-tile:hover::after { inset: 12px; border-color: rgba(240, 192, 64, .85); }

.tour-tile__num {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 100px;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(6px);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.tour-tile__go {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(6px);
  transition: background .35s, color .35s, transform .45s var(--ease-back);
}
.tour-tile:hover .tour-tile__go {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--forest-deep);
  transform: rotate(45deg) scale(1.08);
}
.tour-tile__body {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  transform: translateY(24px);
  transition: transform .45s var(--ease-out);
}
.tour-tile:hover .tour-tile__body { transform: none; }
.tour-tile__country {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}
.tour-tile__name {
  font-family: var(--font-headline);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.1;
}
.tours-mosaic__grid--bento .tour-tile:nth-child(1) .tour-tile__name { font-size: clamp(2rem, 3.6vw, 3.1rem); }
.tour-tile__cta {
  font-size: .76rem;
  font-weight: 700;
  color: var(--lime);
  opacity: 0;
  transition: opacity .4s .05s;
}
.tour-tile:hover .tour-tile__cta { opacity: 1; }


/* ═══════════════════════════════════════════════
   HOTEL SPOTLIGHT
═══════════════════════════════════════════════ */
.hotel-spotlight {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 150px 0 160px;
  color: #fff;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(91, 184, 212, .2), transparent 55%),
    radial-gradient(ellipse at 5% 95%, rgba(240, 192, 64, .12), transparent 50%),
    var(--forest-deep);
}
.hotel-spotlight__edge {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 80px;
  fill: var(--cream);
  pointer-events: none;
}
.hotel-spotlight__edge--top    { top: -1px; }
.hotel-spotlight__edge--bottom { bottom: -1px; }

.hotel-spotlight__rings {
  position: absolute;
  left: -240px;
  bottom: -240px;
  z-index: -1;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .07);
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, .02),
    0 0 0 140px rgba(255, 255, 255, .015),
    inset 0 0 0 70px rgba(255, 255, 255, .02);
}
.hotel-spotlight__dots {
  position: absolute;
  top: 110px;
  right: 4%;
  z-index: -1;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(rgba(240, 192, 64, .45) 1.5px, transparent 1.6px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(circle, #000 30%, transparent 70%);
          mask-image: radial-gradient(circle, #000 30%, transparent 70%);
  animation: or-float 9s ease-in-out infinite;
}

/* Row 1: full-width heading */
.hotel-spotlight__head { position: relative; z-index: 2; }
.hotel-spotlight .sec-head {
  margin-bottom: 52px;
  padding-bottom: 28px;
  border-bottom: 1px dashed rgba(255, 255, 255, .18);
}
.hotel-spotlight .sec-head__title { max-width: 24ch; }

/* Row 2: destination list + stage */
.hotel-spotlight__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: 56px;
  align-items: center;
}

/* Destination list */
.spot-list {
  list-style: none;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.spot-list__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 14px 18px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, .7);
  text-align: left;
  cursor: pointer;
  transition: background .3s, color .3s, padding .35s var(--ease-out);
}
.spot-list__btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 3px;
  background: var(--lime);
  opacity: 0;
  transform: translateY(-50%);
  transition: height .35s var(--ease-out), opacity .35s;
}
.spot-list__btn.is-active::before { opacity: 1; }
.spot-list__btn:hover { background: rgba(255, 255, 255, .05); color: #fff; }
.spot-list__btn.is-active {
  padding-left: 24px;
  background: rgba(255, 255, 255, .09);
  color: #fff;
}
.spot-list__btn.is-active::before { height: 60%; }
.spot-list__btn:focus-visible { outline: 2px solid var(--lime); outline-offset: 2px; }
.spot-list__num {
  font-family: var(--font-headline);
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .35);
  transition: color .3s;
}
.spot-list__btn.is-active .spot-list__num { color: var(--lime); }
.spot-list__text { display: flex; flex-direction: column; min-width: 0; }
.spot-list__name { font-size: .98rem; font-weight: 700; line-height: 1.3; }
.spot-list__country {
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}
.spot-list__arrow {
  margin-left: auto;
  color: var(--lime);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s, transform .3s;
}
.spot-list__btn:hover .spot-list__arrow,
.spot-list__btn.is-active .spot-list__arrow { opacity: 1; transform: none; }

/* Stage */
.spot-stage { position: relative; height: 560px; }
.spot-stage__frame {
  position: absolute;
  inset: 26px -22px -22px 26px;
  z-index: 0;
  border: 2px solid rgba(240, 192, 64, .45);
  border-radius: 28px;
  transform: rotate(2.5deg);
  transition: transform .6s var(--ease-out);
}
.spot-stage:hover .spot-stage__frame { transform: rotate(4deg) translate(6px, 6px); }

.spot-stage__stamp {
  position: absolute;
  top: -44px;
  right: -34px;
  z-index: 4;
  width: 128px;
  height: 128px;
  color: var(--forest-deep);
  animation: or-spin 22s linear infinite;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .3));
}
.spot-stage__stamp-bg { fill: var(--lime); }
.spot-stage__stamp text {
  fill: var(--forest-deep);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.spot-stage__viewport {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .4);
}
.spot-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  clip-path: inset(0 0 0 100%);
  transition: clip-path .9s var(--ease-expo), visibility 0s .9s;
}
.spot-slide.is-active {
  z-index: 2;
  visibility: visible;
  clip-path: inset(0 0 0 0);
  transition: clip-path .9s var(--ease-expo), visibility 0s;
}
.spot-slide.is-prev {
  z-index: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0);
  transition: none;
}
.spot-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 7s linear;
}
.spot-slide.is-active .spot-slide__img { transform: scale(1); }
.spot-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 45, 69, .6) 0%, transparent 45%);
  pointer-events: none;
}
.spot-slide__caption {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 2;
  max-width: calc(100% - 52px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 20px 24px 22px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  background: rgba(10, 45, 69, .55);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s .4s, transform .6s .4s var(--ease-out);
}
.spot-slide.is-active .spot-slide__caption { opacity: 1; transform: none; }
.spot-slide__country {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime);
}
.spot-slide__name {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 10px;
}
.spot-slide__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--lime);
  color: var(--forest-deep);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(240, 192, 64, .35);
  transition: background .25s, box-shadow .25s;
}
.spot-slide__btn:hover { background: #fff; color: var(--forest-deep); box-shadow: 0 10px 30px rgba(255, 255, 255, .3); }
.spot-slide__btn .or-icon { transition: transform .25s; }
.spot-slide__btn:hover .or-icon { transform: translateX(4px); }

.spot-stage__progress {
  position: absolute;
  top: 20px;
  left: 26px;
  right: 26px;
  z-index: 3;
  height: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(255, 255, 255, .25);
}
.spot-stage__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
}
@keyframes spot-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }


/* ═══════════════════════════════════════════════
   REGION ARCHES
═══════════════════════════════════════════════ */
.region-arches {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
}
.region-arches__topo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(26, 107, 138, .12);
  stroke-width: 1.2;
  pointer-events: none;
}
.region-arches .container { position: relative; }

.region-arches__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: start;
  gap: 22px;
  padding-bottom: 20px;
}
.arch-card {
  position: relative;
  display: block;
  color: #fff;
}
.arch-card:nth-child(even) { margin-top: 44px; }
.arch-card:hover { color: #fff; }

.arch-card__outline,
.arch-card__media {
  border-radius: 50% 50% 18px 18px / 30% 30% 18px 18px;
}
.arch-card__outline {
  position: absolute;
  inset: 0;
  border: 2px solid var(--lime);
  transform: translate(10px, 10px);
  transition: transform .5s var(--ease-back), border-color .4s;
}
.arch-card:hover .arch-card__outline { transform: translate(14px, 4px); border-color: var(--coral); }

.arch-card__media {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 3 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, var(--forest), var(--forest-deep));
  box-shadow: 0 18px 40px rgba(10, 45, 69, .2);
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
.arch-card:hover .arch-card__media {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px rgba(10, 45, 69, .3);
}
.arch-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.arch-card:hover .arch-card__img { transform: scale(1.1); }
.arch-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 45, 69, .9) 0%, rgba(10, 45, 69, .15) 55%, rgba(10, 45, 69, .25) 100%);
}
.arch-card__icon {
  position: absolute;
  top: 22px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(6px);
  transform: translateX(-50%);
  transition: background .35s, color .35s, transform .8s var(--ease-out);
}
.arch-card:hover .arch-card__icon {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--forest-deep);
  transform: translateX(-50%) rotate(360deg);
}
.arch-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 10px;
  text-align: center;
}
.arch-card__name {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.15;
}
.arch-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 100px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(6px);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .3s, color .3s, border-color .3s;
}
.arch-card:hover .arch-card__btn {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--forest-deep);
}


/* ═══════════════════════════════════════════════
   TRAVEL TICKETS
═══════════════════════════════════════════════ */
.travel-tickets {
  position: relative;
  padding: 150px 0;
  background-color: var(--sand);
  background-image: repeating-linear-gradient(135deg, transparent 0 22px, rgba(26, 107, 138, .04) 22px 24px);
  clip-path: polygon(0 70px, 100% 0, 100% calc(100% - 70px), 0 100%);
}
.travel-tickets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.ticket {
  position: relative;
  display: flex;
  min-height: 178px;
  color: inherit;
  filter: drop-shadow(0 12px 22px rgba(10, 45, 69, .12));
  transition: transform .45s var(--ease-back), filter .45s;
}
.ticket:hover {
  color: inherit;
  transform: translateY(-6px) rotate(-1.2deg);
  filter: drop-shadow(0 22px 32px rgba(10, 45, 69, .22));
}
.ticket:nth-child(even):hover { transform: translateY(-6px) rotate(1.2deg); }

/* Perforation notches: quarter-circle masks on both sides of the join */
.ticket__media,
.ticket__body {
  -webkit-mask:
    radial-gradient(circle at var(--nx) 0, transparent 12px, #000 12.5px) top / 100% 51% no-repeat,
    radial-gradient(circle at var(--nx) 100%, transparent 12px, #000 12.5px) bottom / 100% 51% no-repeat;
          mask:
    radial-gradient(circle at var(--nx) 0, transparent 12px, #000 12.5px) top / 100% 51% no-repeat,
    radial-gradient(circle at var(--nx) 100%, transparent 12px, #000 12.5px) bottom / 100% 51% no-repeat;
}
.ticket__media {
  --nx: 100%;
  position: relative;
  flex: 0 0 36%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--forest), var(--dusk));
}
.ticket__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.ticket:hover .ticket__media img { transform: scale(1.08); }
.ticket__media--empty::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .22) 1.3px, transparent 1.4px);
  background-size: 14px 14px;
}
.ticket__media .or-icon {
  position: relative;
  z-index: 1;
  transition: transform .5s var(--ease-back);
}
.ticket:hover .ticket__media .or-icon { transform: rotate(-10deg) scale(1.15); }

.ticket:nth-child(1) .ticket__media--empty { background: linear-gradient(135deg, #FFB347, var(--coral)); }
.ticket:nth-child(2) .ticket__media--empty { background: linear-gradient(135deg, var(--forest), var(--dusk)); }
.ticket:nth-child(3) .ticket__media--empty { background: linear-gradient(135deg, var(--forest-deep), #2E5F78); }
.ticket:nth-child(4) .ticket__media--empty { background: linear-gradient(135deg, #E0567A, #F0A040); }
.ticket:nth-child(5) .ticket__media--empty { background: linear-gradient(135deg, var(--teal), #8BC34A); }
.ticket:nth-child(6) .ticket__media--empty { background: linear-gradient(135deg, #125270, #2EC4B6); }

.ticket__body {
  --nx: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px 22px 16px 26px;
  border-left: 2px dashed var(--border);
  border-radius: 0 18px 18px 0;
  background: var(--surface);
}
.ticket__top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--forest);
}
.ticket__top .ticket__plane { color: var(--coral); transition: transform .5s var(--ease-out); }
.ticket:hover .ticket__top .ticket__plane { transform: translateX(6px) rotate(8deg); }
.ticket__seat { margin-left: auto; color: var(--text-light); }
.ticket__name {
  margin: 10px 0 2px;
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--on-surface);
}
.ticket__meta { font-size: .78rem; color: var(--on-surface-muted); }
.ticket__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
}
.ticket__barcode {
  width: 72px;
  height: 22px;
  opacity: .45;
  background: repeating-linear-gradient(90deg,
    var(--on-surface) 0 2px, transparent 2px 4px,
    var(--on-surface) 4px 5px, transparent 5px 8px,
    var(--on-surface) 8px 11px, transparent 11px 13px);
}
.ticket__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest);
}
.ticket__btn .or-icon { transition: transform .25s; }
.ticket:hover .ticket__btn .or-icon { transform: translateX(4px); }


/* ═══════════════════════════════════════════════
   PROMO DUO
═══════════════════════════════════════════════ */
.promo-duo { padding: 50px 0 40px; }
.promo-duo__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.promo-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 300px;
  padding: 44px 40px;
  border-radius: 26px;
  color: #fff;
  transition: transform .45s var(--ease-out), box-shadow .45s;
}
.promo-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(10, 45, 69, .25); }
.promo-card--ocean { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%); }
.promo-card--sun   { background: linear-gradient(135deg, #F7C04A 0%, #F08A3C 100%); color: var(--forest-deep); }

.promo-card__line {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, .22);
}
.promo-card__line path { animation: or-dash 6s linear infinite; }
.promo-card--sun .promo-card__line { color: rgba(10, 45, 69, .18); }
.promo-card__circle {
  position: absolute;
  right: -90px;
  bottom: -90px;
  z-index: -1;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 40px rgba(255, 255, 255, .05), 0 0 0 80px rgba(255, 255, 255, .03);
  transition: transform .7s var(--ease-out);
}
.promo-card:hover .promo-card__circle { transform: scale(1.15); }

.promo-card__body { flex: 1; min-width: 0; max-width: 380px; }
.promo-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  padding: 6px 13px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .15);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.promo-card--sun .promo-card__eyebrow { background: rgba(10, 45, 69, .1); }
.promo-card__title {
  margin-bottom: 12px;
  font-family: var(--font-headline);
  font-size: clamp(1.4rem, 2.3vw, 1.9rem);
  font-weight: 800;
  line-height: 1.15;
}
.promo-card__text { margin-bottom: 24px; font-size: .9rem; line-height: 1.7; opacity: .86; }
.promo-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  background: #fff;
  color: var(--forest-deep);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s, color .25s, box-shadow .25s;
}
.promo-card__btn:hover { background: var(--lime); color: var(--forest-deep); box-shadow: 0 10px 26px rgba(0, 0, 0, .2); }
.promo-card--sun .promo-card__btn:hover { background: var(--forest-deep); color: #fff; }
.promo-card__btn .or-icon { transition: transform .25s; }
.promo-card__btn:hover .or-icon { transform: translateX(4px); }

.promo-card__visual {
  flex: 0 0 150px;
  height: 150px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px dashed rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  animation: or-float 6s ease-in-out infinite;
}
.promo-card--sun .promo-card__visual { border-color: rgba(10, 45, 69, .25); background: rgba(255, 255, 255, .25); }
.promo-card__visual img { width: 100%; height: 100%; object-fit: cover; }


/* ═══════════════════════════════════════════════
   JOURNAL (latest posts)
═══════════════════════════════════════════════ */
.journal {
  position: relative;
  overflow: hidden;
  padding: 80px 0 170px;
}
/* Wave into the navy section that follows */
.journal::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%230A2D45' d='M0,20 C180,60 360,0 540,30 C720,60 900,10 1080,35 C1260,60 1380,15 1440,25 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.journal__postmark {
  position: absolute;
  top: 50px;
  right: -50px;
  width: 280px;
  height: 280px;
  color: rgba(26, 107, 138, .1);
  transform: rotate(-14deg);
  pointer-events: none;
}
.journal__route {
  position: absolute;
  left: 0;
  top: 320px;
  width: 100%;
  height: 300px;
  color: rgba(26, 107, 138, .2);
  pointer-events: none;
}
.journal .container { position: relative; z-index: 1; }

/* Shared bits */
.journal-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 100px;
  background: rgba(26, 107, 138, .1);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest);
  transition: background .25s, color .25s;
}
.journal-cat::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}
.journal-cat:hover { background: var(--forest); color: #fff; }
.journal-cat--light {
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(6px);
  color: #fff;
}
.journal-cat--light:hover { background: var(--lime); border-color: var(--lime); color: var(--forest-deep); }

.journal-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-light);
}
.journal-meta > span { display: inline-flex; align-items: center; gap: 5px; }
.journal-meta .or-icon { color: var(--coral); }

/* Animated underline on titles */
.journal-feature__title a,
.journal-side__title a,
.journal-card__title a {
  color: inherit;
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 2px no-repeat;
  transition: background-size .45s var(--ease-out), color .25s;
}
.journal-feature__title a:hover,
.journal-side__title a:hover,
.journal-card__title a:hover { background-size: 100% 2px; }

.journal-feature__img,
.journal-side__img,
.journal-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.journal-noimg {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .75);
  background: linear-gradient(135deg, var(--forest), var(--dusk));
}

/* Row 1 */
.journal__top {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 28px;
}
.journal__top--solo { grid-template-columns: minmax(0, 1fr); }

/* Featured story */
.journal-feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 470px;
  border-radius: 26px;
  color: #fff;
  box-shadow: 0 24px 60px rgba(10, 45, 69, .2);
}
.journal-feature__media { position: absolute; inset: 0; z-index: -2; }
.journal-feature:hover .journal-feature__img { transform: scale(1.06); }
.journal-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(10, 45, 69, .96) 0%, rgba(10, 45, 69, .6) 38%, rgba(10, 45, 69, .05) 75%);
  pointer-events: none;
}
.journal-feature::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  transition: border-color .4s, inset .4s;
  pointer-events: none;
}
.journal-feature:hover::after { inset: 18px; border-color: rgba(240, 192, 64, .8); }
.journal-feature__tag {
  position: absolute;
  top: 30px;
  left: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--lime);
  color: var(--forest-deep);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(240, 192, 64, .35);
}
.journal-feature__body {
  position: relative;
  max-width: 660px;
  padding: 44px;
}
.journal-feature__title {
  margin: 14px 0 22px;
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
}
.journal-feature__title a:hover { color: #fff; }
.journal-feature__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.journal-feature .journal-meta { color: rgba(255, 255, 255, .75); }
.journal-feature .journal-meta .or-icon { color: var(--lime); }
.journal-feature__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  background: #fff;
  color: var(--forest-deep);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s, box-shadow .25s;
}
.journal-feature__btn:hover { background: var(--lime); color: var(--forest-deep); box-shadow: 0 10px 26px rgba(240, 192, 64, .35); }
.journal-feature__btn .or-icon { transition: transform .25s; }
.journal-feature__btn:hover .or-icon { transform: translateX(4px); }

/* Side stories */
.journal__side {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 20px;
}
.journal-side {
  position: relative;
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  min-height: 140px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(10, 45, 69, .07);
  transition: transform .45s var(--ease-out), box-shadow .45s, border-color .45s;
}
.journal-side:hover {
  transform: translateX(-6px);
  border-color: rgba(240, 192, 64, .7);
  box-shadow: 0 20px 44px rgba(10, 45, 69, .14);
}
.journal-side__media { position: relative; overflow: hidden; }
.journal-side__media .journal-side__img { position: absolute; inset: 0; }
.journal-side:hover .journal-side__img { transform: scale(1.08); }
.journal-side__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 20px 48px 20px 22px;
}
.journal-side__title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--on-surface);
}
.journal-side__title a:hover { color: var(--forest); }
.journal-side__arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: var(--forest);
  transition: background .3s, color .3s, border-color .3s, transform .4s var(--ease-back);
}
.journal-side:hover .journal-side__arrow {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
  transform: rotate(45deg);
}

/* Row 2: postcards */
.journal__bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
}
.journal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 12px 12px 0;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(10, 45, 69, .08);
  transition: transform .45s var(--ease-back), box-shadow .45s;
}
.journal-card:hover { transform: translateY(-8px) rotate(-.6deg); box-shadow: 0 26px 50px rgba(10, 45, 69, .16); }
.journal-card:nth-child(2):hover { transform: translateY(-8px) rotate(.6deg); }
.journal-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
}
.journal-card:hover .journal-card__img { transform: scale(1.07); }
/* Postage-stamp date */
.journal-card__stamp {
  position: absolute;
  top: 26px;
  right: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 66px;
  border-radius: 6px;
  background: var(--surface);
  color: var(--on-surface-muted);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(10, 45, 69, .25);
  transform: rotate(5deg);
  transition: transform .45s var(--ease-back);
}
.journal-card__stamp::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1.5px dashed rgba(26, 107, 138, .45);
  border-radius: 3px;
}
.journal-card__stamp strong {
  font-family: var(--font-headline);
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--forest);
}
.journal-card:hover .journal-card__stamp { transform: rotate(-4deg) scale(1.06); }
.journal-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 12px 22px;
}
.journal-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--on-surface);
}
.journal-card__title a:hover { color: var(--forest); }
.journal-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: .86rem;
  line-height: 1.65;
  color: var(--on-surface-muted);
}
.journal-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 6px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest);
}
.journal-card__link .or-icon { transition: transform .25s; }
.journal-card:hover .journal-card__link .or-icon { transform: translateX(4px); }

/* "All Posts" page (page-all-posts.php) — journal postcards in a grid */
.blog-archive {
  position: relative;
  overflow: hidden;
  padding: 80px 0 110px;
}
.blog-archive .container { position: relative; z-index: 1; }
.blog-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}
.blog-archive .journal-card__title { font-size: 1.15rem; }
.blog-archive .journal-card__link { padding-top: 12px; }
@media (max-width: 1024px) {
  .blog-archive__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .blog-archive { padding: 60px 0 80px; }
  .blog-archive__grid { grid-template-columns: minmax(0, 1fr); gap: 16px; margin-bottom: 40px; }
  .blog-archive .journal-meta { display: none; }
  .blog-archive .journal-card__title { font-size: 1rem; }
}
/* Small phones: image on top, content below */
@media (max-width: 500px) {
  .blog-archive .journal-card { flex-direction: column; gap: 0; padding: 10px 10px 0; }
  .blog-archive .journal-card__media { flex: none; aspect-ratio: 16 / 10; min-height: 0; }
  .blog-archive .journal-card__body { padding: 16px 6px 18px; }
  .blog-archive .journal-card__title { -webkit-line-clamp: 2; line-clamp: 2; }
  .blog-archive .journal-card__link { padding-top: 4px; }
}


/* ═══════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════ */
.why-us {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0 180px;
  color: #fff;
  /* Glow kept away from the top edge so the incoming wave (flat navy) blends seamlessly */
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(91, 184, 212, .14), transparent 70%),
    var(--forest-deep);
}
.why-us::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%23F0F7FC' d='M0,40 C200,5 400,75 600,40 C800,5 1000,75 1200,40 C1320,20 1400,48 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.why-us__grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(0deg, transparent 0 59px, rgba(255, 255, 255, .035) 59px 60px),
    repeating-linear-gradient(90deg, transparent 0 59px, rgba(255, 255, 255, .035) 59px 60px);
  -webkit-mask-image: radial-gradient(ellipse 55% 45% at 30% 55%, #000 20%, transparent 100%);
          mask-image: radial-gradient(ellipse 55% 45% at 30% 55%, #000 20%, transparent 100%);
}
.why-us__inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: start;
}
.why-us__intro { position: sticky; top: 120px; }
.why-us .sec-head { margin-bottom: 36px; }
.why-us__compass {
  width: 250px;
  height: 250px;
  color: rgba(255, 255, 255, .28);
}
.why-us__compass-rose {
  transform-box: view-box;
  transform-origin: 100px 100px;
  animation: why-compass 9s ease-in-out infinite;
}
.why-us__needle { fill: var(--lime); }
@keyframes why-compass {
  0%, 100% { transform: rotate(-14deg); }
  50%      { transform: rotate(20deg); }
}

.why-us__features {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 22px;
}
.why-us__route {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  color: rgba(240, 192, 64, .28);
}
.why-us__route path { animation: or-dash 8s linear infinite; }

.why-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 30px 26px 28px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  background: rgba(13, 40, 64, .75);
  backdrop-filter: blur(6px);
  transition: transform .45s var(--ease-out), border-color .4s, background .4s;
}
/* Child 1 is the absolutely-positioned route svg, so odd children are the right-column cards */
.why-card:nth-child(odd) { margin-top: 40px; }
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 192, 64, .45);
  background: rgba(18, 60, 92, .85);
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(240, 192, 64, .2), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.why-card:hover::before { opacity: 1; }
.why-card::after {
  content: '';
  position: absolute;
  left: 26px;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--lime);
  transition: width .5s var(--ease-out);
}
.why-card:hover::after { width: calc(100% - 52px); }
.why-card__num {
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-headline);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .18);
  transition: -webkit-text-stroke-color .4s;
}
.why-card:hover .why-card__num { -webkit-text-stroke-color: var(--lime); }
.why-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border: 1.5px solid rgba(240, 192, 64, .45);
  border-radius: 16px;
  background: rgba(240, 192, 64, .08);
  color: var(--lime);
  transition: background .35s, color .35s, transform .45s var(--ease-back);
}
.why-card:hover .why-card__icon {
  background: var(--lime);
  color: var(--forest-deep);
  transform: rotate(-8deg) scale(1.06);
}
.why-card__title {
  margin-bottom: 8px;
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 700;
}
.why-card__text { font-size: .88rem; line-height: 1.7; color: rgba(255, 255, 255, .66); }


/* ═══════════════════════════════════════════════
   SUBSCRIBE — front page stacking tweak
═══════════════════════════════════════════════ */
.site-main--landing .subscribe-section { margin-top: 0; }
/* No bottom wave — the footer brings its own */
.subscribe-section { padding-bottom: var(--section-py); }
.subscribe-section::after { display: none; }



/* ═══════════════════════════════════════════════
   BEST HOTELS — luggage-tag cards (Hotels page)
═══════════════════════════════════════════════ */
.tag-wall {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
}
.tag-wall__line {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: 120px;
  color: rgba(26, 107, 138, .18);
  pointer-events: none;
}
.tag-wall .container { position: relative; }
.tag-wall__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 28px 24px;
}
/* Staggered columns */
.lug-card:nth-child(4n+2),
.lug-card:nth-child(4n+4) { margin-top: 44px; }

.lug-card {
  position: relative;
  display: block;
  padding-bottom: 36px; /* room for the hanging tag */
  color: inherit;
}
.lug-card:hover { color: inherit; }
.lug-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--forest), var(--dusk));
  box-shadow: 0 16px 36px rgba(10, 45, 69, .16);
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
.lug-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.lug-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 45, 69, .5) 0%, transparent 45%);
  pointer-events: none;
}
.lug-card:hover .lug-card__media { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(10, 45, 69, .26); }
.lug-card:hover .lug-card__media img { transform: scale(1.08); }
.lug-card__go {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(6px);
  color: #fff;
  transition: background .3s, color .3s, transform .45s var(--ease-back);
}
.lug-card:hover .lug-card__go { background: var(--lime); border-color: var(--lime); color: var(--forest-deep); transform: rotate(45deg); }

/* The tag: white shape with a pointed end, drawn on ::before so the drop-shadow survives the clip-path */
.lug-card__tag {
  position: absolute;
  left: 18px;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 62%;
  max-width: calc(100% - 36px);
  padding: 12px 18px 12px 34px;
  color: var(--on-surface);
  filter: drop-shadow(0 10px 18px rgba(10, 45, 69, .22));
  /* No resting rotation — rotated text renders blurry. Only the hover swing rotates. */
  transform-origin: 18px 50%;
}
.lug-card__tag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--surface);
  border-radius: 0 10px 10px 0;
  clip-path: polygon(16px 0, 100% 0, 100% 100%, 16px 100%, 0 50%);
}
.lug-card__tag > span:not(.lug-card__hole) { position: relative; }
.lug-card:hover .lug-card__tag { animation: tag-swing 1.1s var(--ease-out); }
@keyframes tag-swing {
  0%, 100% { transform: none; }
  25%  { transform: rotate(5deg); }
  50%  { transform: rotate(-3.5deg); }
  75%  { transform: rotate(1.5deg); }
}
.lug-card__hole {
  position: absolute;
  left: 13px;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -4.5px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: inset 0 0 0 2px rgba(26, 107, 138, .35);
}
/* The string the tag hangs on */
.lug-card__hole::after {
  content: '';
  position: absolute;
  left: 3px;
  bottom: 5px;
  width: 2px;
  height: 48px;
  border-radius: 2px;
  background: linear-gradient(to top, var(--lime-dark), var(--lime));
  transform: rotate(-26deg);
  transform-origin: bottom center;
}
.lug-card__code {
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--coral);
}
.lug-card__name {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.15;
}
.lug-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest);
}
.lug-card__cta .or-icon { transition: transform .25s; }
.lug-card:hover .lug-card__cta .or-icon { transform: translateX(4px); }


/* ═══════════════════════════════════════════════
   STAY TYPES — hotel key cards (Hotels page)
═══════════════════════════════════════════════ */
.stay-keys {
  position: relative;
  overflow: hidden;
  margin-inline: 16px;
  padding: 100px 0 110px;
  border-radius: 40px;
  background-color: var(--sand);
  background-image: radial-gradient(rgba(26, 107, 138, .09) 1.2px, transparent 1.3px);
  background-size: 20px 20px;
}
.stay-keys__deco {
  position: absolute;
  top: -50px;
  right: -60px;
  width: 380px;
  height: 380px;
  color: rgba(26, 107, 138, .1);
  transform: rotate(-20deg);
  pointer-events: none;
}
.stay-keys .container { position: relative; }
.stay-keys__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.key-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Real key-card proportions. No min-height here: combined with aspect-ratio it
     forces the card wider than its grid column on narrow tablets. The content
     itself still keeps the card tall enough (min-height:auto). */
  aspect-ratio: 1.586;
  min-width: 0;
  padding: 22px 24px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  box-shadow: 0 18px 40px rgba(10, 45, 69, .22);
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
.key-card:hover { color: #fff; transform: translateY(-8px) rotate(-1.5deg); box-shadow: 0 30px 60px rgba(10, 45, 69, .32); }
.key-card:nth-child(even):hover { transform: translateY(-8px) rotate(1.5deg); }
.key-card:nth-child(1) { background: linear-gradient(135deg, #0A2D45 0%, #8C6A2F 120%); }
.key-card:nth-child(2) { background: linear-gradient(135deg, #125270, #5BB8D4); }
.key-card:nth-child(3) { background: linear-gradient(135deg, #0A5C6E, var(--teal)); }
.key-card:nth-child(4) { background: linear-gradient(135deg, #E0567A, #FF8A4C); }
.key-card:nth-child(5) { background: linear-gradient(135deg, #6B2C5A, #E0567A); }
.key-card:nth-child(6) { background: linear-gradient(135deg, #2E5F78, #7FA7B8); }

.key-card__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.key-card--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg, rgba(10, 45, 69, .35), rgba(10, 45, 69, .88));
}
.key-card--photo:hover .key-card__img { transform: scale(1.08); }
.key-card__pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-radial-gradient(circle at 110% 120%, transparent 0 18px, rgba(255, 255, 255, .07) 18px 19px);
  pointer-events: none;
}
.key-card__sheen {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .3), transparent);
  transform: skewX(-18deg);
  transition: left .9s var(--ease-out);
  pointer-events: none;
}
.key-card:hover .key-card__sheen { left: 130%; }

.key-card__top { display: flex; align-items: center; gap: 12px; }
.key-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  transition: background .3s, color .3s, transform .45s var(--ease-back);
}
.key-card:hover .key-card__icon { background: #fff; color: var(--forest-deep); transform: rotate(-10deg) scale(1.08); }
.key-card__room {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}
.key-card__room small {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-body);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .7;
}
/* Gold contact chip */
.key-card__chip {
  width: 42px;
  height: 32px;
  margin-left: auto;
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 46%, rgba(0, 0, 0, .18) 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 30%, rgba(0, 0, 0, .16) 30% 36%, transparent 36% 64%, rgba(0, 0, 0, .16) 64% 70%, transparent 70%),
    linear-gradient(135deg, #F7D774, #C9A13B);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12);
}
.key-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.key-card__text { display: flex; flex-direction: column; min-width: 0; }
.key-card__name {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
}
.key-card__meta { margin-top: 4px; font-size: .72rem; opacity: .82; }
.key-card__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 100px;
  background: rgba(255, 255, 255, .16);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .3s, color .3s;
}
.key-card:hover .key-card__btn { background: #fff; color: var(--forest-deep); }
.key-card__nfc {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 26px;
  height: 26px;
  opacity: .35;
  transform: translateY(-50%);
  pointer-events: none;
}
.key-card:hover .key-card__nfc { animation: nfc-pulse 1.2s ease-in-out infinite; }
@keyframes nfc-pulse {
  0%, 100% { opacity: .35; transform: translateY(-50%) scale(1); }
  50%      { opacity: .9;  transform: translateY(-50%) scale(1.12); }
}


/* ═══════════════════════════════════════════════
   HOTEL TIPS — accordion (Hotels page)
═══════════════════════════════════════════════ */
.hotel-tips {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 10px;
  padding: 150px 0 160px;
  color: #fff;
  background:
    radial-gradient(ellipse 50% 50% at 80% 60%, rgba(91, 184, 212, .12), transparent 70%),
    var(--forest-deep);
}
.hotel-tips__edge {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 80px;
  fill: var(--cream);
  pointer-events: none;
}
.hotel-tips__edge--top    { top: -1px; }
.hotel-tips__edge--bottom { bottom: -1px; }
.hotel-tips__grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(0deg, transparent 0 59px, rgba(255, 255, 255, .035) 59px 60px),
    repeating-linear-gradient(90deg, transparent 0 59px, rgba(255, 255, 255, .035) 59px 60px);
  -webkit-mask-image: radial-gradient(ellipse 50% 45% at 25% 50%, #000 20%, transparent 100%);
          mask-image: radial-gradient(ellipse 50% 45% at 25% 50%, #000 20%, transparent 100%);
  pointer-events: none;
}
.hotel-tips__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: start;
}
.hotel-tips__intro { position: sticky; top: 110px; }
.hotel-tips .sec-head { margin-bottom: 30px; }

.tip-fact {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 14px;
  padding: 22px 24px;
  border: 1px solid rgba(240, 192, 64, .35);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(240, 192, 64, .16), rgba(240, 192, 64, .04));
}
.tip-fact__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest-deep);
  animation: tip-glow 3s ease-in-out infinite;
}
@keyframes tip-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 192, 64, .45); }
  50%      { box-shadow: 0 0 0 10px rgba(240, 192, 64, 0); }
}
.tip-fact__label {
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lime);
}
.tip-fact__text {
  grid-column: 1 / -1;
  margin-top: 10px;
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .8);
}
.hotel-tips__bell {
  display: block;
  width: 150px;
  margin-top: 40px;
  color: rgba(255, 255, 255, .16);
  transform-origin: 50% 85%;
  animation: bell-ring 6s ease-in-out infinite;
}
@keyframes bell-ring {
  0%, 88%, 100% { transform: rotate(0); }
  90% { transform: rotate(-6deg); }
  92% { transform: rotate(5deg); }
  94% { transform: rotate(-3deg); }
  96% { transform: rotate(2deg); }
}

.tip-list { display: flex; flex-direction: column; gap: 14px; }
.tip-item {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  transition: background .3s, border-color .3s;
}
.tip-item[open]:not(.is-closing) { background: rgba(255, 255, 255, .07); border-color: rgba(240, 192, 64, .45); }
.tip-item__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  list-style: none;
  cursor: pointer;
  border-radius: 18px;
}
.tip-item__head::-webkit-details-marker { display: none; }
.tip-item__head:focus-visible { outline: 2px solid var(--lime); outline-offset: 2px; }
.tip-item__num {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .45);
  transition: color .3s;
}
.tip-item[open]:not(.is-closing) .tip-item__num { color: var(--lime); -webkit-text-stroke-color: var(--lime); }
.tip-item__title {
  flex: 1;
  font-family: var(--font-headline);
  font-size: 1.08rem;
  font-weight: 700;
  transition: color .25s;
}
.tip-item__head:hover .tip-item__title { color: var(--lime); }
.tip-item__toggle {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  transition: transform .35s var(--ease-out), background .3s, color .3s, border-color .3s;
}
.tip-item[open]:not(.is-closing) .tip-item__toggle {
  transform: rotate(45deg);
  background: var(--lime);
  border-color: var(--lime);
  color: var(--forest-deep);
}
.tip-item__body { padding: 0; } /* padding lives on the <p> so the animated height can reach 0 */
.tip-item__body p { padding: 0 22px 22px 66px; font-size: .92rem; line-height: 1.75; color: rgba(255, 255, 255, .72); }


/* Hotels page sections — responsive */
@media (max-width: 1024px) {
  .tag-wall__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lug-card:nth-child(4n+2),
  .lug-card:nth-child(4n+4) { margin-top: 0; }
  .lug-card:nth-child(3n+2) { margin-top: 44px; }

  .stay-keys__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hotel-tips__inner { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .hotel-tips__intro { position: relative; top: 0; }
  .hotel-tips__bell { display: none; }
}
@media (max-width: 768px) {
  .tag-wall { padding: 80px 0 90px; }
  .stay-keys { margin-inline: 8px; padding: 70px 0 80px; border-radius: 28px; }
  .hotel-tips { margin-top: 0; padding: 110px 0 120px; }
  .hotel-tips__edge { height: 44px; }
}
/* 2-column key cards on narrow tablets: a bit more compact */
@media (max-width: 860px) and (min-width: 641px) {
  .stay-keys__grid { gap: 16px; }
  .key-card { padding: 16px 18px; border-radius: 16px; }
  .key-card__icon { width: 36px; height: 36px; }
  .key-card__room { font-size: 1.1rem; }
  .key-card__chip { width: 34px; height: 26px; }
  .key-card__name { font-size: 1.05rem; }
  .key-card__meta { font-size: .66rem; }
  .key-card__btn { padding: 6px 10px; font-size: .56rem; }
  .key-card__nfc { right: 18px; width: 22px; height: 22px; }
}
@media (max-width: 700px) {
  .tag-wall__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 14px; }
  .lug-card:nth-child(3n+2) { margin-top: 0; }
  .lug-card:nth-child(even) { margin-top: 28px; }
  .lug-card { padding-bottom: 30px; }
  .lug-card__media { border-radius: 16px; }
  .lug-card__go { width: 32px; height: 32px; top: 10px; right: 10px; }
  .lug-card__tag { left: 8px; max-width: calc(100% - 16px); padding: 9px 12px 9px 28px; transform-origin: 14px 50%; }
  .lug-card__hole { left: 10px; }
  .lug-card__name { font-size: 1rem; }
  .lug-card__cta { display: none; }
}
@media (max-width: 640px) {
  .stay-keys__grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .key-card { padding: 20px; }

  .tip-item__head { gap: 12px; padding: 16px; }
  .tip-item__title { font-size: 1rem; }
  .tip-item__body p { padding: 0 16px 18px; }
}


/* ═══════════════════════════════════════════════
   FLIGHT DEALS — plane-window cards (Flights page)
═══════════════════════════════════════════════ */
.plane-windows {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
}
.plane-windows__trail {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 200px;
  color: rgba(26, 107, 138, .2);
  pointer-events: none;
}
.plane-windows .container { position: relative; }
.plane-windows__row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.window-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: inherit;
}
.window-card:hover { color: inherit; }
/* Plastic cabin frame */
.window-card__frame {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 10px;
  border-radius: 46% / 36%;
  background: linear-gradient(160deg, #F4F7FA, #D3DCE4);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, .9),
    inset 0 -3px 8px rgba(10, 45, 69, .12),
    0 16px 34px rgba(10, 45, 69, .16);
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
.window-card:hover .window-card__frame {
  transform: translateY(-8px);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, .9),
    inset 0 -3px 8px rgba(10, 45, 69, .12),
    0 26px 48px rgba(10, 45, 69, .24);
}
/* The window itself */
.window-card__glass {
  position: relative;
  display: grid;
  place-items: end center;
  height: 100%;
  padding-bottom: 22%;
  overflow: hidden;
  border-radius: 46% / 36%;
  color: #fff;
  background: linear-gradient(180deg, #4FA9D8 0%, #9FD6EE 70%, #E6F4FA 100%);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .55), inset 0 8px 20px rgba(10, 45, 69, .3);
}
.window-card:nth-child(2) .window-card__glass--sky { background: linear-gradient(180deg, #F08A3C 0%, #F7C04A 55%, #FDE7B0 100%); }
.window-card:nth-child(3) .window-card__glass--sky { background: linear-gradient(180deg, #0A2D45 0%, #2E5F78 60%, #8AAAB8 100%); }
.window-card:nth-child(4) .window-card__glass--sky { background: linear-gradient(180deg, #E0567A 0%, #F59A7A 60%, #FFD9C2 100%); }
.window-card:nth-child(5) .window-card__glass--sky { background: linear-gradient(180deg, #14A38B 0%, #7ED3C3 65%, #E0F6F1 100%); }
.window-card:nth-child(6) .window-card__glass--sky { background: linear-gradient(180deg, #125270 0%, #5BB8D4 60%, #CDEAF4 100%); }
.window-card__glass img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.window-card:hover .window-card__glass img { transform: scale(1.08); }
/* Drifting clouds */
.window-card__clouds {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 30% 9% at 30% 62%, rgba(255, 255, 255, .85), transparent 70%),
    radial-gradient(ellipse 22% 7% at 70% 70%, rgba(255, 255, 255, .7), transparent 70%),
    radial-gradient(ellipse 26% 8% at 50% 80%, rgba(255, 255, 255, .8), transparent 70%);
  animation: window-clouds 9s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes window-clouds { from { transform: translateX(-12%); } to { transform: translateX(12%); } }
.window-card__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  backdrop-filter: blur(4px);
  transition: transform .5s var(--ease-back);
}
.window-card:hover .window-card__icon { transform: translateY(-6px) scale(1.06); }
/* Window shade: lifts on hover */
.window-card__shade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 46%;
  background: linear-gradient(180deg, #EEF2F5, #DCE3E9);
  border-bottom: 3px solid #C3CDD6;
  box-shadow: 0 4px 10px rgba(10, 45, 69, .15);
  transition: transform .6s var(--ease-out);
}
.window-card__shade::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 26px;
  height: 4px;
  border-radius: 4px;
  background: #AEB9C4;
  transform: translateX(-50%);
}
.window-card:hover .window-card__shade { transform: translateY(-102%); }

.window-card__name {
  margin-top: 18px;
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}
.window-card__meta {
  margin-top: 4px;
  font-size: .74rem;
  color: var(--on-surface-muted);
}
.window-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest);
}
.window-card__btn .or-icon { transition: transform .25s; }
.window-card:hover .window-card__btn .or-icon { transform: translateX(4px); }


/* ═══════════════════════════════════════════════
   FLIGHT MAP — dark panel with map shortcode (Flights page)
═══════════════════════════════════════════════ */
.flight-map { padding: 10px 0 110px; }
.flight-map__panel {
  position: relative;
  isolation: isolate;
  padding: 56px;
  border-radius: 32px;
  color: #fff;
  background: var(--forest-deep);
  box-shadow: 0 30px 70px rgba(10, 45, 69, .28);
}
.flight-map__decor {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(rgba(255, 255, 255, .08) 1.2px, transparent 1.3px) 0 0 / 22px 22px;
  pointer-events: none;
}
.flight-map__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.flight-map__glow--1 { top: -120px; right: -80px; width: 380px; height: 380px; background: rgba(91, 184, 212, .28); }
.flight-map__glow--2 { bottom: -140px; left: -100px; width: 340px; height: 340px; background: rgba(240, 192, 64, .16); }
.flight-map .sec-head { margin-bottom: 32px; }

.flight-map__canvas {
  position: relative;
  min-height: 480px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .03);
}
.flight-map__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: inherit;
}
.flight-map__routes {
  position: absolute;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
}
.flight-map__routes path {
  stroke: var(--lime);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 3 7;
  opacity: .7;
  animation: or-dash 5s linear infinite;
}
.flight-map__dot { fill: var(--dusk); }
.flight-map__dot--hub {
  fill: var(--lime);
  transform-box: fill-box;
  transform-origin: center;
  animation: map-hub 2.4s ease-in-out infinite;
}
@keyframes map-hub { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.4); } }
.flight-map__note {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 420px;
  padding: 18px 22px;
  border: 1px dashed rgba(255, 255, 255, .3);
  border-radius: 16px;
  background: rgba(10, 45, 69, .75);
  backdrop-filter: blur(6px);
  font-size: .86rem;
  color: rgba(255, 255, 255, .72);
}
.flight-map__note strong { display: block; color: #fff; font-size: .95rem; }
.flight-map__note .or-icon { flex-shrink: 0; color: var(--lime); }

/* Flights template: tighter gap between the map panel and the continents */
.site-main--flights .flight-map { padding-bottom: 30px; }
.site-main--flights .region-arches { padding-top: 70px; }

/* Flights page sections — responsive (basic; refine once the page exists) */
@media (max-width: 1024px) {
  .plane-windows__row { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 36px; }
  .flight-map__panel { padding: 40px 28px; }
}
@media (max-width: 640px) {
  .plane-windows { padding: 80px 0 90px; }
  .plane-windows__row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 16px; }
  .flight-map { padding-bottom: 80px; }
  .site-main--flights .flight-map { padding-bottom: 20px; }
  .site-main--flights .region-arches { padding-top: 50px; }
  .flight-map__panel { padding: 30px 16px; border-radius: 22px; }
  .flight-map__canvas { min-height: 360px; }
}


/* ═══════════════════════════════════════════════
   CAR HIRE — license-plate cards (Cars page)
═══════════════════════════════════════════════ */
/* No stats strip under the hero on this template → less bottom space */
.site-main--cars .hero-search { padding-bottom: 150px; }

.car-hire {
  position: relative;
  overflow: hidden;
  padding: 80px 0 110px;
}
/* Soft road band with a moving dashed centre line */
.car-hire__road {
  position: absolute;
  left: -5%;
  right: -5%;
  top: 56%;
  height: 130px;
  border-top: 2px solid rgba(26, 107, 138, .12);
  border-bottom: 2px solid rgba(26, 107, 138, .12);
  background:
    linear-gradient(90deg, rgba(240, 192, 64, .75) 0 50%, transparent 50%) 0 50% / 80px 4px repeat-x,
    rgba(26, 107, 138, .06);
  transform: skewY(-3deg);
  animation: road-dash 3s linear infinite;
  pointer-events: none;
}
@keyframes road-dash { to { background-position: -80px 50%, 0 0; } }
.car-hire .container { position: relative; }
.car-hire__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 28px;
}

.plate-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
}
.plate-card:hover { color: inherit; }
.plate-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  box-shadow: 0 16px 36px rgba(10, 45, 69, .18);
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
.plate-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.plate-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 45, 69, .5) 0%, transparent 45%);
  pointer-events: none;
}
.plate-card:hover .plate-card__media { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(10, 45, 69, .28); }
.plate-card:hover .plate-card__media img { transform: scale(1.07); }
/* Headlight beam sweeping across on hover */
.plate-card__light {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 244, 210, .38) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 1s var(--ease-out);
  pointer-events: none;
}
.plate-card:hover .plate-card__light { transform: translateX(100%); }
.plate-card__chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 100px;
  background: rgba(10, 45, 69, .35);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.plate-card__chip .or-icon { color: var(--lime); }

/* The license plate (translate only on hover — rotated text renders blurry) */
.plate-card__plate {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: stretch;
  height: 54px;
  margin-top: -27px;
  overflow: hidden;
  border: 2.5px solid #1B1F24;
  border-radius: 9px;
  background: linear-gradient(#FFFFFF, #ECEFF3);
  box-shadow: 0 12px 24px rgba(10, 45, 69, .22), inset 0 0 0 2px #fff;
  transition: transform .45s var(--ease-back), box-shadow .45s;
}
.plate-card:hover .plate-card__plate { transform: translateY(-8px); box-shadow: 0 18px 30px rgba(10, 45, 69, .28), inset 0 0 0 2px #fff; }
.plate-card__band {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0 10px;
  background: #1E4FB0;
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.plate-card__stars {
  width: 14px;
  height: 14px;
  border: 2px dotted var(--lime);
  border-radius: 50%;
}
.plate-card__city {
  display: flex;
  align-items: center;
  padding: 0 26px 0 20px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #1B1F24;
}
.plate-card__bolt {
  position: absolute;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #B8C2CC;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .35);
}
.plate-card__bolt--l { left: 42%; }
.plate-card__bolt--r { right: 9px; }
.plate-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest);
}
.plate-card__cta .or-icon { transition: transform .25s; }
.plate-card:hover .plate-card__cta .or-icon { transform: translateX(4px); }

/* Cars page sections — responsive (basic; refine once the page exists) */
@media (max-width: 1024px) {
  .car-hire__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .site-main--cars .hero-search { padding-bottom: 130px; }
  .car-hire { padding: 60px 0 80px; }
  .car-hire__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .plate-card__plate { height: 48px; margin-top: -24px; }
  .plate-card__city { padding: 0 20px 0 16px; font-size: 1.05rem; }
}


/* ═══════════════════════════════════════════════
   HERO — call-to-action buttons (hero without a search form)
═══════════════════════════════════════════════ */
.hero-search__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  animation: or-reveal .9s .45s var(--ease-out) backwards;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 34px;
  border: 2px solid var(--lime);
  border-radius: 100px;
  background: var(--lime);
  color: var(--forest-deep);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 14px 36px rgba(240, 192, 64, .35);
  transition: background .25s, border-color .25s, color .25s, box-shadow .25s, transform .25s;
}
.hero-btn:hover {
  background: #fff;
  border-color: #fff;
  color: var(--forest-deep);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
}
.hero-btn .or-icon { transition: transform .25s; }
.hero-btn:hover .or-icon { transform: translateX(4px); }
.hero-btn--ghost {
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(6px);
  color: #fff;
  box-shadow: none;
}
.hero-btn--ghost:hover { background: rgba(255, 255, 255, .2); border-color: #fff; color: #fff; box-shadow: none; }


/* ═══════════════════════════════════════════════
   WIDGET BLOCK — heading + embedded widgets (Tours page)
═══════════════════════════════════════════════ */
/* No search form and no stats strip on this template → shorter hero */
.site-main--tours .hero-search { min-height: 640px; padding-bottom: 170px; }

.widget-block {
  position: relative;
  padding: 90px 0;
}
.widget-block--tint {
  margin-inline: 16px;
  border-radius: 40px;
  background-color: var(--sand);
  background-image: radial-gradient(rgba(26, 107, 138, .08) 1.2px, transparent 1.3px);
  background-size: 20px 20px;
}
.widget-block--tint + .widget-block--plain,
.widget-block--plain + .widget-block--tint { margin-top: 10px; }
.site-main--tours .widget-block:last-child { margin-bottom: 70px; }

.widget-block__grid { display: grid; gap: 26px; }
.widget-block__grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.widget-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(10, 45, 69, .08);
  transition: box-shadow .4s, transform .4s var(--ease-out);
}
.widget-card:hover { box-shadow: 0 22px 46px rgba(10, 45, 69, .14); }
.widget-card iframe { display: block; max-width: 100%; }
.widget-card--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 160px;
  border: 2px dashed var(--border);
  box-shadow: none;
  font-size: .86rem;
  color: var(--on-surface-muted);
}
.widget-card--empty strong { display: block; color: var(--on-surface); }
.widget-card--empty .or-icon { flex-shrink: 0; color: var(--forest); }

/* Tours page — responsive (basic; refine once the page exists) */
@media (max-width: 900px) {
  .widget-block__grid--2 { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .site-main--tours .hero-search { min-height: 0; padding-bottom: 140px; }
  .hero-btn { padding: 15px 26px; font-size: .78rem; }
  .widget-block { padding: 60px 0; }
  .widget-block--tint { margin-inline: 8px; border-radius: 26px; }
  .widget-card { padding: 10px; border-radius: 16px; }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .stats-strip__card { grid-template-columns: repeat(2, 1fr); }
  .stats-strip__item:nth-child(3) { border-left: 0; }
  .stats-strip__item:nth-child(n+3) { border-top: 1px dashed var(--border); }

  .region-arches__row { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .arch-card:nth-child(even) { margin-top: 0; }
  .arch-card:nth-child(3n+2) { margin-top: 44px; }
}

@media (max-width: 1024px) {
  /* minmax(0, …) so the horizontally scrolling list can't stretch the column */
  .hotel-spotlight__inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .spot-list {
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .spot-list::-webkit-scrollbar { display: none; }
  .spot-list li { flex: 0 0 auto; scroll-snap-align: start; }
  .spot-list__btn { padding: 12px 16px; background: rgba(255, 255, 255, .05); }
  .spot-list__btn.is-active { padding-left: 16px; }
  .spot-list__btn::before { top: auto; bottom: 0; left: 16px; width: 0; height: 3px; transform: none; transition: width .35s var(--ease-out); }
  .spot-list__btn.is-active::before { width: calc(100% - 32px); height: 3px; }
  .spot-list__arrow { display: none; }
  .spot-stage { height: 480px; }

  .travel-tickets__grid { grid-template-columns: repeat(2, 1fr); }

  .why-us__inner { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .why-us__intro { position: relative; top: 0; }
  .why-us__compass { position: absolute; top: -20px; right: 0; width: 170px; height: 170px; opacity: .6; }
}

@media (max-width: 900px) {
  /* 2 columns: tiles 1 and 6 become full-width banners, the rest pair up */
  .tours-mosaic__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; }
  .tours-mosaic__grid--bento .tour-tile:nth-child(1) { grid-row: span 1; }

  .promo-duo__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-search { min-height: 0; padding: 90px 0 190px; }
  .hero-search__waves { height: 70px; }
  /* Thinner frame around the search form so the form itself gets the width */
  .hero-search__panel { padding: 5px; border-radius: 16px; }
  .hero-search__form { padding: 10px 0; border-radius: 12px; }
  .hero-search__placeholder { padding: 10px 12px; }
  .sec-head { flex-direction: column; align-items: flex-start; margin-bottom: 36px; }
  .sec-head--center { align-items: center; }

  .tours-mosaic { padding: 80px 0 90px; }
  .hotel-spotlight { padding: 110px 0 120px; }
  .hotel-spotlight__edge { height: 44px; }
  .region-arches { padding: 80px 0 90px; }
  .travel-tickets { padding: 110px 0; clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%); }
  .promo-duo { padding: 40px 0 30px; }
  .why-us { padding: 70px 0 150px; }
}

@media (max-width: 640px) {
  .stats-strip--overlap { margin-top: -120px; }
  .stats-strip__card { grid-template-columns: 1fr 1fr; }
  .stats-strip__link { flex-direction: column; align-items: center; gap: 12px; padding: 22px 12px; text-align: center; }
  .stats-strip__body { align-items: center; }
  .stats-strip__go { display: none; }
  .stats-strip__num { font-size: 1.6rem; }

  .tours-mosaic__grid { grid-auto-rows: 180px; gap: 12px; }
  .tour-tile__body { left: 14px; right: 14px; bottom: 14px; transform: none; }
  .tour-tile__cta { display: none; }
  .tour-tile__go { width: 34px; height: 34px; top: 12px; right: 12px; }
  .tour-tile__num { top: 12px; left: 12px; }

  .spot-stage { height: 400px; }
  .spot-stage__stamp { width: 92px; height: 92px; top: -30px; right: -6px; }
  .spot-stage__frame { inset: 14px -10px -12px 14px; }
  .spot-slide__caption { left: 14px; right: 14px; bottom: 14px; max-width: none; padding: 16px 18px; }

  /* Arches become a swipeable row */
  .region-arches__row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-inline: calc(var(--gutter) * -1);
    padding: 6px var(--gutter) 30px;
  }
  .region-arches__row::-webkit-scrollbar { display: none; }
  .arch-card { flex: 0 0 58%; scroll-snap-align: center; margin-top: 0 !important; }

  .travel-tickets__grid { grid-template-columns: 1fr; }

  .promo-card { padding: 34px 26px; min-height: 0; }
  .promo-card__visual { display: none; }

  .why-us__features { grid-template-columns: 1fr; }
  .why-card:nth-child(odd) { margin-top: 0; }
  .why-us__route { display: none; }
  .why-us__compass { display: none; }

}

/* Journal */
@media (max-width: 1024px) {
  .journal__top { grid-template-columns: minmax(0, 1fr); }
  .journal-feature { min-height: 420px; }
  /* Side cards turn vertical and sit in a row of three */
  .journal__side { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: auto; }
  .journal-side { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto 1fr; }
  .journal-side__media { aspect-ratio: 16 / 10; }
  .journal-side:hover { transform: translateY(-6px); }
}
@media (max-width: 768px) {
  .journal { padding: 60px 0 130px; }
  .journal__postmark { width: 180px; height: 180px; top: 30px; right: -60px; }
  .journal-feature { min-height: 380px; border-radius: 22px; }
  .journal-feature__body { padding: 28px 26px; }
  .journal-feature__tag { top: 22px; left: 22px; }
  .journal__side { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .journal-side { grid-template-columns: 38% minmax(0, 1fr); grid-template-rows: none; min-height: 140px; }
  .journal-side__media { aspect-ratio: auto; }
  .journal-side__body { padding: 16px; gap: 8px; }
  .journal-side__title { font-size: 1rem; }
  .journal-side__arrow { display: none; }
  .journal__bottom { grid-template-columns: minmax(0, 1fr); gap: 16px; margin-top: 16px; }

  /* Bottom postcards become compact rows: image left, text right */
  .journal-card {
    flex-direction: row;
    align-items: stretch;
    gap: 14px;
    padding: 10px;
    border-radius: 18px;
  }
  .journal-card__media { flex: 0 0 38%; aspect-ratio: auto; min-height: 120px; border-radius: 12px; }
  .journal-card__stamp {
    top: 16px;
    right: auto;
    left: 16px;
    width: 42px;
    height: 48px;
    font-size: .5rem;
  }
  .journal-card__stamp::before { inset: 3px; }
  .journal-card__stamp strong { font-size: 1.05rem; }
  .journal-card__body { padding: 4px 4px 4px 0; gap: 8px; justify-content: center; }
  .journal-card__title { font-size: 1rem; -webkit-line-clamp: 3; }
  .journal-card__excerpt { display: none; }
  .journal-card__link { padding-top: 0; font-size: .66rem; }
}

@media (hover: none) {
  .tour-tile__body { transform: none; }
  .tour-tile__cta { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-search__plane,
  .hero-search__ping { display: none; }
  .hero-search__bg { animation: none; }
}


/* ═══════════════════════════════════════════════
   CONTACT PAGE (page-templates/contact.php)
   Dark info card + light form card
═══════════════════════════════════════════════ */
.contact-page {
  position: relative;
  padding: calc(var(--section-py) + 20px) 0 var(--section-py);
  background: var(--cream);
  overflow: hidden;
}
.contact-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 48px, rgba(26, 107, 138, .04) 48px 50px);
  pointer-events: none;
}
.contact-page .container { position: relative; z-index: 1; }

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 32px;
  align-items: start;
}

/* Info card */
.contact-info {
  position: relative;
  overflow: hidden;
  padding: 44px 40px;
  background: var(--forest-deep);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 72px rgba(10, 45, 69, .28);
  color: rgba(255, 255, 255, .72);
}
.contact-info::before {
  content: '';
  position: absolute;
  top: -70px; right: -70px;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 2px solid rgba(240, 192, 64, .12);
  background: radial-gradient(circle, rgba(91, 184, 212, .1) 0%, transparent 60%);
  pointer-events: none;
}
.contact-info__title {
  position: relative;
  font-family: var(--font-headline);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
}
.contact-info__content { position: relative; font-size: .92rem; line-height: 1.75; margin-bottom: 24px; }
.contact-info__content p { margin-bottom: 12px; }
.contact-info__content a { color: var(--lime); text-decoration: underline; text-underline-offset: 2px; }
.contact-info__list {
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 8px 0 28px;
}
.contact-info__item { display: flex; align-items: flex-start; gap: 16px; font-size: .88rem; line-height: 1.6; }
.contact-info__item strong { display: block; color: #fff; font-size: .95rem; margin-bottom: 2px; }
.contact-info__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgba(240, 192, 64, .1);
  border: 1px solid rgba(240, 192, 64, .25);
  color: var(--lime);
}
.contact-info__note {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .8rem;
  color: rgba(255, 255, 255, .58);
}
.contact-info__note .or-icon { color: var(--lime); flex-shrink: 0; }

/* Form card */
.contact-form-card {
  padding: 44px 44px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(10, 45, 69, .08);
}
.contact-form-card__title {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 24px;
}

/* Contact Form 7 */
.contact-form-card .wpcf7 { position: relative; }
.contact-form-card .wpcf7-form p { margin: 0 0 18px; }
.contact-form-card .wpcf7-form label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--on-surface);
}
.contact-form-card .wpcf7-form br { display: none; }
.contact-form-card .wpcf7-form-control-wrap { display: block; margin-top: 8px; }
.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card input[type="url"],
.contact-form-card textarea,
.contact-form-card select {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--on-surface);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.contact-form-card textarea { min-height: 160px; resize: vertical; }
.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
  background: #fff;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26, 107, 138, .15);
}
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder { color: var(--text-light); }

.contact-form-card .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 32px;
  background: var(--forest);
  color: #fff;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .15s;
}
.contact-form-card .wpcf7-submit:hover {
  background: var(--forest-dark);
  box-shadow: 0 10px 26px rgba(26, 107, 138, .3);
  transform: translateY(-1px);
}
.contact-form-card .wpcf7-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.contact-form-card .wpcf7-list-item { margin: 0; }
.contact-form-card .wpcf7-acceptance label,
.contact-form-card .wpcf7-checkbox label,
.contact-form-card .wpcf7-radio label { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; letter-spacing: 0; cursor: pointer; }
.contact-form-card input[type="checkbox"],
.contact-form-card input[type="radio"] { flex-shrink: 0; width: 16px; height: 16px; margin-top: 3px; accent-color: var(--forest); }
.contact-form-card .wpcf7-list-item-label { font-size: .82rem; color: var(--on-surface-muted); line-height: 1.6; }
.contact-form-card .wpcf7-list-item-label a { color: var(--forest); text-decoration: underline; }

.contact-form-card .wpcf7-not-valid { border-color: #c0392b; }
.contact-form-card .wpcf7-not-valid-tip { display: block; margin-top: 6px; font-size: .76rem; font-weight: 500; color: #c0392b; }
.contact-form-card .wpcf7 form .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: .84rem;
}
.contact-form-card .wpcf7-spinner { vertical-align: middle; }

@media (max-width: 960px) {
  .contact-page__grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .contact-info { padding: 32px 22px; }
  .contact-form-card { padding: 30px 20px; }
  .contact-form-card .wpcf7-submit { width: 100%; min-width: 0; }
}


/* ═══════════════════════════════════════════════
   ABOUT PAGE (page-templates/about.php)
   Story (image + text) → values → why us → CTA
═══════════════════════════════════════════════ */
.about-story {
  position: relative;
  padding: calc(var(--section-py) + 20px) 0 var(--section-py);
  background: var(--cream);
  overflow: hidden;
}
.about-story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 48px, rgba(26, 107, 138, .04) 48px 50px);
  pointer-events: none;
}
.about-story .container { position: relative; z-index: 1; }
.about-story .sec-head__title { max-width: 24ch; }

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.about-story__media {
  position: relative;
  margin: 0;
}
.about-story__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(10, 45, 69, .22);
}
.about-story__frame {
  position: absolute;
  inset: 22px -18px -18px 22px;
  border: 2px dashed rgba(26, 107, 138, .35);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.about-story__stamp {
  position: absolute;
  z-index: 2;
  top: -24px;
  right: -14px;
  display: grid;
  place-items: center;
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest-deep);
  box-shadow: 0 12px 30px rgba(212, 160, 48, .4);
  pointer-events: none;
}
.about-story__title {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--on-surface);
  margin-bottom: 20px;
}
.about-story__title em {
  font-style: normal;
  color: var(--forest);
  background: var(--swoosh-gold) no-repeat left bottom / 100% .32em;
}
.about-story__text { font-size: .98rem; line-height: 1.85; color: var(--on-surface-muted); }
.about-story__text p { margin-bottom: 18px; }
.about-story__text p:last-child { margin-bottom: 0; }
.about-story__text a { color: var(--forest); text-decoration: underline; text-underline-offset: 2px; }
.about-story__content { margin-top: 18px; }

/* Values */
.about-values {
  padding: var(--section-py) 0 calc(var(--section-py) + 20px);
  background: var(--surface);
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.about-value {
  position: relative;
  padding: 36px 32px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}
.about-value:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 107, 138, .4);
  box-shadow: 0 20px 46px rgba(10, 45, 69, .12);
}
.about-value__icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: var(--forest);
  color: #fff;
}
.about-value__title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 10px;
}
.about-value__text { font-size: .92rem; line-height: 1.75; color: var(--on-surface-muted); }

/* Call to action (follows the why-us wave, which ends in cream) */
.about-cta {
  padding: 20px 0 var(--section-py);
  background: var(--cream);
}
.about-cta__card {
  position: relative;
  overflow: hidden;
  padding: 56px 40px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(10, 45, 69, .08);
}
.about-cta__title {
  font-family: var(--font-headline);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--on-surface);
  margin-bottom: 14px;
  text-wrap: balance;
}
.about-cta__title em {
  font-style: normal;
  color: var(--forest);
  background: var(--swoosh-gold) no-repeat left bottom / 100% .32em;
}
.about-cta__text {
  max-width: 56ch;
  margin: 0 auto 30px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--on-surface-muted);
}
.about-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

@media (max-width: 960px) {
  .about-story__grid { grid-template-columns: minmax(0, 1fr); gap: 56px; }
  .about-story__media { max-width: 520px; margin-inline: auto; width: 100%; }
  .about-story__media img { aspect-ratio: 4 / 3; }
  .about-values__grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
}
@media (max-width: 640px) {
  .about-story__frame { inset: 14px -8px -10px 14px; }
  .about-story__stamp { width: 70px; height: 70px; top: -18px; right: -4px; }
  .about-value { padding: 28px 22px; }
  .about-cta__card { padding: 40px 20px; }
  .about-cta__actions .btn { width: 100%; }
}


/* ═══════════════════════════════════════════════
   CRUISE TYPES — porthole cards on a night-sea band (Cruises page)
═══════════════════════════════════════════════ */
.cruise-portholes {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0 16px 80px;
  padding: 100px 0 150px;
  border-radius: 40px;
  color: #fff;
  background:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255, 255, 255, .7), transparent),
    radial-gradient(1px 1px at 28% 32%, rgba(255, 255, 255, .5), transparent),
    radial-gradient(1.5px 1.5px at 46% 12%, rgba(255, 255, 255, .6), transparent),
    radial-gradient(1px 1px at 64% 26%, rgba(255, 255, 255, .5), transparent),
    radial-gradient(1.5px 1.5px at 82% 14%, rgba(255, 255, 255, .7), transparent),
    radial-gradient(1px 1px at 92% 38%, rgba(255, 255, 255, .45), transparent),
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(91, 184, 212, .18), transparent 70%),
    linear-gradient(180deg, var(--forest-deep) 0%, #0D3A5C 100%);
}
.cruise-portholes__waves {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 200%;
  height: 110px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 720 110' preserveAspectRatio='none'%3E%3Cpath fill='%235BB8D4' fill-opacity='.14' d='M0 40 C 90 10 180 10 270 40 S 450 70 540 40 S 630 10 720 40 V110 H0 Z'/%3E%3Cpath fill='%235BB8D4' fill-opacity='.12' d='M0 70 C 90 50 180 50 270 70 S 450 90 540 70 S 630 50 720 70 V110 H0 Z'/%3E%3C/svg%3E") repeat-x left bottom / 50% 100%;
  animation: or-drift 24s linear infinite;
  pointer-events: none;
}
.cruise-portholes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.porthole-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 22px 18px 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100px 24px 24px 100px;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  transition: background .35s, border-color .35s, transform .45s var(--ease-out);
}
.porthole-card:hover {
  color: #fff;
  background: rgba(255, 255, 255, .09);
  border-color: rgba(240, 192, 64, .35);
  transform: translateY(-6px);
}
/* Brass ring with bolts */
.porthole-card__ring {
  position: relative;
  flex-shrink: 0;
  width: 128px;
  height: 128px;
  padding: 12px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, #F7D774, #B8862B, #F0C040, #8F6420, #F7D774);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .35), inset 0 0 0 2px rgba(255, 255, 255, .25);
  transition: transform .8s var(--ease-back);
}
.porthole-card__ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 4.5%,   #6B4A16 2.5px, transparent 3px),
    radial-gradient(circle at 82% 18%,    #6B4A16 2.5px, transparent 3px),
    radial-gradient(circle at 95.5% 50%,  #6B4A16 2.5px, transparent 3px),
    radial-gradient(circle at 82% 82%,    #6B4A16 2.5px, transparent 3px),
    radial-gradient(circle at 50% 95.5%,  #6B4A16 2.5px, transparent 3px),
    radial-gradient(circle at 18% 82%,    #6B4A16 2.5px, transparent 3px),
    radial-gradient(circle at 4.5% 50%,   #6B4A16 2.5px, transparent 3px),
    radial-gradient(circle at 18% 18%,    #6B4A16 2.5px, transparent 3px);
  pointer-events: none;
}
.porthole-card:hover .porthole-card__ring { transform: rotate(45deg); }
.porthole-card__glass {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(180deg, #5BB8D4 0%, #9FD6EE 55%, #1A6B8A 56%, #125270 100%);
  box-shadow: inset 0 6px 16px rgba(0, 0, 0, .35), inset 0 0 0 3px rgba(0, 0, 0, .15);
  transition: transform .8s var(--ease-back);
}
/* Counter-rotate so the view stays level while the ring turns */
.porthole-card:hover .porthole-card__glass { transform: rotate(-45deg); }
.porthole-card:nth-child(2) .porthole-card__glass--sea { background: linear-gradient(180deg, #F08A3C 0%, #F7C04A 55%, #2E5F78 56%, #0A2D45 100%); }
.porthole-card:nth-child(3) .porthole-card__glass--sea { background: linear-gradient(180deg, #0A2D45 0%, #2E5F78 55%, #125270 56%, #091E30 100%); }
.porthole-card:nth-child(4) .porthole-card__glass--sea { background: linear-gradient(180deg, #E0567A 0%, #F59A7A 55%, #1A6B8A 56%, #0D3A5C 100%); }
.porthole-card:nth-child(5) .porthole-card__glass--sea { background: linear-gradient(180deg, #14A38B 0%, #7ED3C3 55%, #14A38B 56%, #0B6B5B 100%); }
.porthole-card:nth-child(6) .porthole-card__glass--sea { background: linear-gradient(180deg, #CDEAF4 0%, #FFFFFF 55%, #5BB8D4 56%, #125270 100%); }
.porthole-card:nth-child(6) .porthole-card__glass--sea .porthole-card__icon { color: var(--forest-deep); }
.porthole-card__glass img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.porthole-card:hover .porthole-card__glass img { transform: scale(1.1); }
.porthole-card__icon {
  position: relative;
  z-index: 1;
  margin-top: -18px;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .25));
}
.porthole-card__water {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200%;
  height: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 40' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' fill-opacity='.22' d='M0 8 C 15 2 30 2 45 8 S 75 14 90 8 S 105 2 120 8 V40 H0 Z'/%3E%3C/svg%3E") repeat-x left top / 50% 100%;
  animation: or-drift 6s linear infinite;
  pointer-events: none;
}
.porthole-card__glare {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, .45) 0%, rgba(255, 255, 255, 0) 38%);
  pointer-events: none;
}
.porthole-card__text { display: flex; flex-direction: column; min-width: 0; }
.porthole-card__name {
  font-family: var(--font-headline);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.2;
}
.porthole-card__meta {
  margin-top: 4px;
  font-size: .76rem;
  color: rgba(255, 255, 255, .62);
}
.porthole-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime);
}
.porthole-card__btn .or-icon { transition: transform .25s; }
.porthole-card:hover .porthole-card__btn .or-icon { transform: translateX(4px); }


/* ═══════════════════════════════════════════════
   CRUISE DESTINATIONS — itinerary cards (Cruises page)
═══════════════════════════════════════════════ */
.cruise-routes { padding: 100px 0 90px; }
.cruise-routes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.route-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  color: inherit;
  box-shadow: 0 14px 36px rgba(10, 45, 69, .08);
  transition: transform .45s var(--ease-out), box-shadow .45s;
}
.route-card:hover {
  color: inherit;
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(10, 45, 69, .18);
}
.route-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #125270;
}
.route-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 45, 69, 0) 45%, rgba(10, 45, 69, .78) 100%);
  pointer-events: none;
}
.route-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.route-card:hover .route-card__media img { transform: scale(1.07); }
/* No image: sea gradient with waves and a ship (colour varies per card) */
.route-card__media--sea {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 250' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' fill-opacity='.1' d='M0 150 C 60 130 120 130 200 150 S 340 170 400 150 V250 H0 Z'/%3E%3Cpath fill='%23fff' fill-opacity='.08' d='M0 185 C 70 170 140 170 200 185 S 330 200 400 185 V250 H0 Z'/%3E%3C/svg%3E") no-repeat center / 100% 100%,
    var(--sea, linear-gradient(160deg, #5BB8D4 0%, #1A6B8A 55%, #0A2D45 100%));
}
.route-card:nth-child(2) { --sea: linear-gradient(160deg, #F7C04A 0%, #F08A3C 45%, #2E5F78 100%); }
.route-card:nth-child(3) { --sea: linear-gradient(160deg, #CDEAF4 0%, #5BB8D4 45%, #125270 100%); }
.route-card:nth-child(4) { --sea: linear-gradient(160deg, #7ED3C3 0%, #14A38B 45%, #0A2D45 100%); }
.route-card:nth-child(5) { --sea: linear-gradient(160deg, #8AAAB8 0%, #2E5F78 45%, #091E30 100%); }
.route-card:nth-child(6) { --sea: linear-gradient(160deg, #F59A7A 0%, #E0567A 45%, #125270 100%); }
.route-card__ship {
  position: absolute;
  top: 34%;
  left: 50%;
  color: rgba(255, 255, 255, .85);
  transform: translate(-50%, -50%);
  animation: route-ship-bob 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes route-ship-bob {
  0%, 100% { transform: translate(-50%, -50%) rotate(-2deg); }
  50%      { transform: translate(-50%, -58%) rotate(2deg); }
}
.route-card__num {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  font-size: .72rem;
  font-weight: 800;
  color: var(--forest-deep);
}
.route-card__name {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 16px;
  font-family: var(--font-headline);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
}
.route-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 22px;
}
.route-card__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
}
/* Ports: dots on a dashed route line */
.route-card__ports {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  padding-left: 22px;
}
.route-card__ports::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 5px;
  border-left: 2px dashed var(--sand-dark);
}
.route-card__port {
  position: relative;
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--on-surface);
}
.route-card__port::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -22px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--forest);
  border-radius: 50%;
  background: var(--surface);
  transform: translateY(-50%);
  transition: background .3s;
}
.route-card__port:first-child::before,
.route-card__port:last-child::before { background: var(--forest); }
.route-card:hover .route-card__port::before { background: var(--forest); }
.route-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest);
}
.route-card__cta .or-icon { transition: transform .25s; }
.route-card:hover .route-card__cta .or-icon { transform: translateX(4px); }

/* Tips decoration: the ship rocks instead of ringing */
.hotel-tips__bell--ship { transform-origin: 50% 70%; animation: ship-rock 5s ease-in-out infinite; }
@keyframes ship-rock {
  0%, 100% { transform: rotate(-3deg); }
  50%      { transform: rotate(3deg); }
}

@media (max-width: 1100px) {
  .cruise-portholes__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
  .cruise-routes__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .cruise-portholes { margin: 0 8px 50px; padding: 70px 0 120px; border-radius: 28px; }
  .cruise-routes { padding: 70px 0 70px; }
}
@media (max-width: 700px) {
  .cruise-portholes__grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .porthole-card { gap: 16px; padding: 12px 16px 12px 12px; }
  .porthole-card__ring { width: 104px; height: 104px; padding: 10px; }
}
@media (max-width: 640px) {
  .cruise-routes__grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .cruise-portholes__waves,
  .porthole-card__water,
  .route-card__ship,
  .hotel-tips__bell--ship { animation: none; }
}
