/* ===== Cancun Shuttle Services — Design System v1 ===== */
:root {
  /* Brand */
  --primary: #0B3C5D;           /* Deep blue */
  --primary-900: #072638;
  --primary-700: #0E4E78;
  --secondary: #00AEEF;         /* Caribbean turquoise */
  --secondary-deep: #11789E;  /* AA-safe turquoise for text/links/focus/borders (5.0:1 on white) */
  --kicker-ink: #0E6486;      /* deeper turquoise for eyebrow labels — AA on white AND sand bands */
  --cta: #FF6B4A;               /* Coral — the money color */
  --cta-hover: #E85A3D;
  --cta-press: #CC4E33;
  --cta-ink: var(--ink);        /* Text/icon on CTA bg — Customizer derives this per chosen color */
  --gold: #C9A54C;

  /* Neutrals */
  --white: #FFFFFF;
  --sand: #F4EDE4;
  --sand-deep: #EADFCF;
  --ink: #0E1A24;
  --ink-2: #2A3744;
  --gray: #646B77;
  --gray-2: #9AA3AD;
  --line: #E7DFD2;

  /* Utility */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --btn-radius: 10px;   /* Customizer-overridable (Typography & buttons) */
  --shadow-sm: 0 1px 2px rgba(11,60,93,.06), 0 1px 3px rgba(11,60,93,.04);
  --shadow-md: 0 4px 14px rgba(11,60,93,.08), 0 2px 6px rgba(11,60,93,.05);
  --shadow-lg: 0 20px 48px rgba(11,60,93,.14), 0 8px 16px rgba(11,60,93,.08);
  --shadow-cta: 0 10px 24px rgba(255,107,74,.28), 0 2px 6px rgba(255,107,74,.18);

  --font-head: "Clash Display", "Poppins", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: "Satoshi", "Inter", system-ui, -apple-system, sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--primary);
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(30px, 5vw, 52px); font-weight: 700; line-height: 1.08; }
h2 { font-size: clamp(24px, 3.2vw, 36px); font-weight: 700; line-height: 1.15; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 600; line-height: 1.25; }
p { margin: 0; text-wrap: pretty; }
a { color: var(--secondary-deep); text-decoration: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ====== Buttons ====== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; letter-spacing: .3px;
  border: none; cursor: pointer; border-radius: var(--btn-radius);
  padding: 14px 22px; font-size: 16px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-cta {
  background: var(--cta); color: var(--cta-ink);
  box-shadow: var(--shadow-cta);
}
.btn-cta:hover { background: var(--cta-hover); transform: translateY(-1px); }
.btn-cta:active { background: var(--cta-press); transform: translateY(0); }
.btn-cta.xl { padding: 18px 28px; font-size: 18px; border-radius: calc(var(--btn-radius) + 2px); }

/* Gutenberg core buttons use the theme.json cta preset (synced to --cta in the
   Customizer). Drive their text off --cta-ink so it stays legible on any CTA
   color (white-on-coral default was 2.82:1). :not(.has-text-color) respects
   per-block text overrides. */
.wp-block-button__link:not(.has-text-color) { color: var(--cta-ink); }

.btn-ghost {
  background: transparent; color: var(--primary); border: 1.5px solid var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: white; }

.btn-wa {
  background: #157a37; color: white;   /* deeper green: white on #25D366 was 1.98:1 (fail); on #157a37 = 5.43:1 */
}
.btn-wa:hover { background: #10602b; }

/* ====== Navbar ====== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.nav.is-scrolled {
  background: rgba(255,255,255,.97);
  border-bottom-color: transparent;
  box-shadow: 0 8px 26px -14px rgba(11,60,93,.32);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: var(--container); margin: 0 auto;
}
/* Full-width header menu (Customize → Brand & Contact → Full-width header menu) */
.nav--full .nav-inner { max-width: none; }
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; color: var(--primary);
  font-size: 18px; letter-spacing: -.01em;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--primary); color: white;
  display: grid; place-items: center; font-weight: 700; font-size: 16px;
  position: relative; overflow: hidden;
}
.logo-mark::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 38%;
  background: var(--secondary);
}
.logo-mark svg { position: relative; z-index: 1; }
.logo small { display: block; font-size: 11px; font-weight: 500; color: var(--gray); letter-spacing: .05em; text-transform: uppercase; line-height: 1; margin-top: 2px; }

/* ====== Brand lockup (CANCUN / Shuttle Services / Airport Transfers) ====== */
.brand-lockup {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, opacity .2s ease;
}
.brand-lockup:hover { transform: translateY(-1px); }

/* Framed = marketing/preview chip (used in swatches, business cards, etc.) */
.brand-lockup[data-framed="true"] {
  padding: 8px 14px 8px 10px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}
.brand-lockup[data-framed="true"][data-variant="white"] { box-shadow: inset 0 0 0 1px var(--line); }
.brand-lockup[data-framed="true"][data-variant="sand"]  { box-shadow: inset 0 0 0 1px rgba(15,44,77,.08); }

.brand-mark {
  flex: none;
  display: block;
  /* Mask makes the SVG take on `color` so one file works on any background */
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.brand-text {
  display: flex; flex-direction: column;
  line-height: 1;
  gap: 2px;
}

/* CANCUN — Gotham (Montserrat 800 fallback) */
.brand-cancun {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1;
}

/* Shuttle Services — Montserrat Medium */
.brand-line2 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}

/* Airport Transfers — Montserrat Regular, smaller, muted */
.brand-line3 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
  opacity: .92;
}

/* When dropped into the (white) nav, the lockup is bare — no padding, no frame. */
.nav .brand-lockup { padding: 0; }
.nav .brand-lockup .brand-line3 { display: none; }   /* save vertical room in nav */
@media (min-width: 980px) {
  .nav .brand-lockup .brand-line3 { display: block; }
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links .nav-menu {
  display: flex; gap: 30px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links .nav-menu li { margin: 0; }
.nav-links a { color: var(--ink-2); font-weight: 500; font-size: 15px; text-decoration: none; }
.nav-links a:hover, .nav-links .current-menu-item > a { color: var(--primary); }

/* Desktop menu links: subtle weight + an animated underline that grows
   from the left on hover and stays put on the current page. */
.nav-links .nav-menu a {
  position: relative;
  padding: 6px 1px;
  font-weight: 600;
  letter-spacing: .005em;
  transition: color .18s ease;
}
.nav-links .nav-menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--secondary); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav-links .nav-menu a:hover::after,
.nav-links .nav-menu .current-menu-item > a::after,
.nav-links .nav-menu .current_page_item > a::after { transform: scaleX(1); }

.nav-links-cta { display: none; }   /* desktop: use .nav-cta on the right; mobile: this version shows inside the panel */

/* Desktop CTA cluster on the right, with a hairline divider between the
   phone link and the Book-now button. */
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .nav-phone { position: relative; padding-right: 18px; }
.nav-cta .nav-phone::after {
  content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 22px; background: var(--line);
}
.nav-phone { color: var(--primary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 7px; transition: color .18s ease; }
.nav-phone:hover { color: var(--primary-700); }
.nav-phone-ico { color: var(--secondary-deep); flex: none; }
/* WhatsApp link in the nav (next to the phone) */
.nav-wa { color: #25D366; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14px; transition: color .18s ease; }
.nav-wa:hover { color: #1da851; }
.nav-wa svg { flex: none; }
.nav-cta .nav-wa .nav-wa-label { display: none; }   /* desktop top bar: icon only */

/* ====== Hamburger toggle (mobile only) ====== */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 0; padding: 8px;
  cursor: pointer;
  flex-direction: column; justify-content: space-between; align-items: stretch;
  border-radius: 8px;
}
.nav-toggle:hover { background: rgba(15,44,77,.06); }
.nav-toggle-bar {
  display: block; height: 2px; background: var(--primary);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
  transform-origin: center;
}
.nav.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-inner { position: relative; }
  .nav-toggle { display: flex; }

  /* Hide the desktop CTA cluster on the right; mobile uses the in-panel version. */
  .nav-cta { display: none; }

  /* Slide-down panel */
  .nav-links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px -16px rgba(0,0,0,.18);
    padding: 8px 16px 16px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .2s ease, opacity .2s ease, visibility 0s linear .2s;
  }
  .nav.is-open .nav-links {
    transform: translateY(0);
    opacity: 1; visibility: visible; pointer-events: auto;
    transition: transform .2s ease, opacity .2s ease, visibility 0s;
  }
  .nav-links .nav-menu {
    flex-direction: column; align-items: stretch; gap: 0;
    width: 100%;
  }
  .nav-links .nav-menu li { width: 100%; }
  .nav-links .nav-menu a {
    display: block;
    padding: 14px 4px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--line);
  }
  .nav-links .nav-menu a::after { display: none; }   /* underline anim is desktop-only */
  .nav-links .nav-menu .current-menu-item > a { color: var(--primary); }
  .nav-links-cta {
    display: flex; flex-direction: column; gap: 10px;
    padding-top: 14px;
  }
  .nav-links-cta .nav-phone { padding: 10px 4px; font-size: 16px; }
  .nav-links-cta .nav-wa { padding: 10px 4px; font-size: 16px; }
  .nav-links-cta .btn-cta { text-align: center; padding: 12px 18px; font-size: 15px; }

  /* Lock body scroll while menu is open */
  html.se-nav-locked, html.se-nav-locked body { overflow: hidden; }
}

/* ====== Trust bar (top micro) ====== */
.trust-bar {
  background: var(--primary); color: #D2E6F3;
  font-size: 13px; padding: 8px 20px;
}
.trust-bar-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; gap: 22px; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.trust-bar b { color: white; font-weight: 600; }
.trust-bar .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--secondary); }
@media (max-width: 600px) {
  .trust-bar-inner { gap: 12px; font-size: 12px; }
  .trust-bar .hide-sm { display: none; }
}

/* Promo variant — same shape as the trust bar but with the CTA tint
   so a running campaign reads as "deal" instead of "value props". */
.trust-bar-promo {
  background: linear-gradient(90deg, var(--cta) 0%, var(--cta-hover, #e85a3d) 100%);
  color: #fff;
}
.trust-bar-promo b { color: #fff; }
.trust-bar-promo .dot { background: rgba(255,255,255,.6); }
.trust-bar-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.18);
  color: #fff !important;
  font-weight: 700; font-size: 12.5px;
  padding: 4px 12px; border-radius: 999px;
  text-decoration: none;
  transition: background .15s;
}
.trust-bar-cta:hover { background: rgba(255,255,255,.32); }

/* ====== Hero ====== */
.hero {
  position: relative; color: white;
  padding: 40px 0 60px;
  background: linear-gradient(180deg, rgba(7,38,56,.72) 0%, rgba(11,60,93,.82) 100%);
  overflow-x: clip;
  overflow-y: visible;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
}
.hero-copy h1 { color: white; margin-bottom: 18px; }
.hero-widget { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 500;
  color: white;
}
.hero-copy .eyebrow { margin-bottom: 20px; }
.eyebrow-above-pill { margin-bottom: 4px; }
.eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.6); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,.6); }
  70% { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.hero-copy p.lede {
  font-size: 18px; color: rgba(255,255,255,.88); margin-bottom: 24px; max-width: 500px;
}
.hero-bullets { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-bottom: 0; }
.hero-bullets li {
  list-style: none; display: flex; align-items: center; gap: 8px;
  color: white; font-weight: 500; font-size: 15px;
}
.hero-bullets .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--secondary); display: grid; place-items: center; flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero { padding: 28px 0 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-copy .lede { font-size: 16px; }
}

/* ====== Booking Widget ====== */
.booking {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 24px;
  border: 1px solid var(--line);
  color: var(--ink);
}
.booking-tabs {
  display: flex; gap: 6px; background: var(--sand); padding: 4px;
  border-radius: 10px; margin-bottom: 18px;
}
.booking-tab {
  flex: 1; text-align: center; padding: 10px; border-radius: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  color: var(--ink-2); cursor: pointer; border: none; background: transparent;
  transition: background .15s, color .15s;
}
.booking-tab.active {
  background: white; color: var(--primary);
  box-shadow: 0 1px 4px rgba(11,60,93,.08);
}
.booking-title {
  font-family: var(--font-head); font-weight: 700; color: var(--primary);
  font-size: 20px; margin-bottom: 4px;
}
.booking-sub { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.booking-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.booking-row.full { grid-template-columns: 1fr; }
.field { position: relative; }
.field label {
  display: block; font-size: 12px; color: var(--gray); font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px;
}
.field input, .field select, .field-select-btn {
  width: 100%; padding: 12px 14px; font-size: 15px; font-family: var(--font-body);
  background: var(--sand); border: 1.5px solid transparent; border-radius: 10px;
  color: var(--ink); transition: border .15s, background .15s;
  -webkit-appearance: none; appearance: none;
}
.field input:focus, .field select:focus, .field-select-btn:focus {
  outline: none; border-color: var(--secondary-deep); background: white;
}
.field-select-btn {
  text-align: left; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
}
.field-icon {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: var(--gray);
}
.pax-stepper { display: flex; align-items: center; justify-content: space-between; }
.pax-stepper button {
  width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line);
  background: white; color: var(--primary); font-size: 18px; font-weight: 600; cursor: pointer;
  display: grid; place-items: center;
}
.pax-stepper button:hover { border-color: var(--primary); }
.pax-stepper button:disabled { opacity: .4; cursor: not-allowed; }
.pax-stepper .val { font-weight: 600; color: var(--primary); font-family: var(--font-head); font-size: 16px; }
.booking-submit {
  width: 100%; margin-top: 6px;
  padding: 16px; font-size: 16px; border-radius: 12px;
}
.booking-footnote {
  text-align: center; font-size: 12px; color: var(--gray); margin-top: 12px;
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.booking-footnote span { display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 900px) {
  .booking { padding: 18px; }
  .booking-row { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ====== Horizontal booking widget (Airbnb-style) ====== */
.booking-h {
  color: var(--ink);
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}
.booking-h-tabs {
  display: flex; gap: 6px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  padding: 4px; border-radius: 999px;
  width: fit-content; margin: 0 auto 18px;
}
.booking-h-tabs button {
  border: none; background: transparent; color: white;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  padding: 8px 18px; border-radius: 999px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .15s, color .15s;
}
.booking-h-tabs button.active { background: white; color: var(--primary); }
.booking-h-tabs .discount { color: var(--cta); font-size: 11px; font-weight: 700; }
.booking-h-tabs button.active .discount { color: var(--cta); }

.booking-h-pill {
  background: white; border-radius: 999px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: stretch;
  padding: 8px;
  border: 1px solid var(--line);
  min-height: 72px;
  gap: 0;
}
.h-field {
  flex: 1; min-width: 0; position: relative;
  padding: 8px 14px; cursor: pointer;
  border-radius: 999px;
  transition: background .15s;
  display: flex; flex-direction: column; justify-content: center;
}
.h-field-wide { flex: 1.25; }
.h-field-pax { flex: 1; }
.h-field:hover { background: var(--sand); }
.h-field:focus-within { background: var(--sand); }
.h-field-wide { }
.h-field-pax { }
.h-field label {
  display: block; font-family: var(--font-head);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--primary);
  margin-bottom: 2px;
}
.h-field select,
.h-field input,
.h-pax-trigger {
  width: 100%; border: none; background: transparent;
  font-family: var(--font-body); font-size: 14px; color: var(--ink);
  padding: 0; -webkit-appearance: none; appearance: none;
  outline: none;
  font-weight: 500;
}
.h-field select { cursor: pointer; }
.h-field input::placeholder { color: var(--gray-2); }
.h-pax-trigger { text-align: left; cursor: pointer; }
.h-datetime { display: flex; gap: 6px; align-items: center; overflow: hidden; }
.h-datetime input {
  font-size: 12px;
  min-width: 0;
  color-scheme: light;
}
.h-datetime input[type="date"] {
  flex: 1.3;
  max-width: 100px;
}
.h-datetime input[type="time"] {
  flex: 0 0 68px;
  max-width: 68px;
  color: var(--gray);
}
/* Hide native picker indicator on WebKit to save space */
.h-field input[type="date"]::-webkit-calendar-picker-indicator,
.h-field input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0.45; margin-left: 2px;
  filter: invert(30%) sepia(40%) saturate(600%) hue-rotate(170deg);
}

.h-divider {
  width: 1px; background: var(--line);
  margin: 12px 0; flex-shrink: 0;
}

/* Swap button — sits on the divider between Pickup & Drop-off */
.h-swap {
  flex-shrink: 0;
  align-self: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--line);
  color: var(--primary-accent, #1FB3C8);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 -10px; /* pull it slightly into both sides like a seam */
  position: relative; z-index: 2;
  box-shadow: 0 2px 6px rgba(10, 42, 67, 0.08);
  transition: transform .35s cubic-bezier(.5, 1.6, .4, 1), background .15s, border-color .15s, color .15s;
}
.h-swap:hover {
  background: var(--sand, #F6EFE6);
  border-color: var(--primary-accent, #1FB3C8);
  transform: rotate(180deg);
}
.h-swap:active { transform: rotate(180deg) scale(0.92); }
.booking-h-pill[data-swapping="true"] .h-swap {
  transform: rotate(180deg);
  background: var(--primary-accent, #1FB3C8);
  color: white;
  border-color: var(--primary-accent, #1FB3C8);
}
.booking-h-pill[data-swapping="true"] .h-field input,
.booking-h-pill[data-swapping="true"] .h-field select {
  opacity: 0.35;
  transition: opacity .15s;
}

/* Direction kicker — tiny muted prefix on Pickup/Drop-off labels */
.h-dir-kicker {
  color: var(--cta, #FF6B4A);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-right: 3px;
  font-size: 10px;
}

/* Vertical variant swap link */
.booking-row-swap { position: relative; }
.v-swap {
  position: absolute;
  right: 0; top: -4px;
  background: transparent; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary-accent, #1FB3C8);
  font-family: var(--font-head);
  font-size: 12px; font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  transition: background .15s, transform .3s;
}
.v-swap:hover { background: var(--sand, #F6EFE6); }
.v-swap:hover svg { transform: rotate(180deg); }
.v-swap svg { transition: transform .35s cubic-bezier(.5, 1.6, .4, 1); }

.h-field-pax { flex: 1.1; }
.h-pax-pop {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: white; border-radius: 16px; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); padding: 18px 20px;
  min-width: 300px; z-index: 20;
}
.h-pax-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.h-pax-row b { font-family: var(--font-head); color: var(--primary); font-size: 15px; display: block; }
.h-pax-row small { color: var(--gray); font-size: 12px; }

.h-submit {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px;
  margin-left: 4px; padding: 0 18px;
  background: var(--cta); color: var(--cta-ink); border: none;
  border-radius: 999px; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  box-shadow: var(--shadow-cta);
  transition: background .2s, transform .15s;
  min-height: 56px;
  align-self: center;
}
.h-submit:hover { background: var(--cta-hover); }
.h-submit:active { transform: translateY(1px); }
.h-submit:disabled { opacity: .7; cursor: wait; }
.h-submit svg { flex-shrink: 0; }
.h-spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: white;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.booking-h-foot {
  display: flex; justify-content: center; gap: 22px; flex-wrap: wrap;
  margin-top: 18px; color: rgba(255,255,255,.85);
  font-size: 13px; font-weight: 500;
}
.booking-h-foot span { display: inline-flex; align-items: center; gap: 6px; }

/* Hide the pill-shape on smaller screens; the component falls back to vertical */
@media (max-width: 860px) {
  .booking-h { display: none; }
}

/* ====== Hero horizontal layout (headline stacked above widget) ====== */
.hero.horizontal .hero-grid {
  display: block !important;
  grid-template-columns: 1fr !important;
  text-align: center;
}
.hero.horizontal .hero-copy {
  max-width: 820px;
  margin: 0 auto 36px;
}
.hero.horizontal .hero-copy p.lede { margin-left: auto; margin-right: auto; }
.hero.horizontal .hero-bullets { justify-content: center; }
.hero.horizontal { padding-bottom: 80px; padding-top: 48px; }
.hero.horizontal > .container > .hero-grid > div:last-child {
  width: 100%;
}

/* On desktop, hide the vertical fallback when horizontal is active. On mobile, show it. */
.h-only-vertical-fallback { display: none; }
@media (max-width: 860px) {
  .h-only-vertical-fallback { display: block; margin-top: 16px; }
}

/* ====== Section ====== */
section.band { padding: 72px 0; }
section.band.sand { background: var(--sand); }
.section-head { text-align: center; margin-bottom: 40px; max-width: 720px; margin-left: auto; margin-right: auto; }
/* Eyebrow/kicker label. --kicker-ink is a touch deeper than --secondary-deep
   so it clears AA (4.5:1) on the sand bands too (#11789E was 4.30:1 on sand). */
.kicker { color: var(--kicker-ink); }
.section-head .kicker {
  font-family: var(--font-head); font-weight: 600; letter-spacing: .1em;
  color: var(--kicker-ink); text-transform: uppercase; font-size: 13px; margin-bottom: 10px;
}
.section-head p { color: var(--gray); margin-top: 12px; font-size: 17px; }

/* ====== Route price grid ====== */
.routes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.route-card {
  background: white; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; cursor: pointer; transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column; gap: 10px;
}
.route-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--secondary-deep);
}
.route-card .pair {
  font-family: var(--font-head); font-weight: 600; color: var(--primary); font-size: 17px;
}
.route-card .pair small { display: block; font-size: 12px; color: var(--gray); font-weight: 400; margin-top: 2px; }
.route-card .route-meta { display: flex; gap: 14px; color: var(--gray); font-size: 13px; }
.route-card .route-meta span { display: inline-flex; align-items: center; gap: 4px; }
.route-card .price {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 14px; border-top: 1px dashed var(--line); margin-top: auto;
}
.route-card .price .amt {
  font-family: var(--font-head); font-weight: 700; color: var(--primary); font-size: 28px;
}
.route-card .price small { color: var(--gray); font-size: 12px; }
.route-card .price .cta-link {
  color: var(--cta); font-weight: 600; font-family: var(--font-head); font-size: 14px;
  display: inline-flex; align-items: center; gap: 4px;
}
.route-card:hover .cta-link { gap: 8px; }

/* Photo variant: destination's featured image fills the card as a real <img>
   (.card-photo, object-fit:cover) with a dark gradient on top for legibility. */
.route-card.has-photo {
  position: relative;
  background-color: var(--primary); /* readable fallback before the image loads */
  border-color: transparent;
  color: #fff;
  overflow: hidden;
  min-height: 250px;
}
.route-card.has-photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,38,56,.90) 0%, rgba(7,38,56,.60) 45%, rgba(7,38,56,.12) 100%);
  z-index: 1;
}
.route-card.has-photo > * { position: relative; z-index: 2; }
/* Featured image rendered as a real <img> covering the card (SEO + alt text). */
.route-card.has-photo .card-photo,
.hotel-slide.has-photo .card-photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  margin: 0; border: 0; display: block;
}
.route-card picture, .vehicle picture, .hotel-slide picture { display: contents; }
.route-card.has-photo .pair,
.route-card.has-photo .price .amt { color: #fff; }
.route-card.has-photo .pair small,
.route-card.has-photo .route-meta,
.route-card.has-photo .price small { color: rgba(255,255,255,.82); }
.route-card.has-photo .price { border-top-color: rgba(255,255,255,.28); }
.route-card.has-photo .price .cta-link { color: #fff; }
.route-card.has-photo:hover { border-color: transparent; box-shadow: var(--shadow-md); }
@media (max-width: 900px) { .routes { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .routes { grid-template-columns: 1fr; } }

/* ====== Vehicles ====== */
.vehicles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.vehicle {
  background: white; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.vehicle:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.vehicle-img {
  display: block; width: 100%; height: 180px; object-fit: cover;
  background: var(--sand); /* fallback tint behind transparent art */
}
.vehicle-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: white; font-size: 11px;
  font-family: var(--font-head); font-weight: 600; letter-spacing: .08em;
  padding: 5px 10px; border-radius: 6px; text-transform: uppercase;
}
.vehicle-tag.gold { background: var(--gold); color: #2a1e00; }
.vehicle-body { padding: 18px 20px 22px; }
.vehicle-body h3 { color: var(--primary); margin-bottom: 4px; }
.vehicle-body .cap { color: var(--gray); font-size: 13px; margin-bottom: 12px; }
.vehicle-features {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.vehicle-features li {
  list-style: none; font-size: 12px; background: var(--sand); color: var(--ink-2);
  padding: 4px 8px; border-radius: 4px;
}
.vehicle-price {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.vehicle-price .amt { font-family: var(--font-head); font-weight: 700; color: var(--primary); font-size: 22px; }
.vehicle-price small { color: var(--gray); font-size: 12px; display: block; }
@media (max-width: 900px) { .vehicles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .vehicles { grid-template-columns: 1fr; } }

/* ====== How it works ====== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.step {
  background: white; padding: 26px 22px; border-radius: var(--radius-lg);
  border: 1px solid var(--line); position: relative;
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: white;
  font-family: var(--font-head); font-weight: 700; font-size: 18px;
  display: grid; place-items: center; margin-bottom: 14px;
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { color: var(--gray); font-size: 14px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }

/* ====== Reviews ====== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 12px;
}
.review .stars { color: #F5A623; font-size: 15px; letter-spacing: 2px; }
.review .quote { color: var(--ink-2); font-size: 15px; line-height: 1.55; }
.review .who { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.review .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: white; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
}
.review .who b { display: block; color: var(--primary); font-size: 14px; }
.review .who small { color: var(--gray); font-size: 12px; }
/* Photo avatar variant (home-reviews-photo pattern): the <img> fills the
   round .avatar instead of the letter glyph. */
.review .avatar.wp-block-image { background: none; padding: 0; margin: 0; overflow: hidden; }
.review .avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }

/* ===== Destinations photo gallery (home-destinations pattern) ===== */
.se-dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 920px) { .se-dest-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .se-dest-grid { grid-template-columns: 1fr; } }
.se-dest-card {
  background: #fff; border: 1px solid var(--sand-deep, #e7dfd2); border-radius: 16px;
  overflow: hidden; box-shadow: 0 1px 2px rgba(7,38,56,.04), 0 14px 30px rgba(7,38,56,.07);
  display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease;
}
.se-dest-card:hover { transform: translateY(-3px); box-shadow: 0 1px 2px rgba(7,38,56,.05), 0 22px 44px rgba(7,38,56,.12); }
.se-dest-card .se-dest-img { margin: 0; }
.se-dest-card .se-dest-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.se-dest-card h3 { margin: 16px 18px 4px; font-size: 19px; color: var(--primary); }
.se-dest-card p { margin: 0 18px; color: var(--gray); font-size: 14px; }
.se-dest-card .cta-link { display: inline-flex; align-items: center; gap: 4px; margin: 12px 18px 18px; }

/* ===== Full-bleed image band (home-image-band pattern) ===== */
.se-image-band .wp-block-cover__inner-container { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.se-image-band h2 { font-size: clamp(26px, 4vw, 40px); margin: 0 0 10px; }
.se-image-band p { font-size: 18px; margin: 0 0 22px; }

/* ====== Hotels grid ====== */
.hotels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.hotel-card {
  display: block; background: white; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px; cursor: pointer;
  transition: border-color .15s, transform .15s;
}
.hotel-card:hover { border-color: var(--secondary-deep); transform: translateY(-2px); }
.hotel-card .zone { font-size: 11px; color: var(--secondary-deep); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.hotel-card .name { font-family: var(--font-head); font-weight: 600; color: var(--primary); font-size: 15px; margin: 4px 0 6px; }
.hotel-card .price-from { font-size: 13px; color: var(--gray); }
.hotel-card .price-from b { color: var(--cta); font-weight: 700; }
@media (max-width: 900px) { .hotels { grid-template-columns: 1fr 1fr; } }

/* ====== Browse hotels by zone (horizontal slider) ====== */
.hotel-zone-row { margin-bottom: 30px; }
.hotel-zone-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 12px;
}
.hotel-zone-head h3 {
  margin: 0; color: var(--primary); font-size: 18px; letter-spacing: .02em;
}
.hotel-zone-head h3 small { color: var(--gray); font-weight: 400; font-size: 13px; margin-left: 6px; }

/* Wrap holds the track + the overlaid arrows + the edge fades. */
.hotel-slider-wrap { position: relative; --edge: #fff; }
section.band.sand .hotel-slider-wrap { --edge: var(--sand); }

/* Edge fades — hint at more content; hidden at the matching extreme. */
.hotel-slider-wrap::before,
.hotel-slider-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 12px; width: 64px;
  z-index: 3; pointer-events: none; transition: opacity .25s;
}
.hotel-slider-wrap::before { left: 0;  background: linear-gradient(90deg,  var(--edge), rgba(255,255,255,0)); }
.hotel-slider-wrap::after  { right: 0; background: linear-gradient(270deg, var(--edge), rgba(255,255,255,0)); }
.hotel-slider-wrap.at-start::before { opacity: 0; }
.hotel-slider-wrap.at-end::after   { opacity: 0; }

/* Overlaid arrows, vertically centered over the track. */
.hotel-slider-wrap .sld-prev,
.hotel-slider-wrap .sld-next {
  position: absolute; top: calc(50% - 6px); transform: translateY(-50%); z-index: 4;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--primary); display: grid; place-items: center;
  cursor: pointer; box-shadow: 0 3px 12px rgba(0,0,0,.16);
  transition: opacity .2s, background .15s, color .15s, transform .1s;
}
.hotel-slider-wrap .sld-prev { left: 2px; }
.hotel-slider-wrap .sld-next { right: 2px; }
.hotel-slider-wrap .sld-prev:hover,
.hotel-slider-wrap .sld-next:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.hotel-slider-wrap .sld-prev:active,
.hotel-slider-wrap .sld-next:active { transform: translateY(-50%) scale(.94); }
.hotel-slider-wrap.at-start .sld-prev { opacity: 0; pointer-events: none; }
.hotel-slider-wrap.at-end   .sld-next { opacity: 0; pointer-events: none; }
@media (hover: none) { .hotel-slider-wrap .sld-prev, .hotel-slider-wrap .sld-next { display: none; } }

.hotel-slider {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 4px 2px 12px; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
}
.hotel-slider::-webkit-scrollbar { display: none; }
.hotel-slide {
  scroll-snap-align: start; flex: 0 0 230px; min-height: 150px;
  border-radius: var(--radius); padding: 16px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 2px;
  text-decoration: none; background: #fff; border: 1px solid var(--line);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.hotel-slide:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.hotel-slide .zone { font-size: 11px; color: var(--secondary-deep); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.hotel-slide .name { font-family: var(--font-head); font-weight: 600; color: var(--primary); font-size: 15px; line-height: 1.25; margin: 2px 0; }
.hotel-slide .price-from { font-size: 13px; color: var(--gray); }
.hotel-slide .price-from b { color: var(--cta); font-weight: 700; }

/* Featured image as the card background, with a legibility gradient. */
.hotel-slide.has-photo {
  border: 0; color: #fff;
  background-color: var(--primary); /* fallback before the image loads */
}
.hotel-slide.has-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,30,30,0) 28%, rgba(8,30,30,.82) 100%);
}
.hotel-slide.has-photo > * { position: relative; z-index: 2; }
.hotel-slide.has-photo .name { color: #fff; }
.hotel-slide.has-photo .zone { color: #fff; opacity: .92; }
.hotel-slide.has-photo .price-from { color: rgba(255,255,255,.92); }
.hotel-slide.has-photo .price-from b { color: #fff; }

/* "Most booked" pill badge (top-booked hotels in the first row). */
.hotel-slide .star-badge {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 8px; border-radius: 999px;
  background: #fff; color: #f5a524; /* amber star */
  box-shadow: 0 2px 6px rgba(0,0,0,.18); line-height: 1;
}
.hotel-slide .star-badge .lbl {
  font-size: 11px; font-weight: 700; letter-spacing: .02em;
  color: var(--primary); white-space: nowrap;
}
.hotel-slide .star-badge svg { flex: 0 0 auto; }
.hotel-slide.has-photo .star-badge { background: rgba(255,255,255,.95); }

/* Load-more is a card-shaped button at the end of the track. */
.hotel-slide.load-more {
  align-items: center; justify-content: center; flex-direction: row; gap: 6px;
  border: 1px dashed var(--secondary-deep); color: var(--secondary-deep);
  background: transparent; font: inherit; font-weight: 600; cursor: pointer;
}
.hotel-slide.load-more:hover { background: rgba(0,0,0,.03); transform: none; box-shadow: none; }
@media (max-width: 600px) { .hotel-slide { flex-basis: 74%; } }

/* ====== FAQ ====== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: white; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden;
}
.faq-q {
  width: 100%; padding: 18px 22px; background: white; border: none;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  color: var(--primary); text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { transition: transform .2s; color: var(--cta); font-size: 20px; flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px; max-height: 0; overflow: hidden;
  transition: max-height .25s, padding .25s;
  color: var(--gray); font-size: 15px; line-height: 1.6;
}
.faq-item.open .faq-a { padding: 0 22px 18px; max-height: 400px; }

/* ====== Footer ====== */
footer {
  background: #051E3A; color: #8FA9BD;
  padding: 56px 0 24px; font-size: 14px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.08);
}
footer h2 { color: white; font-size: 14px; margin-bottom: 14px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }
footer a { color: #B8CAD8; }
footer a:hover { color: white; }
.foot-bottom {
  padding-top: 20px; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 13px;
}

/* Footer payments cluster */
.foot-pay {
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.foot-pay .pay-row { gap: 8px !important; }
.foot-pay img {
  /* Ensure dark-on-dark logos still register — subtle white tile underneath */
  background: #FFFFFF;
  border-radius: 4px;
  padding: 3px 6px;
  box-sizing: content-box;
  height: 14px !important;
  width: auto !important;   /* the width="256" attr would otherwise fix width at 256px → mobile overflow */
}
.foot-pay-arrival {
  display: inline-flex; align-items: center; gap: 6px;
  color: #B8CAD8; font-size: 12px;
  padding-left: 12px; border-left: 1px solid rgba(255,255,255,.12);
}

/* Agency credit — discreet, bottom-right. Kept legible (not hidden text)
   so the followed backlink to pixeldigitallab.com stays SEO-clean. */
.foot-credit {
  padding-top: 14px; text-align: right;
  font-size: 11px; letter-spacing: .02em;
}
.foot-credit a { color: #5a6e82; text-decoration: none; }
.foot-credit a:hover { color: #8FA9BD; text-decoration: underline; text-underline-offset: 2px; }

/* Editable (block) footer — styles the Gutenberg content from the
   "Footer del sitio" page so free blocks inherit the dark-band look. */
.se-footer-blocks {
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.se-footer-blocks .wp-block-columns { gap: 32px; margin: 0; }
.se-footer-blocks h1, .se-footer-blocks h2, .se-footer-blocks h3,
.se-footer-blocks .wp-block-heading {
  color: #fff; font-size: 14px; margin: 0 0 14px;
  letter-spacing: .04em; text-transform: uppercase; font-weight: 600;
}
.se-footer-blocks p { color: #B8CAD8; font-size: 14px; max-width: 320px; }
.se-footer-blocks a { color: #B8CAD8; }
.se-footer-blocks a:hover { color: #fff; }
.se-footer-blocks ul.wp-block-list { list-style: none; padding: 0; margin: 0; }
.se-footer-blocks ul.wp-block-list li { margin-bottom: 8px; }
.se-footer-blocks .wp-block-site-title { margin: 6px 0 12px; }
.se-footer-blocks .wp-block-site-title a {
  color: #fff; font-family: var(--font-display);
  font-weight: 800; font-size: 19px; text-decoration: none;
}
.se-footer-blocks .wp-block-buttons { margin-top: 16px; }

/* Step 2 — payments row under the sticky summary */
.bs2-pay {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.bs2-pay .pay-row { gap: 10px !important; }
.bs2-pay img {
  height: 18px !important;
  opacity: .92;
}
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* ====== Sticky mobile booking ====== */
.sticky-book {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  background: white; border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  box-shadow: 0 -4px 16px rgba(11,60,93,.08);
}
.sticky-book .from-label { font-size: 11px; color: var(--gray); text-transform: uppercase; font-weight: 600; letter-spacing: .05em; }
.sticky-book .from-price { font-family: var(--font-head); font-weight: 700; color: var(--primary); font-size: 18px; }
.sticky-book-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sticky-book .btn { padding: 12px 22px; flex-shrink: 0; }
@media (max-width: 900px) { .sticky-book { display: block; } body.has-sticky { padding-bottom: 72px; } }

/* ====== WhatsApp float ====== */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 55;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(37,211,102,.35);
  transition: transform .15s;
}
.wa-float:hover { transform: scale(1.06); }
@media (max-width: 900px) { .wa-float { bottom: 82px; right: 16px; width: 52px; height: 52px; } }

/* ====== Modal ====== */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(7,38,56,.65); backdrop-filter: blur(6px);
  z-index: 100; display: grid; place-items: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: white; border-radius: var(--radius-lg);
  max-width: 520px; width: 100%; max-height: 90vh; overflow: auto;
  padding: 28px; transform: translateY(16px); transition: transform .2s;
}
.modal.modal-wide { max-width: 1100px; padding: 24px 28px 28px; }

@media (max-width: 960px) {
  .modal.modal-wide { max-width: 720px; padding: 18px; }
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal h2 { margin-bottom: 8px; }
.modal .close {
  float: right; background: var(--sand); border: none; width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; color: var(--gray); font-size: 18px;
}

/* ====== Hero image placeholder ====== */
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(120deg, rgba(7,38,56,.75) 0%, rgba(11,60,93,.55) 60%, rgba(0,174,239,.2) 100%),
    var(--hero-img, url('images/cancun-beach.jpg'));
  background-size: cover; background-position: center;
}

/* ====== Hotel page-specific hero ====== */
.hotel-hero {
  padding: 28px 0 56px;
  background: linear-gradient(180deg, var(--sand) 0%, white 100%);
  color: var(--ink);
}
.hotel-hero h1 { color: var(--primary); }
.hotel-hero .breadcrumb {
  font-size: 13px; color: var(--gray); margin-bottom: 16px;
}
.hotel-hero .breadcrumb a { color: var(--gray); }
.hotel-hero .breadcrumb a:hover { color: var(--primary); }

/* Utility */
.flex { display: flex; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.hidden { display: none !important; }

/* Results pane after booking */
.results-pane {
  background: white; border-radius: var(--radius-lg);
  padding: 20px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.result-opt {
  border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 14px; margin-bottom: 10px; cursor: pointer;
  display: flex; gap: 14px; align-items: center;
  transition: border .15s, background .15s;
}
.result-opt:hover, .result-opt.selected { border-color: var(--cta); background: #FFF8F5; }
.result-opt .r-img {
  width: 80px; height: 56px; border-radius: 8px; background: var(--sand) center/cover;
  flex-shrink: 0;
}
.result-opt .r-body { flex: 1; }
.result-opt .r-name { font-family: var(--font-head); font-weight: 600; color: var(--primary); font-size: 15px; }
.result-opt .r-meta { font-size: 12px; color: var(--gray); }
.result-opt .r-price { font-family: var(--font-head); font-weight: 700; color: var(--primary); font-size: 20px; text-align: right; }
.result-opt .r-price small { display: block; font-size: 11px; color: var(--gray); font-weight: 400; }

/* Success toast */
.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #0B8E3C; color: white; padding: 14px 22px; border-radius: 10px;
  font-weight: 600; font-size: 14px; box-shadow: var(--shadow-lg); z-index: 200;
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Tweaks panel */
.tweaks {
  position: fixed; right: 20px; top: 100px; z-index: 80;
  background: white; border-radius: 12px; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); padding: 16px; width: 260px;
  display: none;
}
.tweaks.open { display: block; }
.tweaks h4 { font-family: var(--font-head); font-size: 13px; color: var(--primary); margin: 0 0 10px; text-transform: uppercase; letter-spacing: .08em; }
.tweaks label { display: block; font-size: 12px; color: var(--gray); margin: 10px 0 4px; font-weight: 600; }
.tweaks select, .tweaks input[type="color"] {
  width: 100%; padding: 6px 8px; border: 1px solid var(--line); border-radius: 6px; font-size: 13px;
}
.tweaks .row { display: flex; gap: 8px; align-items: center; }
.tweaks .swatch { width: 20px; height: 20px; border-radius: 4px; border: 1px solid var(--line); }

/* ==========================================
   DateTimePicker
   ========================================== */
.dtp { position: relative; width: 100%; }
.dtp-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--primary, #0A2A43);
  font-family: inherit;
}
.dtp-trigger .dtp-label {
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--gray, #6B7B8A);
  font-family: var(--font-head);
}
.dtp-trigger .dtp-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary, #0A2A43);
}
.dtp-trigger .dtp-sep { color: var(--line, #E5E1DC); font-weight: 400; }
.dtp-trigger .dtp-placeholder { color: var(--gray, #6B7B8A); font-weight: 500; }
.dtp-trigger.open { outline: none; }

/* Vertical variant: inside a .field, strip extra padding that .field adds */
.field > .dtp .dtp-trigger {
  padding: 12px 14px;
  background: var(--sand, #F6EFE6);
  border-radius: 10px;
  border: 1.5px solid transparent;
  transition: border-color .15s;
}
.field > .dtp .dtp-trigger:hover,
.field > .dtp .dtp-trigger.open {
  border-color: var(--primary-accent, #1FB3C8);
}
.field > .dtp .dtp-label { display: none; } /* vertical uses outer <label> */

/* Popup */
.dtp-pop {
  position: absolute;
  top: calc(100% + 12px);
  z-index: 40;
  background: white;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(10, 42, 67, 0.22);
  border: 1px solid var(--line, #E5E1DC);
  width: 460px;
  max-width: calc(100vw - 32px);
  overflow: hidden;
  animation: dtpFadeIn .18s cubic-bezier(.3, 1.3, .5, 1);
}
.dtp-pop-left { left: -12px; }
.dtp-pop-right { right: -12px; }
@keyframes dtpFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.dtp-pop-body {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-height: 320px;
}

/* Calendar */
.dtp-cal { padding: 18px 16px 14px; border-right: 1px solid var(--line, #E5E1DC); }
.dtp-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.dtp-month {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary, #0A2A43);
}
.dtp-nav {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--primary, #0A2A43);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.dtp-nav:hover:not(:disabled) { background: var(--sand, #F6EFE6); }
.dtp-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.dtp-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.dtp-dow span {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--gray, #6B7B8A);
  letter-spacing: 0.5px;
  padding: 6px 0;
}

.dtp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.dtp-day {
  aspect-ratio: 1;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary, #0A2A43);
  transition: background .12s, color .12s, transform .1s;
  padding: 0;
}
.dtp-day:hover:not(:disabled) { background: var(--sand, #F6EFE6); }
.dtp-day.today {
  box-shadow: inset 0 0 0 1.5px var(--primary-accent, #1FB3C8);
}
.dtp-day.sel {
  background: var(--primary-accent, #1FB3C8);
  color: white;
  font-weight: 700;
  transform: scale(1.05);
}
.dtp-day.sel:hover { background: var(--primary-accent, #1FB3C8); }
.dtp-day:disabled {
  color: var(--line, #E5E1DC);
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Time column */
.dtp-time { padding: 18px 12px 14px 14px; display: flex; flex-direction: column; min-height: 0; }
.dtp-time-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray, #6B7B8A);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-left: 4px;
}
.dtp-time-list {
  flex: 1;
  overflow-y: auto;
  max-height: 260px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding-right: 4px;
  /* Thin scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--line, #E5E1DC) transparent;
}
.dtp-time-list::-webkit-scrollbar { width: 6px; }
.dtp-time-list::-webkit-scrollbar-thumb { background: var(--line, #E5E1DC); border-radius: 3px; }

.dtp-slot {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary, #0A2A43);
  text-align: center;
  transition: background .12s, color .12s, border-color .12s;
}
.dtp-slot:hover { background: var(--sand, #F6EFE6); border-color: var(--sand, #F6EFE6); }
.dtp-slot.sel {
  background: var(--primary-accent, #1FB3C8);
  color: white;
  border-color: var(--primary-accent, #1FB3C8);
  font-weight: 700;
}

/* Footer */
.dtp-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-top: 1px solid var(--line, #E5E1DC);
  background: var(--sand, #F6EFE6);
}
.dtp-hint { font-size: 11px; color: var(--gray, #6B7B8A); }
.dtp-done {
  background: var(--primary, #0A2A43);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: background .15s;
}
.dtp-done:hover { background: var(--primary-accent, #1FB3C8); }

/* Mobile */
@media (max-width: 560px) {
  .dtp-pop {
    position: fixed;
    top: auto; bottom: 0; left: 0; right: 0;
    width: 100%; max-width: 100%;
    border-radius: 20px 20px 0 0;
    animation: dtpSlideUp .22s cubic-bezier(.3, 1.3, .5, 1);
  }
  @keyframes dtpSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
  .dtp-pop-body { grid-template-columns: 1fr; min-height: 0; }
  .dtp-cal { border-right: none; border-bottom: 1px solid var(--line, #E5E1DC); }
  .dtp-time-list { max-height: 180px; grid-template-columns: repeat(3, 1fr); }
}

/* ====== Theme tweaks bridging the design's React markup to native <details> ====== */
/* The design used React state to add `.open` to FAQ items; we use native
   <details>, so mirror the same visual rules onto the [open] attribute. */
.faq-item[open] .chev { transform: rotate(45deg); }
.faq-item[open] .faq-a { padding: 0 22px 18px; max-height: 1200px; }
.faq-item summary { list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }

/* Fix images path: design CSS used 'images/...' relative to its index.html.
   Our images live at theme-root/assets/images, and we set the hero image
   inline via the .hero-overlay element so the CSS fallback isn't reached. */

/* ============= ARTICLE PATTERNS ============= */
.se-home > section,
.se-home > .wp-block-group { width: 100%; }

.se-article-hero {
  max-width: 820px; margin: 56px auto 36px; padding: 0 24px;
}
.se-article-hero h1 { margin: 8px 0 18px; }
.se-article-hero .lede { font-size: 20px; line-height: 1.5; color: var(--ink-2, #2A3744); margin-bottom: 24px; }
.se-article-hero .se-article-cover img { width: 100%; height: auto; border-radius: 14px; }
.se-article-hero .se-article-meta { color: var(--gray); font-size: 13px; margin-top: 14px; }

.se-article-row { max-width: 1080px; margin: 36px auto; padding: 0 24px; gap: 36px; }
.se-article-row h2 { margin-bottom: 12px; }
.se-article-row .se-article-side img { width: 100%; height: auto; border-radius: 12px; box-shadow: var(--shadow-md); }

.se-article-trio { max-width: 1080px; margin: 36px auto; padding: 0 24px; }
.se-article-trio h3 { margin-bottom: 18px; font-size: 22px; }
.se-trio-card img { width: 100%; height: auto; border-radius: 10px; }
.se-trio-card figcaption { font-size: 14px; color: var(--gray); padding: 8px 4px 0; text-align: left; }

.se-article-pq { max-width: 920px; margin: 32px auto; padding: 0 24px; }
.se-article-pq blockquote {
  background: var(--sand); border: 0; border-left: 4px solid var(--cta);
  padding: 28px 32px; border-radius: 8px;
}
.se-article-pq blockquote p {
  font-size: 22px; line-height: 1.4; color: var(--primary);
  font-weight: 500; font-style: normal; margin: 0 0 12px;
}
.se-article-pq blockquote cite {
  font-size: 13px; color: var(--gray); font-style: normal; font-weight: 600;
}

.se-article-cta { max-width: 1080px; margin: 32px auto; padding: 0 24px; align-items: center; }

.se-article-tips { max-width: 1080px; margin: 36px auto; padding: 0 24px; }
.se-article-tips h2 { margin-bottom: 24px; text-align: center; }
.se-tips-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
@media (max-width: 700px) { .se-tips-grid { grid-template-columns: 1fr; } }
.se-tip {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 22px 24px; box-shadow: var(--shadow-sm);
}
.se-tip-num {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: .14em; color: var(--cta);
  margin: 0 0 6px;
}
.se-tip h3 { margin: 0 0 8px; font-size: 18px; }
.se-tip p  { margin: 0; color: var(--gray); font-size: 14px; line-height: 1.6; }

/* When a pattern lands inside post_content, WP wraps it in extra divs.
   These reset the editor's auto-stack margins so the pattern doesn't
   collide with bands above/below. */
.se-home .wp-block-group + .wp-block-group { margin-top: 0; }

/* ============= HERO via core/cover ============= */
/* When the Hero pattern uses core/cover, WP wraps content in
   .wp-block-cover__inner-container with its own padding. Reset that so
   our .hero / .hero-grid / .container rules drive the layout. */
.wp-block-cover.hero {
  padding: 0;
  color: #fff;
  /* Cover ships with `min-height: 100vh` for some variants — our pattern
     sets 600px in attrs. Keep it sane on small screens too. */
}
.wp-block-cover.hero .wp-block-cover__inner-container {
  width: 100%;
  max-width: none;
  padding: 0;
  z-index: 1;
}
.wp-block-cover.hero .container { max-width: var(--container, 1180px); margin: 0 auto; padding: 0 20px; }

/* Reuse our existing horizontal-hero rules (they target .hero.horizontal). */
.wp-block-cover.hero.horizontal { padding-top: 48px; padding-bottom: 80px; }
@media (max-width: 900px) {
  .wp-block-cover.hero { min-height: auto !important; }
  .wp-block-cover.hero.horizontal { padding-top: 28px; padding-bottom: 32px; }
  /* Parallax (background-attachment:fixed) makes mobile browsers scale the bg
     image to the whole (tall) page instead of the element → heavy upscaling /
     pixelation. Pin it to the element on phones so it stays sharp and the
     mobile focal point applies cleanly. */
  .wp-block-cover.hero.has-parallax,
  .wp-block-cover.hero .wp-block-cover__image-background.has-parallax {
    background-attachment: scroll !important;
  }
}

/* ============= SINGLE HOTEL ============= */
.se-hotel-hero {
  position: relative;
  color: #fff;
  min-height: 480px;
  display: flex; align-items: stretch;
  overflow: hidden;
}
.se-hotel-hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.se-hotel-hero-media picture,
.se-hotel-hero-media img.se-hotel-hero-img {
  display: block; width: 100%; height: 100%; object-fit: cover;
}
.se-hotel-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(7,38,56,.78) 0%, rgba(11,60,93,.62) 55%, rgba(0,174,239,.28) 100%);
}
.se-hotel-hero-content {
  position: relative; z-index: 1;
  width: 100%;
  padding: 80px 0 64px;
  display: flex; align-items: center;
}
.se-hotel-hero h1 { color: #fff; font-size: clamp(32px, 4.4vw, 52px); margin: 16px 0 14px; line-height: 1.1; }
.se-hotel-hero-kicker {
  display: block; font-size: clamp(13px, 1.3vw, 16px); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; color: #fff; opacity: .95;
  margin-bottom: 2px;
}
.se-hotel-hero-sub {
  display: block; font-size: clamp(16px, 1.5vw, 20px); font-weight: 500;
  color: #fff; margin-top: 8px; font-family: var(--font-body, var(--font-head));
  letter-spacing: .01em;
}
.se-hotel-breadcrumb {
  font-size: 13px; color: rgba(255,255,255,.78);
  letter-spacing: .04em;
}
.se-hotel-breadcrumb a { color: rgba(255,255,255,.78); text-decoration: underline; text-underline-offset: 2px; }
.se-hotel-breadcrumb a:hover { color: #fff; }
.se-hotel-lede {
  max-width: 680px; font-size: 18px; line-height: 1.5;
  color: rgba(255,255,255,.92); margin: 0 0 24px;
}
.se-hotel-price {
  display: inline-flex; align-items: baseline; gap: 10px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  padding: 10px 18px; border-radius: 999px;
}
.se-hotel-price-label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.78); }
.se-hotel-price-amt { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: #fff; }
.se-hotel-price-sub { font-size: 13px; color: rgba(255,255,255,.78); }

.se-hotel-booking { padding: 48px 0 36px; background: var(--sand); }
.se-hotel-booking h2 { text-align: center; margin-bottom: 24px; }
.se-hotel-content { padding: 56px 0; }

.se-gallery-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.se-gallery-item {
  margin: 0; border-radius: 12px; overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--sand-deep);
}
.se-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .25s;
}
.se-gallery-item:hover img { transform: scale(1.03); }

.section-head-center { text-align: center; margin-left: auto; margin-right: auto; }

@media (max-width: 700px) {
  .se-hotel-hero { min-height: 420px; }
  .se-hotel-hero-content { padding: 56px 0 44px; }
  .se-gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ----- Pricing strip ----- */
.se-hotel-pricing { padding: 32px 0 12px; background: #fff; }
.se-hotel-pricing-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 880px; margin: 0 auto;
}
.se-hotel-pricing-card {
  position: relative;
  background: var(--sand); border-radius: 16px; padding: 22px 24px;
  display: flex; flex-direction: column; gap: 6px;
  border: 1.5px solid transparent;
  transition: transform .15s, border-color .15s;
}
.se-hotel-pricing-card:hover { transform: translateY(-2px); border-color: var(--primary); }
.se-hotel-pricing-card.is-featured {
  background: linear-gradient(135deg, #fff 0%, var(--sand) 100%);
  border-color: var(--cta);
}
.se-hotel-pricing-tag {
  font-size: 11px; text-transform: uppercase; letter-spacing: .12em;
  font-weight: 700; color: var(--gray);
}
.se-hotel-pricing-amt {
  font-family: var(--font-head); font-weight: 700; color: var(--primary);
  font-size: 36px; line-height: 1; margin: 4px 0;
}
.se-hotel-pricing-amt small { font-size: 14px; color: var(--gray); font-weight: 500; }
.se-hotel-pricing-sub { font-size: 13px; color: var(--gray); margin-bottom: 10px; }
.se-hotel-pricing-card .btn { align-self: flex-start; }
.se-hotel-pricing-badge {
  position: absolute; top: -10px; right: 16px;
  background: var(--cta); color: var(--cta-ink);
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.se-hotel-pricing-foot {
  text-align: center; font-size: 13px; color: var(--gray);
  margin-top: 18px;
}

/* ----- Highlights ----- */
.se-hotel-highlights-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 1080px; margin: 0 auto;
}
.se-hotel-highlights-grid li {
  background: #fff; border-radius: 14px; padding: 18px 20px;
  display: grid; grid-template-columns: auto 1fr; column-gap: 14px; row-gap: 4px;
  align-items: start;
  box-shadow: 0 1px 2px rgba(7,38,56,.04), 0 6px 16px rgba(7,38,56,.05);
}
.se-hotel-highlights-grid .se-hl-icon {
  grid-row: span 2;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(0,174,239,.12); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.se-hotel-highlights-grid strong {
  color: var(--primary); font-family: var(--font-head); font-weight: 700; font-size: 15px;
}
.se-hotel-highlights-grid span:not(.se-hl-icon) {
  color: var(--gray); font-size: 13.5px; line-height: 1.45;
}

/* ----- Location ----- */
.se-hotel-location { padding: 56px 0; }
.se-hotel-location-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.se-hotel-location-card {
  background: var(--sand); border-radius: 14px; padding: 22px 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.se-loc-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .12em;
  font-weight: 700; color: var(--gray);
}
.se-loc-value {
  font-family: var(--font-head); font-weight: 600; color: var(--primary);
  font-size: 18px; line-height: 1.3;
}
.se-loc-value small { font-size: 13px; color: var(--gray); font-weight: 500; }
.se-loc-sub { font-size: 13px; color: var(--gray); }
.se-hotel-location-card .se-link { margin-top: 4px; font-size: 13px; }
.se-hotel-location-map {
  margin-top: 24px;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(7,38,56,.04), 0 6px 16px rgba(7,38,56,.05);
  background: var(--sand);
}
.se-hotel-location-map iframe { display: block; width: 100%; }

/* ----- Destination → hotels grid ----- */
.se-dest-hotels { padding: 56px 0; }
.se-dest-hotels-lede {
  color: var(--gray); font-size: 15px; line-height: 1.55;
  max-width: 620px; margin: 8px auto 0;
}
.se-dest-hotels-grid {
  margin: 32px auto 0; max-width: 1180px;
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.se-dest-hcard {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 16px; overflow: hidden;
  text-decoration: none; color: inherit;
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(7,38,56,.04), 0 6px 16px rgba(7,38,56,.05);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.se-dest-hcard:hover {
  transform: translateY(-3px);
  border-color: var(--secondary-deep);
  box-shadow: 0 1px 2px rgba(7,38,56,.04), 0 14px 32px rgba(7,38,56,.12);
}
.se-dest-hcard-media {
  position: relative; aspect-ratio: 4 / 3;
  background: var(--sand-deep); overflow: hidden;
}
.se-dest-hcard-img,
.se-dest-hcard-media picture,
.se-dest-hcard-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.se-dest-hcard:hover .se-dest-hcard-img,
.se-dest-hcard:hover .se-dest-hcard-media img { transform: scale(1.04); }
.se-dest-hcard-price {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  color: var(--primary); font-family: var(--font-head); font-weight: 700;
  font-size: 18px; line-height: 1;
  padding: 8px 12px; border-radius: 999px;
  display: inline-flex; align-items: baseline; gap: 4px;
  box-shadow: 0 4px 12px rgba(7,38,56,.16);
}
.se-dest-hcard-price small {
  font-size: 11px; color: var(--gray); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
}
.se-dest-hcard-body {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column; gap: 4px;
  flex: 1;
}
.se-dest-hcard-zone {
  font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--secondary-deep); font-weight: 700;
}
.se-dest-hcard-name {
  font-family: var(--font-head); font-weight: 700; color: var(--primary);
  font-size: 16px; line-height: 1.3;
  margin: 2px 0 8px;
}
.se-dest-hcard-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--cta); font-weight: 700; font-size: 13px;
  letter-spacing: .02em;
  transition: gap .2s;
}
.se-dest-hcard:hover .se-dest-hcard-cta { gap: 10px; }

.se-dest-hotels-empty { padding: 56px 0; }

/* ============================================================
 *  /book/ page — focused checkout chrome
 * ============================================================ */
.se-bookpage { background: var(--sand); }
.se-bookpage-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0b3c5d 100%);
  color: #fff;
  padding: 36px 0 28px;
  position: relative;
  overflow: hidden;
}
.se-bookpage-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% -10%, rgba(0,174,239,.18) 0%, transparent 55%),
    radial-gradient(circle at -10% 110%, rgba(255,255,255,.05) 0%, transparent 50%);
  pointer-events: none;
}
.se-bookpage-hero > .container { position: relative; z-index: 1; }

.se-bookpage-steps {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; letter-spacing: .02em;
  margin-bottom: 18px;
}
.se-bookpage-step {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.62);
}
.se-bookpage-step.is-done    { color: rgba(255,255,255,.85); }
.se-bookpage-step.is-current { color: #fff; font-weight: 600; }
.se-bookpage-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
}
.se-bookpage-step.is-current .se-bookpage-step-num {
  background: var(--cta); color: var(--cta-ink);
}
.se-bookpage-step.is-done .se-bookpage-step-num {
  background: var(--secondary); color: var(--primary);
}
.se-bookpage-step-sep {
  width: 24px; height: 1px;
  background: rgba(255,255,255,.22);
}

.se-bookpage-h1 {
  color: #fff;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 700;
}
.se-bookpage-h1 span {
  color: var(--secondary-deep);
  white-space: nowrap;
}

.se-bookpage-trust {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  font-size: 13.5px; color: rgba(255,255,255,.86);
}
.se-bookpage-trust li {
  display: inline-flex; align-items: center; gap: 6px;
}
.se-bookpage-trust svg { color: var(--secondary-deep); flex-shrink: 0; }

.se-bookpage-body {
  padding: 32px 0 48px;
}
/* The widget's own cards (step2-main, step2-summary-card) already carry
   the elevation. Don't double-card them — this wrapper is just a hook
   for the negative-margin overlap with the hero. */
.se-bookpage-form {
  max-width: 1180px;
  margin: -56px auto 0;
  position: relative;
  z-index: 2;
}
.se-bookpage-form .cbs-wrap.cbs-step2 {
  margin: 0; padding: 0 20px;
}
@media (max-width: 720px) {
  .se-bookpage-body { padding: 20px 0 36px; }
  .se-bookpage-form { margin-top: -32px; }
  .se-bookpage-form .cbs-wrap.cbs-step2 { padding: 0 12px; }
}

.se-bookpage-foot {
  padding: 32px 0 56px;
  background: var(--sand);
}
.se-bookpage-foot-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1080px; margin: 0 auto 28px;
}
.se-bookpage-foot-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 1px 2px rgba(7,38,56,.04), 0 4px 14px rgba(7,38,56,.04);
}
.se-bookpage-foot-card strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-head); font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}
.se-bookpage-foot-card span {
  display: block;
  color: var(--gray);
  font-size: 13.5px; line-height: 1.5;
}
.se-bookpage-foot-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,174,239,.12);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
}

.se-bookpage-pay {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: center;
  max-width: 880px; margin: 0 auto;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--gray);
}
.se-bookpage-pay-label {
  text-transform: uppercase; letter-spacing: .08em;
  font-weight: 700; font-size: 11px;
  color: var(--primary);
}
.se-bookpage-pay-row {
  display: inline-flex; align-items: center; gap: 10px;
}
.se-bookpage-pay-row img { height: 22px; width: auto; }
.se-bookpage-pay-arrival {
  font-style: italic;
}

/* ----- Destination quote card (shown when no zones are mapped) ----- */
.se-dest-quote-card {
  max-width: 980px; margin: 0 auto;
  background: linear-gradient(135deg, #fff 0%, var(--sand) 100%);
  border-radius: 18px; padding: 32px;
  box-shadow: 0 1px 2px rgba(7,38,56,.04), 0 10px 28px rgba(7,38,56,.08);
  display: grid; gap: 24px;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.se-dest-quote-card h2 {
  margin: 6px 0 8px; font-size: 24px; line-height: 1.25; color: var(--primary);
}
.se-dest-quote-card p {
  margin: 0; color: var(--gray); font-size: 15px; line-height: 1.55;
  max-width: 560px;
}
.se-dest-quote-actions {
  display: flex; flex-direction: column; gap: 10px; align-items: stretch;
  min-width: 220px;
}
@media (max-width: 760px) {
  .se-dest-quote-card { grid-template-columns: 1fr; padding: 24px; }
  .se-dest-quote-actions { flex-direction: row; flex-wrap: wrap; }
}

/* ----- Comparison: private shuttle vs taxi vs rideshare ----- */
.se-hotel-compare { padding: 56px 0; }
.se-compare-lede {
  color: var(--gray); font-size: 15.5px; line-height: 1.6;
  max-width: 660px; margin: 8px auto 0;
}
.se-compare-grid {
  margin: 32px auto 0; max-width: 1080px;
  display: grid; grid-template-columns: 1.4fr 1.2fr 1fr 1fr;
  gap: 0;
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(7,38,56,.04), 0 10px 28px rgba(7,38,56,.07);
}
.se-compare-row { display: contents; }
.se-compare-cell {
  padding: 16px 18px; border-top: 1px solid var(--line);
  font-size: 14.5px; line-height: 1.45; color: var(--primary);
  display: flex; flex-direction: column; gap: 2px; min-width: 0;
}
.se-compare-cell strong {
  color: var(--primary); font-family: var(--font-head); font-weight: 700;
  font-size: 15px;
}
.se-compare-cell span { color: var(--gray); font-size: 13px; }
.se-compare-feature {
  background: var(--sand); font-weight: 600; color: var(--primary);
  font-size: 14px; line-height: 1.35;
}
.se-compare-row.se-compare-head .se-compare-cell {
  border-top: 0; padding-top: 22px; padding-bottom: 18px;
  background: #fff; gap: 4px;
}
.se-compare-row.se-compare-head .se-compare-feature { background: #fff; }
.se-compare-us {
  background: linear-gradient(180deg, #ecfaff 0%, #fff 100%);
  position: relative;
}
.se-compare-row.se-compare-head .se-compare-us {
  background: linear-gradient(180deg, var(--primary) 0%, #0b3c5d 100%);
  color: #fff;
}
.se-compare-row.se-compare-head .se-compare-us strong { color: #fff; font-size: 16px; }
.se-compare-row.se-compare-head .se-compare-us span { color: rgba(255,255,255,.78); }
.se-compare-badge {
  display: inline-block; align-self: flex-start;
  background: var(--cta); color: var(--cta-ink);
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px;
  margin-bottom: 6px;
}
.se-cmp-yes  { color: #137a3a !important; font-weight: 600; font-size: 14px !important; line-height: 1.4; }
.se-cmp-mid  { color: #a06b1c !important; font-weight: 600; font-size: 14px !important; line-height: 1.4; }
.se-cmp-no   { color: #a23b3b !important; font-weight: 600; font-size: 14px !important; line-height: 1.4; }
.se-compare-foot {
  margin: 18px auto 0; max-width: 760px; text-align: center;
  font-size: 12.5px; color: var(--gray);
}
@media (max-width: 860px) {
  .se-compare-grid {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }
  .se-compare-row { display: block; }
  .se-compare-row.se-compare-head { display: none; }
  .se-compare-row + .se-compare-row { border-top: 8px solid var(--sand); }
  .se-compare-cell { border-top: 1px solid var(--line); padding: 12px 18px; }
  .se-compare-cell:first-child { border-top: 0; }
  .se-compare-feature {
    background: var(--primary); color: #fff; font-size: 14px;
    padding: 14px 18px; font-weight: 700;
  }
  .se-compare-cell.se-compare-us {
    background: linear-gradient(90deg, #ecfaff 0%, #fff 100%);
  }
  /* Inject inline labels via ::before so each provider is identifiable */
  .se-compare-row > .se-compare-cell:nth-child(2)::before { content: 'Private shuttle · '; color: var(--cta); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
  .se-compare-row > .se-compare-cell:nth-child(3)::before { content: 'Airport taxi · ';     color: var(--gray); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
  .se-compare-row > .se-compare-cell:nth-child(4)::before { content: 'Uber / DiDi · ';      color: var(--gray); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
  .se-compare-us .se-compare-badge { display: none; }
}

/* ----- Description with side image ----- */
.se-hotel-content-grid {
  display: grid; gap: 32px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: start;
}
.se-hotel-content-text { min-width: 0; }
.se-hotel-content-figure {
  margin: 0;
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sand-deep);
  box-shadow: 0 1px 2px rgba(7,38,56,.04), 0 8px 24px rgba(7,38,56,.08);
  position: sticky; top: 80px;
}
.se-hotel-content-figure img,
.se-hotel-content-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 860px) {
  .se-hotel-content-grid { grid-template-columns: 1fr; }
  .se-hotel-content-figure { aspect-ratio: 16 / 10; position: static; }
}

/* ----- Transfer experience (vehicle + driver showcase) ----- */
.se-hotel-transfer { padding: 56px 0; }
.se-transfer-showcase {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1080px; margin: 0 auto 32px;
}
.se-transfer-figure {
  margin: 0;
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(7,38,56,.04), 0 6px 18px rgba(7,38,56,.06);
  display: flex; flex-direction: column;
}
.se-transfer-figure img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block;
  background: var(--sand);
}
.se-transfer-figure figcaption {
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 2px;
}
.se-transfer-figure figcaption strong {
  color: var(--primary); font-family: var(--font-head);
  font-weight: 700; font-size: 15px;
}
.se-transfer-figure figcaption span {
  color: var(--gray); font-size: 13px;
}

/* SVG icons inside the highlights tiles inherit the primary tint */
.se-hotel-highlights-grid .se-hl-icon svg {
  display: block;
}

/* ----- Closing CTA ----- */
.se-hotel-closing { padding: 56px 0; background: var(--sand); }
.se-hotel-closing h2 { margin-bottom: 8px; }
.se-hotel-closing p { color: var(--gray); margin-bottom: 22px; font-size: 17px; }

/* ----- FAQ inside hotel page (editorial 2-col with imagery splash) ----- */
.se-hotel-faq {
  position: relative; padding: 64px 0 56px; overflow: hidden;
}
.se-faq-splash {
  position: absolute; pointer-events: none;
  top: -140px; right: -180px; width: 640px; height: 640px;
  color: var(--primary); opacity: .06; z-index: 0;
}
.se-hotel-faq > .container { position: relative; z-index: 1; }
.se-faq-layout {
  display: grid; gap: 44px;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: start;
}
.se-faq-aside {
  position: sticky; top: 88px;
  display: flex; flex-direction: column; gap: 18px;
}
.se-faq-collage {
  display: grid; gap: 10px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 230px 150px;
  grid-template-areas:
    "tall wide"
    "tall square";
}
.se-faq-img {
  margin: 0; border-radius: 14px; overflow: hidden;
  background: var(--sand-deep);
  box-shadow: 0 1px 2px rgba(7,38,56,.04), 0 8px 24px rgba(7,38,56,.08);
}
.se-faq-img.is-tall   { grid-area: tall; }
.se-faq-img.is-wide   { grid-area: wide; }
.se-faq-img.is-square { grid-area: square; }
.se-faq-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.se-faq-img:hover img { transform: scale(1.04); }

.se-faq-help-card {
  background: linear-gradient(135deg, var(--primary) 0%, #0b3c5d 100%);
  color: #fff; border-radius: 16px; padding: 22px 24px;
  box-shadow: 0 1px 2px rgba(7,38,56,.04), 0 10px 28px rgba(7,38,56,.18);
}
.se-faq-help-title {
  font-family: var(--font-head); font-weight: 700; font-size: 18px;
  margin-bottom: 4px; color: #fff;
}
.se-faq-help-card p {
  font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.5;
  margin: 0 0 14px;
}
.se-faq-help-actions {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.se-faq-help-tel {
  color: #fff; font-weight: 600; font-size: 14px;
  text-decoration: none; padding: 8px 4px; letter-spacing: .01em;
}
.se-faq-help-tel:hover { color: var(--secondary-deep); }

.se-faq-main { min-width: 0; }
.se-faq-main .section-head { text-align: left; margin-bottom: 22px; }
.se-faq-lede {
  color: var(--gray); font-size: 15.5px; line-height: 1.6;
  max-width: 580px; margin: 8px 0 0;
}
.se-faq-main .faq-list { max-width: none; margin: 0; }

/* Refine accordion within hotel page: bigger touch targets, pill chevron */
.se-hotel-faq .faq-item {
  border-radius: 14px;
  transition: box-shadow .2s, border-color .2s;
}
.se-hotel-faq .faq-item:hover {
  border-color: var(--secondary-deep);
  box-shadow: 0 1px 2px rgba(7,38,56,.04), 0 8px 18px rgba(7,38,56,.06);
}
.se-hotel-faq .faq-item[open] {
  border-color: var(--cta);
  box-shadow: 0 1px 2px rgba(7,38,56,.04), 0 10px 22px rgba(7,38,56,.08);
}
.se-hotel-faq .faq-q {
  padding: 20px 22px; font-size: 17px; gap: 18px; line-height: 1.4;
}
.se-hotel-faq .faq-q .chev {
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sand); color: var(--primary);
  font-size: 22px; font-weight: 700; line-height: 1;
  transition: background-color .2s, color .2s, transform .2s;
}
.se-hotel-faq .faq-item[open] .faq-q .chev {
  background: var(--cta); color: var(--cta-ink);
}
.se-hotel-faq .faq-a {
  font-size: 15.5px; padding-right: 50px; line-height: 1.65;
}

@media (max-width: 980px) {
  .se-faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .se-faq-aside { position: static; }
  .se-faq-splash { display: none; }
}
@media (max-width: 600px) {
  .se-faq-collage {
    grid-template-rows: 200px 130px;
  }
  .se-hotel-faq .faq-q { font-size: 15.5px; padding: 16px 18px; }
  .se-hotel-faq .faq-a { padding-right: 22px; }
}

/* ============= AIRBNB-WIDE PILL ============= */
/* Let the booking pill use up to 1400px in hero/booking contexts.
   Hero copy stays narrow (820px) for readability — only the pill widens. */
.hero .container,
.wp-block-cover.hero .wp-block-group.container,
.se-hotel-booking .container {
  max-width: 1400px;
}
.hero.horizontal .hero-copy,
.wp-block-cover.hero .hero-copy {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
/* Make the pill itself span the full width of its (now wider) parent. */
.hero .cbs-wrap.cbs-h,
.wp-block-cover.hero .cbs-wrap.cbs-h,
.se-hotel-booking .cbs-wrap.cbs-h {
  max-width: 100%;
  width: 100%;
}

/* Match the booking pill's 1600px ceiling in hero/booking contexts. */
.hero .container,
.wp-block-cover.hero .wp-block-group.container,
.se-hotel-booking .container {
  max-width: min(1600px, calc(100vw - 32px));
}

/* ============= ESCAPE CONSTRAINED LAYOUT IN HERO ============= */
/* Gutenberg's `is-layout-constrained > *` rule caps every direct child
   of a constrained container at `contentSize` (~780px). The Hero pattern
   uses a constrained container with hero-grid inside — so the booking
   pill inherits an 780px max-width. We override to let hero-grid stretch
   to wideSize (1600px) regardless of the parent's constrained layout. */
.wp-block-cover.hero .is-layout-constrained > .hero-grid,
.wp-block-cover.hero .hero-grid {
  max-width: min(1600px, calc(100vw - 32px)) !important;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
/* Same for the booking section on hotel pages. */
.se-hotel-booking .is-layout-constrained > * {
  max-width: min(1600px, calc(100vw - 32px));
}

/* ============= Page header (editorial pages) =============
   Auto-skipped on "app" pages with their own hero (see page.php
   se_page_should_show_title). When it does render, it sits as a
   slim band over the sand/cream tone with a centered Poppins title. */
.se-page-head {
  background: linear-gradient(180deg, var(--sand) 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 36px;
  margin-bottom: 32px;
}
.se-page-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--primary);
  text-align: center;
}
.se-page-body-wrap {
  padding-bottom: 56px;
}
@media (max-width: 640px) {
  .se-page-head { padding: 36px 16px 24px; margin-bottom: 22px; }
}


/* ============================================================
   BLOG — archive (index.php) + single post (single.php)
   Standalone; reuses design tokens (--primary, --cta, --sand…)
   and the .container / .btn / .band primitives.
   ============================================================ */

/* Layout containers used by blog + editorial templates (page.php,
   single.php). Previously referenced but never defined. */
.se-container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.se-container-narrow { max-width: 760px; }
.se-section { padding: 56px 0; }

/* ---- Archive header band ---- */
.se-blog-head {
  background: linear-gradient(180deg, var(--sand) 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 40px;
  text-align: center;
}
.se-blog-kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--secondary-deep);
  margin-bottom: 12px;
}
.se-blog-title {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -.015em;
  color: var(--primary);
}
.se-blog-desc {
  max-width: 620px; margin: 16px auto 0;
  color: var(--gray); font-size: 18px; line-height: 1.6;
}

/* ---- Shared card meta + category badge ---- */
.se-card-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: var(--gray); margin-bottom: 10px;
}
.se-card-meta time { white-space: nowrap; }
.se-dot { color: var(--gray-2); }
.se-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600; font-size: 12px; letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--primary-700);
  background: rgba(0,174,239,.12);
  padding: 4px 10px; border-radius: 999px;
  transition: background .15s, color .15s;
}
a.se-badge:hover { background: var(--secondary-deep); color: #fff; }
.se-badge-float {
  position: absolute; top: 12px; left: 12px;
  background: rgba(11,60,93,.86); color: #fff;
  backdrop-filter: blur(2px);
}

/* ---- Lead (featured) card on blog home ---- */
.se-lead-card {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); margin-bottom: 40px;
}
.se-lead-media { display: block; overflow: hidden; min-height: 280px; }
.se-lead-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.se-lead-card:hover .se-lead-media img { transform: scale(1.04); }
.se-lead-body { padding: 36px 40px; display: flex; flex-direction: column; align-items: flex-start; }
.se-lead-title { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2; margin: 6px 0 12px; }
.se-lead-title a { color: var(--primary); }
.se-lead-title a:hover { color: var(--secondary-deep); }
.se-lead-excerpt { color: var(--gray); font-size: 16px; line-height: 1.65; margin: 0 0 22px; }

/* ---- Post grid + cards ---- */
.se-post-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.se-post-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.se-post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.se-post-thumb {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 16 / 10; background: var(--sand-deep);
}
.se-post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.se-post-card:hover .se-post-thumb img { transform: scale(1.05); }
.se-post-thumb-fallback {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-deep) 100%);
}
.se-post-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.se-post-title { font-size: 20px; line-height: 1.3; margin: 0 0 10px; }
.se-post-title a { color: var(--primary); }
.se-post-title a:hover { color: var(--secondary-deep); }
.se-post-excerpt { color: var(--gray); font-size: 15px; line-height: 1.6; margin: 0 0 16px; flex: 1; }
.se-link {
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  color: var(--cta); align-self: flex-start;
}
.se-link:hover { color: var(--cta-hover); }

/* ---- Pagination ---- */
.se-pagination { margin-top: 48px; }
.se-pagination .nav-links {
  display: flex; justify-content: center; align-items: center; gap: 6px; flex-wrap: wrap;
}
.se-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  color: var(--primary); background: #fff;
  transition: background .15s, color .15s, border-color .15s;
}
.se-pagination a.page-numbers:hover { background: var(--sand); border-color: var(--secondary-deep); }
.se-pagination .page-numbers.current { background: var(--primary); color: #fff; border-color: var(--primary); }
.se-pagination .page-numbers.dots { border: 0; background: transparent; }

/* ---- Empty state ---- */
.se-empty { text-align: center; padding: 48px 0 8px; }
.se-empty h2 { color: var(--primary); margin-bottom: 10px; }
.se-empty p { color: var(--gray); margin-bottom: 24px; }

/* ============================================================
   SINGLE POST
   ============================================================ */
.se-article-head {
  background: linear-gradient(180deg, var(--sand) 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
  padding: 40px 0 36px; text-align: center;
}
.se-crumbs {
  display: flex; justify-content: center; gap: 8px;
  font-size: 13px; color: var(--gray-2); margin-bottom: 18px;
}
.se-crumbs a { color: var(--gray); }
.se-crumbs a:hover { color: var(--secondary-deep); }
.se-article-head .se-badge { margin-bottom: 16px; }
.se-article-title {
  margin: 0 auto; max-width: 720px;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.15;
  letter-spacing: -.015em; color: var(--primary);
}
.se-article-meta {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin-top: 22px; color: var(--gray); font-size: 14px;
}
.se-author-avatar { border-radius: 50%; width: 40px; height: 40px; }
.se-author-name { font-weight: 600; color: var(--ink-2); }

/* Cinematic post hero: the featured image (var(--se-hero-bg), set inline on
   .se-hero-stage in single.php) is reused as a heavily blurred, darkened,
   full-cover background layer (::before) under a sharp, centered foreground
   copy (.se-hero-img), with a dark gradient overlay (::after) for depth.
   Full-bleed, square corners, no fixed attachment. Scoped via .se-post-hero
   so it overrides the 820px .se-article-hero block-pattern header without
   affecting that pattern. */
.se-post-hero {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 0 8px;
  padding: 0;
}
.se-hero-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 520px;
  background: var(--sand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Blurred full-cover background — same featured image */
.se-hero-stage::before {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: 0;
  background-image: var(--se-hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(35px) saturate(1.15) brightness(.7);
  transform: scale(1.15);   /* hides the blurred transparent edges */
  opacity: .95;
  will-change: transform;
}
/* Dark cinematic overlay for depth + readability */
.se-hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.10), transparent 45%),
    linear-gradient(180deg, rgba(5,15,25,.15) 0%, rgba(5,15,25,.65) 100%);
}
/* Sharp, elevated foreground image */
.se-hero-img {
  position: relative;
  z-index: 2;
  display: block;
  max-width: min(900px, 90%);
  height: auto;
  border-radius: 0;
  box-shadow: 0 25px 80px rgba(0,0,0,.35), 0 10px 30px rgba(0,0,0,.18);
  transform: translateY(10px);
}
/* Mobile: cheaper blur + shorter stage (no fixed attachment anywhere —
   the scale()/filter combo made the parallax pointless, so it's plain). */
@media (max-width: 1023px) {
  .se-hero-stage { min-height: 380px; }
  .se-hero-stage::before {
    filter: blur(24px) saturate(1.05) brightness(.8);
  }
}

/* Article typography */
.se-article { padding: 40px 0 8px; font-size: 18px; line-height: 1.75; color: var(--ink-2); }
.se-article > * { margin-top: 0; margin-bottom: 1.4em; }
.se-article h2 { font-size: clamp(24px, 2.6vw, 32px); line-height: 1.25; margin-top: 1.8em; color: var(--primary); }
.se-article h3 { font-size: clamp(20px, 2vw, 24px); margin-top: 1.6em; color: var(--primary); }
.se-article a { color: var(--secondary-deep); text-decoration: underline; text-underline-offset: 2px; }
.se-article a:hover { color: var(--primary); }
.se-article img, .se-article figure img { border-radius: var(--radius); height: auto; }
.se-article ul, .se-article ol { padding-left: 1.4em; }
.se-article li { margin-bottom: .5em; }
.se-article blockquote {
  border-left: 4px solid var(--secondary-deep);
  background: var(--sand); margin: 1.6em 0; padding: 18px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--ink);
}
.se-article blockquote p:last-child { margin-bottom: 0; }
.se-article code {
  background: var(--sand); padding: 2px 6px; border-radius: 6px;
  font-size: .9em;
}

.se-article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 0; }
.se-tag {
  font-size: 13px; color: var(--gray); background: var(--sand);
  padding: 6px 12px; border-radius: 999px; transition: background .15s, color .15s;
}
.se-tag:hover { background: var(--secondary); color: #fff; }

/* In-article CTA */
.se-article-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap; margin: 44px 0 8px; padding: 32px 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.se-article-cta-text { flex: 1; min-width: 260px; }
.se-article-cta h2 { color: #fff; margin: 0 0 8px; font-size: 24px; }
.se-article-cta p { color: rgba(255,255,255,.86); margin: 0; font-size: 15px; line-height: 1.6; }

/* Section head reused by "Keep reading" */
.se-section-head { text-align: center; margin-bottom: 36px; }
.se-section-head h2 { color: var(--primary); font-size: clamp(24px, 3vw, 34px); margin: 0; }

/* ---- Blog responsive ---- */
@media (max-width: 820px) {
  .se-lead-card { grid-template-columns: 1fr; }
  .se-lead-media { min-height: 220px; aspect-ratio: 16 / 9; }
  .se-lead-body { padding: 28px 24px; }
}
@media (max-width: 640px) {
  .se-section { padding: 40px 0; }
  .se-blog-head { padding: 40px 0 30px; }
  .se-article-cta { padding: 26px 24px; }
  .se-article { font-size: 17px; }
}

/* ============================================================
   HOTEL COMMENTS (native WP comments, Google-login gated)
   ============================================================ */
.se-comments-wrap { max-width: 760px; }
.se-comments { margin-top: 8px; }
.se-comments-title { font-size: 20px; color: var(--primary); margin: 0 0 18px; }
.se-comment-list { list-style: none; margin: 0 0 28px; padding: 0; }
.se-comment-list .comment { margin: 0 0 16px; }
.se-comment-list .children { list-style: none; margin: 14px 0 0 28px; padding-left: 18px; border-left: 2px solid var(--line); }
.se-comment-list .comment-body {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.se-comment-list .comment-author { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.se-comment-list .comment-author .avatar { border-radius: 50%; width: 44px; height: 44px; }
.se-comment-list .comment-author .fn { font-weight: 700; color: var(--primary); font-style: normal; }
.se-comment-list .comment-author .says { display: none; }
.se-comment-list .comment-meta { font-size: 13px; color: var(--gray); margin-bottom: 8px; }
.se-comment-list .comment-meta a { color: var(--gray); }
.se-comment-list .comment-content { color: var(--ink-2); line-height: 1.65; }
.se-comment-list .comment-content p { margin: 0 0 .7em; }
.se-comment-list .reply { margin-top: 8px; }
.se-comment-list .comment-reply-link {
  font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--secondary-deep);
}

/* Sign-in prompt for logged-out visitors */
.se-comment-login {
  text-align: center; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow-sm);
}
.se-comment-login p { color: var(--gray); margin: 0 0 16px; font-size: 16px; }

/* Comment form */
.se-comments .comment-respond {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.se-comments .comment-reply-title { font-size: 18px; color: var(--primary); margin: 0 0 14px; }
.se-comments .logged-in-as { font-size: 13px; color: var(--gray); margin-bottom: 14px; }
.se-comments .logged-in-as a { color: var(--secondary-deep); }
.se-comment-field textarea, .se-comments textarea#comment {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 14px; font: inherit; color: var(--ink); background: #fff; resize: vertical; min-height: 120px;
}
.se-comment-field textarea:focus, .se-comments textarea#comment:focus {
  outline: 0; border-color: var(--secondary-deep); box-shadow: 0 0 0 3px rgba(0,174,239,.14);
}
.se-comments .form-submit { margin: 14px 0 0; }
.se-comments .comment-pagination { margin-top: 20px; }

/* ============================================================
   NAVIGATION SUB-MENUS (dropdowns)
   Desktop: hover/focus dropdown. Mobile: nested indented list
   inside the slide-down panel. Colors are Customizer-overridable
   (Navigation → Dropdown background / text) on desktop.
   ============================================================ */
.nav-links .nav-menu .menu-item-has-children { position: relative; }
.nav-links .nav-menu .sub-menu {
  list-style: none; margin: 0; padding: 6px;
  background: #fff;
}
.nav-links .nav-menu .sub-menu a { font-weight: 500; }
.nav-links .nav-menu .sub-menu a::after { display: none; } /* no underline anim in dropdowns */

@media (min-width: 881px) {
  .nav-links .nav-menu .sub-menu {
    position: absolute; top: 100%; left: 0; z-index: 60; min-width: 210px;
    border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .15s ease, transform .15s ease, visibility 0s linear .15s;
  }
  .nav-links .nav-menu .menu-item-has-children:hover > .sub-menu,
  .nav-links .nav-menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
    transition: opacity .15s ease, transform .15s ease, visibility 0s;
  }
  .nav-links .nav-menu .sub-menu a { display: block; padding: 9px 12px; border-radius: 8px; white-space: nowrap; }
  .nav-links .nav-menu .sub-menu a:hover { background: var(--sand); }
  /* Caret on parent items */
  .nav-links .nav-menu .menu-item-has-children > a { position: relative; padding-right: 16px; }
  .nav-links .nav-menu .menu-item-has-children > a::before {
    content: ""; position: absolute; right: 2px; top: 50%;
    width: 6px; height: 6px; margin-top: -5px;
    border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg); opacity: .55;
  }
}

@media (max-width: 880px) {
  /* In the mobile panel sub-items are just an indented continuation. */
  .nav-links .nav-menu .sub-menu {
    background: transparent; padding: 0 0 0 16px; border: 0; box-shadow: none;
  }
  .nav-links .nav-menu .sub-menu a { padding: 12px 4px; font-size: 15px; border-bottom: 1px solid var(--line); }
}

/* ============================================================
   ACCESSIBILITY — visible keyboard focus
   Shows a clear focus ring for keyboard/AT users (Lighthouse a11y
   + WCAG 2.4.7) without adding an outline on mouse clicks.
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--secondary-deep);
  outline-offset: 2px;
  border-radius: 3px;
}
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--secondary-deep);
  outline-offset: 2px;
}
/* Don't double-up: remove the legacy outline when :focus-visible applies. */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }
