/* ==========================================================================
   Safari Rajasthan V2 — Premium Travel Homepage
   ========================================================================== */

/* ─── Tokens ──────────────────────────────────────────────────────────────── */
:root {
    /* ── Brand ── */
    --clr-primary:     #1a3c34;   /* deep forest green         */
    --clr-accent:      #c9932a;   /* warm amber / gold         */
    --clr-accent-dark: #a8791e;
    --clr-accent-lite: #e8aa42;   /* accent hover              */

    /* ── Surfaces ── */
    --clr-dark:        #111613;   /* footer / topbar bg        */
    --clr-text:        #2d2d2d;
    --clr-muted:       #6b7280;
    --clr-border:      #e5e7eb;
    --clr-bg:          #f9f8f5;
    --clr-white:       #ffffff;

    /* ── Footer palette (all green-tinted — NO blue-grays) ── */
    --ft-surface:      #192820;   /* inset bg: inputs, raised sections */
    --ft-border:       #24382f;   /* dividers & tag borders            */
    --ft-outline:      #3a5a4a;   /* outline button border             */
    --ft-text-bright:  #d4e8de;   /* column headings                   */
    --ft-text-muted:   #8aaa96;   /* body text / links                 */
    --ft-text-dim:     #527a66;   /* labels, picks label, social       */
    --ft-tag-border:   #2e4a3e;   /* popular picks tags                */

    /* ── Type (Poppins = headings; Plus Jakarta Sans = UI / body) ── */
    --font-head:       'Poppins', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
    --font-body:       'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

    /* ── Radii / shadows ── */
    --radius-sm:       6px;
    --radius-md:       12px;
    --radius-lg:       18px;
    --shadow-card:     0 2px 12px rgba(0,0,0,.08);
    --shadow-hover:    0 8px 28px rgba(0,0,0,.14);
    --transition:      0.22s ease;

    /* Homepage redesign */
    --home-gold:       #c5943e;
    --home-gold-hover: #a87d32;
    --home-value-bg:   #f3efe6;

    /* Sticky main header only (top bar scrolls away). Match .site-header padding + .logo__img height. */
    --site-sticky-header-top: calc(0.85rem * 2 + 72px + 12px);
    --site-sticky-scroll-margin: calc(0.85rem * 2 + 72px + 16px);
}

/* ─── Reset / base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1, "liga" 1;
}

/* Ensure all native headings use the display font */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head) !important;
}

/* Display serif — crisper curves at large sizes */
.hero__title,
.section-heading,
.tours-heading,
.tour-card__title,
.ex-card__title,
.stat-item__number,
.tgm__title {
    text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; object-fit: cover; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ─── Layout ────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: clamp(0.75rem, 2.4vw, 1rem);
    padding-right: clamp(0.75rem, 2.4vw, 1rem);
}

.section { padding: 3.5rem 0; }

/* ─── Section headings ──────────────────────────────────────────────────── */
.section-heading {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--clr-primary);
    margin-bottom: 1.75rem;
}

.section-heading--center { text-align: center; }


/* ══════════════════════════════════════════════════════════════
   TOP BAR — scrolls away; only .site-header is sticky
══════════════════════════════════════════════════════════════ */
.topbar {
    position: relative;
    z-index: 199;
    background: var(--clr-dark);
    color: var(--ft-text-muted);
    font-size: 0.8125rem;
    padding: 0.55rem 0;
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar__contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1 1 0;
    min-width: 0;
}

.topbar__contact span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.topbar__contact a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.topbar__contact a:hover { color: var(--clr-accent-lite); }

.topbar__sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

.topbar__tagline { font-size: 0.78rem; }

/* Homepage 3-column topbar */
.topbar--home .topbar__inner {
    flex-wrap: nowrap;
    justify-content: space-between;
}

.topbar__center {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.92);
    flex: 0 1 auto;
    text-align: center;
    margin: 0;
    white-space: nowrap;
}

.topbar__center svg { opacity: 0.85; }

.topbar__tagline--gold {
    color: var(--home-gold);
    font-weight: 500;
    text-align: right;
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 900px) {
    .topbar--home .topbar__center { display: none; }
}

@media (max-width: 640px) {
    .topbar--home .topbar__inner { flex-wrap: wrap; gap: 0.4rem; }
    .topbar--home .topbar__contact { flex: 1 1 100%; }
    .topbar--home .topbar__tagline--gold { flex: 1 1 100%; text-align: left; }
}


/* ══════════════════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-border);
    padding: 0.85rem 0;
    box-shadow: 0 1px 8px rgba(0,0,0,.06);
    overflow: visible;
}

.site-header__inner {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    overflow: visible;
}

/* Keep logo / actions visually centered while nav row stretches full bar height
   (needed so mega-menu `top:100%` aligns with the bottom of the white header). */
.site-header__inner > .logo,
.site-header__inner > .header-actions {
    align-self: center;
}

/* Logo + wordmark (mark — assets/images/logo-safari-rajasthan.png) */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0.55rem;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

.logo__img {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.logo__lockup-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 0;
    line-height: 1.05;
}

.logo__name-line {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.05rem, 2.1vw, 1.45rem);
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 0.95;
    -webkit-text-stroke: 0.4px #111;
    paint-order: stroke fill;
}

.logo__tagline {
    font-family: var(--font-body);
    font-size: clamp(0.5625rem, 1.1vw, 0.6875rem);
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    -webkit-text-stroke: 0.2px #111;
    paint-order: stroke fill;
    letter-spacing: 0.16em;
    margin-top: 0.28rem;
    line-height: 1.25;
    max-width: 18.5em;
}

@media (max-width: 900px) {
    .logo__name-line {
        font-size: clamp(0.95rem, 2.4vw, 1.15rem);
        letter-spacing: 0.06em;
    }
    .logo__tagline {
        font-size: 0.5625rem;
        letter-spacing: 0.12em;
        margin-top: 0.22rem;
    }
}

@media (max-width: 768px) {
    .logo {
        gap: 0.38rem;
        max-width: min(58%, calc(100vw - 11.5rem));
    }

    .logo__img {
        height: 52px;
        width: 52px;
    }

    .logo__lockup-text {
        display: flex;
        gap: 0;
        line-height: 1;
        padding-top: 0.05rem;
    }

    .logo__tagline {
        display: none;
    }

    .logo__name-line {
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.045em;
        line-height: 0.88;
    }

    .logo__name-line + .logo__name-line {
        margin-top: -0.04em;
    }
}

/* Navigation — stretch to full header bar height so dropdown anchors sit on the bar bottom */
.nav {
    margin-left: auto;
    display: flex;
    align-items: stretch;
    align-self: stretch;
}

.nav__list {
    display: flex;
    gap: 0.25rem;
    align-items: stretch;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    /* Positioning context for desktop mega panels (left:0; top:100% vs this row). */
    position: relative;
}

.nav__list > li {
    display: flex;
    align-items: center;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--clr-text);
    padding: 0.45rem 0.7rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.nav__link:hover {
    color: var(--clr-primary);
    background: #f0f4f2;
}

.nav__link--active {
    color: var(--clr-primary);
    font-weight: 600;
    background: #e8f0ec;
}

/* Tours — category dropdown (desktop: hover / focus; mobile: nested list) */
.nav__item--dropdown {
    position: relative;
}

.nav__link--dropdown::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.35rem;
    vertical-align: 0.15em;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.65;
}

.nav__dropdown {
    list-style: none;
    margin: 0;
    padding: 0.4rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 13rem;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.35rem);
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
    z-index: 80;
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--clr-text);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.nav__dropdown-link:hover {
    background: #f0f4f2;
    color: var(--clr-primary);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-browse {
    background: var(--clr-accent);
    color: var(--clr-white);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    transition: background var(--transition);
    white-space: nowrap;
}

.btn-browse:hover { background: var(--clr-accent-dark); }

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--clr-text);
    border: 1.5px solid var(--clr-border);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    transition: border-color var(--transition);
}

.cart-btn:hover { border-color: var(--clr-primary); }

.cart-btn--active {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.cart-btn__badge {
    position: absolute;
    top: -6px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--clr-accent);
    color: var(--clr-white);
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Tour booking: View cart link (shown after an item is added) */
.tp-bc-view-cart-wrap {
    text-align: center;
    margin: 0.35rem 0 0;
}

.tp-bc-view-cart-wrap[hidden] {
    display: none;
}

.tp-bc-view-cart {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tp-bc-view-cart:hover {
    color: var(--clr-accent-dark);
}

/* ══════════════════════════════════════════════════════════════
   CART PAGE  (crt-*)
══════════════════════════════════════════════════════════════ */

/* ── Page shell ─────────────────────────────────────────────── */
.crt-page {
    background: var(--clr-bg);
    padding: 2rem 0 5rem;
    min-height: 60vh;
}

.crt-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Cart page: same co-stepper as checkout; extra bottom spacing in .crt-container */
.co-stepper--cart {
    margin-bottom: 2.25rem;
}

/* ── Empty state ─────────────────────────────────────────────── */
.crt-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 1rem 6rem;
    gap: 1rem;
}

.crt-empty__icon {
    color: var(--clr-border);
    margin-bottom: 0.5rem;
}

.crt-empty__title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--clr-primary);
}

.crt-empty__text {
    max-width: 420px;
    color: var(--clr-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.crt-empty__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: var(--clr-primary);
    color: var(--clr-white);
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
}

.crt-empty__cta:hover {
    background: #12312a;
    transform: translateY(-1px);
}

/* ── Two-column layout ──────────────────────────────────────── */
.crt-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    align-items: start;
    gap: 1.75rem;
}

/* ── Cart items panel ───────────────────────────────────────── */
.crt-items {
    min-width: 0;
}

.crt-items__header {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.crt-items__title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 600;
    color: var(--clr-primary);
}

.crt-items__count {
    font-size: 0.88rem;
    color: var(--clr-muted);
    font-weight: 400;
}

/* ── Individual cart card ───────────────────────────────────── */
.crt-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.crt-card {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 1rem;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow var(--transition);
}

.crt-card:hover {
    box-shadow: var(--shadow-hover);
}

.crt-card--removing {
    opacity: 0;
    transform: translateX(24px);
    pointer-events: none;
}

/* Remove button */
.crt-card__remove {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
    transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
    z-index: 2;
}

.crt-card__remove svg {
    stroke-width: 2.5;
}

.crt-card__remove:hover {
    background: #fee2e2;
    border-color: #fecaca;
    color: #dc2626;
    box-shadow: 0 2px 12px rgba(220, 38, 38, 0.25);
}

/* Thumbnail */
.crt-card__thumb-link {
    display: block;
    flex-shrink: 0;
    width: 150px;
}

.crt-card__thumb {
    width: 150px;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Body */
.crt-card__body {
    flex: 1;
    min-width: 0;
    padding: 1rem 2.5rem 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
}

.crt-card__top {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.crt-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.crt-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    background: #e8f0ee;
    color: var(--clr-primary);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.crt-card__loc {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.78rem;
    color: var(--clr-muted);
}

.crt-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text);
    line-height: 1.35;
}

.crt-card__title a:hover {
    color: var(--clr-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.crt-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    list-style: none;
    margin-top: 0.15rem;
}

.crt-card__details li {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    color: var(--clr-muted);
}

.crt-card__details li svg {
    flex-shrink: 0;
    color: var(--clr-primary);
}

/* Card footer */
.crt-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--clr-border);
    margin-top: auto;
}

/* Guest stepper */
.crt-card__guests {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.crt-stepper-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.crt-stepper-label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-muted);
    white-space: nowrap;
}

.crt-stepper-label svg {
    flex-shrink: 0;
    color: var(--clr-primary);
}

.crt-card__stepper {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--clr-border);
    border-radius: 999px;
    overflow: hidden;
}

.crt-card__step-btn {
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text);
    transition: background var(--transition);
}

.crt-card__step-btn:hover {
    background: #f0f4f2;
    color: var(--clr-primary);
}

.crt-card__step-val {
    min-width: 2rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-text);
}

/* Pricing */
.crt-card__pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
}

.crt-card__unit {
    font-size: 0.78rem;
    color: var(--clr-muted);
}

.crt-card__line {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clr-primary);
}

/* Add more link */
.crt-add-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}
.crt-add-more:hover { color: var(--clr-accent-dark); }

/* Cancellation info strip */
.crt-cancel-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.85rem 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-md);
    font-size: 0.83rem;
    color: #166534;
    line-height: 1.5;
}
.crt-cancel-note svg { flex-shrink: 0; margin-top: 0.1rem; color: #16a34a; }

/* ── Order summary sidebar ──────────────────────────────────── */
.crt-summary {
    position: sticky;
    top: 1.5rem;
}

.crt-summary__panel {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.crt-summary__title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 1.1rem;
}

/* Summary line items */
.crt-summary__lines {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.crt-summary__line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.crt-summary__line-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.crt-summary__line-name {
    color: var(--clr-text);
    line-height: 1.45;
    font-weight: 500;
}

.crt-summary__stepper {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--clr-border);
    border-radius: 999px;
    overflow: hidden;
}

.crt-summary__step-btn {
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text);
    transition: background var(--transition), color var(--transition);
}

.crt-summary__step-btn:hover {
    background: #f0f4f2;
    color: var(--clr-primary);
}

.crt-summary__step-val {
    min-width: 1.75rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-text);
}

.crt-summary__line-price {
    font-weight: 600;
    color: var(--clr-text);
    white-space: nowrap;
    padding-top: 0.1rem;
}

/* Dividers */
.crt-summary__divider {
    height: 1px;
    background: var(--clr-border);
    margin: 0.9rem 0;
}

/* Rows */
.crt-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: var(--clr-text);
    margin-bottom: 0.5rem;
}

.crt-summary__row--muted {
    color: var(--clr-muted);
    font-size: 0.82rem;
}

.crt-summary__row--discount {
    color: #166534;
    font-size: 0.86rem;
    font-weight: 600;
}

.crt-summary__row--discount span:last-child {
    color: #15803d;
}

/* Promo code — cart */
.crt-coupon {
    margin-bottom: 0.5rem;
}

.crt-coupon__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-muted);
    margin-bottom: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.crt-coupon__row {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.crt-coupon__input {
    flex: 1;
    min-width: 0;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.88rem;
}

.crt-coupon__input:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 2px rgba(201, 147, 42, 0.2);
}

.crt-coupon__btn {
    padding: 0.55rem 0.9rem;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--clr-primary);
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition);
}

.crt-coupon__btn:hover {
    background: #14332c;
}

.crt-coupon__btn--ghost {
    background: transparent;
    color: var(--clr-primary);
    border: 1px solid var(--clr-border);
}

.crt-coupon__btn--ghost:hover {
    background: #f6faf8;
}

.crt-coupon__msg {
    margin: 0.45rem 0 0;
    font-size: 0.8rem;
    min-height: 1.2em;
}

.crt-coupon__msg--ok {
    color: #166534;
}

.crt-coupon__msg--error {
    color: #b91c1c;
}

/* Total row */
.crt-summary__total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 1.25rem;
}

.crt-summary__total-row strong {
    font-size: 1.2rem;
}

/* Checkout CTA */
.crt-summary__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.95rem 1.5rem;
    background: var(--clr-accent);
    color: var(--clr-white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-sizing: border-box;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.crt-summary__cta:hover {
    background: var(--clr-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,147,42,0.38);
}

.crt-summary__cta:active {
    transform: translateY(0);
}

/* Secure notice */
.crt-summary__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.65rem;
    font-size: 0.75rem;
    color: var(--clr-muted);
}

/* Payment icons row */
.crt-payment-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.9rem;
    justify-content: center;
}

.crt-pay-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 0.55rem;
    border: 1.5px solid var(--clr-border);
    border-radius: 6px;
    background: var(--clr-white);
    min-width: 48px;
}

.crt-pay-icon--text {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--clr-text);
}

/* Trust signals */
.crt-trust {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.crt-trust__item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.82rem;
}

.crt-trust__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.05rem;
}

.crt-trust__icon--green { background: #d1fae5; color: #059669; }
.crt-trust__icon--amber { background: #fef3c7; color: #d97706; }
.crt-trust__icon--blue  { background: #dbeafe; color: #2563eb; }

.crt-trust__item strong {
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--clr-text);
    line-height: 1.3;
}

.crt-trust__item p {
    color: var(--clr-muted);
    font-size: 0.78rem;
    margin-top: 0.1rem;
    line-height: 1.4;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 860px) {
    .crt-layout {
        grid-template-columns: 1fr;
    }

    .crt-summary {
        position: static;
        order: -1;   /* summary above items on mobile */
    }
}

@media (max-width: 560px) {
    .crt-card {
        flex-direction: column;
    }

    .crt-card__thumb-link {
        width: 100%;
    }

    .crt-card__thumb {
        width: 100%;
        height: 180px;
        min-height: unset;
    }

    .crt-card__body {
        padding: 0.85rem 0.85rem 0.85rem;
    }

    .crt-card__remove {
        top: 0.5rem;
        right: 0.5rem;
    }
}

/* Mobile toggle (hidden by default) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}


/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */

/* ── Entrance animation ── */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0);    }
}

@keyframes heroDotPulse {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%       { transform: scale(1.5); opacity: 0.5; }
}

@keyframes heroScrollBounce {
    0%        { transform: translateY(0);   opacity: 0.9; }
    55%       { transform: translateY(10px); opacity: 0.3; }
    100%      { transform: translateY(0);   opacity: 0.9; }
}

/* ── Shell ── */
.hero {
    position: relative;
    min-height: 92vh;
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ── Cinematic overlay: bottom + top + edge vignettes ── */
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        /* strong bottom-up gradient — keeps text legible */
        linear-gradient(to top,  rgba(4,14,10,0.92) 0%,  rgba(4,14,10,0.60) 35%, transparent 65%),
        /* top darkening — header contrast */
        linear-gradient(to bottom, rgba(4,14,10,0.42) 0%, transparent 28%),
        /* left edge vignette — subtle depth */
        linear-gradient(to right, rgba(4,14,10,0.28) 0%, transparent 42%),
        /* right edge vignette */
        linear-gradient(to left,  rgba(4,14,10,0.18) 0%, transparent 40%);
}

/* ── Film grain overlay ── */
.hero__grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.035;
}

/* ── Content wrapper ── */
.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 5rem;
    width: 100%;
}

/* ── Eyebrow badge ── */
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-accent-lite);
    /* Slight dark scrim for readability on photos */
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 0.38rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

@media (prefers-reduced-motion: no-preference) {
    .hero__eyebrow { animation: heroFadeUp 0.6s ease both 0.05s; }
}

.hero__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 2px rgba(74,222,128,0.25);
    flex-shrink: 0;
    animation: heroDotPulse 2.2s ease infinite;
}

/* ── Title ── */
.hero__title {
    font-family: var(--font-head);
    font-size: clamp(3rem, 7.5vw, 6.5rem);
    font-weight: 700;
    color: var(--clr-white);
    letter-spacing: -0.01em;
    line-height: 1.05;
    text-shadow: 0 4px 32px rgba(0,0,0,0.5);
    margin-bottom: 1.25rem;
}

@media (prefers-reduced-motion: no-preference) {
    .hero__title { animation: heroFadeUp 0.65s ease both 0.2s; }
}

.hero__title em {
    font-style: italic;
    color: var(--clr-accent-lite);
    /* Slightly lighter weight for editorial contrast */
    font-weight: 600;
}

/* ── Subtitle ── */
.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.80);
    margin-bottom: 2.5rem;
    line-height: 1.65;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

@media (prefers-reduced-motion: no-preference) {
    .hero__subtitle { animation: heroFadeUp 0.65s ease both 0.35s; }
}

.hero__subtitle-br { display: none; }

/* ── Multi-segment search bar (hero / explore) ── */
.hero__search {
    display: flex;
    align-items: stretch;
    max-width: min(920px, 100%);
    margin: 0 auto 1.6rem;
    background: var(--clr-white);
    border-radius: 999px;
    box-shadow:
        0 12px 40px rgba(0,0,0,0.28),
        0 2px  8px  rgba(0,0,0,0.12),
        inset 0 0 0 1px rgba(255,255,255,0.06);
    overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
    .hero__search { animation: heroFadeUp 0.65s ease both 0.5s; }
}

/* Individual segment */
.search-seg {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.95rem 1.35rem;
    cursor: text;
    transition: background var(--transition);
    min-width: 0;
}

.search-seg:first-child { padding-left: 1.65rem; }

.search-seg:focus-within {
    background: rgba(26,60,52,0.04);
}

.search-seg__label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--clr-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.28rem;
    white-space: nowrap;
}

.search-seg__input {
    border: none;
    outline: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text);
    background: transparent;
    font-family: var(--font-body);
    width: 100%;
    padding: 0;
    cursor: inherit;
}

.search-seg__input::placeholder { color: var(--clr-muted); font-weight: 400; }

/* Native select — matches text inputs in the hero / explore toolbar */
.search-seg__select {
    display: block;
    width: 100%;
    max-width: 100%;
    border: none;
    outline: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text);
    background-color: transparent;
    font-family: var(--font-body);
    padding: 0 1.35rem 0 0;
    margin: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 14px;
}

.search-seg__select:focus-visible {
    outline: none;
}

.search-seg--destination {
    min-width: 0;
    flex: 1.1;
}

/* Date input: normalize appearance */
.search-seg__input--date {
    color: var(--clr-muted);
    cursor: pointer;
}

.search-seg__input--date:not([value=""]) { color: var(--clr-text); }

/* Vertical divider between segments */
.search-divider {
    width: 1px;
    align-self: stretch;
    background: var(--clr-border);
    margin: 0.8rem 0;
    flex-shrink: 0;
}

/* Search CTA button — flush right, rounded right only */
.search-btn {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--clr-accent);
    color: var(--clr-white);
    border: none;
    padding: 0 2rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 0 999px 999px 0;
    letter-spacing: 0.01em;
}

.search-btn:hover {
    background: var(--clr-accent-dark);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12);
}

.search-btn:focus-visible {
    outline: 2px solid var(--clr-accent-lite);
    outline-offset: 2px;
}

/* ── Trust bar ── */
.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    margin-bottom: 1.5rem;
}

@media (prefers-reduced-motion: no-preference) {
    .hero__trust { animation: heroFadeUp 0.65s ease both 0.65s; }
}

.hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.78);
}

.hero__trust-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    flex-shrink: 0;
}

/* ── Quick-pick destination tags ── */
.hero__picks {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (prefers-reduced-motion: no-preference) {
    .hero__picks { animation: heroFadeUp 0.65s ease both 0.8s; }
}

.hero__picks-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-right: 0.2rem;
}

.hero__pick {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    transition: background var(--transition), color var(--transition),
                border-color var(--transition);
    white-space: nowrap;
}

.hero__pick:hover {
    background: rgba(201,147,42,0.2);
    border-color: rgba(201,147,42,0.5);
    color: var(--clr-accent-lite);
}

/* ── Scroll indicator ── */
.hero__scroll {
    position: absolute;
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
}

.hero__scroll-track {
    width: 24px;
    height: 38px;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.hero__scroll-thumb {
    width: 4px;
    height: 9px;
    background: rgba(255,255,255,0.75);
    border-radius: 999px;
    animation: heroScrollBounce 1.9s ease infinite;
}

.hero__scroll-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* ── Homepage hero redesign (.hero--home) ─────────────────────────────────── */
.hero--home {
    min-height: 0;
    align-items: stretch;
    padding-bottom: 0;
    display: block;
    position: relative;
    background-color: #0a0e10;
}

.hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    pointer-events: none;
    display: block;
}

.hero__overlay--home {
    background:
        linear-gradient(to right, rgba(10, 14, 16, 0.55) 0%, rgba(10, 14, 16, 0.32) 45%, rgba(10, 14, 16, 0.55) 100%),
        linear-gradient(to bottom, rgba(10, 14, 16, 0.20) 0%, rgba(10, 14, 16, 0.55) 100%);
}

.hero--home .hero__grain { opacity: 0.025; }

.hero__content--home {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 3.25rem;
    padding-bottom: 1.5rem;
    max-width: 1320px;
    margin: 0 auto;
}

.hero__title--home {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif !important;
    font-weight: 700;
    font-size: clamp(2.35rem, 5.8vw, 3.75rem);
    line-height: 1.08;
    letter-spacing: 0.01em;
    margin: 0 0 1rem;
    text-shadow: 0 3px 28px rgba(0, 0, 0, 0.5);
    color: var(--clr-white);
}

.hero__title--home .hero__title-line {
    display: block;
}

.hero__title--home .hero__title-line--gold {
    color: var(--home-gold);
}

.hero__subtitle--home {
    font-family: 'Montserrat', var(--font-body);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero__subtitle--lead {
    font-size: clamp(0.875rem, 1.5vw, 1.05rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    max-width: 760px;
    margin-bottom: 0.65rem;
    line-height: 1.5;
}

.hero__subtitle--muted {
    font-size: clamp(0.8125rem, 1.25vw, 0.9rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
    max-width: 620px;
    margin-bottom: 1.65rem;
    line-height: 1.5;
}

/* Search bar — pill with rounded gold button on the right (like mockup) */
.hero__search--home {
    border-radius: 999px;
    max-width: min(1040px, 100%);
    margin: 0 auto;
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.32),
        0 2px 10px rgba(0, 0, 0, 0.18);
    overflow: visible;
    background: var(--clr-white);
    padding: 0.4rem 0.4rem 0.4rem 0.6rem;
    align-items: stretch;
    flex-wrap: nowrap;
}

.hero__search--home .search-seg {
    padding: 0.65rem 1.1rem 0.6rem;
}

.hero__search--home .search-seg:first-child {
    padding-left: 1.4rem;
}

.hero__search--home .search-seg--q {
    flex: 1.5;
    min-width: 0;
}

.hero__search--home .search-seg--destination {
    flex: 1;
    min-width: 0;
}

.hero__search--home .search-seg__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--clr-text);
    margin-bottom: 0.2rem;
    gap: 0.35rem;
}

.hero__search--home .search-seg__label svg {
    color: var(--home-gold);
}

.hero__search--home .search-seg__input,
.hero__search--home .search-seg__select {
    font-size: 0.88rem;
    color: var(--clr-text);
}

.hero__search--home .search-seg__select {
    color: var(--clr-muted);
}

.hero__search--home .search-divider {
    margin: 0.65rem 0;
    background: #e3e3e0;
}

.hero__search--home .search-btn--home {
    border-radius: 999px;
    padding: 0 1.85rem;
    align-self: stretch;
    background: var(--home-gold);
    font-family: 'Montserrat', var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(168, 125, 50, 0.35);
}

.hero__search--home .search-btn--home:hover {
    background: var(--home-gold-hover);
}

/* Trust strip — sits below the search bar in a 5-up row with dividers */
.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    flex-wrap: wrap;
    max-width: min(1040px, 100%);
    margin: 1.5rem auto 0;
    padding: 0;
}

.hero__stat {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--clr-white);
    text-align: left;
    font-family: 'Montserrat', var(--font-body);
    flex: 0 0 auto;
}

.hero__stat-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(197, 148, 62, 0.22);
    border: 1.5px solid rgba(197, 148, 62, 0.55);
    color: var(--home-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.hero__stat-icon svg {
    display: block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.hero__stat-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.hero__stat-text strong {
    font-size: 0.86rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}

.hero__stat-text strong u {
    text-decoration-color: var(--home-gold);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.hero__stat-star {
    color: var(--home-gold);
    font-weight: 700;
}

.hero__stat-text small {
    font-size: 0.72rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.01em;
}

.hero__stat-sep {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.22);
    flex-shrink: 0;
    align-self: center;
}

/* TripAdvisor trust badge — image matches official badge design */
.hero__stat--ta {
    flex-shrink: 0;
    align-self: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s ease, filter 0.18s ease;
}

.hero__stat--ta:hover {
    transform: translateY(-1px);
}

.hero__stat--ta:hover .hero__ta-img {
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.22));
}

.hero__ta-img {
    display: block;
    height: 52px;
    width: auto;
    max-width: none;
    border-radius: 0;
}

@media (max-width: 1100px) {
    .hero__stats { gap: 0.75rem; }
    .hero__stat-text strong { font-size: 0.78rem; }
    .hero__stat-text small { font-size: 0.68rem; }
    .hero__ta-img { height: 46px; }
}

@media (max-width: 880px) {
    .hero__stat-sep:nth-of-type(2),
    .hero__stat-sep:nth-of-type(4) { display: none; }
    .hero__stats { gap: 0.85rem 1.1rem; }
}

@media (max-width: 560px) {
    .hero__stat-sep { display: none; }
    .hero__stats {
        gap: 0.75rem 1rem;
    }
    .hero__stat { flex: 0 0 calc(50% - 0.5rem); }
}

/* ── Top destinations grid ───────────────────────────────────────────────── */
.home-top-dest {
    background: var(--clr-white);
    padding: 1.75rem 0 1.5rem;
}

.home-top-dest__heading {
    font-family: 'Montserrat', var(--font-head) !important;
    font-size: clamp(1.4rem, 2.7vw, 1.85rem);
    font-weight: 700;
    color: #1c1c1c;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.home-top-dest__sub {
    font-family: 'Montserrat', var(--font-body);
    text-align: center;
    color: #6e6e6e;
    font-size: clamp(0.88rem, 1.5vw, 0.98rem);
    max-width: 580px;
    margin: 0 auto 1.15rem;
    line-height: 1.5;
}

.home-top-dest__empty {
    text-align: center;
    margin-top: 0.5rem;
}

/*
 * Top destinations: horizontal scroll; arrows absolutely positioned (no layout column).
 */
.home-top-dest__slider {
    position: relative;
    display: block;
    width: 100%;
}

.home-top-dest__viewport {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.home-top-dest__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding: 0.25rem 0 0.45rem;
    margin: 0;
}

.home-top-dest__track::-webkit-scrollbar {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .home-top-dest__track {
        scroll-behavior: auto;
    }
}

.home-top-dest__slide {
    flex: 0 0 clamp(176px, 19vw, 218px);
    scroll-snap-align: start;
    min-width: 0;
}

@media (max-width: 900px) {
    .home-top-dest__slide {
        flex: 0 0 clamp(168px, 42vw, 210px);
    }
}

@media (max-width: 520px) {
    .home-top-dest__slide {
        flex: 0 0 min(280px, 78vw);
    }

    .home-dest-arrow {
        display: none;
    }
}

.home-dest-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.96);
    border: 1.5px solid var(--clr-border);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    transition: background var(--transition), border-color var(--transition), color var(--transition),
                box-shadow var(--transition);
    user-select: none;
}

.home-dest-arrow--prev {
    left: 0.25rem;
}

.home-dest-arrow--next {
    right: 0.25rem;
}

.home-dest-arrow:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: var(--clr-white);
}

.home-dest-arrow:focus-visible {
    outline: 2px solid var(--home-gold);
    outline-offset: 3px;
}

.home-dest-card {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
    color: inherit;
    text-decoration: none;
}

.home-dest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.home-dest-card__media {
    position: relative;
    aspect-ratio: 3 / 4.4;
    overflow: hidden;
    border-radius: 18px;
}

.home-dest-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.home-dest-card:hover .home-dest-card__media img {
    transform: scale(1.06);
}

.home-dest-card__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 38%, rgba(0, 0, 0, 0.05) 70%, transparent 100%);
    pointer-events: none;
}

/* Bottom band: icon (white ring) + stacked title / blurb / gold CTA — matches primary mockup */
.home-dest-card__copy {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 0.55rem;
    pointer-events: none;
}

.home-dest-card__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.42);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.home-dest-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    align-items: flex-start;
    text-align: left;
}

.home-dest-card__name {
    font-family: 'Montserrat', var(--font-head);
    font-weight: 700;
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.home-dest-card__blurb {
    font-family: 'Montserrat', var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.02em;
    line-height: 1.35;
}

.home-dest-card__cta {
    font-family: 'Montserrat', var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--home-gold);
    margin-top: 0.35rem;
    letter-spacing: 0.02em;
}

/* ── Beige value strip ───────────────────────────────────────────────────── */
.home-value-strip {
    background: var(--home-value-bg);
    padding: 1.35rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.home-value-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem 1.75rem;
    align-items: stretch;
}

@media (max-width: 900px) {
    .home-value-strip__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.1rem 1.25rem;
    }
}

/* Phone: 2×2 grid — avoids a long misaligned single column */
@media (max-width: 520px) {
    .home-value-strip {
        padding: 1.1rem 0;
    }

    .home-value-strip__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 0.85rem;
    }
}

.home-value-strip__item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    min-width: 0;
}

.home-value-strip__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4a3a1f;
    margin-top: 0.05rem;
}

.home-value-strip__icon svg {
    display: block;
    width: 1.75rem;
    height: 1.75rem;
}

.home-value-strip__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    min-width: 0;
    flex: 1;
    line-height: 1.3;
    padding-top: 0.2rem;
}

.home-value-strip__title {
    font-family: 'Montserrat', var(--font-head);
    font-size: 0.875rem;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.3;
}

.home-value-strip__desc {
    font-family: 'Montserrat', var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: #6b6b6b;
    line-height: 1.35;
    margin: 0;
}

/* ── Hero responsive ─────────────────────────────────────────────────────── */
@media (max-width: 880px) {
    /* Homepage hero search stays one horizontal row (do not stack like generic .hero__search) */
    .hero__search--home {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        border-radius: 999px;
        padding: 0.35rem 0.35rem 0.35rem 0.5rem;
        gap: 0;
        max-width: 100%;
    }

    .hero__search--home .search-divider {
        width: 1px;
        height: auto;
        margin: 0.5rem 0;
        align-self: stretch;
    }

    .hero__search--home .search-seg {
        padding: 0.5rem 0.65rem 0.45rem;
        min-width: 0;
    }

    .hero__search--home .search-seg:first-child {
        padding-left: 0.75rem;
    }

    .hero__search--home .search-seg--destination {
        flex: 0 1 38%;
    }

    .hero__search--home .search-seg--q {
        flex: 1 1 auto;
    }

    .hero__search--home .search-seg__label {
        font-size: 0.62rem;
        margin-bottom: 0.12rem;
    }

    .hero__search--home .search-seg__input,
    .hero__search--home .search-seg__select {
        font-size: 0.8125rem;
    }

    .hero__search--home .search-btn--home {
        border-radius: 999px;
        margin: 0 0 0 0.35rem;
        padding: 0.65rem 0.85rem;
        justify-content: center;
        width: auto;
        flex-shrink: 0;
        font-size: 0.8125rem;
    }

    .hero__content--home {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

@media (max-width: 600px) {
    .hero__title--home br,
    .hero__subtitle--home br { display: none; }

    .hero__title--home {
        font-size: clamp(2rem, 7.5vw, 2.65rem);
        line-height: 1.1;
    }

    .hero__subtitle--home.hero__subtitle--lead {
        font-size: clamp(0.8125rem, 2.8vw, 0.9375rem);
    }

    .hero__subtitle--home.hero__subtitle--muted {
        font-size: clamp(0.75rem, 2.5vw, 0.875rem);
    }
}


/* ══════════════════════════════════════════════════════════════
   DESTINATIONS
══════════════════════════════════════════════════════════════ */
.destinations-section { background: var(--clr-white); }

.destinations-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.destinations-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    /* Arrows use JS easing; class below turns snap off briefly so it doesn’t fight the animation */
    scroll-snap-type: x mandatory;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding: 0.5rem 0 1rem;
    flex: 1;
}

/* While JS animates scrollLeft, disable snap so the motion isn’t “corrected” mid-flight */
.destinations-track.destinations-track--animating {
    scroll-snap-type: none;
}

.destinations-track::-webkit-scrollbar { display: none; }

.dest-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 190px;
    cursor: pointer;
}

a.dest-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.dest-card__img-wrap {
    width: 190px;
    height: 190px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.dest-card:hover .dest-card__img-wrap {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.dest-card__img-wrap img { width: 100%; height: 100%; }

.dest-card__name {
    font-family: var(--font-head);
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--clr-text);
}

/* Carousel arrows */
.dest-arrow {
    flex-shrink: 0;
    background: var(--clr-white);
    border: 1.5px solid var(--clr-border);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text);
    box-shadow: var(--shadow-card);
    transition: background var(--transition), border-color var(--transition);
    user-select: none;
}

.dest-arrow:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: var(--clr-white);
}


/* ══════════════════════════════════════════════════════════════
   POPULAR TOURS
══════════════════════════════════════════════════════════════ */
.tours-section {
    background: var(--clr-white);
    padding: 2.25rem 0 3rem;
}

/* Section heading */
.tours-heading {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
}

/* ── Slider wrapper (arrows overlay — full-width track, no side gutter for buttons) ── */
.tours-slider {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 2rem;
}

/* Clip overflow; inner track scrolls horizontally */
.tours-track-wrap {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.tours-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
    padding-bottom: 0.35rem;
    margin: 0;
}

.tours-track::-webkit-scrollbar {
    height: 6px;
}

.tours-track::-webkit-scrollbar-thumb {
    background: rgba(26, 60, 52, 0.25);
    border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .tours-track {
        scroll-behavior: auto;
    }
}

/* Nav arrows — absolutely positioned (same pattern as Top Destinations) */
.tour-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--clr-border);
    background: rgba(255, 255, 255, 0.96);
    color: var(--clr-text);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    transition: background var(--transition), border-color var(--transition),
                color var(--transition), box-shadow var(--transition);
    user-select: none;
}

.tour-nav--prev {
    left: 0.25rem;
}

.tour-nav--next {
    right: 0.25rem;
}

.tour-nav:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: 0 4px 16px rgba(26,60,52,.25);
}

.tour-nav:focus-visible {
    outline: 2px solid var(--home-gold);
    outline-offset: 3px;
}

/* ── Tour card ── */
.tour-card {
    position: relative;
    background: var(--clr-white);
    border-radius: 18px;
    border: 1px solid var(--clr-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 1px 2px rgba(24, 20, 14, 0.04),
        0 8px 22px rgba(24, 20, 14, 0.07);
    transition: transform var(--transition), box-shadow var(--transition), border-color 0.25s ease;
    /* Cap width so cards do not grow overly wide in the wide (1320px) page container */
    flex: 0 0 min(360px, calc((100% - 3rem) / 3));
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 4px 12px rgba(24, 20, 14, 0.06),
        0 22px 44px rgba(24, 20, 14, 0.12);
    border-color: rgba(200, 169, 110, 0.35);
}

.tour-card:focus-within {
    border-color: rgba(200, 169, 110, 0.45);
    box-shadow: 0 8px 28px rgba(24, 20, 14, 0.1);
}

@media (prefers-reduced-motion: reduce) {
    .tour-card:hover,
    .tour-card:focus-within {
        transform: none;
    }
    .tour-card:hover .tour-card__img-wrap img,
    .tour-card:focus-within .tour-card__img-wrap img {
        transform: none;
    }
    .tour-card:hover .tour-card__cta,
    .tour-card:focus-within .tour-card__cta {
        transform: none;
    }
    .tour-card:hover .tour-card__cta svg,
    .tour-card:focus-within .tour-card__cta svg {
        transform: none;
    }
}

/* Image area */
.tour-card__img-wrap {
    position: relative;
    height: 248px;
    overflow: hidden;
}

.tour-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.tour-card:hover .tour-card__img-wrap img { transform: scale(1.06); }

/* Dark gradient overlay — makes meta text legible on any photo */
.tour-card__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.20) 45%,
        transparent      70%
    );
    pointer-events: none;
    z-index: 1;
}

/* Featured badge */
.tour-card__badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 3;
    background: linear-gradient(135deg, #0f766e 0%, #0d5c56 100%);
    color: var(--clr-white);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.72rem;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(13, 92, 86, 0.45);
}

/* Meta overlay — clock / guests / camera / video on image bottom */
.tour-card__img-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.9rem 0.7rem;
}

.img-meta-left,
.img-meta-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem 0.7rem;
}

.img-meta-item {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    font-size: 0.745rem;
    font-weight: 500;
    color: rgba(255,255,255,0.93);
}

button.tour-gallery-btn {
    pointer-events: auto;
    margin: 0;
    padding: 0.15rem 0.2rem;
    border: none;
    border-radius: 6px;
    background: transparent;
    /* Buttons don’t inherit color in most browsers; match .img-meta-item */
    color: rgba(255, 255, 255, 0.93);
    -webkit-tap-highlight-color: transparent;
    font: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    transition: background 0.2s ease, transform 0.15s ease;
}

button.tour-gallery-btn svg {
    flex-shrink: 0;
    color: inherit;
    stroke: currentColor;
}

button.tour-gallery-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

button.tour-gallery-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.95);
    outline-offset: 2px;
}

button.tour-gallery-btn:active {
    transform: scale(0.97);
}

/* ═══════════════════════════════════════════════════════════════
   Tour Gallery Modal  (.tgm)
═══════════════════════════════════════════════════════════════ */

/* Layer */
.tgm {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.tgm[hidden] { display: none !important; }

/* Backdrop */
.tgm__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 17, 14, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: tgmBackdropIn 0.25s ease forwards;
}

@keyframes tgmBackdropIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Panel */
.tgm__panel {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    max-height: min(94vh, 940px);
    background: #12201a;
    border-radius: 20px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06),
        0 32px 80px rgba(0,0,0,0.55),
        0 8px 24px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: tgmPanelIn 0.28s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

@keyframes tgmPanelIn {
    from { opacity: 0; transform: scale(0.94) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .tgm__backdrop { animation: none; }
    .tgm__panel    { animation: none; }
}

/* Header */
.tgm__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1rem 0.9rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
    gap: 0.75rem;
}

.tgm__header-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
}

.tgm__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(201,147,42,0.15);
    color: var(--clr-accent-lite);
}

.tgm__title {
    font-family: var(--font-head);
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 700;
    color: #f0ede8;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

/* Close button */
.tgm__close {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.18s ease;
}

.tgm__close:hover {
    background: rgba(201,147,42,0.18);
    border-color: var(--clr-accent);
    color: var(--clr-accent-lite);
    transform: rotate(90deg);
}

.tgm__close:focus-visible {
    outline: 2px solid var(--clr-accent);
    outline-offset: 2px;
}

/* Stage (main image area) */
.tgm__stage {
    position: relative;
    background: #0a120e;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Image */
.tgm__img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: min(60vh, 560px);
    object-fit: contain;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.tgm__img.is-fading {
    opacity: 0;
    transform: scale(0.97);
}

/* Spinner */
.tgm__spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s ease;
}

.tgm__spinner.is-visible { opacity: 1; }

.tgm__spinner svg {
    animation: tgmSpin 0.9s linear infinite;
}

@keyframes tgmSpin {
    to { transform: rotate(360deg); }
}

/* Counter pill (overlaid bottom-right of stage) */
.tgm__counter {
    position: absolute;
    bottom: 0.85rem;
    right: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(10, 18, 14, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.02em;
    pointer-events: none;
    user-select: none;
}

/* Prev / Next arrows */
.tgm__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(10, 18, 14, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.88);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
    z-index: 2;
}

.tgm__nav:hover {
    background: rgba(26,60,52,0.85);
    border-color: rgba(201,147,42,0.55);
}

.tgm__nav:active { transform: translateY(-50%) scale(0.93); }

.tgm__nav--prev { left: 0.85rem; }
.tgm__nav--next { right: 0.85rem; }

.tgm__nav:focus-visible {
    outline: 2px solid var(--clr-accent);
    outline-offset: 2px;
}

/* Thumbnail strip */
.tgm__thumbs {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    flex-shrink: 0;
    background: rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.tgm__thumbs::-webkit-scrollbar { height: 4px; }
.tgm__thumbs::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.18);
    border-radius: 2px;
}

.tgm__thumb {
    flex: 0 0 72px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.55;
    transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
    scroll-snap-align: start;
}

.tgm__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.tgm__thumb:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.tgm__thumb.is-active {
    border-color: var(--clr-accent);
    opacity: 1;
    transform: translateY(-2px);
}

.tgm__thumb:focus-visible {
    outline: 2px solid var(--clr-accent);
    outline-offset: 2px;
    border-radius: 8px;
}

/* Mobile tweaks */
@media (max-width: 540px) {
    .tgm__nav {
        width: 40px;
        height: 40px;
    }

    .tgm__nav svg {
        width: 18px;
        height: 18px;
    }

    .tgm__nav--prev { left: 0.4rem; }
    .tgm__nav--next { right: 0.4rem; }

    .tgm__thumb {
        flex: 0 0 56px;
        height: 40px;
    }

    .tgm__header { padding: 0.7rem 0.85rem; }
}

/* Card body */
.tour-card__body {
    flex: 1;
    padding: 1rem 1.15rem 0.7rem;
    pointer-events: none;
}

.tour-card__title {
    font-family: var(--font-head);
    font-size: 1.08rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.32;
    margin-bottom: 0.45rem;
    letter-spacing: -0.01em;
}

.tour-card__stretch-link {
    color: inherit;
    transition: color var(--transition);
    text-decoration: none;
    pointer-events: auto;
}

.tour-card__stretch-link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

.tour-card:hover .tour-card__stretch-link,
.tour-card:focus-within .tour-card__stretch-link {
    color: var(--clr-primary);
}

/* Listing card rating: 4.7 ★ (1,398) */
.sr-card-rating {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.2rem 0.35rem;
    margin: 0 0 0.4rem;
    line-height: 1.2;
    font-family: var(--font-body, system-ui, sans-serif);
}

.sr-card-rating__score {
    font-size: clamp(0.78rem, 2.1vw, 0.84rem);
    font-weight: 700;
    color: #1a2332;
    letter-spacing: -0.02em;
}

.sr-card-rating__star {
    font-size: clamp(0.72rem, 1.9vw, 0.78rem);
    font-weight: 700;
    color: #1a2332;
    line-height: 1;
}

.sr-card-rating__count {
    font-size: clamp(0.7rem, 1.8vw, 0.76rem);
    font-weight: 400;
    color: #6b7280;
}

.sr-card-rating--tour-card {
    margin-bottom: 0.35rem;
}

.sr-card-rating--ex-card {
    margin-top: 0.15rem;
    margin-bottom: 0.5rem;
}

.sr-card-rating--related {
    margin: 0.2rem 0 0.35rem;
}

.sr-card-rating--related .sr-card-rating__score,
.sr-card-rating--related .sr-card-rating__star {
    font-size: clamp(0.68rem, 1.75vw, 0.74rem);
}

.sr-card-rating--related .sr-card-rating__count {
    font-size: clamp(0.62rem, 1.65vw, 0.7rem);
}

.tour-card__location {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--clr-muted);
    line-height: 1.45;
}

.tour-card__location svg { flex-shrink: 0; margin-top: 2px; opacity: 0.85; }

/* Card footer */
.tour-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.85rem 1.15rem 1rem;
    border-top: 1px solid var(--clr-border);
    background: linear-gradient(to bottom, #fdfcfa 0%, #f8f6f2 100%);
    pointer-events: none;
}

.tour-card__price {
    min-width: 0;
    line-height: 1.2;
}

/* Compare-at + sale price (tour cards, explore, related, PDP) */
.card-price-from {
    display: inline-block;
    max-width: 100%;
}

.card-price-from--compare {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
}

.card-price-from--compare .card-price-from__was-prefix {
    display: inline;
    font-size: 0.82em;
    font-weight: 600;
    color: var(--clr-muted, #888);
    text-decoration: none;
}

.card-price-from--compare .card-price-from__was {
    display: inline;
    font-size: 0.82em;
    font-weight: 600;
    color: var(--clr-muted, #888);
    text-decoration: none;
}

.card-price-from__was-num {
    text-decoration: line-through;
}

.card-price-from--compare .card-price-from__sale {
    font-size: 1.06em;
    font-weight: 800;
    color: var(--clr-primary);
    letter-spacing: -0.02em;
}

.card-price-from--tour-card.card-price-from--compare .card-price-from__sale {
    color: var(--clr-accent);
}

.card-price-from--tour-card:not(.card-price-from--compare) .card-price-from__sale {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--clr-accent);
    letter-spacing: -0.02em;
}

.card-price-from--ex-card:not(.card-price-from--compare) .card-price-from__sale {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary, #1a1a1a);
}

.card-price-from--ex-card.card-price-from--compare .card-price-from__sale {
    font-size: 1.08rem;
}

.card-price-from--related.card-price-from--compare {
    white-space: normal;
}

.card-price-from--related.card-price-from--compare .card-price-from__was-prefix,
.card-price-from--related.card-price-from--compare .card-price-from__was {
    font-size: 0.68rem;
}

.card-price-from--related.card-price-from--compare .card-price-from__sale {
    font-size: 0.82rem;
    color: var(--clr-accent);
}

.card-price-from--related:not(.card-price-from--compare) .card-price-from__sale {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.card-price-from--empty {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-muted);
}

.tour-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--clr-white);
    background: linear-gradient(135deg, var(--clr-primary) 0%, #143d35 100%);
    border: 1px solid transparent;
    text-decoration: none;
    padding: 0.48rem 1rem;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(26, 60, 52, 0.28);
    transition: gap 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.tour-card:hover .tour-card__cta,
.tour-card:focus-within .tour-card__cta {
    gap: 0.45rem;
    filter: brightness(1.06);
    box-shadow: 0 4px 16px rgba(26, 60, 52, 0.35);
    transform: translateY(-1px);
}

.tour-card__stretch-link:focus-visible {
    outline: 2px solid var(--clr-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

.tour-card__cta svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.tour-card:hover .tour-card__cta svg,
.tour-card:focus-within .tour-card__cta svg {
    transform: translateX(2px);
}

/* ── View all CTA ── */
.tours-section__cta { text-align: center; }

.btn-view-all {
    display: inline-block;
    background: var(--clr-accent);
    color: var(--clr-white);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.85rem 2.4rem;
    border-radius: var(--radius-md);
    letter-spacing: 0.01em;
    transition: background var(--transition), transform var(--transition),
                box-shadow var(--transition);
}

.btn-view-all:hover {
    background: var(--clr-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,147,42,.35);
}

/* ── Empty state ── */
.empty-state {
    text-align: center;
    padding: 3rem;
    background: var(--clr-white);
    border: 1.5px dashed var(--clr-border);
    border-radius: var(--radius-md);
    color: var(--clr-muted);
    font-size: 1rem;
}


/* ══════════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════════ */
.stats-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
}

.stats-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 16, 0.72);
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item { padding: 1rem; }

.stat-item__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.stat-item__number {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-item__number span { color: var(--clr-accent); }

.stat-item__label {
    font-family: var(--font-head);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--clr-accent);
    font-style: italic;
    line-height: 1.4;
}


/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */

/* ── Base: background layers ── */
.site-footer {
    position: relative;
    background:
        /* amber glow: strip light bleeds ~80px down */
        linear-gradient(
            to bottom,
            rgba(201, 147, 42, 0.20)  0px,
            rgba(201, 147, 42, 0.10)  20px,
            rgba(201, 147, 42, 0.04)  50px,
            transparent               90px
        ),
        /* green radial warmth — top-left quadrant */
        radial-gradient(circle at 20% 30%, rgba(20, 60, 40, 0.4), transparent 50%),
        /* diagonal base: dark green → pure black */
        linear-gradient(135deg, #0b1f1a, #000000);
    color: var(--ft-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Golden shimmer strip — multi-shade, 3 px tall ── */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        #3a2400  0%,
        #7a4f00  8%,
        #c9932a  20%,
        #e8b84b  32%,
        #f5d27a  42%,
        #c9932a  52%,
        #a87820  62%,
        #e8b84b  74%,
        #f0c84a  83%,
        #c9932a  91%,
        #5a3800  100%
    );
    pointer-events: none;
    z-index: 1;
}

/* All direct children of container sit above pseudo-elements */
.site-footer .container { position: relative; z-index: 2; }

/* ── Zone 1: Brand + Contact ── */
.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 3rem 0 2.75rem;
}

/* Logo */
.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
    line-height: 0;
    transition: opacity var(--transition);
}

.footer-logo:hover { opacity: 0.85; }

.footer-logo__img {
    height: 92px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

/* Brand description */
.footer__brand-desc {
    font-size: 0.8375rem;
    color: var(--ft-text-dim);
    line-height: 1.75;
    max-width: 310px;
    margin: 0;
}

/* Contact column */
.footer__contact-cta {
    text-align: right;
}

.footer__contact-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ft-text-dim);
    margin-bottom: 0.45rem;
}

.footer__phone {
    display: block;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--clr-accent);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
    transition: color var(--transition);
}

.footer__phone:hover { color: var(--clr-accent-lite); }

.footer__email {
    display: inline-block;
    font-size: 0.8375rem;
    color: var(--ft-text-muted);
    margin-bottom: 1.35rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--ft-border);
    transition: color var(--transition);
}

.footer__email:hover {
    color: var(--ft-text-bright);
    text-decoration-color: var(--ft-text-muted);
}

.footer__cta-btns {
    display: flex;
    gap: 0.65rem;
    justify-content: flex-end;
}

.btn-footer-primary {
    display: inline-flex;
    align-items: center;
    background: var(--clr-accent);
    color: var(--clr-white);
    font-size: 0.8375rem;
    font-weight: 600;
    padding: 0.58rem 1.35rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}

.btn-footer-primary:hover {
    background: var(--clr-accent-dark);
    transform: translateY(-1px);
}

.btn-footer-outline {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--ft-outline);
    color: var(--ft-text-bright);
    font-size: 0.8375rem;
    font-weight: 500;
    padding: 0.58rem 1.35rem;
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), color var(--transition),
                background var(--transition);
    white-space: nowrap;
}

.btn-footer-outline:hover {
    border-color: var(--ft-text-muted);
    color: var(--clr-white);
    background: rgba(255,255,255,0.04);
}

/* ── Divider ── */
.footer__divider {
    border: none;
    border-top: 1px solid var(--ft-border);
    margin: 0;
}

/* ── Zone 2: Links row ── */
.footer__links-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding: 2.75rem 0 2.5rem;
    align-items: start;
}

/* Column heading — uppercase label with underline rule */
.footer__col-title {
    font-size: 0.695rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ft-text-bright);
    padding-bottom: 0.65rem;
    margin-bottom: 1.15rem;
    border-bottom: 1px solid var(--ft-border);
}

/* Link list */
.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer__col li { line-height: 1; }

.footer__col a {
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: var(--ft-text-muted);
    font-size: 0.8375rem;
    padding: 0.4rem 0;
    transition: color var(--transition), gap var(--transition), padding-left var(--transition);
}

.footer__col a:hover {
    color: var(--clr-white);
    padding-left: 0.35rem;
}

/* ── Newsletter card ── */
.footer__col--newsletter {
    min-width: 0;
}

.footer__newsletter-card {
    border: 1px solid var(--ft-outline);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

/* Override col-title inside card: no outer border, handled by card */
.footer__newsletter-card .footer__col-title {
    border-bottom-color: var(--ft-border);
}

.footer__newsletter-desc {
    font-size: 0.8125rem;
    color: var(--ft-text-dim);
    line-height: 1.65;
    margin: 0 0 1rem;
}

/* Newsletter form */
.newsletter-form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--ft-outline);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}

.newsletter-form:focus-within { border-color: var(--clr-accent); }

.newsletter-form input {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.72rem 0.9rem;
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 0.8375rem;
}

.newsletter-form input::placeholder { color: var(--ft-text-dim); }

.newsletter-form button {
    background: var(--clr-accent);
    color: var(--clr-white);
    border: none;
    padding: 0.72rem 0.9rem;
    font-size: 0.8375rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition: background var(--transition);
    flex: 0 0 auto;
    width: auto;
}

.newsletter-form button:hover { background: var(--clr-accent-dark); }

/* ── Zone 2b: Trusted Partners (Tripadvisor + GetYourGuide) ── */
.footer__partners {
    padding: 0.35rem 0 2rem;
}

.footer__partners-heading {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    margin: 0 0 1.25rem;
}

.footer__partners-rule {
    flex: 1 1 0;
    height: 1px;
    min-width: 1.25rem;
    position: relative;
}

.footer__partners-rule--start {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201, 147, 42, 0.35) 28%,
        var(--clr-accent) 100%
    );
}

.footer__partners-rule--end {
    background: linear-gradient(
        270deg,
        transparent 0%,
        rgba(201, 147, 42, 0.35) 28%,
        var(--clr-accent) 100%
    );
}

.footer__partners-rule--start::after,
.footer__partners-rule--end::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 5px;
    height: 5px;
    background: var(--clr-accent);
    transform: translateY(-50%) rotate(45deg);
    box-shadow: 0 0 0 1px rgba(232, 184, 75, 0.35);
}

.footer__partners-rule--start::after { right: -1px; }
.footer__partners-rule--end::after   { left: -1px; }

.footer__partners-eyebrow {
    flex: 0 0 auto;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--clr-accent);
    white-space: nowrap;
}

/* Single unified panel — two halves + center divider */
.footer__partners-panel {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(201, 147, 42, 0.22);
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.footer__partners-divider {
    flex: 0 0 1px;
    width: 1px;
    align-self: stretch;
    margin: 1rem 0;
    background: var(--ft-border);
}

.footer__partner {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 1.35rem;
    min-width: 0;
    padding: 1.2rem 1.65rem;
    color: var(--ft-text-muted);
    text-decoration: none;
    transition: background var(--transition);
}

.footer__partner:hover,
.footer__partner:focus-visible {
    background: rgba(255, 255, 255, 0.04);
    outline: none;
}

.footer__partner-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.footer__partner-logo--ta {
    width: 148px;
    min-height: 32px;
    padding: 0.45rem 0.6rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.footer__partner-logo--gyg {
    width: 132px;
    min-height: 48px;
    padding: 0.35rem 0.55rem;
    border-radius: var(--radius-sm);
    background: #ffffff;
    border: 1px solid rgba(198, 200, 208, 0.65);
}

.footer__partner-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 44px;
    object-fit: contain;
}

.footer__partner-copy {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    min-width: 0;
}

.footer__partner-line {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ft-text-bright);
    line-height: 1.45;
}

.footer__partner-line--sub {
    font-weight: 400;
    color: var(--ft-text-muted);
}

.footer__partner-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.3;
}

.footer__partner-arrow {
    margin-left: 0.2em;
    color: var(--clr-accent);
    font-weight: 700;
    transition: transform var(--transition), color var(--transition);
}

.footer__partner:hover .footer__partner-arrow,
.footer__partner:focus-visible .footer__partner-arrow {
    transform: translateX(3px);
    color: var(--clr-accent-lite);
}

/* ── Zone 3: Popular Picks + Social ── */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.6rem 0 1.4rem;
}

.footer__picks {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer__picks-label {
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ft-text-dim);
    margin-right: 0.3rem;
    white-space: nowrap;
}

.tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--ft-text-muted);
    border: 1px solid var(--ft-outline);
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
    white-space: nowrap;
}

.tag:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--ft-text-muted);
    color: var(--clr-white);
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ft-text-muted);
    line-height: 0;
    transition: color var(--transition), transform var(--transition);
}

.footer__social-link:hover {
    color: var(--clr-white);
    transform: translateY(-2px);
}

/* ── Zone 4: Copyright ── */
.footer__copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    padding: 1.1rem 0 1.6rem;
    border-top: 1px solid var(--ft-border);
    font-size: 0.79rem;
    color: var(--ft-text-dim);
}

.footer__copyright > p {
    margin: 0;
    min-width: 0;
    flex: 1 1 12rem;
    max-width: 100%;
}

.footer__copyright strong {
    color: var(--ft-text-muted);
    font-weight: 600;
}

.footer__copyright--compact {
    margin-top: 1.5rem;
    padding-top: 1rem;
    justify-content: center;
}

.footer__legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.55rem;
    row-gap: 0.45rem;
    color: var(--ft-text-dim);
    min-width: 0;
    max-width: 100%;
}

.footer__legal a {
    color: var(--ft-text-dim);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: var(--ft-border);
    transition: color var(--transition);
}

.footer__legal a:hover { color: var(--ft-text-muted); }


/* ══════════════════════════════════════════════════════════════
   HOMEPAGE FOOTER ONLY (.site-footer-home)
══════════════════════════════════════════════════════════════ */

.site-footer-home {
    --sfh-green:      #0b1f18;
    --sfh-green-soft: #0e2e22;
    --sfh-gold:       #c9932a;
    --sfh-gold-lite:  #e8b84b;
    --sfh-gold-dim:   rgba(201, 147, 42, 0.50);
    --sfh-white:      #ffffff;
    --sfh-muted:      rgba(255, 255, 255, 0.72);
    /* Match homepage footer mockup: Playfair-style headlines + Montserrat UI */
    --sfh-font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sfh-font-sans:  'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--sfh-muted);
    font-family: var(--sfh-font-sans);
    font-size: 0.9375rem;
    line-height: 1.55;
}

/* Stats strip */
.site-footer-home__stats {
    position: relative;
    background-color: #0a1610;
    padding: clamp(3rem, 5.5vw, 5rem) 0;
    overflow: hidden;
}

.site-footer-home__stats-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
    display: block;
}

.site-footer-home__stats-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(5, 18, 12, 0.62) 0%, rgba(5, 18, 12, 0.78) 100%);
    pointer-events: none;
}

.site-footer-home__stats-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
    text-align: center;
}

.site-footer-home__stat {
    padding: 1rem 1.25rem;
}

.site-footer-home__stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.site-footer-home__stat-num {
    font-family: var(--sfh-font-sans);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 600;
    color: var(--sfh-white);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.site-footer-home__stat-plus {
    color: var(--sfh-gold-lite);
    font-weight: 700;
}

.site-footer-home__stat-label {
    font-family: var(--sfh-font-sans);
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    font-style: italic;
    font-weight: 500;
    color: var(--sfh-gold);
    line-height: 1.35;
    max-width: 13rem;
    margin: 0 auto;
}

.site-footer-home__stat-div {
    width: 1px;
    align-self: stretch;
    min-height: 7rem;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 25%,
        rgba(255, 255, 255, 0.25) 75%,
        transparent 100%
    );
}

/* Main footer body */
.site-footer-home__body {
    background: var(--sfh-green);
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(2rem, 4vw, 3rem);
}

/* CTA card */
.site-footer-home__cta {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(201, 147, 42, 0.40);
    border-radius: 16px;
    background: #0e2a1e;
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.site-footer-home__cta-col--brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.site-footer-home__cta-logo-ring {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    border: 2px solid var(--sfh-gold);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.site-footer-home__cta-logo-ring img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.site-footer-home__cta-brand-text {
    margin: 0;
    font-family: var(--sfh-font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    max-width: 16rem;
}

.site-footer-home__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    font-family: var(--sfh-font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sfh-gold);
}

.site-footer-home__eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--sfh-gold);
    flex-shrink: 0;
}

.site-footer-home__cta-title {
    margin: 0 0 0.75rem;
    font-family: var(--sfh-font-serif);
    font-size: clamp(1.85rem, 2.85vw, 2.55rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0.01em;
    color: var(--sfh-white);
}

/* Exactly two lines — both Playfair Display, matching reference */
.site-footer-home__cta-title-line1,
.site-footer-home__cta-title-line2 {
    display: block;
    font-family: var(--sfh-font-serif);
    font-style: normal;
}

.site-footer-home__cta-title-line1 {
    color: var(--sfh-white);
    font-weight: 700;
}

.site-footer-home__cta-title-line2 {
    color: var(--sfh-gold);
    font-weight: 600;
    margin-top: 0.06em;
}

.site-footer-home__cta-sub {
    margin: 0 0 1.35rem;
    font-family: var(--sfh-font-sans);
    font-size: 0.825rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 38rem;
}

.site-footer-home__pill-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.5rem 0.5rem;
}

@media (max-width: 1100px) {
    .site-footer-home__pill-icons {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.site-footer-home__pill-icons li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
    font-family: var(--sfh-font-sans);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

.site-footer-home__pill-ic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.88);
    flex-shrink: 0;
}

.site-footer-home__cta-col--contact {
    border-left: 1px solid rgba(201, 147, 42, 0.35);
    padding-left: clamp(1.25rem, 2.5vw, 2rem);
    text-align: center;
}

.site-footer-home__cta-phone {
    display: block;
    font-family: var(--sfh-font-sans);
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--sfh-gold);
    text-decoration: none;
    line-height: 1.25;
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.site-footer-home__cta-phone:hover {
    color: var(--sfh-gold-lite);
}

.site-footer-home__cta-email {
    display: block;
    font-family: var(--sfh-font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: color 0.18s ease;
}

.site-footer-home__cta-email:hover {
    color: var(--sfh-white);
}

.site-footer-home__cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.site-footer-home__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.72rem 1.1rem;
    border-radius: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    width: 100%;
    max-width: 17.5rem;
    margin-left: auto;
    margin-right: auto;
}

.site-footer-home__btn--gold {
    background: var(--sfh-gold);
    color: #0b1f18;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    font-family: var(--sfh-font-sans);
    font-size: 0.825rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 10px;
}

.site-footer-home__btn--gold:hover {
    background: var(--sfh-gold-lite);
    transform: translateY(-1px);
}

.site-footer-home__btn--gold svg {
    flex-shrink: 0;
    color: #0b1f18;
}

.site-footer-home__btn--outline {
    background: transparent;
    color: var(--sfh-white);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    font-family: var(--sfh-font-sans);
    font-size: 0.825rem;
    font-weight: 600;
    border-radius: 10px;
}

.site-footer-home__btn--outline:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.80);
}

.site-footer-home__badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 0.65rem;
    font-family: var(--sfh-font-sans);
    font-size: 0.65rem;
    font-weight: 600;
}

.site-footer-home__badge {
    display: flex;
    align-items: center;
    gap: 0.38rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.3;
}

.site-footer-home__badge svg {
    flex-shrink: 0;
    color: var(--sfh-gold);
}

/* Link grid */
.site-footer-home__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: start;
    margin-bottom: 2rem;
    padding-top: 0.25rem;
}

.site-footer-home__col-title {
    margin: 0 0 1.1rem;
    font-family: var(--sfh-font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sfh-white);
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer-home__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.site-footer-home__links a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-family: var(--sfh-font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.35;
    padding: 0.15rem 0;
    transition: color 0.18s ease, padding-left 0.18s ease;
}

.site-footer-home__links a:hover {
    color: var(--sfh-white);
    padding-left: 0.3rem;
}

.site-footer-home__col--news {
    min-width: 0;
}

.site-footer-home__news-card {
    background: var(--sfh-green-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.35rem 1.5rem 1.4rem;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.site-footer-home__news-desc {
    margin: 0 0 1rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.site-footer-home__news-form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.15rem;
    background: rgba(0, 0, 0, 0.25);
    transition: border-color 0.2s ease;
}

.site-footer-home__news-form:focus-within {
    border-color: rgba(201, 147, 42, 0.6);
}

.site-footer-home__news-form input {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    border: none;
    background: transparent;
    padding: 0.72rem 0.9rem;
    color: var(--sfh-white);
    font-family: var(--sfh-font-sans);
    font-size: 0.8125rem;
    outline: none;
}

.site-footer-home__news-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.site-footer-home__news-form button {
    border: none;
    background: var(--sfh-gold);
    color: #0b1f18;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.72rem 0.9rem;
    cursor: pointer;
    font-family: var(--sfh-font-sans);
    white-space: nowrap;
    letter-spacing: 0.03em;
    transition: background 0.2s ease;
    flex: 0 0 auto;
    width: auto;
}

.site-footer-home__news-form button:hover {
    background: var(--sfh-gold-lite);
}

.site-footer-home__social {
    display: flex;
    gap: 0.85rem;
    align-items: center;
}

.site-footer-home__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    line-height: 0;
    transition: color 0.18s ease, transform 0.18s ease;
}

.site-footer-home__social-link:hover {
    color: var(--sfh-white);
    transform: translateY(-2px);
}

/* Trusted partners — shared .footer__partners block inside homepage footer */
.site-footer-home .footer__partners {
    margin-bottom: 0.5rem;
}

.site-footer-home__copyright {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-family: var(--sfh-font-sans);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.site-footer-home__copyright strong {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .site-footer-home__cta {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            'brand plan'
            'contact contact';
    }

    .site-footer-home__cta-col--brand {
        grid-area: brand;
    }

    .site-footer-home__cta-col--plan {
        grid-area: plan;
    }

    .site-footer-home__cta-col--contact {
        grid-area: contact;
        border-left: none;
        border-top: 1px solid var(--sfh-gold-dim);
        padding-left: 0;
        padding-top: 1.5rem;
        margin-top: 0.25rem;
    }

    .site-footer-home__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer-home__col--news {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .site-footer-home__stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem 1rem;
    }

    .site-footer-home__stat-div {
        display: none;
    }

    .site-footer-home__stat {
        padding: 1rem 0.65rem;
        border: 1px solid rgba(212, 175, 55, 0.18);
        border-radius: 10px;
        background: rgba(0, 0, 0, 0.15);
    }

    .site-footer-home__cta {
        grid-template-columns: 1fr;
        grid-template-areas: none;
    }

    .site-footer-home__cta-col--brand,
    .site-footer-home__cta-col--plan,
    .site-footer-home__cta-col--contact {
        grid-area: auto;
    }

    .site-footer-home__cta-col--contact {
        border-top: 1px solid var(--sfh-gold-dim);
        padding-top: 1.35rem;
    }

    .site-footer-home__pill-icons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer-home__grid {
        grid-template-columns: 1fr;
    }
}

/* Footer newsletter — keep email + button on one line at all widths */
@media (max-width: 480px) {
    .site-footer-home__news-card,
    .footer__newsletter-card {
        padding: 1.1rem 1rem 1.15rem;
    }

    .site-footer-home__news-form input,
    .newsletter-form input {
        padding: 0.65rem 0.65rem;
        font-size: 0.875rem;
    }

    .site-footer-home__news-form button,
    .newsletter-form button {
        padding: 0.65rem 0.7rem;
        font-size: 0.72rem;
    }
}


/* ══════════════════════════════════════════════════════════════
   FLOATING CONTACT WIDGET
══════════════════════════════════════════════════════════════ */

.sr-contact-float {
    position: fixed;
    right: max(1.25rem, env(safe-area-inset-right, 0px));
    bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
    z-index: 10050;
    font-family: var(--font-body, system-ui, -apple-system, Segoe UI, Roboto, sans-serif);
    transition: bottom 0.28s ease;
}

.sr-contact-float__backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(15, 23, 20, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.sr-contact-float.is-open .sr-contact-float__backdrop {
    opacity: 1;
    pointer-events: auto;
}

.sr-contact-float__stack {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.7rem;
}

.sr-contact-float__panel {
    width: min(19.5rem, calc(100vw - 2.5rem));
    padding: 1rem 1.05rem 1rem;
    background: var(--clr-white);
    border-radius: 1rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.07),
        0 14px 28px -6px rgba(0, 0, 0, 0.14);
    border: 1px solid var(--clr-border);
    transform-origin: 85% 100%;
    transform: translateY(6px) scale(0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        transform 0.22s ease,
        visibility 0.22s;
}

.sr-contact-float.is-open .sr-contact-float__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sr-contact-float__head {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--clr-border);
}

.sr-contact-float__head-icon {
    flex: 0 0 auto;
    display: flex;
    color: var(--clr-primary);
    margin-top: 0.1rem;
}

.sr-contact-float__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--clr-text);
}

.sr-contact-float__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.sr-contact-float__opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 4.25rem;
    padding: 0.55rem 0.4rem;
    text-align: center;
    text-decoration: none;
    color: var(--clr-text);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #f3f4f6;
    border-radius: 0.65rem;
    border: 1px solid transparent;
    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease;
}

.sr-contact-float__opt:nth-child(2) .sr-contact-float__opt-label,
.sr-contact-float__opt:nth-child(3) .sr-contact-float__opt-label,
.sr-contact-float__opt:nth-child(4) .sr-contact-float__opt-label {
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.sr-contact-float__opt:hover {
    background: #e8eaef;
    border-color: var(--clr-border);
    color: var(--clr-primary);
}

.sr-contact-float__opt-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text);
}

.sr-contact-float__opt-icon--wa {
    color: #25d366;
}

.sr-contact-float__opt-label {
    line-height: 1.2;
    max-width: 100%;
}

.sr-contact-float__foot {
    margin: 0.85rem 0 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--clr-muted);
    text-align: center;
}

.sr-contact-float__fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 3.35rem;
    height: 3.35rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: linear-gradient(180deg, #ffe566 0%, #f5d20a 55%, #e8c400 100%);
    color: #1a1a12;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(200, 160, 0, 0.35);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        border-radius 0.2s ease,
        width 0.2s ease,
        height 0.2s ease,
        padding 0.2s ease,
        gap 0.2s ease;
}

.sr-contact-float.is-open .sr-contact-float__fab {
    width: auto;
    height: auto;
    min-height: 3.1rem;
    padding: 0.55rem 1.15rem 0.55rem 0.55rem;
    border-radius: 999px;
    gap: 0.55rem;
    justify-content: flex-start;
}

.sr-contact-float__fab:hover {
    transform: translateY(-1px);
    box-shadow:
        0 3px 6px rgba(0, 0, 0, 0.1),
        0 10px 24px rgba(200, 160, 0, 0.42);
}

.sr-contact-float__fab:active {
    transform: translateY(0);
}

.sr-contact-float__fab:focus-visible {
    outline: 2px solid var(--clr-primary);
    outline-offset: 3px;
}

.sr-contact-float__fab-icon {
    flex: 0 0 auto;
    width: 2.35rem;
    height: 2.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    color: #1a1a12;
}

.sr-contact-float.is-open .sr-contact-float__fab-icon {
    width: 2.1rem;
    height: 2.1rem;
    background: rgba(255, 255, 255, 0.45);
}

.sr-contact-float__fab-text {
    display: none;
    padding-right: 0.15rem;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0.04em;
    font-weight: 800;
}

.sr-contact-float.is-open .sr-contact-float__fab-text {
    display: inline;
}

@media (max-width: 380px) {
    .sr-contact-float {
        right: max(0.85rem, env(safe-area-inset-right, 0px));
        bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    }

    .sr-contact-float.is-open .sr-contact-float__fab-text {
        font-size: 0.65rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sr-contact-float__backdrop,
    .sr-contact-float__panel,
    .sr-contact-float__fab {
        transition: none;
    }

    .sr-contact-float.is-open .sr-contact-float__panel {
        transform: none;
    }

    .sr-contact-float__panel {
        transform: none;
    }
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__top { grid-template-columns: 1fr; gap: 2rem; }
    .footer__contact-cta { text-align: left; }
    .footer__cta-btns { justify-content: flex-start; }
}

@media (max-width: 768px) {
    /* Header */
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--clr-white);
        border-top: 1px solid var(--clr-border);
        padding: 1rem 1.5rem;
        box-shadow: 0 4px 12px rgba(0,0,0,.08);
    }

    .nav.nav--open {
        display: block;
        z-index: 210;
        max-height: min(78vh, 32rem);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    /* Blurred page behind open mobile menu */
    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 205;
        background: rgba(12, 10, 8, 0.28);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        cursor: pointer;
    }

    body.nav-menu-open .nav-backdrop {
        display: block;
    }

    body.nav-menu-open .site-header {
        z-index: 220;
    }

    body.nav-menu-open {
        overflow: hidden;
    }

    @media (prefers-reduced-motion: reduce) {
        .nav-backdrop {
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            background: rgba(12, 10, 8, 0.45);
        }
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        height: auto;
    }

    .nav__list > li {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        border-bottom: 1px solid var(--clr-border);
    }

    .nav__list > li:last-child {
        border-bottom: none;
    }

    .nav__link {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 2.75rem;
        padding: 0.55rem 0.35rem;
        font-size: 0.9rem;
    }

    .nav__item--dropdown {
        width: 100%;
    }

    /* Mega menus: stacked “drawer” sections (hover does not exist on touch) */
    .nav__item--mega {
        z-index: auto;
    }

    /* Collapsed by default; opened via .is-mega-open + site-nav.js */
    .nav__item--mega .mega-menu {
        display: none;
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        width: 100%;
        max-width: 100%;
        margin: 0.35rem 0 0.65rem;
        padding: 0.65rem 0.65rem 0.75rem;
        background: #f4f7f5;
        border: 1px solid #dfe8e2;
        border-radius: var(--radius-md);
        box-shadow: none;
    }

    .nav__item--mega.is-mega-open .mega-menu {
        display: block;
    }

    .mega-menu::before,
    .mega-menu::after {
        display: none !important;
    }

    .mega-menu__inner {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
    }

    .mega-col + .mega-col {
        border-left: none;
        padding-left: 0;
        margin-top: 0.25rem;
        padding-top: 0.65rem;
        border-top: 1px solid var(--clr-border);
    }

    .mega-col__heading {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .mega-list {
        gap: 0.2rem;
    }

    .mega-list__link {
        min-height: 2.75rem;
        padding: 0.45rem 0.4rem;
        border-radius: var(--radius-sm);
    }

    .mega-list__thumb,
    .mega-list__thumb--rect {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .mega-list__thumb--rect {
        width: 52px;
        height: 40px;
    }

    .mega-list__title {
        font-size: 0.88rem;
    }

    .mega-list__sub {
        font-size: 0.75rem;
        line-height: 1.35;
    }

    .mega-col__more {
        margin-top: 0.5rem;
        padding: 0.5rem 0.45rem;
        min-height: 2.75rem;
        border-radius: var(--radius-sm);
        background: rgba(26, 60, 52, 0.06);
    }

    .mega-help-card {
        padding: 0.75rem 0.8rem;
    }

    .mega-help-card__btn {
        width: 100%;
        justify-content: center;
        min-height: 2.75rem;
        padding: 0.55rem 1rem;
    }

    .mega-perks__item,
    .mega-perks__link {
        min-height: 2.65rem;
        padding: 0.5rem 0.4rem;
    }

    .mega-menu__footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
        margin-top: 0.35rem;
        padding: 0.75rem 0.65rem;
    }

    .mega-menu__footer-btn {
        align-self: stretch;
        justify-content: center;
        min-height: 2.75rem;
    }

    .nav__item--mega .nav__link--dropdown::after {
        transform: none !important;
        margin-left: auto;
    }

    .nav__item--mega.is-mega-open .nav__link--dropdown::after {
        transform: rotate(180deg) !important;
        opacity: 1;
    }

    .nav__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--clr-border);
        margin: 0.2rem 0 0.35rem 0.5rem;
        padding: 0.1rem 0;
        background: transparent;
        min-width: 0;
    }

    .nav__dropdown-link {
        padding: 0.4rem 0.75rem;
        font-size: 0.82rem;
        border-radius: var(--radius-sm);
    }

    .site-header__inner {
        position: relative;
        flex-wrap: wrap;
        min-width: 0;
        gap: 0.75rem 1rem;
        align-items: center;
    }

    /* Logged-in header: allow account pill + cart + menu to fit narrow widths */
    .header-actions {
        flex: 1 1 auto;
        min-width: 0;
        flex-shrink: 1;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .account-menu {
        min-width: 0;
    }

    .header-actions .cart-btn {
        flex-shrink: 0;
        padding: 0.42rem 0.5rem;
        gap: 0;
        min-width: 2.5rem;
        justify-content: center;
    }

    .header-actions .cart-btn__label {
        display: none;
    }

    .header-actions .locale-currency-btn {
        max-width: min(7.25rem, 30vw);
        font-size: 0.72rem;
        padding: 0.32rem 0.55rem 0.32rem 0.42rem;
        gap: 0.28rem;
    }
    .header-actions .locale-currency-btn__icon {
        width: 15px;
        height: 15px;
    }

    .account-menu__trigger {
        width: 2.1rem;
        height: 2.1rem;
    }

    .nav-toggle {
        display: flex;
        flex-shrink: 0;
    }

    /* Hero */
    .hero { min-height: 80vh; }

    .hero__subtitle-br { display: inline; }

    /* Stack search vertically on tablet (generic hero only — not homepage pill bar) */
    .hero__search:not(.hero__search--home) {
        flex-direction: column;
        border-radius: var(--radius-lg);
        max-width: 480px;
    }

    .search-seg { padding: 0.9rem 1.25rem; }
    .search-seg:first-child { padding-left: 1.25rem; }

    .search-divider {
        width: auto;
        height: 1px;
        margin: 0 1.25rem;
        align-self: auto;
    }

    .search-btn {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        padding: 1rem;
        justify-content: center;
    }

    /* Tours — one card per view, swipe scroll; arrows hidden */
    .tour-card {
        flex: 0 0 100%;
    }
    .tour-nav { display: none; }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    /* Footer links */
    .footer__links-row { grid-template-columns: 1fr 1fr; gap: 1.75rem; }

    .footer__col--newsletter { grid-column: 1 / -1; }

    .footer__newsletter-card { padding: 1.25rem; }

    /* Trusted partners — stack halves on tablet/phone */
    .footer__partners-panel {
        flex-direction: column;
    }

    .footer__partners-divider {
        width: auto;
        height: 1px;
        margin: 0 1.25rem;
        align-self: auto;
    }

    .footer__partner {
        padding: 1.1rem 1.35rem;
    }

    /* Footer copyright + legal: stack, full width, wrap links (no viewport overflow) */
    .footer__copyright {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .footer__copyright > p {
        flex: none;
    }

    .footer__legal {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    /* Topbar hides on very small screens; header snaps back to viewport top */
    .topbar { display: none; }
    .site-header { top: 0; }

    .site-header { padding: 0.65rem 0; }

    /* Allow wrapping so logo + actions never crush together (e.g. 344px Fold). */
    .site-header__inner {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        row-gap: 0.45rem;
        column-gap: 0.5rem;
    }

    .site-header__inner > .logo {
        flex: 0 0 auto;
        min-width: 0;
    }

    .site-header__inner > .header-actions {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 0.35rem;
    }

    .logo {
        gap: 0.35rem;
        max-width: min(54%, calc(100vw - 10.75rem));
    }

    .logo__img {
        height: 48px;
        width: 48px;
    }

    .logo__name-line {
        font-size: 0.65rem;
        letter-spacing: 0.04em;
        line-height: 0.86;
    }

    .header-actions { gap: 0.4rem; }

    .auth-login-link {
        font-size: 0.78rem;
        padding: 0.34rem 0.7rem;
    }

    .header-actions .locale-currency-btn {
        max-width: min(6.5rem, 28vw);
        font-size: 0.7rem;
        padding: 0.28rem 0.5rem 0.28rem 0.4rem;
    }

    .footer-logo__img { height: 72px; }

    .hero { min-height: 100svh; }

    .hero:not(.hero--home) .hero__title { font-size: 2.35rem; }

    .hero__content { padding-top: 2rem; padding-bottom: 3.25rem; }

    .hero__eyebrow {
        font-size: 0.7rem;
        padding: 0.32rem 0.75rem;
        margin-bottom: 1rem;
        max-width: calc(100% - 2rem);
        text-align: center;
        justify-content: center;
        line-height: 1.2;
        letter-spacing: 0.08em;
    }

    .hero:not(.hero--home) .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 1.6rem;
        max-width: 28rem;
    }

    .hero__search {
        max-width: 100%;
    }

    .search-seg { padding: 0.8rem 1rem; }
    .search-seg:first-child { padding-left: 1rem; }
    .search-divider { margin: 0 1rem; }
    .search-btn { padding: 0.9rem 1rem; }

    .hero__trust {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    .hero__trust-sep { display: none; }

    .hero__scroll { display: none; }

    .hero__picks { gap: 0.4rem; }

    .hero__pick { font-size: 0.75rem; padding: 0.25rem 0.7rem; }

    .stats-grid { grid-template-columns: 1fr 1fr; }

    .footer__links-row { grid-template-columns: 1fr; }

    .footer__bottom { flex-direction: column; align-items: flex-start; }

    /* Partners — tighter on small phones */
    .footer__partners-heading {
        gap: 0.65rem;
    }

    .footer__partners-eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.16em;
    }

    .footer__partner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
        padding: 1rem 1.1rem;
    }

    .footer__partner-logo--ta { width: 132px; }
    .footer__partner-logo--gyg { width: 120px; min-height: 44px; }

    .footer__partner-line { font-size: 0.78rem; }
    .footer__partner-title { font-size: 0.825rem; }
}

/* Ultra-narrow phones (e.g. Galaxy Z Fold outer ~344px) — icon controls + tighter bar */
@media (max-width: 420px) {
    .site-header > .container {
        padding-left: 0.65rem;
        padding-right: 0.65rem;
    }

    .site-header__inner {
        column-gap: 0.4rem;
        row-gap: 0.4rem;
    }

    .logo {
        max-width: min(50%, calc(100vw - 10rem));
    }

    .logo__img {
        height: 44px;
        width: 44px;
    }

    .logo__name-line {
        font-size: 0.625rem;
        letter-spacing: 0.035em;
    }

    .header-actions {
        gap: 0.28rem;
    }

    .header-actions .cart-btn {
        padding: 0.36rem 0.42rem;
        min-width: 2.45rem;
        justify-content: center;
    }

    .nav-toggle {
        padding: 0.32rem;
    }

    /* Sign in: compact pill with visible label (icon-only circle is too cryptic here) */
    .auth-login-link__icon {
        display: none;
    }

    .auth-login-link__label {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        margin: 0;
        overflow: visible;
        clip: auto;
        white-space: nowrap;
        border: 0;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        line-height: 1.15;
    }

    .auth-login-link {
        width: auto;
        min-width: 0;
        height: auto;
        min-height: 2.45rem;
        padding: 0.15rem 0.42rem;
        border-radius: 999px;
        gap: 0;
        justify-content: center;
        align-items: center;
    }

    /* Locale: globe only */
    .header-actions .locale-currency-btn {
        max-width: none;
        padding: 0.34rem;
        border-radius: 50%;
        gap: 0;
    }

    .locale-currency-btn__chip {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .account-menu__trigger {
        width: 2rem;
        height: 2rem;
    }

    .account-menu__avatar {
        font-size: 0.75rem;
    }
}


/* ══════════════════════════════════════════════════════════════
   TOUR PRODUCT PAGE  (.tp-*)
══════════════════════════════════════════════════════════════ */

/* ─── Tour header band ──────────────────────────────────────────────────────── */
.tp-header {
    background: linear-gradient(135deg, #0f2a22 0%, #1a3c34 60%, #122920 100%);
    padding: 2.25rem 0 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Breadcrumb */
.tp-breadcrumb { margin-bottom: 1.1rem; }

.tp-breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    list-style: none;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

.tp-breadcrumb__list a {
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}

.tp-breadcrumb__list a:hover { color: var(--clr-accent-lite); }

.tp-breadcrumb__list li:last-child { color: rgba(255,255,255,0.8); }

.tp-breadcrumb__list svg { flex-shrink: 0; }

/* Title */
.tp-title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 4vw, 2.9rem);
    font-weight: 700;
    color: #f5f0e8;
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin-bottom: 0.85rem;
}

/* Star rating */
.tp-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tp-rating__stars {
    display: flex;
    gap: 2px;
    color: var(--clr-accent);
}

.tp-rating__score {
    font-weight: 700;
    font-size: 0.9rem;
    color: #f5f0e8;
}

.tp-rating__count {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

/* Meta pills bar */
.tp-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.tp-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
}

.tp-meta-pill--accent {
    color: var(--clr-accent-lite);
    background: rgba(201,147,42,0.12);
    border-color: rgba(201,147,42,0.3);
}

.tp-tour-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}

.tp-tour-tags__pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0.28rem 0.65rem;
    border-radius: 6px;
}

/* ─── Photo Gallery (inside left column .tp-section--gallery) ───────────────── */
.tp-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Slightly tighter hero inside the content column */
.tp-section--gallery .tp-gallery-canvas {
    max-height: min(40vh, 360px);
}

.tp-section--gallery .tp-gallery-strip-wrap {
    margin: 0;
    padding: 0 0 0.15rem;
}

.tp-section--gallery .tp-gallery-strip-wrap::after {
    display: none;
}

.tp-gallery-viewer {
    display: block;
    margin-bottom: 1rem;
}

.tp-gallery-canvas {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #121816;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.04),
        0 16px 40px rgba(0,0,0,0.14);
    aspect-ratio: 16 / 9;
    max-height: min(58vh, 520px);
}

.tp-gallery-canvas__hit {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: none;
    cursor: zoom-in;
    position: relative;
    text-align: left;
}

.tp-gallery-canvas__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    vertical-align: middle;
    transition: transform 0.45s ease, opacity 0.25s ease;
}

.tp-gallery-canvas__hit:hover .tp-gallery-canvas__img {
    transform: scale(1.02);
}

/* Gradient overlay (pseudo-element: <button> may only contain phrasing content — no <div>) */
.tp-gallery-canvas__hit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,14,12,0.22) 0%,
        transparent 45%
    );
    pointer-events: none;
}

.tp-gallery-canvas__hit:focus-visible {
    outline: 3px solid var(--clr-accent);
    outline-offset: 2px;
}

/* Filmstrip */
.tp-gallery-strip-wrap {
    position: relative;
    margin: 0 -0.25rem;
    padding: 0 0 1.75rem;
}

.tp-gallery-strip-wrap::after {
    content: '';
    position: absolute;
    bottom: 1.75rem;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
    opacity: 0.6;
    pointer-events: none;
}

.tp-gallery-strip {
    display: flex;
    gap: 0.65rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.35rem 0.25rem 0.85rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(26,60,52,0.35) transparent;
}

.tp-gallery-strip::-webkit-scrollbar {
    height: 5px;
}

.tp-gallery-strip::-webkit-scrollbar-thumb {
    background: rgba(26,60,52,0.28);
    border-radius: 3px;
}

.tp-gallery-strip__tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: transform 0.2s ease;
}

.tp-gallery-strip__frame {
    display: block;
    width: 104px;
    height: 78px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.tp-gallery-strip__tab img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tp-gallery-strip__tab:hover .tp-gallery-strip__frame {
    border-color: rgba(201,147,42,0.45);
}

.tp-gallery-strip__tab.is-active .tp-gallery-strip__frame {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 1px var(--clr-accent), 0 4px 14px rgba(201,147,42,0.25);
}

.tp-gallery-strip__tab:focus-visible .tp-gallery-strip__frame {
    outline: 2px solid var(--clr-primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .tp-gallery-canvas__img {
        transition: none;
    }

    .tp-gallery-canvas__hit:hover .tp-gallery-canvas__img {
        transform: none;
    }

    .tp-gallery-strip {
        scroll-behavior: auto;
    }
}

/* ─── Body layout: gallery + article (col 1), sticky booking (col 2) ───────── */
.tp-body-section {
    background: var(--clr-bg);
    padding: 3rem 0 5rem;
}

/* Desktop: col1 = gallery → options → article (3 rows); col2 = sticky booking */
.tp-layout--pdp {
    display: grid;
    grid-template-columns: 1fr 360px;
    grid-template-rows: auto auto auto;
    column-gap: 3rem;
    row-gap: 1.5rem;
    align-items: start;
}

.tp-layout--pdp .tp-lead {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
}

.tp-layout--pdp .tp-pdp-options {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
}

.tp-layout--pdp .tp-main {
    grid-column: 1;
    grid-row: 3;
    min-width: 0;
}

.tp-layout--pdp .tp-sidebar {
    grid-column: 2;
    grid-row: 1 / -1;
}

/* Row gaps replace section bottom margin between stacked left-column blocks */
.tp-layout--pdp .tp-lead .tp-section {
    margin-bottom: 0;
}

.tp-layout--pdp .tp-pdp-options .tp-section {
    margin-bottom: 0;
}

/* ─── Left content ──────────────────────────────────────────────────────────── */
.tp-main { min-width: 0; }

.tp-section {
    /* background: var(--clr-white); */
    /* border-radius: var(--radius-md); */
    padding: 2rem 2.25rem;
    margin-bottom: 1.5rem;
    /* border: 1px solid var(--clr-border); */
    /* box-shadow: var(--shadow-card); */
}

.tp-section--last { margin-bottom: 0; }

.tp-section__title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--clr-border);
    letter-spacing: -0.01em;
}

/* Itinerary time-slot tabs (Morning / Evening / …) */
.tp-itinerary-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid var(--clr-border);
}

.tp-itinerary-head__title {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    flex: 0 0 auto;
}

.tp-itinerary-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

.tp-itinerary-tab {
    font-family: var(--font-body, inherit);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 2px solid rgba(26, 60, 52, 0.2);
    background: var(--clr-white);
    color: var(--clr-primary);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.tp-itinerary-tab:hover {
    border-color: var(--clr-primary);
    background: rgba(26, 60, 52, 0.06);
}

.tp-itinerary-tab.is-active {
    border-color: var(--clr-accent);
    background: rgba(199, 161, 74, 0.12);
    color: var(--clr-primary);
}

/*
 * Author .tp-timeline { display:flex } wins over the UA [hidden] rule (same specificity),
 * so inactive itinerary panels were still visible. Force-hide like .lm-modal[hidden].
 */
.tp-itinerary-panel[hidden] {
    display: none !important;
}

/* Overview */
.tp-overview {
    font-size: 0.975rem;
    line-height: 1.8;
    color: #3d3d3d;
}

/* Highlights */
.tp-highlights-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tp-highlights-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.925rem;
    color: var(--clr-text);
    line-height: 1.55;
}

.tp-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: rgba(26,60,52,0.09);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    color: var(--clr-primary);
}

/* Itinerary timeline */
.tp-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tp-timeline__item {
    display: grid;
    grid-template-columns: 90px 28px 1fr;
    gap: 0 0.5rem;
    position: relative;
}

/* Vertical connecting line between items */
.tp-timeline__item:not(:last-child) .tp-timeline__dot::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(90px + 0.5rem + 13px);
    width: 2px;
    height: calc(100% - 14px);
    background: linear-gradient(to bottom, var(--clr-primary), rgba(26,60,52,0.15));
}

.tp-timeline__item { position: relative; padding-bottom: 1.5rem; }
.tp-timeline__item:last-child { padding-bottom: 0; }

.tp-timeline__time {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-muted);
    padding-top: 0.35rem;
    text-align: right;
    line-height: 1.3;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.tp-timeline__dot {
    display: flex;
    justify-content: center;
    padding-top: 0.35rem;
    flex-shrink: 0;
}

.tp-timeline__dot::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--clr-accent);
    border: 3px solid var(--clr-white);
    box-shadow: 0 0 0 2px var(--clr-accent);
    flex-shrink: 0;
    display: block;
}

.tp-timeline__content {
    padding-top: 0.1rem;
    min-width: 0;
}

.tp-timeline__step {
    font-size: 0.925rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 0.25rem;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.tp-timeline__desc {
    font-size: 0.85rem;
    color: var(--clr-muted);
    line-height: 1.65;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

/* Inclusions / Exclusions */
.tp-ie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tp-ie-col__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.9rem;
    padding-bottom: 0.5rem;
    border-bottom: 1.5px solid var(--clr-border);
}

.tp-ie-col__label--inc { color: #0d9488; border-color: rgba(13,148,136,0.25); }
.tp-ie-col__label--exc { color: #dc2626; border-color: rgba(220,38,38,0.2); }

.tp-ie-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.tp-ie-item {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.875rem;
    color: var(--clr-text);
    line-height: 1.5;
}

.tp-ie-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.tp-ie-item--inc .tp-ie-icon {
    background: rgba(13,148,136,0.1);
    color: #0d9488;
}

.tp-ie-item--exc .tp-ie-icon {
    background: rgba(220,38,38,0.08);
    color: #dc2626;
}

/* FAQ accordion */
.tp-faq {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.tp-faq__item {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}

.tp-faq__item[open] { border-color: var(--clr-primary); }

.tp-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.1rem;
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--clr-text);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background var(--transition);
}

.tp-faq__question::-webkit-details-marker { display: none; }

.tp-faq__question:hover { background: #f5f8f6; }

.tp-faq__item[open] .tp-faq__question {
    color: var(--clr-primary);
    background: #f0f7f4;
}

.tp-faq__icon {
    flex-shrink: 0;
    color: var(--clr-muted);
    transition: transform var(--transition);
}

.tp-faq__item[open] .tp-faq__icon {
    transform: rotate(180deg);
    color: var(--clr-primary);
}

.tp-faq__answer {
    padding: 0 1.1rem 1rem;
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--clr-muted);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.tp-faq__item[open] .tp-faq__answer {
    padding-top: 0.1rem;
}

/* ─── Tour reviews — GetYourGuide-style ────────────────────────────────────── */
.tp-rating--empty { flex-wrap: wrap; }
.tp-rating__stars--muted { color: rgba(255,255,255,0.28); }
.tp-rating__count--solo { font-size: 0.84rem; color: rgba(255,255,255,0.55); }
.tp-section--reviews { padding-bottom: 2rem; }

/* Photo grid */
.rv-photo-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 6px; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 2rem; max-height: 280px; }
.rv-photo-grid__item { position: relative; overflow: hidden; cursor: pointer; }
.rv-photo-grid__item:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }
.rv-photo-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; display: block; }
.rv-photo-grid__item:hover img { transform: scale(1.05); }
.rv-photo-grid__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; font-weight: 700; }
@media (max-width: 640px) { .rv-photo-grid { grid-template-columns: 1fr 1fr; max-height: 220px; } .rv-photo-grid__item:first-child { grid-column: 1 / -1; } }

/* Lightbox */
.rv-lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.rv-lightbox.is-open { opacity: 1; pointer-events: auto; }
.rv-lightbox__img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.rv-lightbox__close { position: absolute; top: 1.2rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }
.rv-lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 1.5rem; padding: 0.5rem 0.75rem; border-radius: 50%; cursor: pointer; backdrop-filter: blur(4px); }
.rv-lightbox__nav--prev { left: 1rem; }
.rv-lightbox__nav--next { right: 1rem; }
.rv-lightbox__counter { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* Rating summary panel */
.rv-summary { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem 2.5rem; align-items: start; margin-bottom: 2rem; padding: 1.5rem; background: #fafcf9; border: 1px solid var(--clr-border); border-radius: var(--radius-lg); }
.rv-summary__score { text-align: center; }
.rv-summary__number { font-size: 3rem; font-weight: 800; color: var(--clr-primary); line-height: 1.1; }
.rv-summary__stars { display: flex; gap: 2px; color: var(--clr-accent); justify-content: center; margin: 0.25rem 0; }
.rv-summary__count { font-size: 0.82rem; color: var(--clr-muted); }
.rv-summary__verified { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.75rem; font-weight: 600; color: #047857; margin-top: 0.35rem; }
.rv-summary__verified svg { flex-shrink: 0; }
.rv-summary__bars { display: flex; flex-direction: column; gap: 0.6rem; }
.rv-bar { display: grid; grid-template-columns: auto 1fr auto; gap: 0.6rem; align-items: center; font-size: 0.82rem; }
.rv-bar__label { font-weight: 600; color: var(--clr-text); min-width: 5.5rem; }
.rv-bar__track { height: 8px; background: #e5e7eb; border-radius: 99px; overflow: hidden; position: relative; }
.rv-bar__fill { height: 100%; background: var(--clr-accent); border-radius: 99px; transition: width 0.8s cubic-bezier(0.4,0,0.2,1); }
.rv-bar__val { font-weight: 600; color: var(--clr-muted); min-width: 2rem; text-align: right; }
@media (max-width: 640px) { .rv-summary { grid-template-columns: 1fr; text-align: center; } .rv-summary__bars { text-align: left; } }

/* Filter toolbar */
.rv-toolbar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; align-items: center; }
.rv-toolbar__label { font-size: 0.8rem; font-weight: 600; color: var(--clr-muted); margin-right: 0.25rem; }
.rv-pill { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.35rem 0.75rem; font-size: 0.78rem; font-weight: 600; border: 1px solid var(--clr-border); border-radius: 999px; background: #fff; color: var(--clr-text); cursor: pointer; transition: all 0.15s; }
.rv-pill:hover { border-color: var(--clr-primary); }
.rv-pill.is-active { background: var(--clr-primary); color: #fff; border-color: var(--clr-primary); }
.rv-pill__icon { display: inline-flex; }

/* Review cards */
.rv-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.rv-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 1.25rem 1.35rem; box-shadow: 0 1px 6px rgba(0,0,0,0.04); transition: box-shadow 0.2s; }
.rv-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.rv-card__header { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 0.85rem; }
.rv-card__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--clr-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; text-transform: uppercase; }
.rv-card__meta { flex: 1; min-width: 0; }
.rv-card__name { font-weight: 700; font-size: 0.92rem; color: var(--clr-text); }
.rv-card__origin { font-size: 0.78rem; color: var(--clr-muted); }
.rv-card__date { font-size: 0.75rem; color: var(--clr-muted); }
.rv-card__stars { display: flex; gap: 1px; color: var(--clr-accent); margin-bottom: 0.5rem; }
.rv-card__badges { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.65rem; }
.rv-badge { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.2rem 0.55rem; font-size: 0.72rem; font-weight: 600; border-radius: 999px; }
.rv-badge--tiger { background: #fef3c7; color: #92400e; }
.rv-badge--jeep { background: #eff6ff; color: #1e40af; }
.rv-badge--canter { background: #f0fdf4; color: #166534; }
.rv-card__body { font-size: 0.9rem; line-height: 1.7; color: var(--clr-muted); margin-bottom: 0.75rem; }
.rv-card__images { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.rv-card__thumb { width: 80px; height: 60px; border-radius: 6px; object-fit: cover; border: 1px solid var(--clr-border); cursor: pointer; transition: transform 0.15s, box-shadow 0.15s; }
.rv-card__thumb:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.rv-card__response { background: #f8faf9; border-left: 3px solid var(--clr-primary); padding: 0.85rem 1rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 0.75rem; }
.rv-card__response-label { font-size: 0.75rem; font-weight: 700; color: var(--clr-primary); margin-bottom: 0.25rem; }
.rv-card__response-text { font-size: 0.85rem; color: var(--clr-muted); line-height: 1.6; }
.rv-card__footer { display: flex; align-items: center; gap: 1rem; }
.rv-helpful { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.3rem 0.65rem; font-size: 0.78rem; font-weight: 500; color: var(--clr-muted); border: 1px solid var(--clr-border); border-radius: 999px; background: #fff; cursor: pointer; transition: all 0.15s; }
.rv-helpful:hover { border-color: var(--clr-primary); color: var(--clr-primary); }
.rv-helpful.is-active { background: var(--clr-primary); color: #fff; border-color: var(--clr-primary); }
.rv-helpful.is-loading { opacity: 0.65; cursor: wait; }
.rv-helpful:disabled { cursor: default; }

.tp-review-empty { font-size: 0.9rem; color: var(--clr-muted); margin-bottom: 1.5rem; }

/* Old form compat + new form styling */
.tp-review-form-wrap { background: linear-gradient(180deg,#fafcf9 0%,#fff 100%); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 1.5rem 1.35rem 1.4rem; }
.tp-review-form__title { font-family: var(--font-heading, inherit); font-size: 1.15rem; font-weight: 700; color: var(--clr-primary); margin: 0 0 1rem; }
.tp-review-flash { padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 0.88rem; margin-bottom: 1rem; }
.tp-review-flash--success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.tp-review-flash--error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.tp-review-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.tp-review-form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .tp-review-form__row--2 { grid-template-columns: 1fr; } }
.tp-review-form__field { margin-bottom: 1rem; }
.tp-review-form__label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--clr-text); margin-bottom: 0.35rem; }
.tp-review-form__input, .tp-review-form__textarea { width: 100%; font: inherit; font-size: 0.9rem; padding: 0.55rem 0.75rem; border: 1px solid var(--clr-border); border-radius: var(--radius-sm); background: #fff; color: var(--clr-text); }
.tp-review-form__textarea { resize: vertical; min-height: 120px; }
.tp-review-form__input:focus, .tp-review-form__textarea:focus { outline: none; border-color: var(--clr-primary); box-shadow: 0 0 0 3px rgba(26,60,52,0.12); }
.tp-review-form__hint { display: block; margin-top: 0.35rem; font-size: 0.75rem; color: var(--clr-muted); }
.tp-star-pick { display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center; }
.tp-star-pick__btn { display: inline-flex; align-items: center; justify-content: center; min-width: 2.25rem; min-height: 2.25rem; padding: 0 0.35rem; border: 1px solid var(--clr-border); border-radius: var(--radius-sm); background: #fff; cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s; }
.tp-star-pick__glyph { font-size: 1.15rem; line-height: 1; color: #d1d5db; transition: color 0.15s; }
.tp-star-pick__btn.is-on .tp-star-pick__glyph, .tp-star-pick__btn.is-on { border-color: rgba(201,147,42,0.45); }
.tp-star-pick__btn.is-on .tp-star-pick__glyph { color: var(--clr-accent); }
.tp-star-pick__btn:hover .tp-star-pick__glyph { color: var(--clr-accent); }
.tp-star-pick__hint { font-size: 0.78rem; color: var(--clr-muted); margin: 0.35rem 0 0; }
.tp-star-pick__hint.is-error { color: #b91c1c; font-weight: 600; }
.tp-review-form__submit { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; margin-top: 0.25rem; padding: 0.65rem 1.35rem; font: inherit; font-size: 0.9rem; font-weight: 600; color: #fff; background: var(--clr-primary); border: none; border-radius: var(--radius-sm); cursor: pointer; transition: background 0.15s, transform 0.1s; }
.tp-review-form__submit:hover { background: #143a32; }
.tp-review-form__submit:active { transform: translateY(1px); }
.tp-review-form__submit.is-loading { opacity: 0.75; cursor: wait; pointer-events: none; }

/* Standalone review page */
.sr-page { padding: 3rem 0; min-height: 60vh; }
.sr-page__card { max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 2.5rem 2rem; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.sr-page__card--error { text-align: center; }
.sr-page__icon-wrap { display: flex; justify-content: center; margin-bottom: 1.25rem; color: var(--clr-accent); }
.sr-page__icon-wrap--error { color: #dc2626; }
.sr-page__heading { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--clr-primary); text-align: center; margin-bottom: 0.5rem; }
.sr-page__tour-name { text-align: center; font-size: 0.95rem; color: var(--clr-muted); margin-bottom: 1.5rem; }
.sr-page__text { font-size: 0.95rem; color: var(--clr-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.sr-page__btn { display: inline-flex; align-items: center; padding: 0.6rem 1.5rem; font-weight: 600; font-size: 0.9rem; background: var(--clr-primary); color: #fff; border-radius: var(--radius-sm); text-decoration: none; transition: background 0.15s; }
.sr-page__btn:hover { background: #143a32; }

/* Review form on standalone page */
.sr-form__field { margin-bottom: 1.25rem; }
.sr-form__field--center { text-align: center; }
.sr-form__label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--clr-text); margin-bottom: 0.4rem; }
.sr-form__optional { font-weight: 400; color: var(--clr-muted); }
.sr-form__input, .sr-form__textarea, .sr-form__select { width: 100%; font: inherit; font-size: 0.9rem; padding: 0.6rem 0.8rem; border: 1px solid var(--clr-border); border-radius: var(--radius-sm); background: #fff; color: var(--clr-text); transition: border-color 0.15s, box-shadow 0.15s; }
.sr-form__input:focus, .sr-form__textarea:focus, .sr-form__select:focus { outline: none; border-color: var(--clr-primary); box-shadow: 0 0 0 3px rgba(26,60,52,0.1); }
.sr-form__textarea { resize: vertical; min-height: 130px; }
.sr-form__select { cursor: pointer; }
.sr-form__hint { display: block; margin-top: 0.3rem; font-size: 0.75rem; color: var(--clr-muted); }
.sr-form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sr-form__row--extras { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-end; }
@media (max-width: 640px) { .sr-form__row--2 { grid-template-columns: 1fr; } }
.sr-form__check-label { display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer; padding: 0.6rem 0; }
.sr-form__checkbox { width: 1.1rem; height: 1.1rem; accent-color: var(--clr-primary); }
.sr-form__check-text { font-size: 0.88rem; font-weight: 600; }
.sr-form__submit { display: flex; align-items: center; justify-content: center; width: 100%; padding: 0.75rem; font: inherit; font-size: 0.95rem; font-weight: 700; color: #fff; background: var(--clr-primary); border: none; border-radius: var(--radius-sm); cursor: pointer; transition: background 0.15s, transform 0.1s; }
.sr-form__submit:hover { background: #143a32; }
.sr-form__submit.is-loading { opacity: 0.7; cursor: wait; }

/* Star picker (standalone page) */
.sr-star-pick { display: flex; gap: 0.35rem; justify-content: center; margin-bottom: 0.25rem; }
.sr-star-pick__btn { background: none; border: none; cursor: pointer; padding: 0.2rem; color: #d1d5db; transition: color 0.15s, transform 0.1s; }
.sr-star-pick__btn.is-on { color: var(--clr-accent); }
.sr-star-pick__btn.is-on svg { fill: var(--clr-accent); }
.sr-star-pick__btn:hover { color: var(--clr-accent); transform: scale(1.15); }
.sr-star-pick__hint { font-size: 0.82rem; color: var(--clr-muted); text-align: center; margin-top: 0.2rem; }
.sr-star-pick__hint.is-error { color: #b91c1c; font-weight: 600; }

/* Dropzone */
.sr-dropzone { position: relative; border: 2px dashed var(--clr-border); border-radius: var(--radius-md); padding: 1.5rem; text-align: center; transition: border-color 0.2s, background 0.2s; cursor: pointer; }
.sr-dropzone.is-drag { border-color: var(--clr-primary); background: rgba(26,60,52,0.04); }
.sr-dropzone__input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.sr-dropzone__placeholder { color: var(--clr-muted); }
.sr-dropzone__placeholder svg { margin: 0 auto 0.5rem; display: block; color: #9ca3af; }
.sr-dropzone__placeholder p { font-size: 0.88rem; margin-bottom: 0.2rem; }
.sr-dropzone__placeholder strong { color: var(--clr-primary); }
.sr-dropzone__hint { font-size: 0.75rem; color: #9ca3af; }

/* Image previews */
.sr-previews { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-top: 0.75rem; }
.sr-previews__item { position: relative; width: 80px; height: 80px; border-radius: 8px; overflow: hidden; border: 1px solid var(--clr-border); }
.sr-previews__item img { width: 100%; height: 100%; object-fit: cover; }
.sr-previews__remove { position: absolute; top: 2px; right: 2px; width: 20px; height: 20px; border-radius: 50%; background: rgba(0,0,0,0.6); color: #fff; border: none; font-size: 0.8rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* Success state */
.sr-success { text-align: center; padding: 2rem 0; }
.sr-success__icon { margin-bottom: 1rem; }
.sr-success__title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--clr-primary); margin-bottom: 0.5rem; }
.sr-success__text { font-size: 0.95rem; color: var(--clr-muted); margin-bottom: 1.5rem; }

/* ─── Sticky sidebar ────────────────────────────────────────────────────────── */
.tp-sidebar {
    position: sticky;
    top: var(--site-sticky-header-top);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ─── Booking card ──────────────────────────────────────────────────────────── */
.tp-booking-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.6rem 1.5rem;
    box-shadow: 0 6px 28px rgba(0,0,0,0.09);
}

/* Desktop: cap card height; scroll fields/summary; keep Add to Cart visible */
@media (min-width: 1025px) {
    .tp-booking-card {
        display: flex;
        flex-direction: column;
        max-height: calc(100dvh - var(--site-sticky-header-top) - 1.5rem);
        overflow: hidden;
        padding-bottom: 1.25rem;
    }

    .tp-booking-card__scroll {
        flex: 1 1 auto;
        min-height: 0;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-gutter: stable;
        padding-right: 0.15rem;
        margin-right: -0.15rem;
    }

    .tp-booking-card__footer {
        flex: 0 0 auto;
        padding-top: 0.85rem;
        margin-top: 0.35rem;
        border-top: 1px solid var(--clr-border);
        background: var(--clr-white);
        box-shadow: 0 -10px 20px rgba(255, 255, 255, 0.92);
    }

    .tp-booking-card__footer .tp-bc-cta {
        margin-top: 0;
    }

    .tp-booking-card__footer .tp-bc-view-cart-wrap {
        margin-bottom: 0;
    }

    /* Let traveler/date panels extend outside the scroll area while open */
    .tp-booking-card:has(.tp-traveler--open),
    .tp-booking-card:has(.tp-date-dd--open) {
        overflow: visible;
    }

    .tp-booking-card:has(.tp-traveler--open) .tp-booking-card__scroll,
    .tp-booking-card:has(.tp-date-dd--open) .tp-booking-card__scroll {
        overflow: visible;
    }

    .tp-booking-card:has(.tp-traveler--open) .tp-traveler__panel,
    .tp-booking-card:has(.tp-date-dd--open) .tp-date-dd__panel {
        z-index: 120;
    }
}

/* Price */
.tp-bc-price-block {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.tp-bc-price {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.tp-bc-price .card-price-from {
    display: inline-block;
    max-width: 100%;
}

.tp-bc-price .card-price-from--compare {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.4rem;
}

.tp-bc-price .card-price-from--compare .card-price-from__was-prefix,
.tp-bc-price .card-price-from--compare .card-price-from__was {
    font-size: 0.55em;
    font-weight: 600;
    color: var(--clr-muted);
    text-decoration: none;
}

.tp-bc-price .card-price-from--compare .card-price-from__sale {
    font-size: 1em;
    font-weight: 800;
    color: var(--clr-primary);
}

.tp-bc-price .card-price-from:not(.card-price-from--compare) .card-price-from__sale {
    color: var(--clr-primary);
}

.tp-bc-price .card-price-from--empty {
    font-size: 0.85em;
    font-weight: 600;
    color: var(--clr-muted);
}

.tp-bc-price-label {
    font-size: 0.82rem;
    color: var(--clr-muted);
    font-weight: 500;
}

/* Trust signals */
.tp-bc-trust {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.tp-bc-trust__item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.775rem;
    color: #0d9488;
    font-weight: 500;
}

.tp-bc-divider {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 1rem 0;
}

/* Fields */
.tp-bc-field {
    margin-bottom: 1rem;
}

.tp-bc-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--clr-muted);
    margin-bottom: 0.5rem;
}

.tp-bc-label__sub {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: #aaa;
    font-size: 0.75rem;
}

.tp-bc-input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--clr-text);
    background: var(--clr-white);
    outline: none;
    transition: border-color var(--transition);
    cursor: pointer;
}

.tp-bc-input:focus { border-color: var(--clr-primary); }

/* ─── Booking card: dropdown calendar (no external libs) ───────────────────── */
.tp-date-dd {
    position: relative;
    width: 100%;
}

.tp-date-dd__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    text-align: left;
    width: 100%;
    cursor: pointer;
}

.tp-date-dd__value {
    flex: 1;
    min-width: 0;
    font-weight: 600;
    color: var(--clr-text);
}

.tp-date-dd:not(.tp-date-dd--has-value) .tp-date-dd__value {
    color: var(--clr-muted);
    font-weight: 500;
}

.tp-date-dd__chev {
    flex-shrink: 0;
    opacity: 0.55;
    transition: transform 0.2s ease;
}

.tp-date-dd--open .tp-date-dd__chev {
    transform: rotate(180deg);
}

.tp-date-dd__panel {
    position: absolute;
    z-index: 80;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    padding: 0.65rem 0.75rem 0.85rem;
    background: var(--clr-white);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.tp-cal__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.tp-cal__title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--clr-text);
    text-align: center;
    flex: 1;
}

.tp-cal__nav {
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    background: var(--clr-white);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    color: var(--clr-text);
    transition: background 0.15s ease, border-color 0.15s ease;
}

.tp-cal__nav:hover:not(:disabled) {
    border-color: var(--clr-primary);
    background: rgba(212, 165, 116, 0.08);
}

.tp-cal__nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.tp-cal__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 0.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--clr-muted);
    text-align: center;
}

.tp-cal__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.tp-cal__cell--pad {
    min-height: 2.15rem;
}

.tp-cal__day {
    min-height: 2.15rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: var(--clr-white);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--clr-text);
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.tp-cal__day:hover:not(:disabled):not(.tp-cal__day--disabled) {
    border-color: var(--clr-primary);
    background: rgba(212, 165, 116, 0.12);
}

.tp-cal__day--selected {
    border-color: var(--clr-primary);
    background: var(--clr-primary);
    color: #fff;
}

.tp-cal__day--selected:hover:not(:disabled) {
    background: var(--clr-primary);
    color: #fff;
    opacity: 0.95;
}

.tp-cal__day--disabled {
    opacity: 0.35;
    cursor: not-allowed;
    font-weight: 500;
}

/* ─── Options section (LEFT main column) ─────────────────────────────────────
   Contains the service cards + slot chips rendered by JS.
   Wider layout than the old sidebar variant.
────────────────────────────────────────────────────────────────────────────── */

/* Section overrides for the options block */
.tp-section--options {
    padding-bottom: 2.25rem;
    scroll-margin-top: var(--site-sticky-scroll-margin);
}

/* Section title without bottom border */
.tp-section__title--options {
    border-bottom: none;
    margin-bottom: 0.25rem;
    padding-bottom: 0;
}

/* Section header row: title + live badge */
.tp-options-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--clr-border);
}

.tp-options-subhead {
    font-size: 0.875rem;
    color: var(--clr-muted);
    margin: 0.25rem 0 0;
    line-height: 1.5;
}

.tp-options-badge {
    flex-shrink: 0;
    margin-top: 0.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: #e6f4ee;
    color: #0d6b3a;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.tp-options-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #16a34a;
    animation: tpPulse 2s ease-in-out infinite;
}

@keyframes tpPulse {
    0%, 100% { opacity: 1; }
    50%  { opacity: 0.35; }
}

/* ── Service wrap container ───────────────────────────────────────────────── */
.tp-svc-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ── Placeholder / loading / error / empty states ────────────────────────── */
.tp-svc-placeholder,
.tp-svc-empty,
.tp-svc-loading,
.tp-svc-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
    background: #f5f8f6;
    border: 1.5px dashed var(--clr-border);
    text-align: center;
    color: var(--clr-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.tp-svc-placeholder svg,
.tp-svc-empty svg { opacity: 0.45; }

.tp-svc-empty__hint {
    max-width: 34rem;
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--clr-muted);
}

.tp-svc-empty__hint strong {
    font-weight: 600;
    color: var(--clr-text);
}

.tp-svc-error {
    background: #fff5f5;
    border-color: #fecaca;
    color: #b42318;
    flex-direction: row;
    text-align: left;
    padding: 1rem 1.25rem;
    gap: 0.6rem;
}

.tp-svc-error svg { flex-shrink: 0; }

.tp-svc-loading {
    flex-direction: row;
    padding: 1.25rem 1.5rem;
    gap: 0.75rem;
    font-size: 0.9rem;
}

/* Loading spinner */
.tp-svc-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2.5px solid var(--clr-border);
    border-top-color: var(--clr-primary);
    border-radius: 50%;
    animation: tpSpin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes tpSpin {
    to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════════════════════════════════════
   SERVICE CARD — main left-column layout (wider than old sidebar cards)
══════════════════════════════════════════════════════════════════════════════ */

.tp-svc-card {
    background: var(--clr-white);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem 1.35rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.tp-svc-card:hover {
    border-color: #b4ccc4;
    box-shadow: 0 4px 18px rgba(26,60,52,0.08);
}

.tp-svc-card--selected {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(26,60,52,0.10), 0 4px 18px rgba(26,60,52,0.10);
}

/* ── Top bar: service title + price pill ──────────────────────────────────── */
.tp-svc-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.65rem;
}

.tp-svc-card__top-left { min-width: 0; }

.tp-svc-card__title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 0;
    line-height: 1.25;
}

.tp-svc-card__price-pill {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    gap: 0.12rem;
}

.tp-svc-card__price-was-line {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0.12rem;
    max-width: 100%;
}

.tp-svc-card__price-was-prefix {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--clr-muted);
    text-decoration: none;
    line-height: 1.1;
    white-space: nowrap;
}

.tp-svc-card__price-was {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--clr-muted);
    line-height: 1.1;
    white-space: nowrap;
    text-decoration: none;
}

.tp-svc-card__price-was-num {
    text-decoration: line-through;
}

.tp-svc-card__price-amt {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
}

.tp-svc-card__price-pill--strike .tp-svc-card__price-amt {
    color: var(--clr-accent);
}

.tp-svc-card__price-per {
    font-size: 0.72rem;
    color: var(--clr-muted);
    margin-top: 0.15rem;
}

/* ── Description ─────────────────────────────────────────────────────────── */
.tp-svc-card__desc {
    font-size: 0.875rem;
    color: var(--clr-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Divider ─────────────────────────────────────────────────────────────── */
.tp-svc-card__div {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 1rem 0;
}

/* ── Slots section ───────────────────────────────────────────────────────── */
.tp-svc-card__slots-section { }

.tp-svc-card__slots-heading {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.775rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clr-muted);
    margin: 0 0 0.65rem;
}

/* Chip button row */
.tp-svc-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ── Slot chip button ─────────────────────────────────────────────────────── */
.tp-svc-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border: 1.5px solid var(--clr-border);
    border-radius: 999px;
    background: var(--clr-white);
    font-family: var(--font-body);
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--clr-text);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition),
                color var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

/* Hover only when not selected — avoids washing out active chip (white text on pale bg) */
.tp-svc-chip:hover:not(:disabled):not(.tp-svc-chip--active) {
    border-color: var(--clr-primary);
    background: rgba(26,60,52,0.05);
    color: var(--clr-primary);
}

.tp-svc-chip--active {
    border-color: var(--clr-primary);
    background: var(--clr-primary);
    color: var(--clr-white) !important;
    box-shadow: 0 3px 10px rgba(26,60,52,0.30);
}

.tp-svc-chip--active:hover:not(:disabled) {
    background: #163a32;
    border-color: #163a32;
    color: var(--clr-white) !important;
    box-shadow: 0 4px 14px rgba(26,60,52,0.38);
}

.tp-svc-chip--full,
.tp-svc-chip:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    border-color: var(--clr-border);
    background: #f3f4f6;
    color: var(--clr-muted);
}

.tp-svc-chip__time { display: inline; }

/* Badge inside chip */
.tp-svc-chip__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.12rem 0.4rem;
    border-radius: 999px;
    font-size: 0.69rem;
    font-weight: 700;
    line-height: 1;
}

.tp-svc-chip__badge--ok {
    background: #e6f4ee;
    color: #0d6b3a;
}

.tp-svc-chip__badge--low {
    background: #fff3cd;
    color: #7a5500;
}

.tp-svc-chip__badge--full {
    background: #f3f4f6;
    color: var(--clr-muted);
}

.tp-svc-chip--active .tp-svc-chip__badge {
    background: rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.9);
}

/* ── Urgency notice ───────────────────────────────────────────────────────── */
.tp-svc-card__urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    padding: 0.45rem 0.75rem;
    border-radius: var(--radius-sm);
    background: #fff8e6;
    border: 1px solid #f3d87f;
    font-size: 0.8rem;
    font-weight: 600;
    color: #7a5500;
}

.tp-svc-card__urgency svg { color: var(--clr-accent); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════════════════
   BOOKING SUMMARY (RIGHT sidebar — updates when slot is chosen)
══════════════════════════════════════════════════════════════════════════════ */

.tp-bc-summary {
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all var(--transition);
}

/* Empty / no-selection state */
.tp-bc-summary__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 0.75rem;
    background: #f5f8f6;
    border-radius: var(--radius-sm);
    text-align: center;
}

.tp-bc-summary__empty svg { opacity: 0.4; }

.tp-bc-summary__empty p {
    font-size: 0.8rem;
    color: var(--clr-muted);
    margin: 0;
    line-height: 1.45;
}

/* Filled summary */
.tp-bc-summary__filled {
    background: linear-gradient(135deg, rgba(26,60,52,0.04) 0%, rgba(26,60,52,0.01) 100%);
    border: 1.5px solid rgba(26,60,52,0.14);
    border-radius: var(--radius-sm);
    padding: 0.85rem 0.95rem;
}

.tp-bc-summary__row {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--clr-border);
}

.tp-bc-summary__row:last-of-type {
    border-bottom: none;
}

.tp-bc-summary__row--service .tp-bc-summary__value {
    font-weight: 700;
    color: var(--clr-text);
}

.tp-bc-summary__ico {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--clr-primary);
}

.tp-bc-summary__label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clr-muted);
    margin-bottom: 0.1rem;
}

.tp-bc-summary__value {
    display: block;
    font-size: 0.82rem;
    color: var(--clr-text);
    font-weight: 500;
}

/* Price row inside summary */
.tp-bc-summary__price-row {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-top: 0.6rem;
    padding-top: 0.55rem;
    border-top: 1.5px solid rgba(26,60,52,0.12);
}

.tp-bc-summary__price {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1;
}

.tp-bc-summary__per {
    font-size: 0.75rem;
    color: var(--clr-muted);
}

.tp-bc-summary__rates {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.35rem 0.75rem;
    margin-top: 0.45rem;
    padding: 0.45rem 0.5rem;
    border-radius: var(--radius-sm);
    background: rgba(26, 60, 52, 0.05);
    font-size: 0.78rem;
}

.tp-bc-summary__rates-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-muted);
    font-size: 0.65rem;
}

.tp-bc-summary__rates-val {
    font-weight: 600;
    color: var(--clr-text);
}

.tp-bc-summary__idle-msg {
    margin: 0.45rem 0 0;
    font-size: 0.78rem;
    color: var(--clr-muted);
    line-height: 1.4;
}

.tp-bc-summary__pricing {
    margin-top: 0.55rem;
    padding-top: 0.55rem;
    border-top: 1.5px solid rgba(26, 60, 52, 0.12);
}

.tp-bc-summary__total-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
}

.tp-bc-summary__total-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clr-muted);
}

.tp-bc-summary__total-amt {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1.1;
}

.tp-bc-summary__total-amt--live {
    letter-spacing: -0.02em;
}

.tp-bc-summary__breakdown {
    margin: 0.35rem 0 0;
    font-size: 0.72rem;
    color: var(--clr-muted);
    line-height: 1.45;
}

/* ── Book Now CTA disabled state ─────────────────────────────────────────── */
.tp-bc-cta:disabled {
    opacity: 0.52;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.tp-bc-cta:disabled:hover {
    background: var(--clr-accent);
    transform: none;
    box-shadow: none;
}

/* Counter */
.tp-bc-counter {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}

.tp-bc-counter:focus-within { border-color: var(--clr-primary); }

.tp-bc-counter__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #f5f7f6;
    border: none;
    cursor: pointer;
    color: var(--clr-text);
    transition: background var(--transition), color var(--transition);
    flex-shrink: 0;
}

.tp-bc-counter__btn:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.tp-bc-counter__input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    text-align: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text);
    background: var(--clr-white);
    padding: 0.5rem 0;
    -moz-appearance: textfield;
}

.tp-bc-counter__input::-webkit-inner-spin-button,
.tp-bc-counter__input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ── Traveler dropdown (GetYourGuide-style) ───────────────────────────────── */
.tp-traveler-field {
    position: relative;
    z-index: 1;
}

.tp-traveler {
    position: relative;
}

.tp-traveler--open {
    z-index: 35;
}

.tp-traveler__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 0.72rem 0.95rem;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    background: var(--clr-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text);
    text-align: left;
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.tp-traveler__toggle:hover {
    border-color: #b4ccc4;
}

.tp-traveler--open .tp-traveler__toggle {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(26,60,52,0.08);
}

.tp-traveler__summary {
    flex: 1;
    min-width: 0;
    line-height: 1.35;
}

.tp-traveler__chev {
    flex-shrink: 0;
    color: var(--clr-muted);
    transition: transform 0.2s ease;
}

.tp-traveler--open .tp-traveler__chev {
    transform: rotate(180deg);
    color: var(--clr-primary);
}

.tp-traveler__panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 40;
    padding: 1rem 1.1rem 1rem;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    box-shadow:
        0 4px 6px -1px rgba(0,0,0,0.08),
        0 12px 24px -4px rgba(0,0,0,0.12);
    animation: tpTravelerIn 0.18s ease-out;
}

@keyframes tpTravelerIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tp-traveler__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
}

.tp-traveler__row + .tp-traveler__row {
    border-top: 1px solid var(--clr-border);
    margin-top: 0.35rem;
    padding-top: 0.85rem;
}

.tp-traveler__row-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.tp-traveler__row-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--clr-text);
}

.tp-traveler__row-sub {
    font-size: 0.72rem;
    color: var(--clr-muted);
}

.tp-traveler__stepper {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.tp-traveler__count {
    min-width: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-text);
}

.tp-traveler__step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    background: #f8faf9;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
    color: var(--clr-text);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.tp-traveler__step:hover {
    border-color: var(--clr-primary);
    background: rgba(26,60,52,0.06);
    color: var(--clr-primary);
}

.tp-traveler__continue {
    width: 100%;
    margin-top: 0.85rem;
    padding: 0.65rem 1rem;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--clr-primary);
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.tp-traveler__continue:hover {
    background: #142e28;
}

.tp-traveler__continue:active {
    transform: scale(0.98);
}

/* Mobile traveler panel: see "Tour page responsive" bottom-sheet rules */

/* CTA button */
.tp-bc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.95rem 1.5rem;
    background: var(--clr-accent);
    color: var(--clr-white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background var(--transition), transform var(--transition),
                box-shadow var(--transition);
    margin-top: 0.25rem;
}

.tp-bc-cta:hover {
    background: var(--clr-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,147,42,0.35);
}

.tp-bc-cta:active { transform: translateY(0); }

.tp-bc-cta.tp-bc-cta--loading {
    pointer-events: none;
    opacity: 0.85;
    cursor: wait;
}

.tp-bc-cta.tp-bc-cta--success {
    background: var(--clr-primary, #1a3c34);
    box-shadow: 0 4px 16px rgba(26, 60, 52, 0.2);
}

.tp-bc-cta.tp-bc-cta--success:hover {
    background: var(--clr-primary, #1a3c34);
    filter: brightness(1.05);
}

.tp-bc-feedback {
    margin-top: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    line-height: 1.45;
}

.tp-bc-feedback--success {
    background: rgba(34, 139, 34, 0.12);
    color: #1b5e20;
    border: 1px solid rgba(34, 139, 34, 0.35);
}

.tp-bc-feedback--error {
    background: rgba(198, 40, 40, 0.08);
    color: #b71c1c;
    border: 1px solid rgba(198, 40, 40, 0.35);
}

/* Help line */
.tp-bc-help {
    text-align: center;
    margin-top: 0.85rem;
    font-size: 0.78rem;
    color: var(--clr-muted);
}

.tp-bc-help__link {
    color: var(--clr-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}

.tp-bc-help__link:hover { color: var(--clr-accent-dark); }

/* Duration note */
.tp-bc-duration {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--clr-border);
    font-size: 0.8rem;
    color: var(--clr-muted);
}

.tp-bc-duration strong { color: var(--clr-text); }

/* ─── Guide contact mini-card ───────────────────────────────────────────────── */
.tp-guide-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.25rem;
    box-shadow: var(--shadow-card);
}

.tp-guide-card__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: rgba(26,60,52,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
}

.tp-guide-card__title {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--clr-text);
    margin-bottom: 0.15rem;
}

.tp-guide-card__desc {
    font-size: 0.8rem;
    color: var(--clr-muted);
    margin-bottom: 0.5rem;
}

.tp-guide-card__link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}

.tp-guide-card__link:hover { color: var(--clr-accent-dark); }

/* ─── 404 / not-found state ─────────────────────────────────────────────────── */
.tp-notfound {
    padding: 6rem 0;
    background: var(--clr-bg);
    text-align: center;
}

.tp-notfound__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 460px;
    margin: 0 auto;
}

.tp-notfound__icon { color: var(--clr-muted); opacity: 0.5; }

.tp-notfound__title {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.tp-notfound__desc {
    font-size: 0.975rem;
    color: var(--clr-muted);
    line-height: 1.7;
}

.tp-notfound__btn {
    display: inline-block;
    margin-top: 0.5rem;
    background: var(--clr-accent);
    color: var(--clr-white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    transition: background var(--transition);
}

.tp-notfound__btn:hover { background: var(--clr-accent-dark); }

/* ─── Related products (same category, compact cards) ───────────────────────── */
.tp-related {
    margin-top: 2.25rem;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
}

.tp-related__title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 0 0 1.1rem;
    letter-spacing: -0.02em;
}

/* ─── Linked Journal posts on tour PDP ─────────────────────────────────────── */
.tp-tour-blogs {
    margin-top: 2.25rem;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
}

.tp-tour-blogs__title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}

.tp-tour-blogs__sub {
    margin: 0 0 1.25rem;
    font-size: 0.92rem;
    color: var(--clr-muted);
    line-height: 1.5;
}

.tp-tour-blogs__grid {
    margin-bottom: 1rem;
}

.tp-tour-blogs__more {
    margin: 0;
    font-size: 0.9rem;
}

.tp-tour-blogs__more a {
    color: var(--clr-primary);
    font-weight: 600;
    text-decoration: none;
}

.tp-tour-blogs__more a:hover {
    text-decoration: underline;
}

.tp-related__slider {
    margin-bottom: 0;
}

.tp-related__track {
    gap: 1rem;
    padding-bottom: 0.5rem;
}

.tp-related__track .tp-rel-card {
    flex: 0 0 min(260px, calc((100% - 2rem) / 3));
    width: min(260px, calc((100% - 2rem) / 3));
    max-width: min(260px, calc((100% - 2rem) / 3));
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.tp-rel-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: border-color var(--transition), box-shadow var(--transition);
    min-width: 0;
}

.tp-rel-card:hover {
    border-color: #b4ccc4;
    box-shadow: 0 6px 20px rgba(26, 60, 52, 0.1);
}

.tp-rel-card__media {
    display: block;
    aspect-ratio: 16 / 9;
    max-height: 118px;
    overflow: hidden;
    background: #e8ece9;
    pointer-events: none;
}

.tp-rel-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp-rel-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0.65rem 0.75rem 0.75rem;
    gap: 0.35rem;
    min-width: 0;
    pointer-events: none;
}

.tp-rel-card__title {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.tp-rel-card__stretch-link {
    color: var(--clr-primary);
    text-decoration: none;
    pointer-events: auto;
}

.tp-rel-card__stretch-link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

.tp-rel-card:hover .tp-rel-card__stretch-link,
.tp-rel-card:focus-within .tp-rel-card__stretch-link {
    color: var(--clr-accent-dark);
}

.tp-rel-card__stretch-link:focus-visible {
    outline: 2px solid var(--clr-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

.tp-rel-card__meta {
    font-size: 0.68rem;
    color: var(--clr-muted);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.tp-rel-card__sep {
    opacity: 0.65;
}

.tp-rel-card__desc {
    font-size: 0.72rem;
    color: #5a5a5a;
    line-height: 1.45;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 2.1em;
}

.tp-rel-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.25rem;
    padding-top: 0.45rem;
    border-top: 1px solid var(--clr-border);
    pointer-events: none;
}

.tp-rel-card__price {
    min-width: 0;
    max-width: 100%;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1.25;
}

.tp-rel-card__cta {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--clr-accent);
    text-decoration: none;
    padding: 0.25rem 0.4rem;
    border-radius: var(--radius-sm);
}

.tp-rel-card:hover .tp-rel-card__cta,
.tp-rel-card:focus-within .tp-rel-card__cta {
    background: rgba(201, 147, 42, 0.12);
    color: var(--clr-accent-dark);
}

@media (max-width: 768px) {
    .tp-related__track .tp-rel-card {
        flex: 0 0 min(72vw, 240px);
        width: min(72vw, 240px);
        max-width: min(72vw, 240px);
    }

    .tp-related__slider .tour-nav {
        width: 38px;
        height: 38px;
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .tp-related__title {
        font-size: 1.1rem;
    }

    .tp-related__track .tp-rel-card {
        flex: 0 0 min(78vw, 220px);
        width: min(78vw, 220px);
        max-width: min(78vw, 220px);
    }

    .tp-rel-card__media {
        max-height: 100px;
    }

    .tp-rel-card__body {
        padding: 0.55rem 0.6rem 0.65rem;
    }
}

/* ─── Tour page responsive ─────────────────────────────────────────────────────
   Mobile column order follows DOM: gallery → booking → options + long copy
   (matches typical marketplace PDP). Narrow screens: bottom sheets for
   traveler + calendar. */

@keyframes tpSheetUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .tp-body-section {
        padding: 2rem 0 3.5rem;
    }

    .tp-layout--pdp {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .tp-layout--pdp .tp-lead,
    .tp-layout--pdp .tp-pdp-options,
    .tp-layout--pdp .tp-sidebar,
    .tp-layout--pdp .tp-main {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        max-width: none;
    }

    .tp-sidebar {
        position: static;
        top: auto;
        gap: 0.85rem;
    }

    .tp-section--options {
        scroll-margin-top: 5.5rem;
    }
}

@media (max-width: 768px) {
    .tp-body-section > .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .tp-section--gallery .tp-gallery-canvas {
        max-height: min(46vh, 320px);
    }

    .tp-gallery-strip__frame {
        width: 88px;
        height: 66px;
    }

    .tp-section { padding: 1.35rem 1rem; }

    .tp-timeline__item {
        grid-template-columns: 76px 24px minmax(0, 1fr);
    }

    .tp-timeline__item:not(:last-child) .tp-timeline__dot::after {
        left: calc(76px + 0.5rem + 11px);
    }

    .tp-timeline__time {
        white-space: normal;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .tp-ie-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Tour header band — mobile typography */
    .tp-header .tp-title {
        font-size: clamp(1.45rem, 4.8vw, 1.75rem);
        line-height: 1.2;
        margin-bottom: 0.7rem;
    }
    .tp-header .tp-breadcrumb { margin-bottom: 0.85rem; }
    .tp-header .tp-breadcrumb__list { font-size: 0.72rem; }
    .tp-header .tp-rating { margin-bottom: 0.75rem; }
    .tp-header .tp-rating__score { font-size: 0.8125rem; }
    .tp-header .tp-rating__count { font-size: 0.75rem; }
    .tp-header .tp-meta-pill {
        font-size: 0.72rem;
        padding: 0.28rem 0.7rem;
    }
    .tp-header .tp-tour-tags { margin-top: 0.75rem; }
    .tp-header .tp-tour-tags__pill {
        font-size: 0.65rem;
        padding: 0.22rem 0.55rem;
    }
    .tp-header .tp-rating__count--solo { font-size: 0.75rem; }

    /* Tour page — mobile typography (full page; desktop unchanged) */
    .tp-section__title,
    .tp-itinerary-head__title {
        font-size: 1.15rem;
        margin-bottom: 1rem;
        padding-bottom: 0.6rem;
    }
    .tp-overview,
    .tp-overview p {
        font-size: 0.875rem;
        line-height: 1.65;
    }
    .tp-highlights-item {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    .tp-itinerary-tab {
        font-size: 0.72rem;
        padding: 0.3rem 0.75rem;
    }
    .tp-timeline__time { font-size: 0.7rem; }
    .tp-timeline__step {
        font-size: 0.8125rem;
        line-height: 1.35;
    }
    .tp-timeline__desc {
        font-size: 0.78rem;
        line-height: 1.6;
    }
    .tp-ie-col__label {
        font-size: 0.65rem;
        margin-bottom: 0.75rem;
    }
    .tp-ie-item { font-size: 0.8125rem; }
    .tp-faq__question {
        font-size: 0.8125rem;
        padding: 0.85rem 1rem;
    }
    .tp-faq__answer {
        font-size: 0.78rem;
        line-height: 1.65;
    }

    .tp-bc-price { font-size: 1.45rem; }
    .tp-bc-price-label { font-size: 0.75rem; }
    .tp-bc-trust__item { font-size: 0.72rem; }
    .tp-bc-label { font-size: 0.72rem; }
    .tp-bc-label__sub { font-size: 0.68rem; }
    .tp-bc-input,
    .tp-traveler__toggle { font-size: 0.8125rem; }
    .tp-traveler__row-title { font-size: 0.8125rem; }
    .tp-traveler__row-sub { font-size: 0.68rem; }
    .tp-traveler__count { font-size: 0.875rem; }
    .tp-bc-summary__empty p { font-size: 0.75rem; }
    .tp-bc-summary__value { font-size: 0.78rem; }
    .tp-bc-summary__price { font-size: 1.25rem; }
    .tp-bc-summary__per,
    .tp-bc-summary__total-label { font-size: 0.72rem; }
    .tp-bc-summary__total-amt { font-size: 1.1rem; }
    .tp-bc-summary__breakdown,
    .tp-bc-summary__idle-msg { font-size: 0.72rem; }
    .tp-bc-cta { font-size: 0.875rem; }
    .tp-bc-feedback { font-size: 0.78rem; }
    .tp-bc-help { font-size: 0.72rem; }
    .tp-bc-view-cart { font-size: 0.72rem; }

    .tp-guide-card__title { font-size: 0.8125rem; }
    .tp-guide-card__desc,
    .tp-guide-card__link { font-size: 0.75rem; }

    .tp-options-subhead {
        font-size: 0.75rem;
        line-height: 1.45;
    }
    .tp-options-badge { font-size: 0.68rem; }
    .tp-svc-card__title { font-size: 0.9375rem; }
    .tp-svc-card__desc { font-size: 0.75rem; }
    .tp-svc-chip__time { font-size: 0.8125rem; }

    .tp-review-empty { font-size: 0.8125rem; }
    .tp-review-form__title { font-size: 1.02rem; }

    .tp-related__title { font-size: 1.1rem; }
    .tp-rel-card__title { font-size: 0.8125rem; }
    .tp-rel-card__meta { font-size: 0.62rem; }
    .tp-rel-card__desc { font-size: 0.68rem; }
    .tp-rel-card__price { font-size: 0.72rem; }
    .tp-rel-card__cta { font-size: 0.65rem; }

    .tp-section--reviews .rv-summary__number { font-size: 2.35rem; }
    .tp-section--reviews .rv-summary__count,
    .tp-section--reviews .rv-summary__verified { font-size: 0.72rem; }
    .tp-section--reviews .rv-bar { font-size: 0.75rem; }
    .tp-section--reviews .rv-toolbar__label { font-size: 0.72rem; }
    .tp-section--reviews .rv-pill { font-size: 0.72rem; }
    .tp-section--reviews .rv-card__name { font-size: 0.84rem; }
    .tp-section--reviews .rv-card__origin,
    .tp-section--reviews .rv-card__date { font-size: 0.72rem; }
    .tp-section--reviews .rv-card__body {
        font-size: 0.8125rem;
        line-height: 1.65;
    }
    .tp-section--reviews .rv-card__response-text { font-size: 0.78rem; }

    .tp-booking-card {
        padding: 1.35rem 1.1rem 1.2rem;
    }

    .tp-options-header {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .tp-options-badge {
        align-self: flex-start;
        margin-top: 0;
    }

    .tp-section--options {
        padding: 1.15rem 0.95rem;
    }

    .tp-svc-wrap {
        gap: 0.75rem;
    }

    .tp-svc-card {
        padding: 1rem 0.9rem 0.9rem;
        border-radius: 14px;
    }

    .tp-svc-card__top {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.65rem;
    }

    .tp-svc-card__price-pill {
        align-items: flex-end;
        flex-shrink: 0;
    }

    .tp-svc-card__div {
        margin: 0.65rem 0 0.55rem;
    }

    .tp-bc-cta {
        min-height: 48px;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .tp-guide-card {
        padding: 1.15rem 1rem;
    }

    .tp-svc-card__slots-heading {
        font-size: 0.68rem;
        margin-bottom: 0.45rem;
        letter-spacing: 0.05em;
    }

    .tp-svc-card__chips {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem;
    }

    .tp-svc-card__chips > .tp-svc-chip:only-child {
        grid-column: 1 / -1;
    }

    .tp-svc-chip {
        width: 100%;
        min-height: 0;
        padding: 0.55rem 0.65rem;
        border-radius: 10px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.2rem;
        white-space: normal;
    }

    .tp-svc-chip__time {
        font-weight: 700;
        letter-spacing: -0.01em;
        line-height: 1.2;
    }

    .tp-svc-chip__badge {
        font-size: 0.62rem;
        padding: 0.1rem 0.35rem;
    }

    .tp-svc-chip--active {
        box-shadow: 0 3px 10px rgba(26, 60, 52, 0.2);
    }

    .tp-svc-card--selected {
        border-color: var(--clr-primary);
        box-shadow: 0 0 0 2px rgba(26, 60, 52, 0.12);
    }

    .tp-svc-card__urgency {
        margin-top: 0.65rem;
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    /* Hide duplicate CTA in booking card when sticky dock is active */
    body.tp-mobile-dock-open .tp-booking-card__footer .tp-bc-cta {
        display: none;
    }

    /* Lift Support FAB above sticky booking bars */
    body.tp-mobile-dock-open .sr-contact-float {
        bottom: calc(6.75rem + env(safe-area-inset-bottom, 0px));
    }
}

/* Mobile sticky Check availability (GetYourGuide-style) */
.tp-check-avail-dock {
    display: none;
}

@media (max-width: 768px) {
    .tp-check-avail-dock {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10090;
        padding: 0.6rem 0.85rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
        background: #fff;
        border-top: 1px solid rgba(15, 23, 20, 0.1);
        box-shadow: 0 -4px 20px rgba(15, 23, 20, 0.1);
        transform: translateY(110%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.22s ease, visibility 0.28s;
    }

    .tp-check-avail-dock.is-visible {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .tp-check-avail-dock[hidden]:not(.is-visible) {
        display: none;
    }

    body.tp-mobile-dock-open .tp-check-avail-dock {
        display: none !important;
    }

    /* Date / traveler pickers: hide sticky bars so calendar is fully visible */
    body.tp-booking-overlay-open .tp-check-avail-dock,
    body.tp-booking-overlay-open .tp-mobile-cart-dock {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.tp-booking-overlay-open .sr-contact-float {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    body.tp-booking-overlay-open.tp-check-avail-open,
    body.tp-booking-overlay-open.tp-mobile-dock-open {
        padding-bottom: 0 !important;
    }

    .tp-check-avail-dock__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        max-width: 640px;
        margin: 0 auto;
    }

    .tp-check-avail-dock__price-block {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 0.15rem 0.35rem;
        min-width: 0;
        flex: 1;
        line-height: 1.2;
    }

    .tp-check-avail-dock__from {
        font-size: 0.72rem;
        font-weight: 500;
        color: var(--clr-muted);
    }

    .tp-check-avail-dock__price {
        font-family: var(--font-head);
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--clr-text);
        letter-spacing: -0.02em;
    }

    .tp-check-avail-dock__price .card-price-from {
        display: inline;
    }

    .tp-check-avail-dock__price .card-price-from__sale {
        font-size: inherit;
        font-weight: inherit;
        color: inherit;
    }

    .tp-check-avail-dock__price--por {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--clr-primary);
    }

    .tp-check-avail-dock__per {
        width: 100%;
        font-size: 0.68rem;
        font-weight: 500;
        color: var(--clr-muted);
    }

    .tp-check-avail-dock__btn.tp-bc-cta {
        flex-shrink: 0;
        width: auto;
        margin-top: 0;
        padding: 0.72rem 1.15rem;
        border-radius: 999px;
        font-size: 0.88rem;
        white-space: nowrap;
        background: var(--clr-accent);
        color: var(--clr-white);
        box-shadow: 0 4px 14px rgba(201, 147, 42, 0.32);
    }

    .tp-check-avail-dock__btn.tp-bc-cta:hover {
        background: var(--clr-accent-dark);
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(201, 147, 42, 0.38);
    }

    .tp-check-avail-dock__btn.tp-bc-cta:active {
        transform: translateY(0);
    }

    .tp-check-avail-dock__btn.tp-bc-cta:focus-visible {
        outline: 2px solid var(--clr-primary);
        outline-offset: 3px;
    }

    body.tp-check-avail-open:not(.tp-mobile-dock-open) {
        padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
    }

    body.tp-check-avail-open:not(.tp-mobile-dock-open) .sr-contact-float {
        bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
    }

    #tpBookingCard,
    .tp-sidebar {
        scroll-margin-top: calc(var(--site-sticky-header-top, 4.5rem) + 0.75rem);
    }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .tp-check-avail-dock {
        transition: none;
    }
}

/* Mobile sticky Add to Cart (after slot selection) */
.tp-mobile-cart-dock {
    display: none;
}

@media (max-width: 768px) {
    .tp-mobile-cart-dock {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10100;
        padding: 0.55rem 0.85rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
        background: #fff;
        border-top: 1px solid rgba(26, 60, 52, 0.12);
        box-shadow: 0 -4px 24px rgba(24, 20, 14, 0.14);
        transform: translateY(110%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.22s ease, visibility 0.28s;
    }

    .tp-mobile-cart-dock.is-visible {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .tp-mobile-cart-dock[hidden]:not(.is-visible) {
        display: none;
    }

    .tp-mobile-cart-dock__bar {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        max-width: 640px;
        margin: 0 auto;
    }

    .tp-mobile-cart-dock__row {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.65rem;
        min-width: 0;
    }

    .tp-mobile-cart-dock__pick {
        display: flex;
        flex-direction: column;
        gap: 0.12rem;
        min-width: 0;
        flex: 1;
    }

    .tp-mobile-cart-dock__time {
        font-size: 1.02rem;
        font-weight: 700;
        color: var(--clr-primary);
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .tp-mobile-cart-dock__meta {
        font-size: 0.72rem;
        line-height: 1.35;
        color: var(--clr-muted);
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .tp-mobile-cart-dock__price {
        flex-shrink: 0;
        font-family: var(--font-head);
        font-size: 1.12rem;
        font-weight: 700;
        color: var(--clr-primary);
        line-height: 1.15;
        white-space: nowrap;
        padding-top: 0.05rem;
    }

    .tp-mobile-cart-dock__btn.tp-bc-cta {
        width: 100%;
        min-height: 48px;
        margin-top: 0;
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
        border-radius: var(--radius-md);
        background: var(--clr-accent);
        color: var(--clr-white);
        box-shadow: 0 4px 14px rgba(201, 147, 42, 0.32);
    }

    .tp-mobile-cart-dock__btn.tp-bc-cta:hover {
        background: var(--clr-accent-dark);
    }

    .tp-mobile-cart-dock__btn.tp-bc-cta.tp-bc-cta--success {
        background: var(--clr-primary);
        box-shadow: 0 4px 14px rgba(26, 60, 52, 0.22);
    }

    .tp-mobile-cart-dock__btn.tp-bc-cta.tp-bc-cta--success:hover {
        background: var(--clr-primary);
        filter: brightness(1.05);
    }

    .tp-mobile-cart-dock__btn svg {
        display: none;
    }

    body.tp-mobile-dock-open {
        padding-bottom: calc(7.25rem + env(safe-area-inset-bottom, 0px));
    }

    body.tp-mobile-dock-open .tp-body-section {
        padding-bottom: 0.35rem;
    }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .tp-mobile-cart-dock {
        transition: none;
    }
}

/* Bottom sheets: traveler + date picker (mobile) */
@media (max-width: 768px) {
    .tp-traveler--open {
        z-index: 10240;
    }

    .tp-traveler__panel {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        max-height: min(88vh, 520px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        padding: 1rem 1.1rem calc(1rem + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.18);
        z-index: 10250;
        animation: tpSheetUp 0.28s ease-out;
    }

    .tp-date-dd.tp-date-dd--open {
        z-index: 10240;
    }

    .tp-date-dd__panel {
        position: fixed;
        left: 0.65rem;
        right: 0.65rem;
        bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
        top: auto;
        max-height: min(78vh, 420px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 10250;
        box-shadow: 0 -8px 36px rgba(15, 23, 42, 0.14);
        animation: tpSheetUp 0.28s ease-out;
    }

    body.tp-booking-overlay-open::before {
        content: '';
        position: fixed;
        inset: 0;
        z-index: 10200;
        background: rgba(15, 23, 20, 0.42);
        pointer-events: none;
    }
}

@media (max-width: 768px) {
    .tp-traveler__step {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .tp-header { padding: 1.5rem 0 1.25rem; }
    .tp-header .tp-title { font-size: 1.35rem; }
    .tp-header .tp-breadcrumb__list { font-size: 0.68rem; }
    .tp-header .tp-rating__score { font-size: 0.78rem; }
    .tp-header .tp-rating__count { font-size: 0.7rem; }
    .tp-header .tp-meta-pill {
        font-size: 0.68rem;
        padding: 0.24rem 0.6rem;
    }
    .tp-header .tp-tour-tags__pill {
        font-size: 0.6rem;
        padding: 0.18rem 0.5rem;
    }

    .tp-section__title,
    .tp-itinerary-head__title { font-size: 1.05rem; }
    .tp-overview,
    .tp-overview p { font-size: 0.8125rem; }
    .tp-timeline__step { font-size: 0.78rem; }
    .tp-timeline__desc { font-size: 0.75rem; }
    .tp-bc-price { font-size: 1.35rem; }
    .tp-bc-cta { font-size: 0.8125rem; }
    .tp-related__title { font-size: 1.02rem; }
    .tp-rel-card__title { font-size: 0.78rem; }

    .tp-gallery-canvas {
        max-height: 42vh;
        border-radius: var(--radius-md);
    }

    .tp-gallery-strip__frame {
        width: 76px;
        height: 57px;
    }

    .tp-meta-bar { gap: 0.4rem; }

    .tp-body-section > .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* Itinerary: rail + full-width time/title stack on very narrow screens */
@media (max-width: 520px) {
    .tp-timeline__item {
        display: grid;
        grid-template-columns: 18px 1fr;
        grid-template-rows: auto auto;
        column-gap: 0.65rem;
        row-gap: 0;
        align-items: start;
    }

    .tp-timeline__time {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        padding-top: 0;
        font-size: 0.72rem;
        line-height: 1.45;
    }

    .tp-timeline__dot {
        grid-column: 1;
        grid-row: 1 / 3;
        padding-top: 0.15rem;
        align-self: stretch;
    }

    .tp-timeline__content {
        grid-column: 2;
        grid-row: 2;
        padding-top: 0.35rem;
    }

    .tp-timeline__item:not(:last-child) .tp-timeline__dot::after {
        left: 8px;
        top: 22px;
        height: calc(100% - 18px);
        background: linear-gradient(to bottom, var(--clr-primary), rgba(26, 60, 52, 0.12));
    }

    .tp-timeline__step {
        font-size: 0.78rem;
    }

    .tp-timeline__desc {
        font-size: 0.75rem;
        line-height: 1.6;
    }
}

/* ══════════════════════════════════════════════════════════════
   CHECKOUT PAGE (co-*)
══════════════════════════════════════════════════════════════ */

.co-page {
    padding: 2rem 0 4rem;
    background: var(--clr-bg);
    min-height: 55vh;
}

.co-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.co-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.co-stepper__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.co-stepper__circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--clr-border);
    background: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-muted);
}

.co-stepper__step--active .co-stepper__circle {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: var(--clr-white);
}

.co-stepper__step--done .co-stepper__circle {
    background: #d1fae5;
    border-color: #059669;
    color: #059669;
}

.co-stepper__label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--clr-muted);
}

.co-stepper__step--active .co-stepper__label {
    color: var(--clr-primary);
    font-weight: 700;
}

.co-stepper__line {
    width: 3rem;
    height: 2px;
    background: var(--clr-border);
    margin: 0 0.25rem 1rem;
}

.co-stepper__line--done {
    background: #059669;
}

.co-back {
    margin-bottom: 0.75rem;
}

.co-back__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-primary);
}

.co-back__link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.co-page__title {
    font-family: var(--font-head);
    font-size: clamp(1.65rem, 3.5vw, 2rem);
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 0.35rem;
}

.co-page__lead {
    font-size: 0.95rem;
    color: var(--clr-muted);
    max-width: 52rem;
    margin-bottom: 2rem;
    line-height: 1.55;
}

.co-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.co-summary {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.25rem;
    box-shadow: var(--shadow-card);
}

.co-summary__heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 1rem;
}

.co-summary__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.co-summary__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--clr-border);
}

.co-summary__item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.co-summary__item-main {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.co-summary__tour {
    font-size: 0.95rem;
    color: var(--clr-text);
}

.co-summary__svc {
    font-size: 0.82rem;
    color: var(--clr-primary);
    font-weight: 600;
}

.co-summary__meta {
    font-size: 0.78rem;
    color: var(--clr-muted);
    line-height: 1.4;
}

.co-summary__price {
    font-weight: 700;
    color: var(--clr-text);
    white-space: nowrap;
    font-size: 0.95rem;
}

.co-summary__divider {
    height: 1px;
    background: var(--clr-border);
    margin: 0.75rem 0;
}

.co-summary__row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
}

.co-summary__row--muted {
    color: var(--clr-muted);
    font-size: 0.82rem;
}

.co-summary__row--discount {
    color: #166534;
    font-weight: 600;
}

.co-summary__row--discount span:last-child {
    color: #15803d;
}

.co-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.co-summary__total strong {
    font-size: 1.15rem;
}

.co-form-wrap {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.25rem;
    box-shadow: var(--shadow-card);
}

.co-form__heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 1rem;
}

.co-feedback {
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    margin-bottom: 1rem;
    line-height: 1.45;
}

.co-feedback--error {
    background: rgba(198, 40, 40, 0.08);
    border: 1px solid rgba(198, 40, 40, 0.35);
    color: #b71c1c;
}

.co-field {
    margin-bottom: 1rem;
}

.co-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 0.35rem;
}

.co-label abbr {
    text-decoration: none;
    color: #dc2626;
}

.co-input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.co-input:focus {
    outline: none;
    border-color: var(--clr-primary);
}

.co-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--clr-muted);
    margin-top: 0.35rem;
}

.co-terms {
    font-size: 0.78rem;
    color: var(--clr-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.co-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.1rem;
    padding: 0.85rem 1.25rem;
    background: var(--clr-accent);
    color: var(--clr-white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.co-submit:hover:not(:disabled) {
    background: var(--clr-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,147,42,0.38);
}

.co-submit:disabled {
    opacity: 0.85;
    cursor: wait;
}

.co-submit__spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: var(--clr-white);
    border-radius: 50%;
    animation: co-spin 0.7s linear infinite;
    margin-right: 0.4rem;
    vertical-align: -2px;
}

@keyframes co-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 820px) {
    .co-layout {
        grid-template-columns: 1fr;
    }
}

/* Checkout personal — extra travellers */
.cph-travelers {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e8ece9;
}

.cph-travelers__title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin: 0 0 0.35rem;
}

.cph-travelers__optional {
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--clr-muted);
}

.cph-travelers__hint {
    font-size: 0.8rem;
    color: var(--clr-muted);
    margin: 0 0 1rem;
    line-height: 1.45;
}

.co-submit--payment {
    margin-top: 1.5rem;
}

/* Payment placeholder step */
.pay-placeholder {
    max-width: 520px;
    margin: 2rem auto 3rem;
}

.pay-placeholder__card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    text-align: center;
    box-shadow: 0 12px 40px rgba(26, 60, 52, 0.08);
    border: 1px solid #e8ece9;
}

.pay-placeholder__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    color: var(--clr-muted);
    opacity: 0.85;
}

.pay-placeholder__title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 0 0 0.6rem;
}

.pay-placeholder__text {
    font-size: 0.92rem;
    color: var(--clr-muted);
    line-height: 1.55;
    margin: 0 0 1rem;
}

.pay-placeholder__meta {
    font-size: 0.85rem;
    color: var(--clr-text);
}

/* Payment page — contact + Pay Now */
.pay-panel__mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 1rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(145deg, #f8faf9 0%, #eef4f1 100%);
    border-radius: var(--radius-md);
    border: 1px dashed #c5d4ce;
}

.pay-panel__mock-icon {
    width: 48px;
    height: 48px;
    color: var(--clr-primary);
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.pay-panel__mock-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--clr-primary);
    margin: 0 0 0.35rem;
}

.pay-panel__mock-desc {
    font-size: 0.8rem;
    color: var(--clr-muted);
    margin: 0;
    line-height: 1.45;
    max-width: 280px;
}

.pay-panel__subhead {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin: 0 0 0.75rem;
}

.pay-panel__dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pay-panel__dl > div {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 0.5rem 1rem;
    font-size: 0.88rem;
    align-items: baseline;
}

.pay-panel__dl dt {
    margin: 0;
    color: var(--clr-muted);
    font-weight: 600;
}

.pay-panel__dl dd {
    margin: 0;
    color: var(--clr-text);
    word-break: break-word;
}

.pay-panel__amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0 1rem;
    padding: 1rem 1.1rem;
    background: #f3f6f4;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
}

.pay-panel__amount strong {
    font-size: 1.25rem;
    font-family: var(--font-head);
    color: var(--clr-primary);
}

.pay-panel__btn {
    position: relative;
}

.pay-panel__btn-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pay-panel__btn-loading-text {
    font-size: 0.95rem;
    font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════
   SUCCESS PAGE (su-*)
══════════════════════════════════════════════════════════════ */

body.su-body .su-page {
    /* subtle celebration backdrop */
    background:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(5, 150, 105, 0.12), transparent 50%),
        var(--clr-bg);
}

.su-page {
    padding: 2rem 0 4.5rem;
    min-height: 58vh;
}

.su-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.su-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 2.25rem;
}

.su-stepper__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.su-stepper__circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #059669;
    background: #d1fae5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
}

.su-stepper__step--active .su-stepper__circle {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: var(--clr-white);
}

.su-stepper__label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.su-stepper__line {
    width: 2.5rem;
    height: 2px;
    background: #059669;
    margin: 0 0.2rem 1.1rem;
}

.su-stepper__line--done {
    background: #059669;
}

/* Hero */
.su-hero--enhanced {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 1.5rem 2.25rem;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    border: 1px solid #e2ebe6;
    box-shadow: 0 16px 48px rgba(26, 60, 52, 0.09);
}

.su-hero__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-accent-dark);
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.su-hero__icon-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 1.25rem;
}

.su-hero__icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 200deg, #d1fae5, #a7f3d0, #d1fae5);
    animation: su-ring-pulse 2.5s ease-in-out infinite;
}

@keyframes su-ring-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.04); opacity: 0.92; }
}

@media (prefers-reduced-motion: reduce) {
    .su-hero__icon-ring {
        animation: none;
    }
}

.su-hero__icon {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.2);
}

.su-hero__title {
    font-family: var(--font-head);
    font-size: clamp(1.85rem, 4.5vw, 2.45rem);
    font-weight: 700;
    color: var(--clr-primary);
    margin: 0 0 0.65rem;
    letter-spacing: -0.02em;
}

.su-hero__lead {
    font-size: 1.02rem;
    color: var(--clr-muted);
    line-height: 1.65;
    max-width: 38rem;
    margin: 0 auto;
}

.su-hero__lead strong {
    color: var(--clr-text);
    font-weight: 600;
}

/* Contact card */
.su-contact-card {
    background: var(--clr-white);
    border: 1px solid #e2ebe6;
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 28px rgba(26, 60, 52, 0.06);
}

.su-contact-card__head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #eef4f1;
}

.su-contact-card__head-icon {
    color: var(--clr-primary);
    flex-shrink: 0;
}

.su-contact-card__title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 0;
}

.su-contact-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.su-contact-card__item {
    display: grid;
    grid-template-columns: 5.5rem 1fr;
    gap: 0.5rem 1rem;
    align-items: baseline;
    font-size: 0.92rem;
}

@media (max-width: 480px) {
    .su-contact-card__item {
        grid-template-columns: 1fr;
    }
}

.su-contact-card__label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clr-muted);
}

.su-contact-card__value {
    color: var(--clr-text);
    word-break: break-word;
}

a.su-contact-card__value--link {
    color: var(--clr-primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 60, 52, 0.25);
    transition: border-color var(--transition), color var(--transition);
}

a.su-contact-card__value--link:hover {
    border-bottom-color: var(--clr-accent-dark);
    color: var(--clr-accent-dark);
}

/* Bookings */
.su-bookings__head {
    margin-bottom: 1.15rem;
}

.su-bookings__title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 0 0 0.35rem;
}

.su-bookings__subtitle {
    font-size: 0.88rem;
    color: var(--clr-muted);
    margin: 0;
}

.su-bookings__list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.su-booking-card {
    background: var(--clr-white);
    border: 1px solid #e2ebe6;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.35rem;
    box-shadow: 0 6px 24px rgba(26, 60, 52, 0.06);
    transition: box-shadow var(--transition), border-color var(--transition);
}

.su-booking-card:hover {
    box-shadow: 0 10px 32px rgba(26, 60, 52, 0.1);
    border-color: #d4e3dc;
}

.su-booking-card__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.su-booking-card__ref {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--clr-accent-dark);
}

.su-status {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
}

.su-status--confirmed {
    background: #d1fae5;
    color: #047857;
}

.su-status--pending {
    background: #fef3c7;
    color: #b45309;
}

.su-booking-card__tour {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 0 0 0.35rem;
    line-height: 1.25;
}

.su-booking-card__svc {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d5a4e;
    margin: 0 0 1rem;
}

.su-booking-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
}

.su-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-text);
    background: #f3f6f4;
    padding: 0.4rem 0.65rem;
    border-radius: var(--radius-sm);
    border: 1px solid #e5ece8;
}

.su-tag svg {
    flex-shrink: 0;
    color: var(--clr-muted);
}

.su-booking-card__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px dashed #dde8e3;
}

.su-booking-card__foot-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-muted);
}

.su-booking-card__price {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.su-total-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1.15rem 1.35rem;
    background: linear-gradient(135deg, #1a3c34 0%, #14332c 100%);
    color: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 36px rgba(26, 60, 52, 0.25);
}

.su-total-card__breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.88rem;
}

.su-total-card__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.su-total-card__row--discount {
    color: #bbf7d0;
}

.su-total-card__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.su-total-card__label {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.su-total-card__amount {
    font-family: var(--font-head);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* What’s next */
.su-next {
    margin-top: 2.5rem;
    padding: 1.75rem 1.5rem;
    background: #f6faf8;
    border: 1px solid #e2ebe6;
    border-radius: var(--radius-lg);
}

.su-next__title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 0 0 1.25rem;
    text-align: center;
}

.su-next__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 700px) {
    .su-next__grid {
        grid-template-columns: 1fr;
    }
}

.su-next__item {
    text-align: center;
    padding: 0 0.35rem;
}

.su-next__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--clr-white);
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
}

.su-next__headline {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 0.4rem;
}

.su-next__text {
    font-size: 0.82rem;
    color: var(--clr-muted);
    line-height: 1.5;
    margin: 0;
}

/* Actions */
.su-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}

.su-actions__primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    background: var(--clr-primary);
    color: var(--clr-white);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 16px rgba(26, 60, 52, 0.25);
}

.su-actions__primary:hover {
    background: #12312a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 60, 52, 0.3);
}

.su-actions__primary svg {
    flex-shrink: 0;
    opacity: 0.95;
}

.su-actions__ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.35rem;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--clr-primary);
    border: 2px solid #cfe3d9;
    border-radius: 999px;
    transition: border-color var(--transition), background var(--transition);
}

.su-actions__ghost:hover {
    border-color: var(--clr-primary);
    background: rgba(26, 60, 52, 0.04);
}

.su-actions__secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.25rem;
    border: 1.5px solid var(--clr-border);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--clr-primary);
    transition: border-color var(--transition);
}

.su-actions__secondary:hover {
    border-color: var(--clr-primary);
}

/* Success page — mobile typography only (desktop unchanged) */
@media (max-width: 768px) {
    .su-stepper__label { font-size: 0.62rem; }
    .su-hero--enhanced { padding: 1.5rem 1.1rem 1.75rem; }
    .su-hero__badge { font-size: 0.62rem; }
    .su-hero__title {
        font-size: clamp(1.45rem, 5vw, 1.85rem);
        margin-bottom: 0.55rem;
    }
    .su-hero__lead {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    .su-contact-card__title { font-size: 1.02rem; }
    .su-contact-card__item { font-size: 0.8125rem; }
    .su-contact-card__label { font-size: 0.72rem; }
    .su-bookings__title { font-size: 1.15rem; }
    .su-bookings__subtitle { font-size: 0.8125rem; }
    .su-booking-card__tour { font-size: 1.05rem; }
    .su-booking-card__svc { font-size: 0.8125rem; }
    .su-tag { font-size: 0.72rem; }
    .su-booking-card__foot-label { font-size: 0.75rem; }
    .su-booking-card__price { font-size: 1.05rem; }
    .su-total-card__breakdown { font-size: 0.8125rem; }
    .su-total-card__label { font-size: 0.78rem; }
    .su-total-card__amount { font-size: 1.45rem; }
    .su-next__title { font-size: 1.02rem; }
    .su-next__headline { font-size: 0.8125rem; }
    .su-next__text { font-size: 0.75rem; }
    .su-actions__primary { font-size: 0.875rem; }
    .su-actions__ghost,
    .su-actions__secondary { font-size: 0.8125rem; }
}

@media (max-width: 480px) {
    .su-hero__title { font-size: 1.35rem; }
    .su-hero__lead { font-size: 0.8125rem; }
    .su-contact-card__title { font-size: 0.95rem; }
    .su-bookings__title { font-size: 1.05rem; }
    .su-bookings__subtitle { font-size: 0.78rem; }
    .su-booking-card__tour { font-size: 0.98rem; }
    .su-booking-card__svc { font-size: 0.78rem; }
    .su-total-card__amount { font-size: 1.3rem; }
    .su-next__text { font-size: 0.72rem; }
    .su-actions__primary { font-size: 0.8125rem; padding: 0.75rem 1.35rem; }
    .su-actions__ghost,
    .su-actions__secondary { font-size: 0.78rem; padding: 0.75rem 1.15rem; }
}

/* ══════════════════════════════════════════════════════════════
   MY BOOKINGS (mb-*)
══════════════════════════════════════════════════════════════ */

body.mb-body {
    background: var(--clr-bg);
}

/* ── Page shell ─────────────────────────────────────────────── */
.mb-page {
    min-height: 60vh;
    padding-bottom: 4rem;
}

.mb-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.mb-container--main {
    padding-top: 2rem;
}

/* ── Profile hero banner ────────────────────────────────────── */
/* Same gradient + edge treatment as tour page .tp-header */
.mb-hero {
    background: linear-gradient(135deg, #0f2a22 0%, #1a3c34 60%, #122920 100%);
    padding: 2.5rem 0 1.75rem;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mb-hero__inner {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.mb-hero__avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--clr-accent);
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2.5px solid rgba(255,255,255,0.25);
}

.mb-hero__text {
    flex: 1;
    min-width: 0;
}

.mb-hero__name {
    font-family: var(--font-head);
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.2rem;
    letter-spacing: -0.01em;
    overflow-wrap: anywhere;
}

.mb-hero__email {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.mb-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.1rem;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    color: #fff;
    font-size: 0.83rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background var(--transition);
}

.mb-hero__cta:hover {
    background: rgba(255,255,255,0.22);
}

/* ── Stats bar ──────────────────────────────────────────────── */
.mb-stats {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.mb-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.55rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    min-width: 5rem;
    text-align: center;
}

.mb-stat__value {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.mb-stat__label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.6);
}

.mb-stat--confirmed .mb-stat__value { color: #6ee7b7; }
.mb-stat--pending   .mb-stat__value { color: #fcd34d; }
.mb-stat--cancelled .mb-stat__value { color: rgba(255,255,255,0.4); }
.mb-stat--spend     .mb-stat__value { color: var(--clr-accent-lite); font-size: 1.1rem; }

/* ── Alert (error) ──────────────────────────────────────────── */
.mb-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    line-height: 1.5;
}

.mb-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.mb-alert--error a { color: #b91c1c; text-decoration: underline; }
.mb-alert svg { flex-shrink: 0; margin-top: 1px; }

/* ── Filter tabs ────────────────────────────────────────────── */
.mb-filters {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-bottom: 1.35rem;
}

.mb-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.9rem;
    border-radius: 999px;
    border: 1.5px solid var(--clr-border);
    background: var(--clr-white);
    color: var(--clr-muted);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.mb-filter:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.mb-filter--active {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
}

.mb-filter__count {
    font-size: 0.72rem;
    font-weight: 700;
    opacity: 0.75;
}

/* ── List ───────────────────────────────────────────────────── */
.mb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ── Booking card ───────────────────────────────────────────── */
.mb-card {
    display: flex;
    background: var(--clr-white);
    border: 1px solid #e2ebe6;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(26, 60, 52, 0.07);
    transition: box-shadow var(--transition), transform var(--transition);
}

.mb-card:hover {
    box-shadow: 0 10px 36px rgba(26, 60, 52, 0.13);
    transform: translateY(-2px);
}

/* Left accent bar — colour-coded by status */
.mb-card__accent {
    width: 5px;
    flex-shrink: 0;
    background: #d1d5db;
}

.mb-card--confirmed .mb-card__accent { background: #10b981; }
.mb-card--pending   .mb-card__accent { background: #f59e0b; }
.mb-card--cancelled .mb-card__accent { background: #d1d5db; }

.mb-card__body {
    flex: 1;
    padding: 1.35rem 1.45rem;
    min-width: 0;
}

/* ── Card head ──────────────────────────────────────────────── */
.mb-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mb-card__head-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mb-card__ref {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--clr-accent-dark);
}

/* ── Status pill ────────────────────────────────────────────── */
.mb-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
}

.mb-status__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.mb-status--confirmed { background: #d1fae5; color: #047857; }
.mb-status--pending   { background: #fef3c7; color: #b45309; }
.mb-status--cancelled { background: #f3f4f6; color: #6b7280; }

/* ── Countdown badge ────────────────────────────────────────── */
.mb-countdown {
    font-size: 0.67rem;
    font-weight: 700;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    letter-spacing: 0.03em;
}

.mb-countdown--soon  { background: #fef3c7; color: #92400e; }
.mb-countdown--today { background: #fef2f2; color: #b91c1c; animation: mb-pulse 1.4s ease-in-out infinite; }
.mb-countdown--past  { background: #f3f4f6; color: #6b7280; }

@keyframes mb-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}

/* ── Card main row (tour info + price) ──────────────────────── */
.mb-card__main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mb-card__info {
    flex: 1;
    min-width: 0;
}

.mb-card__tour {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 0 0 0.3rem;
    line-height: 1.25;
}

.mb-card__svc {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d5a4e;
    margin: 0 0 0.35rem;
}

.mb-card__svc svg { color: var(--clr-muted); flex-shrink: 0; }

.mb-card__loc {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: var(--clr-muted);
    margin: 0;
}

.mb-card__loc svg { color: var(--clr-accent); }

/* ── Price block ────────────────────────────────────────────── */
.mb-card__price-block {
    flex-shrink: 0;
    text-align: right;
}

.mb-card__price {
    display: block;
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.mb-card__saved {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #15803d;
    margin-bottom: 0.2rem;
}

.mb-card__price-label {
    font-size: 0.73rem;
    color: var(--clr-muted);
    font-weight: 500;
}

/* ── Chips row ──────────────────────────────────────────────── */
.mb-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.mb-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--clr-text);
    background: #f3f6f4;
    padding: 0.38rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid #e5ece8;
}

.mb-chip svg { flex-shrink: 0; color: var(--clr-muted); }
.mb-chip--date { background: #eef7f2; border-color: #c3e0d0; color: var(--clr-primary); }
.mb-chip--muted { background: #f9f9f9; color: var(--clr-muted); font-weight: 500; }

/* ── Bottom CTA ─────────────────────────────────────────────── */
.mb-bottom-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 1.5rem 1.65rem;
    background: var(--clr-white);
    border: 1px dashed #c8ddd5;
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
}

.mb-bottom-cta__text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--clr-muted);
    margin: 0;
}

.mb-bottom-cta__btn {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.35rem;
    background: var(--clr-primary);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 999px;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
}

.mb-bottom-cta__btn:hover {
    background: #12312a;
    transform: translateY(-1px);
}

/* ── Empty state ────────────────────────────────────────────── */
.mb-empty-card {
    text-align: center;
    padding: 3.5rem 1.75rem;
    background: var(--clr-white);
    border: 1px solid #e2ebe6;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 28px rgba(26, 60, 52, 0.06);
}

.mb-empty-card__icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.mb-empty-card__icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed #c8ddd5;
    animation: mb-spin 14s linear infinite;
}

@keyframes mb-spin { to { transform: rotate(360deg); } }

.mb-empty-card__icon-inner {
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: #eef7f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    opacity: 0.7;
}

.mb-empty-card__title {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 0 0 0.55rem;
}

.mb-empty-card__text {
    font-size: 0.95rem;
    color: var(--clr-muted);
    margin: 0 auto 1.75rem;
    line-height: 1.6;
    max-width: 24rem;
}

.mb-empty-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.78rem 1.6rem;
    background: var(--clr-primary);
    color: var(--clr-white);
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 999px;
    transition: background var(--transition), transform var(--transition);
}

.mb-empty-card__cta:hover {
    background: #12312a;
    transform: translateY(-1px);
}

/* ── Error message ──────────────────────────────────────────── */
.mb-empty { text-align: center; padding: 2rem; color: var(--clr-muted); }
.mb-empty--error {
    color: #b91c1c;
    background: #fef2f2;
    border-radius: var(--radius-md);
    border: 1px solid #fecaca;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 540px) {
    .mb-hero__inner { gap: 0.75rem; }
    .mb-hero__cta   { width: 100%; justify-content: center; }
    .mb-card__main  { flex-direction: column; gap: 0.5rem; }
    .mb-card__price-block { text-align: left; }
    .mb-stats       { gap: 0.45rem; }
    .mb-stat        { min-width: calc(50% - 0.25rem); }
    .mb-bottom-cta  { flex-direction: column; align-items: flex-start; }
    .mb-bottom-cta__btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
   AUTH — header pill + sign-in link + login modal (lm-*)
══════════════════════════════════════════════════════════════ */

/* ── Header sign-in link (unauthenticated) ──────────────────── */
.auth-login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-primary);
    background: none;
    border: 1.5px solid var(--clr-primary);
    border-radius: 999px;
    padding: 0.4rem 0.95rem;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.auth-login-link__icon {
    display: none;
    flex-shrink: 0;
}

.auth-login-link:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
}

/* ── Account menu (logged-in header) ───────────────────────── */
.account-menu {
    position: relative;
    z-index: 120;
}

.account-menu__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 1.5px solid var(--clr-border);
    border-radius: 50%;
    background: var(--clr-white);
    font: inherit;
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition);
    flex-shrink: 0;
}

.account-menu__trigger:hover,
.account-menu:hover .account-menu__trigger,
.account-menu:focus-within .account-menu__trigger {
    border-color: #c5d4ce;
    box-shadow: 0 2px 10px rgba(26, 60, 52, 0.08);
}

.account-menu__avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--clr-primary);
    color: var(--clr-white);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.account-menu__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 240px;
    padding: 0.5rem 0;
    background: var(--clr-white);
    border: 1px solid #e2ebe6;
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(26, 60, 52, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
}

/* Invisible hover bridge */
.account-menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
}

@media (hover: hover) and (min-width: 901px) {
    .account-menu:hover .account-menu__panel,
    .account-menu:focus-within .account-menu__panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

@media (max-width: 900px) {
    .account-menu__panel {
        right: 0;
        left: auto;
    }
    .account-menu--open .account-menu__panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.account-menu__meta {
    padding: 0.65rem 1rem 0.75rem;
    border-bottom: 1px solid #eef4f1;
}

.account-menu__meta-name {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--clr-primary);
    margin-bottom: 0.2rem;
}

.account-menu__meta-email {
    display: block;
    font-size: 0.78rem;
    color: var(--clr-muted);
    word-break: break-all;
}

.account-menu__link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-text);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.account-menu__link svg {
    flex-shrink: 0;
    color: var(--clr-muted);
}

.account-menu__link:hover {
    background: #f3f6f4;
    color: var(--clr-primary);
}

.account-menu__link:hover svg {
    color: var(--clr-primary);
}

.account-menu__link--logout {
    color: #6b7280;
    border-top: 1px solid #eef4f1;
    margin-top: 0.25rem;
    padding-top: 0.75rem;
}

.account-menu__link--logout:hover {
    background: #fef2f2;
    color: #b91c1c;
}

.account-menu__link--logout:hover svg {
    color: #b91c1c;
}

/* ── Header auth pill (authenticated) — legacy / cart ───────── */
.auth-pill {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.3rem 0.65rem 0.3rem 0.3rem;
    border: 1.5px solid var(--clr-border);
    border-radius: 999px;
    background: var(--clr-white);
}

.auth-pill__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: var(--clr-white);
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0;
}

.auth-pill__name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-text);
    max-width: 10rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.auth-pill__logout {
    display: flex;
    align-items: center;
    color: var(--clr-muted);
    padding: 0.2rem;
    border-radius: 50%;
    transition: color var(--transition), background var(--transition);
    margin-left: 0.1rem;
}
.auth-pill__logout:hover {
    color: #dc2626;
    background: #fee2e2;
}

/* ── Modal backdrop ─────────────────────────────────────────── */
body.lm-open { overflow: hidden; }

/*
 * [hidden] must win over layout rules — same issue as .tgm[hidden] (see tour gallery).
 * Otherwise the dialog stays painted, pointer-events stay none, and spinners stay visible.
 */
.lm-backdrop[hidden],
.lm-modal[hidden] {
    display: none !important;
}

.lm-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(3px);
    z-index: 1000;
    animation: lm-fade-in 0.2s ease;
}

@keyframes lm-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Modal container ────────────────────────────────────────── */
.lm-modal {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
}

.lm-modal:not([hidden]) {
    pointer-events: auto;
}

.lm-modal__panel {
    position: relative;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem 1.75rem;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
    animation: lm-slide-up 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lm-slide-up {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Close button ───────────────────────────────────────────── */
.lm-modal__close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #f3f4f6;
    color: var(--clr-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition);
}
.lm-modal__close:hover {
    background: #e5e7eb;
    color: var(--clr-text);
}

/* ── Brand block ────────────────────────────────────────────── */
.lm-modal__brand {
    text-align: center;
    margin-bottom: 1.25rem;
}
.lm-modal__logo {
    margin: 0 auto 0.75rem;
    display: flex;
    justify-content: center;
}
.lm-modal__logo-img {
    width: 112px;
    height: 112px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
    background: #f2f0e9;
    box-shadow: 0 4px 18px rgba(26, 60, 52, 0.12);
}
.lm-modal__title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 0.2rem;
}
.lm-modal__sub {
    font-size: 0.85rem;
    color: var(--clr-muted);
}

/* ── Tabs ───────────────────────────────────────────────────── */
.lm-tabs {
    display: flex;
    border-bottom: 2px solid var(--clr-border);
    margin-bottom: 1.25rem;
    gap: 0;
}
.lm-tab {
    flex: 1;
    padding: 0.6rem 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-muted);
    cursor: pointer;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -2px;
    transition: color var(--transition), border-color var(--transition);
}
.lm-tab--active {
    color: var(--clr-primary);
    border-bottom-color: var(--clr-primary);
}
.lm-tab:hover:not(.lm-tab--active) {
    color: var(--clr-text);
}

/* ── Alert banner ───────────────────────────────────────────── */
.lm-alert {
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    line-height: 1.45;
    margin-bottom: 0.85rem;
}
.lm-alert--error {
    background: rgba(198, 40, 40, 0.08);
    border: 1px solid rgba(198, 40, 40, 0.35);
    color: #b71c1c;
}
.lm-alert--success {
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.35);
    color: #065f46;
}

/* ── Form fields ────────────────────────────────────────────── */
.lm-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.lm-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.lm-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-text);
}

.lm-hint {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--clr-muted);
}

.lm-input {
    width: 100%;
    padding: 0.62rem 0.85rem;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--clr-text);
    background: var(--clr-white);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.lm-input:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(26, 60, 52, 0.1);
}
.lm-input::placeholder { color: #c0c4cc; }

/* Password wrapper */
.lm-pw-wrap {
    position: relative;
}
.lm-pw-wrap .lm-input {
    padding-right: 2.6rem;
}
.lm-pw-toggle {
    position: absolute;
    right: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0.2rem;
    color: var(--clr-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color var(--transition);
}
.lm-pw-toggle:hover { color: var(--clr-primary); }

/* ── Submit button ──────────────────────────────────────────── */
.lm-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.9rem;
    padding: 0.75rem 1.25rem;
    background: var(--clr-primary);
    color: var(--clr-white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.35rem;
    transition: background var(--transition), transform var(--transition);
}
.lm-submit:hover:not(:disabled) {
    background: #12312a;
    transform: translateY(-1px);
}
.lm-submit:disabled {
    opacity: 0.8;
    cursor: wait;
}

.lm-submit__spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: var(--clr-white);
    border-radius: 50%;
    animation: lm-spin 0.65s linear infinite;
}

.lm-submit__spinner[hidden] {
    display: none !important;
}
@keyframes lm-spin { to { transform: rotate(360deg); } }

/* ── OR divider ─────────────────────────────────────────────── */
.lm-or {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.1rem 0;
    color: var(--clr-muted);
    font-size: 0.78rem;
}
.lm-or::before,
.lm-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--clr-border);
}

/* ── Guest checkout (no account) ───────────────────────────── */
.lm-guest-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    margin-bottom: 0.85rem;
    background: transparent;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.lm-guest-btn:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.03);
    border-color: var(--clr-primary);
    transform: translateY(-1px);
}
.lm-guest-btn:disabled {
    opacity: 0.65;
    cursor: wait;
}

.account-menu__guest-hint {
    margin: 0;
    padding: 0.5rem 0.85rem 0.35rem;
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--clr-muted);
    border-bottom: 1px solid var(--clr-border);
}

/* ── Switch link ────────────────────────────────────────────── */
.lm-switch {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--clr-muted);
}
.lm-switch__link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--clr-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.lm-switch__link:hover { color: var(--clr-accent-dark); }

/* ── Mobile adjustments ─────────────────────────────────────── */
@media (max-width: 480px) {
    .lm-modal__panel {
        padding: 1.5rem 1.15rem 1.25rem;
        border-radius: var(--radius-md);
    }
    .auth-pill__name { display: none; }
}


/* ══════════════════════════════════════════════════════════════
   ABOUT US PAGE  (au-*)
══════════════════════════════════════════════════════════════ */

/* ── Shared typography helpers ─────────────────────────────── */
.au-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 0.75rem;
}

.au-section-title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.au-section-title--center { text-align: center; }

/* ── HERO ──────────────────────────────────────────────────── */
.au-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
    overflow: hidden;
}

.au-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.au-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.04);
    transition: transform 8s ease-out;
}

.au-hero:hover .au-hero__bg-img {
    transform: scale(1);
}

.au-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 24, 18, 0.25) 0%,
        rgba(10, 24, 18, 0.55) 50%,
        rgba(10, 24, 18, 0.82) 100%
    );
}

.au-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

/* Breadcrumb */
.au-breadcrumb { margin-bottom: 1.5rem; }

.au-breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    list-style: none;
    flex-wrap: wrap;
}

.au-breadcrumb__list li {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.au-breadcrumb__list a {
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}

.au-breadcrumb__list a:hover { color: var(--clr-accent); }

.au-breadcrumb__list [aria-current="page"] { color: var(--clr-accent); }

.au-hero__eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 0.8rem;
    display: block;
}

.au-hero__title {
    font-family: var(--font-head);
    font-size: clamp(2.1rem, 5.2vw, 3.75rem);
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.12;
    margin-bottom: 1rem;
    text-rendering: optimizeLegibility;
}

.au-hero__lead {
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    max-width: 600px;
    margin-bottom: 2rem;
}

.au-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.au-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-white);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
}

.au-hero__scroll-hint {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.5);
    animation: au-bob 1.8s ease-in-out infinite;
}

@keyframes au-bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── OUR STORY ─────────────────────────────────────────────── */
.au-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Visual / image column */
.au-story__visual { position: relative; }

.au-story__img-wrap {
    position: relative;
    padding-bottom: 2rem;
    padding-right: 2rem;
}

.au-story__img--main {
    width: 100%;
    max-width: 440px;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

.au-story__img-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    border: 4px solid var(--clr-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.au-story__img--secondary {
    width: 100%;
    height: 175px;
    object-fit: cover;
}

.au-story__since-badge {
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--clr-accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(201, 147, 42, 0.45);
}

.au-story__since-year {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1;
}

.au-story__since-label {
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Text column */
.au-story__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--clr-muted);
    line-height: 1.8;
    font-size: 0.96rem;
    margin-bottom: 2rem;
}

.au-story__body em {
    font-style: italic;
    color: var(--clr-primary);
    font-weight: 500;
}

.au-story__sig {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--clr-border);
}

.au-story__sig-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--clr-accent);
}

.au-story__sig-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.au-story__sig-name {
    display: block;
    font-size: 0.95rem;
    color: var(--clr-primary);
}

.au-story__sig-role {
    display: block;
    font-size: 0.8rem;
    color: var(--clr-muted);
    margin-top: 0.1rem;
}

/* ── VALUES / PILLARS ──────────────────────────────────────── */
.au-values {
    background: var(--clr-bg);
}

.au-values__head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3.5rem;
}

.au-values__intro {
    font-size: 1rem;
    color: var(--clr-muted);
    line-height: 1.7;
}

.au-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.au-value-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    transition: box-shadow var(--transition), transform var(--transition);
}

.au-value-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.au-value-card--accent {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
}

.au-value-card--accent .au-value-card__icon,
.au-value-card--accent .au-value-card__title,
.au-value-card--accent .au-value-card__desc,
.au-value-card--accent .au-value-card__list li {
    color: var(--clr-white);
}

.au-value-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(201, 147, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--clr-accent);
}

.au-value-card--accent .au-value-card__icon {
    background: rgba(255,255,255,0.12);
    color: var(--clr-accent-lite);
}

.au-value-card__title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 0.75rem;
}

.au-value-card__desc {
    font-size: 0.92rem;
    color: var(--clr-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.au-value-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0;
    list-style: none;
}

.au-value-card__list li {
    font-size: 0.82rem;
    color: var(--clr-muted);
    padding-left: 1.1rem;
    position: relative;
}

.au-value-card__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--clr-accent);
    font-size: 0.8rem;
}

.au-value-card--accent .au-value-card__list li::before {
    color: var(--clr-accent-lite);
}

/* ── TEAM ──────────────────────────────────────────────────── */
.au-team {
    background: var(--clr-white);
}

.au-team__head {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 3.5rem;
}

.au-team__intro {
    font-size: 1rem;
    color: var(--clr-muted);
    line-height: 1.7;
}

.au-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.au-team-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    background: var(--clr-bg);
    transition: box-shadow var(--transition), transform var(--transition);
}

.au-team-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.au-team-card__photo-wrap {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.au-team-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.au-team-card:hover .au-team-card__photo {
    transform: scale(1.06);
}

.au-team-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 18, 0.88) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.au-team-card:hover .au-team-card__overlay {
    opacity: 1;
}

.au-team-card__quote {
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.au-team-card__body {
    padding: 1.5rem;
}

.au-team-card__name {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 0.2rem;
}

.au-team-card__role {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.au-team-card__bio {
    font-size: 0.875rem;
    color: var(--clr-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.au-team-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.au-team-card__tags span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--clr-primary);
    background: rgba(26, 60, 52, 0.08);
    border-radius: 999px;
    padding: 0.2rem 0.65rem;
}

/* ── WHY US ────────────────────────────────────────────────── */
.au-why {
    background: var(--clr-bg);
}

.au-why__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Mosaic image group */
.au-why__visual { position: relative; }

.au-why__mosaic {
    position: relative;
    height: 500px;
}

.au-why__mosaic-img {
    position: absolute;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
}

.au-why__mosaic-img--a {
    top: 0;
    left: 0;
    width: 62%;
    height: 65%;
    z-index: 2;
}

.au-why__mosaic-img--b {
    bottom: 0;
    left: 0;
    width: 44%;
    height: 44%;
    z-index: 3;
    border: 3px solid var(--clr-white);
}

.au-why__mosaic-img--c {
    top: 10%;
    right: 0;
    width: 40%;
    height: 55%;
    z-index: 2;
}

.au-why__mosaic-badge {
    position: absolute;
    bottom: 2rem;
    right: 0;
    background: var(--clr-primary);
    color: var(--clr-white);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 4;
    box-shadow: var(--shadow-hover);
}

.au-why__mosaic-badge svg { color: var(--clr-accent); }

/* Why list */
.au-why__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.au-why__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.au-why__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}

.au-why__item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--clr-primary);
    margin-bottom: 0.3rem;
}

.au-why__item p {
    font-size: 0.88rem;
    color: var(--clr-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── REVIEWS ───────────────────────────────────────────────── */
.au-reviews {
    background: var(--clr-white);
}

.au-reviews__head {
    text-align: center;
    margin-bottom: 3rem;
}

.au-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.au-review-card {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: box-shadow var(--transition), transform var(--transition);
    margin: 0;
}

.au-review-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.au-review-card--featured {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    transform: scale(1.03);
}

.au-review-card--featured:hover {
    transform: scale(1.03) translateY(-3px);
}

.au-review-card__stars {
    display: flex;
    gap: 0.15rem;
    color: var(--clr-accent);
    margin-bottom: 1rem;
}

.au-review-card__text {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--clr-text);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.au-review-card--featured .au-review-card__text {
    color: rgba(255,255,255,0.88);
}

.au-review-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-style: normal;
}

.au-review-card__avatar {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid var(--clr-accent);
}

.au-review-card--featured .au-review-card__avatar {
    border-color: rgba(255, 255, 255, 0.4);
}

.au-review-card__name {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.au-review-card--featured .au-review-card__name {
    color: var(--clr-white);
}

.au-review-card__meta {
    display: block;
    font-size: 0.75rem;
    color: var(--clr-muted);
}

.au-review-card--featured .au-review-card__meta {
    color: rgba(255,255,255,0.55);
}

/* ── CTA BANNER ────────────────────────────────────────────── */
.au-cta {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    text-align: center;
}

.au-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.au-cta__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

.au-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 16, 0.78);
}

.au-cta__content {
    position: relative;
    z-index: 2;
}

.au-cta__title {
    font-family: var(--font-head);
    font-size: clamp(1.65rem, 4.2vw, 2.75rem);
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.18;
    margin-bottom: 0.9rem;
    text-rendering: optimizeLegibility;
}

.au-cta__desc {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.78);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}

.au-cta__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.au-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.72rem 1.75rem;
    border-radius: 999px;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.au-cta-btn:hover { transform: translateY(-2px); }

.au-cta-btn--primary {
    background: var(--clr-accent);
    color: var(--clr-white);
}

.au-cta-btn--primary:hover { background: var(--clr-accent-dark); }

.au-cta-btn--outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--clr-white);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
}

.au-cta-btn--outline:hover {
    border-color: var(--clr-accent);
    background: rgba(201,147,42,0.15);
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE — RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .au-story__grid { grid-template-columns: 1fr; gap: 3rem; }
    .au-story__img-wrap { max-width: 520px; }
    .au-values__grid { grid-template-columns: 1fr; }
    .au-why__inner { grid-template-columns: 1fr; gap: 3rem; }
    .au-why__mosaic { height: 380px; }
    .au-team__grid { grid-template-columns: repeat(2, 1fr); }
    .au-reviews__grid { grid-template-columns: 1fr; }
    .au-review-card--featured { transform: none; }
    .au-review-card--featured:hover { transform: translateY(-3px); }
}

@media (max-width: 768px) {
    .au-hero { min-height: 70vh; padding-bottom: 3.5rem; }
    .au-hero__eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        margin-bottom: 0.75rem;
    }
    .au-hero__title {
        font-size: clamp(1.85rem, 7vw, 2.35rem);
        margin-bottom: 0.9rem;
    }
    .au-hero__lead {
        font-size: 0.875rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
    }
    .au-story__img--main { height: 380px; }
    .au-values__grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .au-team__grid { grid-template-columns: 1fr; }
    .au-reviews__grid { grid-template-columns: 1fr; gap: 1rem; }
    .au-cta { padding: 3.5rem 0; }
    .au-cta__title { font-size: clamp(1.5rem, 6.5vw, 2.15rem); }
    .au-cta__desc { font-size: 0.875rem; margin-bottom: 1.75rem; }
    .au-cta-btn { font-size: 0.8125rem; padding: 0.65rem 1.4rem; }
}

@media (max-width: 500px) {
    .au-hero__eyebrow { font-size: 0.62rem; }
    .au-hero__title { font-size: clamp(1.6rem, 6.5vw, 1.9rem); }
    .au-hero__lead { font-size: 0.8125rem; line-height: 1.6; }
    .au-hero__badges { flex-direction: column; align-items: flex-start; }
    .au-story__img-accent { width: 48%; }
    .au-story__since-badge { right: 1rem; }
    .au-why__mosaic { height: 320px; }
}


/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE  (ct-*)
══════════════════════════════════════════════════════════════ */

/* ── HERO ──────────────────────────────────────────────────── */
.ct-hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4.5rem;
    overflow: hidden;
}

.ct-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ct-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
    transform: scale(1.04);
    transition: transform 8s ease-out;
}

.ct-hero:hover .ct-hero__bg-img { transform: scale(1); }

.ct-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 24, 18, 0.2) 0%,
        rgba(10, 24, 18, 0.58) 50%,
        rgba(10, 24, 18, 0.85) 100%
    );
}

.ct-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.ct-hero__eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 0.75rem;
}

.ct-hero__title {
    font-family: var(--font-head);
    font-size: clamp(2.1rem, 5.2vw, 3.5rem);
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.12;
    margin-bottom: 0.9rem;
    text-rendering: optimizeLegibility;
}

.ct-hero__lead {
    font-size: clamp(0.875rem, 1.45vw, 1rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    max-width: 580px;
    margin-bottom: 2rem;
}

/* Quick contact strip */
.ct-hero__quick {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ct-hero__quick-item {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius-md);
    color: var(--clr-white);
    transition: background var(--transition), border-color var(--transition);
    text-decoration: none;
}

.ct-hero__quick-item:hover {
    background: rgba(255,255,255,0.18);
    border-color: var(--clr-accent);
}

.ct-hero__quick-item--plain { cursor: default; }
.ct-hero__quick-item--plain:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.ct-hero__quick-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--clr-white);
}

.ct-hero__quick-item span:not(.ct-hero__quick-icon) {
    display: flex;
    flex-direction: column;
    font-size: 0.72rem;
    line-height: 1.4;
}

.ct-hero__quick-item span:not(.ct-hero__quick-icon) strong {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--clr-accent-lite);
    font-weight: 700;
}

/* ── BODY LAYOUT ───────────────────────────────────────────── */
.ct-body { background: var(--clr-bg); }

.ct-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

/* ── FORM CARD ─────────────────────────────────────────────── */
.ct-form-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2.25rem;
    box-shadow: var(--shadow-card);
}

.ct-form-card__title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.ct-form-card__sub {
    font-size: 0.92rem;
    color: var(--clr-muted);
    line-height: 1.65;
    margin-bottom: 2rem;
}

/* Alert */
.ct-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.ct-alert--success {
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.3);
    color: #065f46;
}

.ct-alert--error {
    background: rgba(198, 40, 40, 0.07);
    border: 1px solid rgba(198, 40, 40, 0.3);
    color: #b71c1c;
}

.ct-alert svg { flex-shrink: 0; margin-top: 1px; }

/* Form layout */
.ct-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ct-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.ct-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ct-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-text);
}

.ct-required { color: var(--clr-accent-dark); }

.ct-input {
    width: 100%;
    padding: 0.7rem 0.95rem;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--clr-text);
    background: var(--clr-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.ct-input:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(26, 60, 52, 0.1);
}

.ct-input::placeholder { color: #c0c4cc; }

.ct-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

.ct-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.65;
}

.ct-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--clr-primary);
    color: var(--clr-white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 14px rgba(26, 60, 52, 0.25);
}

.ct-submit:hover {
    background: #12312a;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(26, 60, 52, 0.3);
}

.ct-submit:active { transform: translateY(0); }

.ct-submit:disabled {
    opacity: 0.72;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ctt-form-alerts:empty {
    display: none;
}

.ctt-form-alerts .ct-alert {
    margin-bottom: 1.5rem;
}

.ctt-form-alerts--toast {
    position: fixed;
    top: calc(var(--site-sticky-header-top, 100px) + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    width: min(640px, calc(100vw - 1.5rem));
    z-index: 500;
    margin: 0;
    pointer-events: none;
}

.ctt-form-alerts--toast .ct-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.55;
    pointer-events: auto;
    border-radius: var(--radius-md);
    box-shadow:
        0 14px 40px rgba(10, 24, 18, 0.32),
        0 4px 12px rgba(10, 24, 18, 0.12);
}

.ctt-form-alerts--toast .ct-alert--success {
    background: #ffffff;
    border: 2px solid #059669;
    color: #0f172a;
}

.ctt-form-alerts--toast .ct-alert--success svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    color: #059669;
}

.ctt-form-alerts--toast .ct-alert--success .ct-alert__text {
    flex: 1;
    min-width: 0;
    padding-right: 0.25rem;
}

.ctt-form-alerts--toast .ct-alert {
    position: relative;
    padding-right: 2.75rem;
}

.ct-alert__close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.06);
    color: #64748b;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.ct-alert__close:hover {
    background: rgba(15, 23, 42, 0.12);
    color: #0f172a;
}

.ct-alert__close:focus-visible {
    outline: 2px solid var(--clr-primary);
    outline-offset: 2px;
}

.ctt-form-alerts--toast .ct-alert__close {
    color: #475569;
}

.ctt-form-alerts--toast .ct-alert__close:hover {
    background: rgba(5, 150, 105, 0.12);
    color: #059669;
}

.ct-form__note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--clr-muted);
    margin-top: -0.25rem;
}

.ct-form__char-count {
    display: block;
    font-size: 0.73rem;
    color: var(--clr-muted);
    text-align: right;
    margin-top: 0.2rem;
}

/* ── SIDEBAR ───────────────────────────────────────────────── */
.ct-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ct-info-cards {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.ct-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.25rem;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.ct-info-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
    border-color: rgba(201, 147, 42, 0.35);
}

.ct-info-card__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ct-info-card__icon--phone   { background: rgba(26,  60, 52,  0.09); color: var(--clr-primary); }
.ct-info-card__icon--email   { background: rgba(201,147, 42,  0.1);  color: var(--clr-accent-dark); }
.ct-info-card__icon--location{ background: rgba(99,  102, 241, 0.1); color: #4f46e5; }
.ct-info-card__icon--whatsapp{ background: rgba(37,  211, 102, 0.12); color: #16a34a; }

.ct-info-card__title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 0.25rem;
}

.ct-info-card__value {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--clr-primary);
    text-decoration: none;
    transition: color var(--transition);
    line-height: 1.5;
}

.ct-info-card__value--text { font-weight: 400; color: var(--clr-text); }

.ct-info-card__value:not(.ct-info-card__value--text):hover { color: var(--clr-accent-dark); }

.ct-info-card__note {
    display: block;
    font-size: 0.75rem;
    color: var(--clr-muted);
    margin-top: 0.15rem;
    line-height: 1.4;
}

.ct-info-card__note--link {
    color: var(--clr-accent-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
    transition: color var(--transition);
}

.ct-info-card__note--link:hover { color: var(--clr-accent); }

/* Sidebar scenic image */
.ct-sidebar__map-img {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.ct-sidebar__map-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.ct-sidebar__map-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(10, 22, 16, 0.82);
    color: var(--clr-white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    backdrop-filter: blur(4px);
}

.ct-sidebar__map-badge svg { color: var(--clr-accent); }

/* Social links */
.ct-social {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
}

.ct-social__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 0.65rem;
}

.ct-social__links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ct-social__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-primary);
    border: 1.5px solid var(--clr-border);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.ct-social__link:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent-dark);
    background: rgba(201, 147, 42, 0.06);
}

/* ── FAQ — Quick Answers (enhanced) ─────────────────────────── */
.ct-faq {
    position: relative;
    padding: 5.5rem 0 5rem;
    overflow: hidden;
}

.ct-faq__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(201, 147, 42, 0.09), transparent 55%),
        radial-gradient(circle at 90% 80%, rgba(26, 60, 52, 0.06), transparent 45%),
        linear-gradient(180deg, #f4f6f4 0%, var(--clr-bg) 35%, var(--clr-bg) 100%);
    pointer-events: none;
}

.ct-faq__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(26, 60, 52, 0.045) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.85;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
}

.ct-faq .container {
    position: relative;
    z-index: 1;
}

.ct-faq__shell {
    max-width: 1040px;
    margin: 0 auto;
}

.ct-faq__head {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 2.75rem;
}

.ct-faq__head .au-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
}

.ct-faq__head-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--clr-accent);
}

.ct-faq__title {
    font-family: var(--font-head);
    font-size: clamp(1.45rem, 2.75vw, 2rem);
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1.2;
    margin-bottom: 0.65rem;
    text-rendering: optimizeLegibility;
}

.ct-faq__intro {
    font-size: 0.9rem;
    color: var(--clr-muted);
    line-height: 1.65;
    margin: 0;
}

/* Card grid */
.ct-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}

.ct-faq__item {
    position: relative;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition:
        box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        border-color var(--transition),
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ct-faq__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    background: linear-gradient(180deg, var(--clr-primary), #123d34);
    opacity: 0.35;
    transition: opacity var(--transition), width var(--transition);
}

.ct-faq__item:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    border-color: rgba(26, 60, 52, 0.18);
    transform: translateY(-2px);
}

.ct-faq__item:hover::before {
    opacity: 0.55;
}

.ct-faq__item[open] {
    box-shadow: 0 12px 36px rgba(26, 60, 52, 0.12);
    border-color: rgba(201, 147, 42, 0.45);
    transform: translateY(-1px);
}

.ct-faq__item[open]::before {
    opacity: 1;
    width: 5px;
    background: linear-gradient(180deg, var(--clr-accent), var(--clr-accent-dark));
}

.ct-faq__question {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.1rem 1rem 1.1rem 1.2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clr-primary);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color var(--transition);
}

.ct-faq__question::-webkit-details-marker { display: none; }
.ct-faq__question::marker { display: none; }

.ct-faq__question:hover { color: #123d34; }

.ct-faq__question:focus { outline: none; }

.ct-faq__question:focus-visible {
    border-radius: var(--radius-lg);
    box-shadow: 0 0 0 3px rgba(201, 147, 42, 0.45);
}

.ct-faq__num {
    flex-shrink: 0;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--clr-accent-dark);
    background: linear-gradient(145deg, rgba(201, 147, 42, 0.14), rgba(201, 147, 42, 0.06));
    border: 1px solid rgba(201, 147, 42, 0.28);
    padding: 0.24rem 0.42rem;
    border-radius: var(--radius-sm);
    line-height: 1;
    margin-top: 0.12rem;
}

.ct-faq__item[open] .ct-faq__num {
    background: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
}

.ct-faq__q-text {
    flex: 1;
    min-width: 0;
    line-height: 1.45;
    padding-right: 0.25rem;
}

.ct-faq__toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-muted);
    background: var(--clr-bg);
    transition:
        border-color var(--transition),
        background var(--transition),
        color var(--transition),
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ct-faq__item:hover .ct-faq__toggle {
    border-color: rgba(26, 60, 52, 0.25);
    color: var(--clr-primary);
}

.ct-faq__item[open] .ct-faq__toggle {
    border-color: var(--clr-accent);
    background: rgba(201, 147, 42, 0.12);
    color: var(--clr-accent-dark);
    transform: rotate(0deg);
}

.ct-faq__toggle-icon {
    display: block;
}

.ct-faq__toggle-line {
    transition: opacity 0.22s ease, transform 0.22s ease;
    transform-origin: center;
}

.ct-faq__item[open] .ct-faq__toggle-line--v {
    opacity: 0;
    transform: scaleY(0);
}

.ct-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.ct-faq__answer-inner {
    padding: 0 1.15rem 1.35rem 3.15rem;
    border-top: 1px solid transparent;
}

.ct-faq__item[open] .ct-faq__answer-inner {
    border-top-color: rgba(26, 60, 52, 0.08);
    padding-top: 0.85rem;
}

.ct-faq__answer p {
    font-size: 0.8125rem;
    color: var(--clr-muted);
    line-height: 1.68;
    margin: 0;
}

.ct-faq__foot-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    text-align: center;
    margin: 2.25rem auto 0;
    max-width: 480px;
    font-size: 0.8125rem;
    color: var(--clr-muted);
    line-height: 1.55;
}

.ct-faq__foot-note svg {
    flex-shrink: 0;
    color: var(--clr-accent);
    opacity: 0.85;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE — RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .ct-layout {
        grid-template-columns: 1fr;
    }
    .ct-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .ct-info-cards { grid-column: 1 / -1; }
    .ct-faq__grid { grid-template-columns: 1fr; gap: 0.95rem; }
}

@media (max-width: 768px) {
    .ct-hero { min-height: 60vh; padding-bottom: 3.5rem; }
    .ct-hero__eyebrow { font-size: 0.68rem; }
    .ct-hero__title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
    .ct-hero__lead { font-size: 0.8125rem; line-height: 1.6; }
    .ct-hero__quick { flex-direction: column; align-items: flex-start; }
    .ct-form-card { padding: 1.75rem 1.25rem; }
    .ct-form__row { grid-template-columns: 1fr; gap: 1rem; }
    .ct-sidebar { display: flex; flex-direction: column; }
    .ct-faq { padding: 3.5rem 0 3.5rem; }
    .ct-faq__head { margin-bottom: 1.85rem; }
    .ct-faq__head .au-eyebrow { font-size: 0.62rem; }
    .ct-faq__title { font-size: clamp(1.35rem, 5.5vw, 1.65rem); }
    .ct-faq__intro { font-size: 0.8125rem; line-height: 1.6; }
    .ct-faq__question { padding: 0.95rem 0.9rem; gap: 0.6rem; font-size: 0.8125rem; }
    .ct-faq__answer-inner { padding-left: 1rem; padding-right: 1rem; }
    .ct-faq__answer p { font-size: 0.78rem; }
    .ct-faq__foot-note { font-size: 0.78rem; margin-top: 1.85rem; }
}

@media (max-width: 500px) {
    .ct-info-cards { gap: 0.65rem; }
    .ct-info-card { padding: 0.85rem 1rem; }
    .ct-social__links { gap: 0.5rem; }
    .ct-faq__toggle { width: 30px; height: 30px; }
    .ct-faq__num { font-size: 0.68rem; padding: 0.2rem 0.36rem; }
}

/* =============================================================================
   EXPLORE ALL SAFARIS PAGE  (templates/explore.php)
============================================================================= */

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.ex-hero {
    position: relative;
    min-height: min(50vh, 540px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: clamp(4.25rem, 10vw, 6.25rem) 0 clamp(3rem, 6.5vw, 4.5rem);
    text-align: center;
}

.ex-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1561731216-c3a4d99437d5?w=1800&q=80');
    background-size: cover;
    background-position: center 42%;
    transform: scale(1.02);
    filter: brightness(0.48) saturate(1.05);
    z-index: 0;
}

/* Category filter (?category=): lions banner (matches assets/images/explore-category-hero-lions.png) */
.ex-hero--category .ex-hero__bg {
    background-image: url('../images/explore-category-hero-lions.png');
    background-position: center 35%;
    filter: brightness(0.44) saturate(1.06);
}

.ex-hero__sub--category {
    max-width: min(40rem, 100%);
    text-align: center;
}

.ex-category__header--after-hero {
    margin-top: 0.25rem;
}

/* Cinematic scrim — readability + depth (aligned with homepage hero) */
.ex-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to top, rgba(8, 18, 14, 0.94) 0%, rgba(8, 18, 14, 0.55) 38%, transparent 72%),
        linear-gradient(to bottom, rgba(6, 16, 12, 0.55) 0%, transparent 32%),
        linear-gradient(to right, rgba(6, 16, 12, 0.35) 0%, transparent 45%),
        linear-gradient(to left, rgba(6, 16, 12, 0.22) 0%, transparent 42%);
}

.ex-hero__grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='exn'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23exn)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.04;
}

.ex-hero__inner {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: min(920px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ex-hero__intro {
    margin-bottom: 0.25rem;
    max-width: 100%;
}

.ex-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent, #d4b87a);
    margin: 0 0 1.1rem;
    padding: 0.4rem 1rem 0.4rem 0.65rem;
    background: rgba(201, 147, 42, 0.12);
    border: 1px solid rgba(201, 147, 42, 0.32);
    border-radius: 999px;
}

.ex-hero__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8c97a, #b8893a);
    box-shadow: 0 0 0 3px rgba(201, 147, 42, 0.25);
    flex-shrink: 0;
}

.ex-hero__title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: clamp(2.5rem, 6.5vw, 4.25rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 1.15rem;
    color: #fff;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.ex-hero__sub {
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(0.98rem, 2.2vw, 1.08rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.86);
    margin: 0 auto;
    max-width: 34em;
}

.ex-hero__search-kicker {
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 2rem 0 0.65rem;
}

.ex-hero__scroll-down {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem 0.25rem;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.ex-hero__scroll-down:hover {
    color: rgba(255, 255, 255, 0.95);
}

.ex-hero__scroll-down:focus-visible {
    outline: 2px solid rgba(201, 147, 42, 0.85);
    outline-offset: 4px;
}

.ex-hero__scroll-down-icon {
    display: flex;
    color: rgba(201, 147, 42, 0.95);
    animation: exHeroScrollNudge 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .ex-hero__scroll-down-icon {
        animation: none;
    }
}

@keyframes exHeroScrollNudge {
    0%, 100% { transform: translateY(0); opacity: 0.85; }
    50%      { transform: translateY(6px); opacity: 1; }
}

@media (prefers-reduced-motion: no-preference) {
    .ex-hero__intro {
        animation: heroFadeUp 0.65s ease both;
    }
    .ex-hero__search-kicker {
        animation: heroFadeUp 0.65s ease both 0.12s;
    }
    .ex-toolbar--hero {
        animation: heroFadeUp 0.65s ease both 0.22s;
    }
    .ex-hero__scroll-down {
        animation: heroFadeUp 0.65s ease both 0.38s;
    }
}

/* ── Main wrapper ──────────────────────────────────────────────────────────── */
.ex-main {
    padding: 4rem 0 6rem;
    scroll-margin-top: 5.5rem;
}

.ex-empty {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-muted, #888);
    font-size: 1.05rem;
}

/* ── Explore: destination bar (homepage-style pill; hero vs main variants) ─── */
.ex-toolbar {
    margin: 0 0 2.75rem;
}

.ex-toolbar__form.hero__search {
    max-width: none;
    margin: 0;
    box-shadow:
        0 4px 28px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.06);
}

/* Toolbar inside explore hero (dark background) */
.ex-toolbar--hero {
    margin: 0;
    width: 100%;
    max-width: min(920px, 100%);
}

.ex-toolbar--hero .ex-toolbar__form.hero__search {
    box-shadow:
        0 14px 48px rgba(0, 0, 0, 0.35),
        0 2px 12px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.ex-toolbar__hint {
    margin: 0.85rem 0 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted, #888);
    text-align: center;
}

.ex-toolbar--hero .ex-toolbar__hint {
    color: rgba(255, 255, 255, 0.82);
}

.ex-toolbar__clear {
    color: var(--clr-accent, #b8860b);
    font-weight: 600;
    text-decoration: none;
}

.ex-toolbar--hero .ex-toolbar__clear {
    color: var(--accent, #c8a96e);
}

.ex-toolbar__clear:hover {
    text-decoration: underline;
}

.ex-toolbar--hero .ex-toolbar__clear:hover {
    color: #e6d4a8;
}

/* ── Category section ──────────────────────────────────────────────────────── */
.ex-category {
    margin-bottom: 5rem;
}

.ex-category:last-child {
    margin-bottom: 0;
}

.ex-category__header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.ex-category__title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary, #1a1a1a);
    margin: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    /* gold left accent */
    padding-left: 1rem;
    border-left: 3px solid var(--accent, #c8a96e);
}

.ex-category__count {
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent, #c8a96e);
    background: rgba(200, 169, 110, 0.1);
    border: 1px solid rgba(200, 169, 110, 0.25);
    border-radius: 100px;
    padding: 0.18rem 0.6rem;
}

.ex-category__rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--border, #e8e2d9), transparent);
}

.ex-no-tours {
    color: var(--text-muted, #888);
    font-size: 0.95rem;
    padding: 1rem 0;
    margin: 0;
}

/* ── Tour grid — 3 columns ─────────────────────────────────────────────────── */
.ex-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* ── Tour card ─────────────────────────────────────────────────────────────── */
.ex-card {
    position: relative;          /* anchor for stretch-link overlay */
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border, #ede8e0);
    box-shadow:
        0 1px 2px rgba(24, 20, 14, 0.04),
        0 8px 24px rgba(24, 20, 14, 0.06);
    transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.ex-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 4px 12px rgba(24, 20, 14, 0.06),
        0 20px 48px rgba(24, 20, 14, 0.12);
    border-color: rgba(200, 169, 110, 0.5);
}

.ex-card:focus-within {
    border-color: rgba(200, 169, 110, 0.55);
    box-shadow:
        0 4px 12px rgba(24, 20, 14, 0.06),
        0 20px 48px rgba(24, 20, 14, 0.1);
}

@media (prefers-reduced-motion: reduce) {
    .ex-card {
        transition: box-shadow 0.2s ease, border-color 0.2s ease;
    }
    .ex-card:hover,
    .ex-card:focus-within {
        transform: none;
    }
    .ex-card:hover .ex-card__img,
    .ex-card:focus-within .ex-card__img {
        transform: none;
    }
    .ex-card:hover .ex-card__cta,
    .ex-card:focus-within .ex-card__cta,
    .ex-card:hover .ex-card__cta--options,
    .ex-card:focus-within .ex-card__cta--options {
        transform: none;
    }
}

/* ── Stretch link: makes the whole card clickable via the title anchor ── */
.ex-card__stretch-link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

/* Body/footer pass clicks through to stretch link; CTA is decorative */
.ex-card__body,
.ex-card__footer {
    pointer-events: none;
}

.ex-card__stretch-link {
    pointer-events: auto;
}

/* Image: pointer-events off so stretch-link covers whole card */
.ex-card__img-wrap {
    position: relative;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    flex-shrink: 0;
    aspect-ratio: 3 / 2;
    background: linear-gradient(145deg, #f0ebe4 0%, #f7f3ed 100%);
    border-top: 1px solid var(--border, #f0ebe3);
}

/* Desktop / tablet: photo first (better scanability) */
@media (min-width: 561px) {
    .ex-card__img-wrap {
        order: -1;
        border-top: none;
        border-bottom: 1px solid var(--border, #f0ebe3);
    }
}

.ex-card__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(12, 10, 8, 0.12) 0%,
        transparent 42%
    );
    opacity: 0.85;
}

.ex-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.ex-card:hover .ex-card__img,
.ex-card:focus-within .ex-card__img {
    transform: scale(1.05);
}

.ex-card__img-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0.65rem 0.75rem;
    z-index: 2;
}

.ex-card__badge {
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--clr-primary, #1a3c34);
    border: 1px solid #AE8D51;
    border-radius: 100px;
    padding: 0.28rem 0.65rem;
    box-shadow: 0 2px 10px rgba(26, 60, 52, 0.35);
}

/* Body — tour details (top) */
.ex-card__body {
    flex: 0 1 auto;
    padding: 1.2rem 1.3rem 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ex-card__location {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--accent, #c8a96e);
    margin: 0;
    min-width: 0;
}

.ex-card__location svg {
    flex-shrink: 0;
}

.ex-card__location span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ex-card__title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.28;
    margin: 0;
    color: var(--text-primary, #1a1a1a);
    letter-spacing: -0.01em;
}

.ex-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ex-card:hover .ex-card__title a,
.ex-card:focus-within .ex-card__title a {
    color: #143d35;
}

/* Duration under title (desktop + mobile) */
.ex-card__duration-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted, #777);
    margin-top: 0;
}

.ex-card__duration-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    margin-top: 0.05rem;
}

/* Listing cards — Instant confirmation / Free cancellation (shared, all pages) */
.tour-card-tags {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    max-width: 100%;
}

.tour-card-tags__item {
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    line-height: 1.15;
    white-space: nowrap;
}

.tour-card-tags--ex .tour-card-tags__item {
    background: rgba(26, 60, 52, 0.07);
    color: #1a3c34;
    border: 1px solid rgba(26, 60, 52, 0.12);
}

.tour-card-tags--home {
    margin-top: 0.4rem;
    gap: 0.25rem;
}

.tour-card-tags--home .tour-card-tags__item {
    font-size: 0.52rem;
    padding: 0.12rem 0.34rem;
    background: rgba(26, 60, 52, 0.07);
    color: #1a3c34;
    border: 1px solid rgba(26, 60, 52, 0.12);
}

.tour-card-tags--related {
    gap: 0.16rem;
    margin-top: 0.1rem;
}

.tour-card-tags--related .tour-card-tags__item {
    font-size: 0.46rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.08rem 0.26rem;
    border-radius: 3px;
    line-height: 1.12;
    background: rgba(26, 60, 52, 0.06);
    color: #2d5248;
    border: 1px solid rgba(26, 60, 52, 0.1);
}

.tour-card-tags--on-photo .tour-card-tags__item {
    font-size: 0.48rem;
    padding: 0.08rem 0.28rem;
    background: rgba(255, 255, 255, 0.94);
    color: #143d35;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.tp-rel-card__timing {
    margin: 0 0 0.2rem;
}

.tp-rel-card__timing .tour-card-tags {
    margin-top: 0.2rem;
}

.tp-rel-card__timing .tour-card-tags--related {
    margin-top: 0.15rem;
}

.ex-card__desc {
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.845rem;
    line-height: 1.6;
    color: var(--text-muted, #777);
    margin: 0.1rem 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer — pricing, directly under details (same surface as card) */
.ex-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1.3rem 0.95rem;
    border-top: 1px solid var(--border, #f0ebe3);
    background: linear-gradient(to bottom, #fdfcfa 0%, #faf7f3 100%);
    margin-top: auto;
}

.ex-card__price-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.ex-card__price-label {
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted, #aaa);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.15rem;
}

.ex-card__price {
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary, #1a1a1a);
    letter-spacing: -0.01em;
}

/* CTAs (decorative; whole card navigates via stretch link) */
.ex-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 100px;
    padding: 0.52rem 1.15rem;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    background: var(--bg-subtle, #f5f1eb);
    color: var(--text-primary, #1a1a1a);
    border: 1px solid var(--border, #e8e2d9);
}

.ex-card:hover .ex-card__cta,
.ex-card:focus-within .ex-card__cta {
    background: var(--text-primary, #1a1a1a);
    color: #fff;
    border-color: transparent;
    transform: translateY(-1px);
}

.ex-card__stretch-link:focus-visible {
    outline: 2px solid var(--accent, #c8a96e);
    outline-offset: 3px;
    border-radius: 4px;
}

.ex-card__cta--options {
    background: linear-gradient(135deg, #c9a86e 0%, #a8884e 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 2px 10px rgba(168, 136, 78, 0.4);
}

.ex-card:hover .ex-card__cta--options,
.ex-card:focus-within .ex-card__cta--options {
    background: linear-gradient(135deg, #b8965a 0%, #8f7038 100%);
    box-shadow: 0 4px 16px rgba(168, 136, 78, 0.5);
    transform: translateY(-1px);
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .ex-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
}

@media (max-width: 768px) {
    .ex-hero {
        min-height: auto;
        padding: clamp(3.75rem, 12vw, 5rem) 0 clamp(2.25rem, 5.5vw, 3.15rem);
    }
    .ex-hero__eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
        margin-bottom: 0.85rem;
        padding: 0.35rem 0.85rem 0.35rem 0.55rem;
    }
    .ex-hero__title {
        font-size: clamp(1.85rem, 5.5vw, 2.35rem);
        margin-bottom: 0.9rem;
    }
    .ex-hero__sub {
        font-size: 0.875rem;
        line-height: 1.65;
    }
    .ex-hero__search-kicker { margin-top: 1.5rem; }
    .ex-hero__scroll-down   { margin-top: 1.15rem; }
    .ex-main      { padding: 3rem 0 5rem; }
    .ex-category  { margin-bottom: 3.5rem; }
    .ex-category__header { gap: 0.9rem; margin-bottom: 1.5rem; }
    .ex-grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }

    /* Tour card image tags — mobile only (badge; type-pill overrides below base block) */
    .ex-card__badge {
        font-size: 0.6rem;
        padding: 0.22rem 0.5rem;
        letter-spacing: 0.05em;
    }
    .ex-card__img-overlay {
        padding: 0.5rem 0.55rem;
    }
}

/* ── Mobile: grid keeps pricing inside card — thumb | details, then price row ─ */
@media (max-width: 560px) {
    .ex-category__title {
        font-size: 1.3rem;
        white-space: normal;
        padding-left: 0.75rem;
    }
    .ex-hero__eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.08em;
        margin-bottom: 0.75rem;
    }
    .ex-hero__title {
        font-size: clamp(1.6rem, 6vw, 1.9rem);
        margin-bottom: 0.75rem;
    }
    .ex-hero__sub {
        font-size: 0.8125rem;
        line-height: 1.6;
    }
    .ex-hero__scroll-down {
        font-size: 0.78rem;
        padding: 0.65rem 1rem;
        min-height: 44px;
        justify-content: center;
    }

    .ex-grid {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .ex-card {
        display: grid;
        grid-template-columns: 108px minmax(0, 1fr);
        grid-template-rows: auto auto;
        border-radius: 14px;
        align-items: stretch;
    }

    .ex-card:hover { transform: none; }
    .ex-card:active { background: #faf8f5; }

    /* Row 1: thumbnail | details — compact row keeps thumb on left */
    .ex-card__img-wrap {
        order: 0;
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        min-height: 104px;
        aspect-ratio: unset;
        border-top: none;
        border-bottom: none;
        border-radius: 0;
    }

    .ex-card__body {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
        align-self: stretch;
        min-height: 104px;
        padding: 0.65rem 0.85rem 0.5rem 0.65rem;
        gap: 0.12rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    /* Row 2: pricing spans full card width — still inside same border */
    .ex-card__footer {
        grid-column: 1 / -1;
        grid-row: 2;
        padding: 0.5rem 0.85rem 0.6rem;
        border-top: 1px solid var(--border, #f0ebe3);
        background: #fff;
    }

    .ex-card__img-overlay {
        display: flex;
        padding: 0.35rem;
    }

    .ex-card__badge {
        font-size: 0.52rem;
        padding: 0.16rem 0.38rem;
        letter-spacing: 0.04em;
    }

    .ex-card__location { font-size: 0.65rem; }
    .ex-card__title    { font-size: 0.95rem; line-height: 1.22; }

    .ex-card__duration-inline {
        font-size: 0.7rem;
        margin-top: 0.1rem;
    }

    .ex-card__duration-row {
        gap: 0.2rem 0.35rem;
    }

    .tour-card-tags {
        flex: 1 1 auto;
        gap: 0.16rem;
        min-width: 0;
    }

    .tour-card-tags__item {
        font-size: 0.44rem;
        padding: 0.06rem 0.22rem;
        letter-spacing: 0.015em;
    }

    .ex-card__desc {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        font-size: 0.7rem;
        line-height: 1.42;
        margin: 0.12rem 0 0;
        flex: 1;
        min-height: 0;
        overflow: hidden;
    }

    .ex-card__price-wrap  { flex-direction: row; align-items: baseline; gap: 0.25rem; }
    .ex-card__price-label { font-size: 0.65rem; margin-bottom: 0; }
    .ex-card__price       { font-size: 0.92rem; }

    .ex-card__cta {
        padding: 0.42rem 0.65rem;
        border-radius: 8px;
        font-size: 0;
        gap: 0;
        min-width: 36px;
        justify-content: center;
    }
    .ex-card__cta svg { width: 14px; height: 14px; }
}

/* ==========================================================================
   Currency Switcher
   ========================================================================== */

/* ── Language + currency (GYG-style single control) ───────────────────────── */
.locale-currency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1.5px solid var(--clr-border);
    border-radius: 999px;
    padding: 0.38rem 0.75rem 0.38rem 0.55rem;
    background: transparent;
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
    flex-shrink: 0;
    line-height: 1.2;
    max-width: 9.5rem;
}
.locale-currency-btn:hover {
    border-color: var(--clr-primary);
    background: rgba(26, 60, 52, 0.04);
    color: var(--clr-primary);
}
.locale-currency-btn__icon {
    flex-shrink: 0;
    color: var(--clr-muted);
}
.locale-currency-btn:hover .locale-currency-btn__icon {
    color: var(--clr-primary);
}
.locale-currency-btn__chip {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

/* ── Header button (legacy / standalone currency only) ───────────────────── */
.curr-switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-family: var(--font-body);
    font-size: .8125rem;
    font-weight: 600;
    color: var(--clr-text);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    white-space: nowrap;
    line-height: 1.3;
}
.curr-switch-btn:hover {
    border-color: var(--clr-accent);
    background: rgba(201,147,42,.06);
}
.curr-switch-btn svg { flex-shrink: 0; }

/* ── Modal overlay ────────────────────────────────────────────────────────── */
.curr-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}
.curr-modal--visible {
    opacity: 1;
    pointer-events: auto;
}
.curr-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.curr-modal__panel {
    position: relative;
    z-index: 1;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,.22);
    width: 92%;
    max-width: 520px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 28px 28px 24px;
    transform: translateY(12px) scale(.97);
    transition: transform .25s ease;
}
.curr-modal--visible .curr-modal__panel {
    transform: translateY(0) scale(1);
}

/* Header */
.curr-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.curr-modal__title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--clr-primary);
}
.curr-modal__close {
    background: none;
    border: none;
    color: var(--clr-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: color var(--transition), background var(--transition);
}
.curr-modal__close:hover {
    color: var(--clr-text);
    background: var(--clr-bg);
}
.curr-modal__subtitle {
    font-size: .8rem;
    color: var(--clr-muted);
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Grid */
.curr-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.curr-modal__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-md);
    background: var(--clr-white);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
    text-align: left;
    font-family: var(--font-body);
}
.curr-modal__item:hover {
    border-color: var(--clr-accent);
    background: rgba(201,147,42,.04);
}
.curr-modal__item--active {
    border-color: var(--clr-accent);
    background: rgba(201,147,42,.08);
    box-shadow: 0 0 0 2px rgba(201,147,42,.18);
}
.curr-modal__flag {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}
.curr-modal__info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.curr-modal__code {
    font-size: .85rem;
    font-weight: 700;
    color: var(--clr-text);
    line-height: 1.2;
}
.curr-modal__label {
    font-size: .72rem;
    color: var(--clr-muted);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.curr-modal__symbol {
    font-size: .95rem;
    font-weight: 600;
    color: var(--clr-accent-dark);
    flex-shrink: 0;
}

@media (max-width: 540px) {
    .curr-modal__panel { padding: 20px 16px 18px; }
    .curr-modal__grid  { grid-template-columns: 1fr; }
    .curr-switch-btn   { padding: 4px 8px; font-size: .75rem; }
}

/* ==========================================================================
   Header — Mega menus (Explore All Safaris, Tours)
   ========================================================================== */

/* Do not use position: relative on the <li> — that makes `left/right` on the
   mega panel relative to a *narrow* trigger, so a wide menu shifts over the logo.
   `z-index` still applies because each <li> is a flex item of .nav__list. */
.nav__item--mega {
    position: static;
    z-index: 1;
}

.nav__item--mega:hover,
.nav__item--mega:focus-within {
    z-index: 95;
}

.nav__item--mega .nav__link--dropdown {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.nav__item--mega .nav__link--dropdown::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.4rem;
    vertical-align: 0.15em;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.65;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav__item--mega:hover .nav__link--dropdown::after,
.nav__item--mega:focus-within .nav__link--dropdown::after {
    transform: rotate(180deg);
    opacity: 1;
}

.mega-menu {
    position: absolute;
    /* Positioned against .nav__list (min-width:961px), not the <li> — see comment above */
    left: 0;
    right: auto;
    transform: none;
    top: 100%;
    margin-top: -8px;
    width: min(960px, calc(100vw - 2rem));
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(15, 35, 27, 0.18);
    padding: 1.4rem 1.5rem 1.1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease;
    z-index: 90;
}

.mega-menu--single {
    width: min(440px, calc(100vw - 2rem));
}

/* Diamond pointer (decorative) */
.mega-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: clamp(1.25rem, 18vw, 8rem);
    transform: rotate(45deg);
    width: 14px;
    height: 14px;
    background: var(--clr-white);
    border-top: 1px solid var(--clr-border);
    border-left: 1px solid var(--clr-border);
    border-top-left-radius: 3px;
}

/* Invisible strip above the panel — keeps :hover on the <li> while crossing any
   sub-pixel gap between the nav row and the menu (still a descendant of the <li>). */
.mega-menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    bottom: 100%;
    background: transparent;
    pointer-events: none;
}

.nav__item--mega:hover .mega-menu::after,
.nav__item--mega:focus-within .mega-menu::after {
    pointer-events: auto;
}

.nav__item--mega:hover .mega-menu,
.nav__item--mega:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mega-menu__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.mega-menu--double .mega-menu__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 1.75rem;
}

.mega-col {
    min-width: 0;
}

.mega-col + .mega-col {
    border-left: 1px solid var(--clr-border);
    padding-left: 1.5rem;
}

.mega-col__heading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-primary);
    margin: 0 0 0.85rem;
}

.mega-col__heading-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(26, 60, 52, 0.08);
    color: var(--clr-primary);
}

.mega-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mega-list__item {
    margin: 0;
}

.mega-list__link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding: 0.5rem 0.55rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--clr-text);
    transition: background var(--transition), transform var(--transition);
}

.mega-list__link:hover,
.mega-list__link:focus-visible {
    background: #f3f7f4;
    color: var(--clr-primary);
    outline: none;
}

.mega-list__thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    background: #f0eee8;
    flex-shrink: 0;
}

.mega-list__thumb--rect {
    width: 56px;
    height: 42px;
    border-radius: 8px;
}

.mega-list__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mega-list__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.mega-list__title {
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--clr-text);
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mega-list__link:hover .mega-list__title,
.mega-list__link:focus-visible .mega-list__title {
    color: var(--clr-primary);
}

.mega-list__sub {
    font-size: 0.78rem;
    color: var(--clr-muted);
    line-height: 1.3;
    margin-top: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mega-list__chev {
    color: var(--clr-muted);
    flex-shrink: 0;
    transition: transform var(--transition), color var(--transition);
}

.mega-list__link:hover .mega-list__chev,
.mega-list__link:focus-visible .mega-list__chev {
    color: var(--clr-primary);
    transform: translateX(2px);
}

.mega-col__empty {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #5a6b64;
}

.mega-col__more {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.95rem;
    padding: 0.35rem 0.55rem;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-primary);
    text-decoration: none;
    border-radius: 6px;
    transition: gap var(--transition), color var(--transition);
}

.mega-col__more:hover,
.mega-col__more:focus-visible {
    color: var(--clr-accent-dark);
    gap: 0.65rem;
    outline: none;
}

/* "Tours" — right help column */
.mega-help-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #f4f7f5;
    border: 1px solid #e3ece6;
    border-radius: 12px;
    padding: 0.9rem 0.95rem;
    margin-bottom: 1rem;
}

.mega-help-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(26, 60, 52, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.mega-help-card__title {
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 0 0 0.15rem;
}

.mega-help-card__text {
    font-size: 0.8rem;
    color: var(--clr-muted);
    line-height: 1.4;
    margin: 0 0 0.55rem;
}

.mega-help-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    background: var(--clr-primary);
    color: var(--clr-white);
    text-decoration: none;
    border-radius: 999px;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
}

.mega-help-card__btn:hover,
.mega-help-card__btn:focus-visible {
    background: #244a40;
    transform: translateY(-1px);
    outline: none;
}

.mega-perks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mega-perks__item,
.mega-perks__link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.55rem 0.55rem;
    border-radius: 10px;
    color: var(--clr-text);
    text-decoration: none;
    transition: background var(--transition);
}

.mega-perks__link:hover,
.mega-perks__link:focus-visible {
    background: #f3f7f4;
    outline: none;
}

.mega-perks__icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(26, 60, 52, 0.07);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.mega-perks__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.mega-perks__title {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-text);
    line-height: 1.25;
}

.mega-perks__sub {
    font-size: 0.75rem;
    color: var(--clr-muted);
    line-height: 1.35;
}

.mega-menu__footer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    background: #f8f5ee;
    border: 1px solid #ede5d2;
    border-radius: 12px;
}

.mega-menu__footer-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(201, 147, 42, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent-dark);
    flex-shrink: 0;
}

.mega-menu__footer-text {
    flex: 1;
    font-size: 0.83rem;
    color: var(--clr-text);
    line-height: 1.45;
    min-width: 0;
}

.mega-menu__footer-text strong {
    display: block;
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--clr-primary);
}

.mega-menu__footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 1rem;
    border: 1px solid var(--clr-primary);
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--clr-primary);
    text-decoration: none;
    background: transparent;
    transition: background var(--transition), color var(--transition);
    flex-shrink: 0;
}

.mega-menu__footer-btn:hover,
.mega-menu__footer-btn:focus-visible {
    background: var(--clr-primary);
    color: var(--clr-white);
    outline: none;
}

/* ==========================================================================
   Explore card — Type pill (Tour/Safari)
   ========================================================================== */

.ex-card__type-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(2px);
    pointer-events: none;
}

.ex-card__type-pill--safari {
    background: rgba(26, 60, 52, 0.94);
    color: #fff;
}

.ex-card__type-pill--tour {
    background: rgba(201, 147, 42, 0.96);
    color: #2a1c00;
}

.ex-card__type-pill--package {
    background: rgba(88, 64, 120, 0.94);
    color: #fff;
}

/* Type pill — mobile only (must follow base .ex-card__type-pill above) */
@media (max-width: 768px) {
    .ex-card__type-pill {
        top: 8px;
        left: 8px;
        font-size: 0.62rem;
        padding: 0.22rem 0.55rem;
        letter-spacing: 0.05em;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
    }
}

@media (max-width: 560px) {
    .ex-card__type-pill {
        top: 5px;
        left: 5px;
        font-size: 0.55rem;
        padding: 0.16rem 0.4rem;
        letter-spacing: 0.04em;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
    }
}

/* ==========================================================================
   Blog / Journal — classy editorial (image-led)
   ========================================================================== */

.page-blog {
    background: #f9f7f2;
    color: #141413;
    /* Slightly rounder cards on Journal pages than the global 4px token. */
    --srb-radius: 14px;
    /* Tan "Read article" pill (third featured card). */
    --srb-read-cta: #b38b59;
}
.page-blog .topbar { background: #1a3c34; }

:root {
    --srb-ink: #141413;
    --srb-ink-soft: #2b2b29;
    --srb-muted: #595955;
    --srb-faint: #8a8984;
    --srb-line: #e6e3da;
    --srb-line-strong: #d6d2c5;
    --srb-canvas: #f9f7f2;
    --srb-card: #ffffff;
    --srb-green: #1a3c34;
    --srb-green-soft: #244a41;
    --srb-gold: #c9932a;
    --srb-read-cta: #b38b59;
    --srb-font-serif: "Cormorant Garamond", Georgia, serif;
    --srb-font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
    --srb-radius: 4px;
    --srb-shadow: 0 18px 48px rgba(20, 20, 19, 0.08);
}

.sr-blog,
.sr-blog-post {
    color: var(--srb-ink);
    font-family: var(--srb-font-sans);
}

/* ── Editorial masthead (parchment) ───────────────── */
.sr-blog-mast {
    position: relative;
    z-index: 1;
    padding-top: clamp(2.75rem, 6vw, 4.5rem);
    padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
    max-width: 60rem;
}
.sr-blog-mast--inline {
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(0.5rem, 1.5vw, 1rem);
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.sr-blog-mast__eyebrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0 0 1.1rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--srb-gold);
}
.sr-blog-mast__eyebrow-line {
    display: inline-block;
    width: clamp(28px, 4vw, 56px);
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}
.sr-blog-mast__eyebrow-glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(201, 147, 42, 0.12);
    color: var(--srb-gold);
}
.sr-blog-mast__title {
    font-family: var(--srb-font-serif);
    font-weight: 500;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.04;
    letter-spacing: -0.012em;
    margin: 0 0 0.6rem;
    color: var(--srb-ink);
}
.sr-blog-mast__sub {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--srb-muted);
    max-width: 34rem;
}

/* ── Topic chips ──────────────────────────────────── */
.sr-blog-filter {
    background: #f9f7f2;
    border-bottom: 1px solid var(--srb-line);
}
.sr-blog-filter__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem 1.5rem;
    padding: 1.2rem 0;
}
.sr-blog-filter__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--srb-faint);
    margin-right: 0.25rem;
}
.sr-blog-filter__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.6rem;
}
.sr-blog-filter__chip {
    display: inline-block;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--srb-muted);
    padding: 0.45rem 1rem;
    border: 1px solid var(--srb-line);
    border-radius: 999px;
    background: #ffffff;
    text-decoration: none;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.sr-blog-filter__chip:hover,
.sr-blog-filter__chip:focus-visible {
    color: var(--srb-ink);
    border-color: var(--srb-line-strong);
    transform: translateY(-1px);
    outline: none;
}
.sr-blog-filter__chip--active {
    background: var(--srb-green);
    border-color: var(--srb-green);
    color: #fdf9f0;
}
.sr-blog-filter__chip--active:hover { color: #fdf9f0; border-color: var(--srb-green); }

/* ── Section heads ────────────────────────────────── */
.sr-blog-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--srb-line);
}
.sr-blog-section-head__title {
    font-family: var(--srb-font-serif);
    font-weight: 500;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    line-height: 1.18;
    margin: 0;
    color: var(--srb-ink);
    letter-spacing: -0.005em;
}
.sr-blog-section-head__sub {
    font-size: 0.9rem;
    color: var(--srb-muted);
    margin: 0;
    max-width: 28rem;
}

/* ── Featured editorial section ───────────────────── */
.sr-blog-featured-section {
    position: relative;
    padding: 0 0 clamp(2.5rem, 5vw, 3.75rem);
    overflow: hidden;
    isolation: isolate;
    background: #f9f7f2;
}
/* Hand-drawn landscape behind masthead + cards (decorative). */
.sr-blog-featured-section__decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    color: rgba(179, 139, 89, 0.42);
    pointer-events: none;
}
.sr-blog-featured-section__decor svg {
    width: 100%;
    height: 100%;
    display: block;
}
.sr-blog-featured-section > .container {
    position: relative;
    z-index: 1;
}

.sr-blog-featured-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
}
@media (min-width: 768px) {
    .sr-blog-featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        align-items: stretch;
    }
    .sr-blog-card--lead {
        grid-column: 1;
        grid-row: 1;
    }
    .sr-blog-card--side {
        grid-column: 2;
        grid-row: 1;
    }
    .sr-blog-card--wide {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}
@media (min-width: 1100px) {
    .sr-blog-featured-grid {
        gap: 1.75rem;
    }
}

/* ── Card (shared) ────────────────────────────────── */
.sr-blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--srb-card);
    border: 1px solid var(--srb-line);
    border-radius: var(--srb-radius);
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(20, 20, 19, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    isolation: isolate;
}
.sr-blog-card:hover,
.sr-blog-card:focus-visible {
    transform: translateY(-3px);
    border-color: var(--srb-line-strong);
    box-shadow: var(--srb-shadow);
    outline: none;
}
.sr-blog-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #efece4 0%, #e1ddcf 100%);
    aspect-ratio: 16 / 10;
    /* Inset rounded photo (matches reference look on dark cards). */
    margin: 10px 10px 0;
    border-radius: calc(var(--srb-radius) - 4px);
}
.sr-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.sr-blog-card:hover .sr-blog-card__media img,
.sr-blog-card:focus-visible .sr-blog-card__media img {
    transform: scale(1.04);
}
.sr-blog-card__media-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(20, 20, 19, 0.18);
}
.sr-blog-card__cat {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.42rem 0.85rem;
    color: #fdf9f0;
    background: rgba(20, 38, 32, 0.92);
    border: 1px solid rgba(253, 249, 240, 0.18);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(20, 20, 19, 0.18);
    line-height: 1;
}
.sr-blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.4rem 1.5rem 1.3rem;
    min-width: 0;
}
.sr-blog-card__title {
    font-family: var(--srb-font-serif);
    font-weight: 500;
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    line-height: 1.2;
    color: var(--srb-ink);
    letter-spacing: -0.005em;
    margin: 0 0 0.55rem;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.sr-blog-card:hover .sr-blog-card__title {
    color: var(--srb-green);
}
.sr-blog-card__dek {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--srb-muted);
    margin: 0 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.sr-blog-card__divider {
    display: block;
    height: 1px;
    background: var(--srb-line);
    margin: 0 0 0.95rem;
}
.sr-blog-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin-top: auto;
}
.sr-blog-card__author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
    flex: 1;
}
.sr-blog-card__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3c34 0%, #25564a 100%);
    color: #fdf9f0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
}
.sr-blog-card__author-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.25;
    gap: 2px;
}
.sr-blog-card__author-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--srb-ink-soft);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sr-blog-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    font-size: 0.72rem;
    color: var(--srb-faint);
    line-height: 1.3;
}
.sr-blog-card__meta-sep {
    color: var(--srb-faint);
    opacity: 0.6;
    line-height: 1;
}
/* Used by related posts on blog-post.php (simpler footer than listing cards). */
.sr-blog-card__date {
    font-size: 0.75rem;
    color: var(--srb-faint);
    margin-top: 2px;
}
.sr-blog-card__actions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.sr-blog-card__bookmark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--srb-line);
    background: transparent;
    color: var(--srb-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}
.sr-blog-card:hover .sr-blog-card__bookmark {
    border-color: var(--srb-line-strong);
}
.sr-blog-card__arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--srb-gold);
    color: #ffffff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 6px 14px rgba(201, 147, 42, 0.32);
}
.sr-blog-card:hover .sr-blog-card__arrow,
.sr-blog-card:focus-visible .sr-blog-card__arrow {
    background: #b6831f;
    transform: translateX(2px);
}
.sr-blog-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--srb-read-cta, #b38b59);
    color: #ffffff;
    padding: 0.55rem 1rem 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(179, 139, 89, 0.35);
    transition: background 0.2s ease, transform 0.2s ease;
}
.sr-blog-card:hover .sr-blog-card__cta {
    background: #9c784c;
    transform: translateX(2px);
}

/* ── Variants ─────────────────────────────────────── */
/* Lead — full-bleed image with bottom gradient + overlay text (slot 1). */
.sr-blog-card--lead {
    display: flex;
    flex-direction: column;
    min-height: clamp(21rem, 52vw, 34rem);
    border-radius: calc(var(--srb-radius) + 1px);
}
.sr-blog-card--lead .sr-blog-card__media {
    position: absolute;
    inset: 0;
    margin: 0;
    border-radius: 0;
    aspect-ratio: auto;
    min-height: 100%;
}
.sr-blog-card--lead .sr-blog-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(22, 49, 42, 0.05) 0%,
        rgba(22, 49, 42, 0.12) 38%,
        rgba(22, 49, 42, 0.72) 72%,
        rgba(22, 49, 42, 0.94) 100%
    );
}
.sr-blog-card--lead .sr-blog-card__media img {
    position: relative;
    z-index: 0;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}
.sr-blog-card--lead .sr-blog-card__body {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: auto;
    padding: 1.5rem 1.45rem 1.35rem;
    background: transparent;
}
.sr-blog-card--lead .sr-blog-card__foot {
    margin-top: 0;
}
.sr-blog-card__cat--lead-inline {
    position: static;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 0.6rem;
}
.sr-blog-card--lead .sr-blog-card__title {
    font-size: clamp(1.28rem, 1.9vw, 1.6rem);
}
.sr-blog-card--lead .sr-blog-card__dek {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

/* Side — top-right vertical (light). */
.sr-blog-card--side .sr-blog-card__media {
    aspect-ratio: 16 / 9;
}

/* Dark / "ink" theme — slot 1 (lead) only. */
.sr-blog-card--ink {
    background: #16312a;
    border-color: #16312a;
    color: #fdf9f0;
}
.sr-blog-card--ink .sr-blog-card__title {
    color: #fdf9f0;
}
.sr-blog-card--ink:hover .sr-blog-card__title,
.sr-blog-card--ink:focus-visible .sr-blog-card__title {
    color: var(--srb-gold);
}
.sr-blog-card--ink .sr-blog-card__dek {
    color: rgba(253, 249, 240, 0.78);
}
.sr-blog-card--ink .sr-blog-card__divider {
    background: rgba(253, 249, 240, 0.14);
}
.sr-blog-card--ink .sr-blog-card__author-name {
    color: #fdf9f0;
}
.sr-blog-card--ink .sr-blog-card__meta,
.sr-blog-card--ink .sr-blog-card__meta-sep {
    color: rgba(253, 249, 240, 0.6);
}
.sr-blog-card--ink .sr-blog-card__avatar {
    background: linear-gradient(135deg, #c9932a 0%, #d8a443 100%);
    color: #16312a;
    box-shadow: 0 0 0 2px rgba(253, 249, 240, 0.12);
}
.sr-blog-card--ink .sr-blog-card__bookmark {
    border-color: rgba(253, 249, 240, 0.25);
    color: #fdf9f0;
}
.sr-blog-card--ink:hover .sr-blog-card__bookmark {
    border-color: rgba(253, 249, 240, 0.5);
}
.sr-blog-card--ink .sr-blog-card__cat {
    background: rgba(253, 249, 240, 0.92);
    color: #16312a;
    border-color: rgba(20, 38, 32, 0.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Wide — slot 3: full-width horizontal (image ~40%, body right). */
.sr-blog-card--wide {
    grid-column: 1 / -1;
}
.sr-blog-card--horizontal {
    flex-direction: column;
}
.sr-blog-card--wide .sr-blog-card__dek {
    -webkit-line-clamp: 4;
    line-clamp: 4;
}
@media (min-width: 560px) {
    .sr-blog-card--horizontal {
        flex-direction: row;
        align-items: stretch;
    }
    .sr-blog-card--horizontal .sr-blog-card__media {
        width: 40%;
        max-width: 420px;
        flex-shrink: 0;
        align-self: stretch;
        aspect-ratio: auto;
        margin: 10px 0 10px 10px;
        min-height: 200px;
    }
    .sr-blog-card--horizontal .sr-blog-card__body {
        padding: 1.45rem 1.5rem 1.35rem;
        flex: 1;
    }
}
@media (min-width: 1100px) {
    .sr-blog-card--lead .sr-blog-card__title {
        font-size: 1.55rem;
    }
}

/* ── Bottom CTA + paw-print divider ───────────────── */
.sr-blog-featured-cta {
    margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.sr-blog-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.65rem 0.65rem 1.4rem;
    background: var(--srb-green);
    color: #fdf9f0;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(20, 38, 32, 0.18);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.sr-blog-explore-btn:hover,
.sr-blog-explore-btn:focus-visible {
    background: #15302a;
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(20, 38, 32, 0.22);
    outline: none;
}
.sr-blog-explore-btn__arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--srb-gold);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}
.sr-blog-explore-btn:hover .sr-blog-explore-btn__arrow {
    background: #b6831f;
    transform: translateX(2px);
}
.sr-blog-paw-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    width: 100%;
    max-width: 26rem;
    color: rgba(166, 122, 64, 0.55);
}
.sr-blog-paw-divider__line {
    flex: 1;
    height: 1px;
    background: currentColor;
    opacity: 0.55;
}
.sr-blog-paw-divider__paw {
    color: var(--srb-gold);
    opacity: 0.85;
    transform: rotate(-18deg);
}

/* Mobile tightening for cards — consolidated in the block below. */

/* ── Grid ─────────────────────────────────────────── */
.sr-blog-grid-section {
    padding: clamp(2rem, 4vw, 3.25rem) 0 clamp(3.5rem, 7vw, 5.5rem);
    background: #f9f7f2;
}
.sr-blog-grid-section--related {
    padding-top: clamp(3rem, 6vw, 4.5rem);
    border-top: 1px solid var(--srb-line);
}
.sr-blog-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .sr-blog-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
    .sr-blog-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}
.sr-blog-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--srb-muted);
    border: 1px dashed var(--srb-line-strong);
    border-radius: var(--srb-radius);
    background: #fdfcf8;
}

/* ── Newsletter ───────────────────────────────────── */
.sr-blog-newsletter {
    background: linear-gradient(135deg, #1a3c34 0%, #0f2a24 100%);
    color: #fdf9f0;
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    position: relative;
    overflow: hidden;
}
.sr-blog-newsletter::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(201, 147, 42, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.sr-blog-newsletter__inner {
    position: relative;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 900px) {
    .sr-blog-newsletter__inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}
.sr-blog-newsletter__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--srb-gold);
    margin: 0 0 0.85rem;
}
.sr-blog-newsletter__title {
    font-family: var(--srb-font-serif);
    font-weight: 500;
    font-size: clamp(1.85rem, 4vw, 2.7rem);
    line-height: 1.1;
    margin: 0 0 0.85rem;
    color: #fdf9f0;
}
.sr-blog-newsletter__lede {
    color: rgba(253, 249, 240, 0.78);
    line-height: 1.65;
    margin: 0;
    max-width: 30rem;
}
.sr-blog-newsletter__form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: stretch;
}
.sr-blog-newsletter__field {
    flex: 1 1 16rem;
    display: flex;
    flex-direction: column;
}
.sr-blog-newsletter__field-label {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(253, 249, 240, 0.6);
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.sr-blog-newsletter__field input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(253, 249, 240, 0.22);
    color: #fdf9f0;
    border-radius: 4px;
    padding: 0.95rem 1.1rem;
    font: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.sr-blog-newsletter__field input::placeholder { color: rgba(253, 249, 240, 0.5); }
.sr-blog-newsletter__field input:focus {
    outline: none;
    border-color: var(--srb-gold);
    background: rgba(255, 255, 255, 0.1);
}
.sr-blog-newsletter__btn {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.5rem;
    background: var(--srb-gold);
    color: #1a1100;
    font-family: var(--srb-font-sans);
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}
.sr-blog-newsletter__btn:hover { background: #b6831f; transform: translateY(-1px); }
.sr-blog-newsletter__fineprint {
    flex: 1 1 100%;
    font-size: 0.78rem;
    color: rgba(253, 249, 240, 0.55);
    margin-top: 0.25rem;
}

/* ══════════════════════════════════════════════════════════════
   BLOG LISTING — Mobile enhancements (≤ 599 px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 599px) {

    /* ── Masthead ─────────────────────────────────────────── */
    .sr-blog-mast {
        padding-top: 1.5rem;
        padding-bottom: 0.6rem;
    }
    .sr-blog-mast__eyebrow {
        gap: 0.35rem 0.45rem;
        margin-bottom: 0.65rem;
        font-size: 0.65rem;
        letter-spacing: 0.14em;
    }
    .sr-blog-mast__eyebrow-line {
        width: 20px;
    }
    .sr-blog-mast__eyebrow-glyph {
        width: 20px;
        height: 20px;
    }
    .sr-blog-mast__title {
        font-size: clamp(1.75rem, 8.5vw, 2.5rem);
        margin-bottom: 0.35rem;
        line-height: 1.06;
    }
    .sr-blog-mast__sub {
        font-size: 0.86rem;
        line-height: 1.55;
    }

    /* ── Featured section ─────────────────────────────────── */
    .sr-blog-featured-section {
        padding-bottom: 1.5rem;
    }
    .sr-blog-featured-grid {
        gap: 0.85rem;
    }

    /* Lead card: more compact on small screens */
    .sr-blog-card--lead {
        min-height: 15rem;
    }
    .sr-blog-card--lead .sr-blog-card__title {
        font-size: 1.2rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    .sr-blog-card--lead .sr-blog-card__dek {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        font-size: 0.84rem;
        margin-bottom: 0.65rem;
    }
    .sr-blog-card--lead .sr-blog-card__body {
        padding: 0.9rem 1rem 0.85rem;
    }
    .sr-blog-card__cat--lead-inline {
        margin-bottom: 0.45rem;
        padding: 0.28rem 0.6rem;
        font-size: 0.58rem;
    }

    /* ── Topic filter — horizontal scroll strip ───────────── */
    .sr-blog-filter__inner {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
        padding: 0.7rem 0;
    }
    .sr-blog-filter__inner::-webkit-scrollbar {
        display: none;
    }
    .sr-blog-filter__label {
        flex-shrink: 0;
        padding-right: 0.6rem;
        white-space: nowrap;
        font-size: 0.65rem;
    }
    .sr-blog-filter__list {
        flex-wrap: nowrap;
        gap: 0.4rem;
        flex-shrink: 0;
        padding-right: 0.5rem;
    }
    .sr-blog-filter__chip {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 0.78rem;
        padding: 0.35rem 0.8rem;
    }

    /* ── Cards (general) ──────────────────────────────────── */
    .sr-blog-card:not(.sr-blog-card--lead) .sr-blog-card__media {
        margin: 7px 7px 0;
    }
    .sr-blog-card__media {
        aspect-ratio: 16 / 9;
    }
    .sr-blog-card__body {
        padding: 0.95rem 1rem 0.9rem;
    }
    .sr-blog-card__cat {
        top: 11px;
        left: 11px;
        padding: 0.28rem 0.6rem;
        font-size: 0.58rem;
        letter-spacing: 0.14em;
    }
    .sr-blog-card__title {
        font-size: clamp(1.05rem, 4.5vw, 1.3rem);
        margin-bottom: 0.4rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    .sr-blog-card__dek {
        font-size: 0.84rem;
        line-height: 1.5;
        margin-bottom: 0.7rem;
    }
    .sr-blog-card__divider {
        margin-bottom: 0.65rem;
    }
    .sr-blog-card__foot {
        gap: 0.5rem;
    }
    .sr-blog-card__author {
        gap: 0.5rem;
    }
    .sr-blog-card__avatar {
        width: 30px;
        height: 30px;
        font-size: 0.6rem;
    }
    .sr-blog-card__author-name {
        font-size: 0.72rem;
    }
    .sr-blog-card__meta {
        font-size: 0.63rem;
        gap: 0.2rem;
    }
    .sr-blog-card__bookmark {
        display: none;
    }
    .sr-blog-card__arrow {
        width: 28px;
        height: 28px;
    }
    .sr-blog-card__cta {
        padding: 0.42rem 0.8rem 0.42rem 0.9rem;
        font-size: 0.76rem;
        gap: 0.35rem;
    }

    /* ── Featured CTA row ─────────────────────────────────── */
    .sr-blog-featured-cta {
        margin-top: 1.1rem;
        gap: 0.8rem;
    }
    .sr-blog-explore-btn {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1rem 0.7rem 1.25rem;
        font-size: 0.84rem;
    }

    /* ── Grid & section head ──────────────────────────────── */
    .sr-blog-grid {
        gap: 0.85rem;
    }
    .sr-blog-grid-section {
        padding: 1.25rem 0 2.25rem;
    }
    .sr-blog-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        margin-bottom: 1.1rem;
        padding-bottom: 0.65rem;
    }
    .sr-blog-section-head__title {
        font-size: clamp(1.35rem, 6vw, 1.65rem);
    }
    .sr-blog-section-head__sub {
        font-size: 0.84rem;
    }
    .sr-blog-mast--inline {
        padding-top: 1.5rem;
        padding-bottom: 0.4rem;
        margin-bottom: 1rem;
    }
}

/* Very small screens (≤ 374 px) — extra tightening */
@media (max-width: 374px) {
    .sr-blog-mast__title {
        font-size: 1.65rem;
    }
    .sr-blog-card--lead {
        min-height: 13rem;
    }
    .sr-blog-card__body {
        padding: 0.85rem 0.85rem 0.8rem;
    }
    .sr-blog-card__title {
        font-size: 1rem;
    }
    .sr-blog-card--lead .sr-blog-card__body {
        padding: 0.75rem 0.85rem 0.7rem;
    }
}

/* ──────────────────────────────────────────────────
   Single post (blog-post.php) — Journal editorial
────────────────────────────────────────────────── */
.page-blog-post .sr-blog-post {
    background: #f9f7f2;
    position: relative;
}
.page-blog-post {
    scroll-padding-top: calc(var(--site-sticky-scroll-margin) + 1rem);
}

/* Reading progress (single post) */
.sr-post__read-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 10050;
    pointer-events: none;
    background: rgba(20, 20, 19, 0.06);
}
.sr-post__read-progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    max-width: 100%;
    background: linear-gradient(90deg, var(--srb-green) 0%, var(--srb-gold) 100%);
    transition: width 0.12s ease-out;
    border-radius: 0 2px 2px 0;
}

.sr-post {
    position: relative;
}

/* Article toolbar — static bar below site header (not sticky; avoids covering title/body) */
.sr-post__toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(20, 20, 19, 0.07);
    background: #f9f7f2;
    position: relative;
    z-index: 2;
}
.sr-post--hero .sr-post__toolbar {
    margin-bottom: 0;
}
.sr-post__toolbar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--srb-green);
    text-decoration: none;
    transition: color 0.15s ease, transform 0.15s ease;
}
.sr-post__toolbar-link:hover {
    color: #15302a;
}
.sr-post__toolbar-link svg {
    flex-shrink: 0;
    opacity: 0.9;
}
.sr-post__toolbar-sep {
    width: 1px;
    height: 1.1rem;
    background: rgba(20, 20, 19, 0.12);
    flex-shrink: 0;
}
.sr-post__toolbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--srb-ink);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(20, 20, 19, 0.1);
    border-radius: 999px;
    padding: 0.45rem 0.95rem 0.45rem 0.75rem;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.sr-post__toolbar-btn:hover {
    background: #fff;
    border-color: rgba(20, 20, 19, 0.16);
    color: var(--srb-green);
}
.sr-post__toolbar-btn:focus-visible {
    outline: 2px solid var(--srb-gold);
    outline-offset: 2px;
}
.sr-post__toolbar-btn svg {
    flex-shrink: 0;
    opacity: 0.75;
}

/* Hero cover + title over image */
.sr-post__hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(260px, 52vh, 560px);
    border-radius: 0 0 calc(var(--srb-radius) + 6px) calc(var(--srb-radius) + 6px);
    overflow: hidden;
    margin: 0 0 0;
    box-shadow: 0 20px 50px rgba(20, 20, 19, 0.1);
}
.sr-post__cover--hero {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    background: #14221e;
}
.sr-post__cover--hero .sr-post__cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 0;
    border: 0;
    box-shadow: none;
}
.sr-post__hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(12, 28, 24, 0.42) 0%,
        rgba(12, 28, 24, 0.1) 42%,
        rgba(12, 28, 24, 0.62) 100%
    );
}
.sr-post__header--over {
    position: relative;
    z-index: 2;
    background: transparent;
    border: 0;
    padding-bottom: 0;
}
.sr-post__header--over .sr-post__header-inner {
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
    padding-bottom: clamp(1.15rem, 3vw, 1.85rem);
}
.sr-post__header--over .sr-post__crumb {
    color: rgba(253, 249, 240, 0.72);
    margin-bottom: 0.85rem;
}
.sr-post__header--over .sr-post__crumb a {
    color: rgba(253, 249, 240, 0.92);
}
.sr-post__header--over .sr-post__crumb a:hover {
    color: #fff;
}
.sr-post__header--over .sr-post__title {
    color: #fdf9f0;
    text-shadow: 0 1px 28px rgba(0, 0, 0, 0.25);
}
.sr-post__header--over .sr-post__lede {
    color: rgba(253, 249, 240, 0.9);
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.2);
}
.sr-post__header--over .sr-post__meta {
    border-top-color: rgba(255, 255, 255, 0.22);
}
.sr-post__header--over .sr-post__author-name {
    color: #fdf9f0;
}
.sr-post__header--over .sr-post__author-sub {
    color: rgba(253, 249, 240, 0.78);
}
.sr-post__header--over .sr-post__meta-dot {
    color: rgba(253, 249, 240, 0.55);
}
.sr-post__header--over .sr-post__avatar {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}
.sr-post__header--over .sr-post__eyebrow {
    color: #e8c77a;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.sr-post__header-accent {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--srb-green) 0%, var(--srb-green) 42%, var(--srb-gold) 42%, var(--srb-gold) 100%);
    opacity: 0.92;
}
.sr-post__header-accent.sr-post__header-accent--over {
    width: 3rem;
    height: 2px;
    margin: clamp(0.85rem, 2.5vw, 1.35rem) auto 0.75rem;
    background: rgba(253, 249, 240, 0.55);
    border-radius: 2px;
    opacity: 1;
}

.sr-post__header {
    position: relative;
    background: linear-gradient(180deg, #fdfcf8 0%, #f9f7f2 55%, #f9f7f2 100%);
    border-bottom: 1px solid rgba(20, 20, 19, 0.06);
    padding-bottom: 0.25rem;
}

/* Hero header uses both .sr-post__header and .sr-post__header--over; base header
   styles must not paint a parchment panel over the image (breaks light-on-light). */
.sr-post__header.sr-post__header--over {
    background: transparent;
    border-bottom: 0;
    padding-bottom: 0;
}

.sr-post__header-inner {
    max-width: 44rem;
    padding-top: clamp(1.85rem, 4vw, 2.85rem);
    padding-bottom: clamp(1.35rem, 3vw, 2.15rem);
}

/* Toolbar sits above the title block — less top padding on the header */
.sr-post__toolbar + .sr-post__header .sr-post__header-inner {
    padding-top: clamp(1rem, 2.5vw, 1.65rem);
}

.sr-post__crumb {
    font-size: 0.75rem;
    color: var(--srb-faint);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}
.sr-post__crumb a {
    color: var(--srb-muted);
    text-decoration: none;
    transition: color 0.15s ease;
}
.sr-post__crumb a:hover {
    color: var(--srb-ink);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.sr-post__crumb-sep { margin: 0 0.4rem; opacity: 0.5; }

.sr-post__eyebrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--srb-gold);
    font-weight: 700;
    margin: 0 0 0.85rem;
}
.sr-post__eyebrow-line {
    display: inline-block;
    width: clamp(28px, 4vw, 48px);
    height: 1px;
    background: currentColor;
    opacity: 0.65;
}
.sr-post__eyebrow a {
    color: inherit;
    text-decoration: none;
}
.sr-post__eyebrow a:hover { text-decoration: underline; text-underline-offset: 3px; }

.sr-post__title {
    font-family: var(--srb-font-serif);
    font-weight: 500;
    font-size: clamp(1.75rem, 4.2vw, 2.65rem);
    line-height: 1.08;
    letter-spacing: -0.018em;
    margin: 0 0 0.75rem;
    color: var(--srb-ink);
    text-wrap: balance;
}

.sr-post__lede {
    font-size: clamp(0.98rem, 1.3vw, 1.12rem);
    line-height: 1.58;
    color: var(--srb-muted);
    margin: 0 0 1.25rem;
    max-width: 38rem;
    font-weight: 400;
}

.sr-post__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--srb-line);
}
.sr-post__author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}
.sr-post__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3c34 0%, #25564a 100%);
    color: #fdf9f0;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85);
}
.sr-post__author-text {
    display: flex;
    flex-direction: column;
    line-height: 1.28;
    gap: 3px;
    min-width: 0;
}
.sr-post__author-name {
    font-weight: 600;
    color: var(--srb-ink);
    font-size: 0.875rem;
}
.sr-post__author-sub {
    font-size: 0.75rem;
    color: var(--srb-faint);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
}
.sr-post__meta-dot {
    opacity: 0.55;
    user-select: none;
}

/* Hero image */
.sr-post__cover {
    margin: 0;
    padding: 0;
    background: #f9f7f2;
}
.sr-post__cover-inner {
    padding-top: clamp(1rem, 2.5vw, 1.75rem);
    padding-bottom: clamp(0.25rem, 1vw, 0.5rem);
}
.sr-post__cover-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--srb-radius) + 2px);
    box-shadow:
        0 4px 6px rgba(20, 20, 19, 0.04),
        0 20px 50px rgba(20, 20, 19, 0.08);
    max-height: min(72vh, 560px);
    object-fit: cover;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(20, 20, 19, 0.06);
}

.sr-post__content-wrap {
    background: #f9f7f2;
}

.sr-post__body {
    max-width: 40rem;
    margin: 0 auto;
    padding-top: clamp(1.5rem, 3.5vw, 2.5rem);
    padding-bottom: clamp(2.25rem, 4.5vw, 3.5rem);
    font-size: clamp(0.9375rem, 1vw, 1rem);
    line-height: 1.75;
    color: var(--srb-ink-soft);
    font-weight: 400;
}

.sr-post__body > *:first-child { margin-top: 0; }
.sr-post__body > * + * { margin-top: 1.1em; }
.sr-post__body p {
    margin: 0 0 1.2em;
    hyphens: auto;
    -webkit-hyphens: auto;
}
.sr-post__body h2 {
    font-family: var(--srb-font-serif);
    font-weight: 500;
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    line-height: 1.2;
    color: var(--srb-ink);
    margin-top: 2em;
    margin-bottom: 0.45em;
    letter-spacing: -0.01em;
    text-wrap: balance;
}
.sr-post__body h3 {
    font-family: var(--srb-font-serif);
    font-weight: 500;
    font-size: clamp(1.08rem, 1.75vw, 1.28rem);
    line-height: 1.24;
    color: var(--srb-ink);
    margin-top: 1.65em;
    margin-bottom: 0.4em;
    letter-spacing: -0.008em;
}
.sr-post__body a {
    color: var(--srb-green);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}
.sr-post__body a:hover { color: var(--srb-gold); }
.sr-post__body a:focus-visible {
    outline: 2px solid var(--srb-gold);
    outline-offset: 2px;
    border-radius: 2px;
}
.sr-post__body ul,
.sr-post__body ol {
    padding-left: 1.35rem;
    margin: 0 0 1.2em;
}
.sr-post__body li + li { margin-top: 0.45em; }
.sr-post__body li::marker { color: var(--srb-gold); }
.sr-post__body blockquote {
    margin: 1.5em 0;
    padding: 0.85rem 1.1rem 0.85rem 1.2rem;
    border-left: 3px solid var(--srb-gold);
    border-radius: 0 var(--srb-radius) var(--srb-radius) 0;
    background: rgba(201, 147, 42, 0.06);
    font-family: var(--srb-font-serif);
    font-style: italic;
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    line-height: 1.46;
    color: var(--srb-ink);
}
.sr-post__body figure {
    margin: 2em 0;
}
.sr-post__body img,
.sr-post__body figure img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--srb-radius);
    margin: 1.5em auto;
    box-shadow: 0 12px 32px rgba(20, 20, 19, 0.08);
}
.sr-post__body figcaption {
    font-size: 0.78rem;
    color: var(--srb-muted);
    margin-top: 0.45rem;
    text-align: center;
    font-style: italic;
}
.sr-post__body hr {
    border: 0;
    border-top: 1px solid var(--srb-line);
    margin: 2.75em 0;
}
.sr-post__body code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    background: #eee8dc;
    padding: 0.12em 0.38em;
    border-radius: 4px;
    font-size: 0.88em;
    border: 1px solid rgba(20, 20, 19, 0.06);
}
.sr-post__body pre {
    overflow-x: auto;
    padding: 1rem 1.15rem;
    border-radius: var(--srb-radius);
    background: #1a2420;
    color: #eef4f0;
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 1.5em 0;
    border: 1px solid rgba(20, 20, 19, 0.12);
}
.sr-post__body pre code {
    background: none;
    border: 0;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

.sr-post__back-row {
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.sr-post__back {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #fdf9f0;
    font-weight: 600;
    font-size: 0.84rem;
    text-decoration: none;
    background: var(--srb-green);
    border: 1px solid var(--srb-green);
    padding: 0.72rem 1.45rem 0.72rem 1.35rem;
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(20, 38, 32, 0.18);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.sr-post__back:hover {
    background: #15302a;
    border-color: #15302a;
    color: #fdf9f0;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(20, 38, 32, 0.22);
}
.sr-post__back:focus-visible {
    outline: 2px solid var(--srb-gold);
    outline-offset: 3px;
}

/* ══════════════════════════════════════════════════════════════
   BLOG POST — Mobile enhancements (≤ 599 px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 599px) {

    /* ── Page gutters ─────────────────────────────────────── */
    .page-blog-post .container {
        padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    }

    /* ── Hero cover ───────────────────────────────────────── */
    .sr-post__hero {
        min-height: clamp(220px, 55vh, 360px);
        border-radius: 0;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .sr-post__cover:not(.sr-post__cover--hero) .sr-post__cover-img {
        max-height: none;
        aspect-ratio: 4 / 3;
    }
    .sr-post__hero-shade {
        background: linear-gradient(
            180deg,
            rgba(12, 28, 24, 0.35) 0%,
            rgba(12, 28, 24, 0.15) 35%,
            rgba(12, 28, 24, 0.72) 72%,
            rgba(12, 28, 24, 0.92) 100%
        );
    }

    /* ── Header (hero overlay + plain) ────────────────────── */
    .sr-post__header-inner {
        padding-top: 1rem;
        padding-bottom: 0.85rem;
    }
    .sr-post__toolbar + .sr-post__header .sr-post__header-inner {
        padding-top: 0.65rem;
    }
    .sr-post__header--over .sr-post__header-inner {
        padding-top: 0.65rem;
        padding-bottom: 0.85rem;
    }
    .sr-post__header-accent.sr-post__header-accent--over {
        margin-top: 0.45rem;
        margin-bottom: 0.35rem;
        width: 2rem;
    }

    /* Breadcrumb */
    .sr-post__crumb {
        font-size: 0.68rem;
        margin-bottom: 0.5rem;
        line-height: 1.35;
    }
    .sr-post__crumb-sep {
        margin: 0 0.2rem;
    }
    .sr-post__header--over .sr-post__crumb {
        margin-bottom: 0.45rem;
    }

    /* Eyebrow */
    .sr-post__eyebrow {
        gap: 0.3rem;
        font-size: 0.58rem;
        letter-spacing: 0.14em;
        margin-bottom: 0.45rem;
    }
    .sr-post__eyebrow-line {
        width: 14px;
    }

    /* Title & lede */
    .sr-post__title {
        font-size: clamp(1.28rem, 5.8vw, 1.55rem);
        line-height: 1.12;
        margin-bottom: 0.4rem;
        letter-spacing: -0.012em;
    }
    .sr-post__header--over .sr-post__title {
        font-size: clamp(1.22rem, 5.4vw, 1.48rem);
        line-height: 1.14;
        margin-bottom: 0.35rem;
    }
    .sr-post__lede {
        font-size: 0.84rem;
        line-height: 1.5;
        margin-bottom: 0.65rem;
    }
    .sr-post__header--over .sr-post__lede {
        font-size: 0.8rem;
        line-height: 1.48;
        margin-bottom: 0.55rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Author meta */
    .sr-post__meta {
        padding-top: 0.65rem;
        gap: 0.5rem;
    }
    .sr-post__header--over .sr-post__meta {
        padding-top: 0.55rem;
        border-top-color: rgba(255, 255, 255, 0.18);
    }
    .sr-post__author {
        gap: 0.45rem;
    }
    .sr-post__avatar {
        width: 30px;
        height: 30px;
        font-size: 0.62rem;
    }
    .sr-post__author-name {
        font-size: 0.78rem;
    }
    .sr-post__author-sub {
        font-size: 0.66rem;
        gap: 0.12rem;
        line-height: 1.35;
    }

    /* ── Toolbar ──────────────────────────────────────────── */
    .sr-post__toolbar {
        gap: 0.4rem 0.55rem;
        padding-top: 0.55rem;
        padding-bottom: 0.55rem;
    }
    .sr-post__toolbar-link {
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    .sr-post__toolbar-link svg {
        width: 13px;
        height: 13px;
    }
    .sr-post__toolbar-btn {
        font-size: 0.75rem;
        padding: 0.32rem 0.65rem 0.32rem 0.55rem;
        gap: 0.3rem;
    }
    .sr-post__toolbar-btn svg {
        width: 13px;
        height: 13px;
    }
    .sr-post__toolbar-sep {
        height: 0.85rem;
    }

    /* ── Article body ─────────────────────────────────────── */
    .sr-post__content-wrap {
        padding-top: 0;
    }
    .sr-post__body {
        padding-top: 0.85rem;
        padding-bottom: 1.5rem;
        font-size: 0.9rem;
        line-height: 1.68;
    }
    .sr-post__body > * + * {
        margin-top: 0.85em;
    }
    .sr-post__body p {
        margin-bottom: 0.85em;
    }
    .sr-post__body h2 {
        font-size: clamp(1.15rem, 5vw, 1.38rem);
        margin-top: 1.5em;
        margin-bottom: 0.35em;
        line-height: 1.22;
    }
    .sr-post__body h3 {
        font-size: clamp(1rem, 4.2vw, 1.15rem);
        margin-top: 1.25em;
        margin-bottom: 0.3em;
    }
    .sr-post__body ul,
    .sr-post__body ol {
        padding-left: 1.05rem;
        margin-bottom: 0.85em;
    }
    .sr-post__body li + li {
        margin-top: 0.3em;
    }
    .sr-post__body blockquote {
        margin: 1.1em 0;
        padding: 0.65rem 0.75rem 0.65rem 0.85rem;
        font-size: 0.94rem;
        line-height: 1.42;
    }
    .sr-post__body figure {
        margin: 1.15em 0;
    }
    .sr-post__body img,
    .sr-post__body figure img {
        margin: 0.85em auto;
        border-radius: calc(var(--srb-radius) - 1px);
    }
    .sr-post__body figcaption {
        font-size: 0.7rem;
        margin-top: 0.3rem;
    }
    .sr-post__body hr {
        margin: 1.5em 0;
    }
    .sr-post__body pre {
        padding: 0.65rem 0.75rem;
        font-size: 0.78rem;
        line-height: 1.48;
        margin: 1em 0;
    }

    /* ── Back button & related section ────────────────────── */
    .sr-post__back-row {
        padding: 0.75rem 0 1.75rem;
    }
    .sr-post__back {
        font-size: 0.8rem;
        padding: 0.55rem 1rem 0.55rem 0.95rem;
        gap: 0.35rem;
    }
    .sr-post__back svg {
        width: 13px;
        height: 13px;
    }
    .sr-blog-grid-section--related {
        padding-top: 1.35rem;
        padding-bottom: 1.75rem;
    }
    .sr-blog-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        margin-bottom: 0.85rem;
        padding-bottom: 0.55rem;
    }
    .sr-blog-section-head__title {
        font-size: clamp(1.2rem, 5.5vw, 1.45rem);
    }
    .sr-blog-section-head__sub {
        font-size: 0.8rem;
    }
}

/* Very small screens (≤ 374 px) — extra tightening */
@media (max-width: 374px) {
    .sr-post__title,
    .sr-post__header--over .sr-post__title {
        font-size: 1.18rem;
    }
    .sr-post__lede,
    .sr-post__header--over .sr-post__lede {
        font-size: 0.76rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    .sr-post__body {
        font-size: 0.875rem;
        line-height: 1.65;
        padding-top: 0.75rem;
        padding-bottom: 1.25rem;
    }
    .sr-post__body h2 {
        font-size: 1.08rem;
    }
    .sr-post__body h3 {
        font-size: 0.98rem;
    }
    .sr-post__hero {
        min-height: clamp(240px, 62vh, 360px);
    }
    .sr-post__header--over .sr-post__header-inner {
        padding-top: 0.5rem;
        padding-bottom: 0.7rem;
    }
    .sr-post__toolbar {
        gap: 0.3rem 0.45rem;
    }
}


/* ══════════════════════════════════════════════════════════════
   Single post — magazine redesign (rail + TOC + share + CTA)
══════════════════════════════════════════════════════════════ */

/* Toolbar: push date / read-time to the right */
.sr-post__toolbar-meta {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--srb-muted);
}
.sr-post__toolbar-dot { opacity: 0.5; }

/* Two-column layout */
.sr-post__content-wrap { background: #f9f7f2; }
.sr-post__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3.25rem);
    padding-top: clamp(1.75rem, 4vw, 3rem);
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}
@media (min-width: 1000px) {
    .sr-post__layout {
        grid-template-columns: 15.5rem minmax(0, 44rem);
        justify-content: center;
        align-items: start;
    }
}

.sr-post__main { min-width: 0; }
.sr-post__rail {
    min-width: 0;
    align-self: start;
}
.sr-post__rail-inner {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}
@media (min-width: 1000px) {
    /* Sticky left rail — follows scroll while the article body moves */
    .sr-post__rail {
        position: sticky;
        top: calc(var(--site-sticky-scroll-margin) + 0.75rem);
        max-height: calc(100vh - var(--site-sticky-scroll-margin) - 1.25rem);
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: rgba(26, 60, 52, 0.35) transparent;
        padding-bottom: 0.5rem;
    }
    .sr-post__rail::-webkit-scrollbar {
        width: 5px;
    }
    .sr-post__rail::-webkit-scrollbar-thumb {
        background: rgba(26, 60, 52, 0.28);
        border-radius: 4px;
    }
}

/* Rail author */
.sr-post__rail-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.sr-post__rail-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a3c34 0%, #25564a 100%);
    color: #fdf9f0;
    font-weight: 700;
    font-size: 0.82rem;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.85), 0 4px 12px rgba(20, 38, 32, 0.16);
}
.sr-post__rail-author-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--srb-ink);
    line-height: 1.2;
}
.sr-post__rail-author-role {
    display: block;
    font-size: 0.72rem;
    color: var(--srb-faint);
    margin-top: 2px;
}

/* Table of contents */
.sr-post__toc {
    border-top: 1px solid var(--srb-line);
    padding-top: 1.2rem;
}
.sr-post__toc-title {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--srb-faint);
    margin: 0 0 0.7rem;
}
.sr-post__toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
@media (min-width: 1000px) {
    .sr-post__toc-list {
        max-height: min(38vh, 280px);
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: rgba(26, 60, 52, 0.25) transparent;
        padding-right: 0.15rem;
    }
    .sr-post__toc-list::-webkit-scrollbar {
        width: 4px;
    }
    .sr-post__toc-list::-webkit-scrollbar-thumb {
        background: rgba(26, 60, 52, 0.22);
        border-radius: 4px;
    }
}
.sr-post__toc-link {
    display: block;
    padding: 0.36rem 0 0.36rem 0.9rem;
    border-left: 2px solid var(--srb-line);
    font-size: 0.82rem;
    line-height: 1.35;
    color: var(--srb-muted);
    text-decoration: none;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.sr-post__toc-li--l3 .sr-post__toc-link {
    padding-left: 1.55rem;
    font-size: 0.78rem;
}
.sr-post__toc-link:hover { color: var(--srb-ink); }
.sr-post__toc-link.is-active {
    color: var(--srb-green);
    border-left-color: var(--srb-gold);
    font-weight: 600;
    background: rgba(201, 147, 42, 0.08);
}

/* Share */
.sr-post__share {
    border-top: 1px solid var(--srb-line);
    padding-top: 1.2rem;
}
.sr-post__share-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--srb-faint);
    margin-bottom: 0.7rem;
}
.sr-post__share-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.sr-post__share-btn {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--srb-ink);
    border: 1px solid var(--srb-line-strong);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.sr-post__share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(20, 20, 19, 0.14);
}
.sr-post__share-btn:focus-visible {
    outline: 2px solid var(--srb-gold);
    outline-offset: 2px;
}
.sr-post__share-btn--wa:hover { background: #25d366; border-color: #25d366; color: #fff; }
.sr-post__share-btn--x:hover  { background: #111; border-color: #111; color: #fff; }
.sr-post__share-btn--fb:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.sr-post__share-btn--copy:hover { background: var(--srb-green); border-color: var(--srb-green); color: #fff; }
.sr-post__share-btn.is-copied { background: var(--srb-green); border-color: var(--srb-green); color: #fff; }
.sr-post__share-copied {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.68rem;
    font-weight: 600;
    color: #fdf9f0;
    background: var(--srb-ink);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
}
.sr-post__share-btn.is-copied .sr-post__share-copied { opacity: 1; }

/* Main column: let body fill the column + add a drop cap */
.sr-post__layout .sr-post__body {
    max-width: none;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.sr-post__body h2,
.sr-post__body h3 {
    scroll-margin-top: calc(var(--site-sticky-scroll-margin) + 1.25rem);
}
.sr-post__body--lead > p:first-child::first-letter {
    float: left;
    font-family: var(--srb-font-serif);
    font-weight: 600;
    font-size: 3.4em;
    line-height: 0.78;
    padding: 0.04em 0.14em 0 0;
    color: var(--srb-green);
}

/* Standfirst (intro callout from excerpt) */
.sr-post__standfirst {
    display: flex;
    gap: 0.95rem;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(26, 60, 52, 0.05), rgba(201, 147, 42, 0.07));
    border: 1px solid var(--srb-line);
    border-left: 3px solid var(--srb-gold);
    border-radius: calc(var(--srb-radius) + 2px);
    padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1.1rem, 3vw, 1.55rem);
    margin: 0 0 clamp(1.5rem, 3.5vw, 2.25rem);
}
.sr-post__standfirst-mark { color: var(--srb-gold); flex-shrink: 0; margin-top: 0.15rem; }
.sr-post__standfirst-text {
    margin: 0;
    font-family: var(--srb-font-serif);
    font-style: italic;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.5;
    color: var(--srb-ink);
}

/* Topics / filed-under chips */
.sr-post__topics {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: clamp(1.75rem, 3.5vw, 2.25rem);
    padding-top: clamp(1.25rem, 3vw, 1.6rem);
    border-top: 1px solid var(--srb-line);
}
.sr-post__topics-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--srb-faint);
    font-weight: 700;
    margin-right: 0.2rem;
}
.sr-post__topic {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--srb-green);
    text-decoration: none;
    background: rgba(26, 60, 52, 0.06);
    border: 1px solid var(--srb-line);
    padding: 0.34rem 0.85rem;
    border-radius: 999px;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.sr-post__topic:hover { background: var(--srb-green); color: #fdf9f0; border-color: var(--srb-green); }

/* About the author */
.sr-post__byline {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: clamp(1.75rem, 4vw, 2.5rem);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid var(--srb-line);
}
.sr-post__byline-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a3c34 0%, #25564a 100%);
    color: #fdf9f0;
    font-weight: 700;
    font-size: 0.98rem;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.85), 0 6px 16px rgba(20, 38, 32, 0.16);
}
.sr-post__byline-kicker {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--srb-faint);
    font-weight: 700;
}
.sr-post__byline-name {
    display: block;
    font-family: var(--srb-font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--srb-ink);
    margin: 0.15rem 0 0.4rem;
}
.sr-post__byline-bio {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--srb-muted);
}

/* Plan-your-trip CTA */
.sr-post__cta {
    position: relative;
    overflow: hidden;
    margin-top: clamp(1.75rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, #1a3c34 0%, #244a41 100%);
    color: #fdf9f0;
    border-radius: calc(var(--srb-radius) + 8px);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
}
.sr-post__cta::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(201, 147, 42, 0.28) 0%, rgba(201, 147, 42, 0) 70%);
    pointer-events: none;
}
.sr-post__cta-body { position: relative; z-index: 1; max-width: 30rem; }
.sr-post__cta-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: #e8c77a;
}
.sr-post__cta-title {
    font-family: var(--srb-font-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 600;
    margin: 0.3rem 0 0.5rem;
    color: #fff;
}
.sr-post__cta-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(253, 249, 240, 0.82);
}
.sr-post__cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.sr-post__cta-btn {
    padding: 0.72rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.86rem;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
.sr-post__cta-btn--primary { background: var(--srb-gold); color: #1a2420; }
.sr-post__cta-btn--primary:hover { background: #deb24f; transform: translateY(-1px); }
.sr-post__cta-btn--ghost { color: #fdf9f0; border: 1px solid rgba(253, 249, 240, 0.35); }
.sr-post__cta-btn--ghost:hover { background: rgba(253, 249, 240, 0.12); }

/* Mobile: hide sticky TOC, keep author + share compact */
@media (max-width: 999px) {
    .sr-post__toc { display: none; }
    .sr-post__rail-inner { gap: 1.1rem; }
    .sr-post__share { padding-top: 1rem; }
}
@media (max-width: 599px) {
    .sr-post__standfirst {
        gap: 0.7rem;
        padding: 0.95rem 1rem;
    }
    .sr-post__standfirst-text { font-size: 1.02rem; }
    .sr-post__body--lead > p:first-child::first-letter { font-size: 2.9em; }
    .sr-post__cta { flex-direction: column; align-items: flex-start; }
    .sr-post__cta-actions { width: 100%; }
    .sr-post__cta-btn { flex: 1 1 auto; text-align: center; }
    .sr-post__byline-avatar { width: 46px; height: 46px; font-size: 0.88rem; }
    .sr-post__byline-name { font-size: 1.12rem; }
}

/* ══════════════════════════════════════════════════════════════
   HOMEPAGE — performance hints (paint less of the offscreen tree)
══════════════════════════════════════════════════════════════ */
body.page-home .tours-section,
body.page-home .home-value-strip,
body.page-home .site-footer-home {
    content-visibility: auto;
    contain-intrinsic-size: 1px 600px;
}

/* Avoid CLS on hero image while it decodes */
body.page-home .hero--home {
    aspect-ratio: auto;
}

/* ══════════════════════════════════════════════════════════════
   HOMEPAGE — index-only layout tweaks
══════════════════════════════════════════════════════════════ */

/* Footer CTA logo — proportional ring + image */
body.page-home .site-footer-home__cta-logo-ring {
    width: 96px;
    height: 96px;
    padding: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

body.page-home .site-footer-home__cta-logo-ring img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Popular tours / safaris — GYG-style horizontal cards (peek next card) */
@media (max-width: 768px) {
    body.page-home {
        --hp-tour-card-width: min(20rem, calc(100vw - 4.25rem));
    }

    body.page-home .tours-slider {
        margin-inline: -1rem;
        width: calc(100% + 2rem);
    }

    body.page-home .tours-track {
        padding-inline: 1rem;
        padding-bottom: 0.5rem;
        scroll-padding-inline: 1rem;
        gap: 0.75rem;
        scrollbar-width: none;
    }

    body.page-home .tours-track::-webkit-scrollbar {
        display: none;
    }

    body.page-home .tour-card {
        flex: 0 0 var(--hp-tour-card-width);
        width: var(--hp-tour-card-width);
        max-width: var(--hp-tour-card-width);
        box-sizing: border-box;
        border-radius: 12px;
        scroll-snap-align: start;
    }

    body.page-home .tour-card__img-wrap {
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

/* Phone refinements (≤480px) — desktop/tablet above 480px unchanged */
@media (max-width: 480px) {
    body.page-home .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* ── Hero ─────────────────────────────────────────────────── */
    body.page-home .hero.hero--home {
        min-height: 0;
    }

    body.page-home .hero__content--home {
        padding-top: 1.15rem;
        padding-bottom: 1.35rem;
    }

    body.page-home .hero__title.hero__title--home {
        font-size: clamp(1.95rem, 7.8vw, 2.35rem);
        line-height: 1.1;
        margin-bottom: 0.55rem;
        letter-spacing: 0.01em;
        font-weight: 700;
    }

    body.page-home .hero__subtitle--home.hero__subtitle--lead {
        font-size: 0.8125rem;
        line-height: 1.45;
        max-width: 100%;
        margin-bottom: 0.4rem;
        font-weight: 500;
    }

    body.page-home .hero__subtitle--home.hero__subtitle--muted {
        font-size: 0.75rem;
        line-height: 1.45;
        max-width: 100%;
        margin-bottom: 0.85rem;
        font-weight: 400;
    }

    body.page-home .hero__search--home {
        flex-direction: row;
        flex-wrap: nowrap;
        border-radius: 999px;
        padding: 0.3rem 0.3rem 0.3rem 0.45rem;
        gap: 0;
    }

    body.page-home .hero__search--home .search-seg {
        padding: 0.4rem 0.5rem 0.35rem;
    }

    body.page-home .hero__search--home .search-seg:first-child {
        padding-left: 0.55rem;
    }

    body.page-home .hero__search--home .search-seg--destination {
        flex: 0 1 34%;
    }

    body.page-home .hero__search--home .search-seg__label {
        display: none;
    }

    body.page-home .hero__search--home .search-seg__input,
    body.page-home .hero__search--home .search-seg__select {
        font-size: 0.8125rem;
    }

    body.page-home .hero__search--home .search-divider {
        width: 1px;
        height: auto;
        margin: 0.4rem 0;
    }

    body.page-home .hero__search--home .search-btn--home {
        font-size: 0.75rem;
        padding: 0.6rem 0.7rem;
        margin: 0 0 0 0.25rem;
        width: auto;
    }

    /* Trust strip — horizontal scroll (avoids cramped 2-col grid + orphan row) */
    body.page-home .hero__stats {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.5rem;
        margin-top: 0.85rem;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
        padding-bottom: 0.2rem;
        scrollbar-width: none;
    }

    body.page-home .hero__stats::-webkit-scrollbar {
        display: none;
    }

    body.page-home .hero__stat-sep {
        display: none;
    }

    body.page-home .hero__stat {
        flex: 0 0 auto;
        gap: 0.45rem;
        min-width: 0;
        max-width: 10.5rem;
        padding: 0.5rem 0.6rem;
        border-radius: 10px;
        background: rgba(8, 12, 10, 0.42);
        border: 1px solid rgba(255, 255, 255, 0.12);
        scroll-snap-align: start;
    }

    body.page-home .hero__stat--ta {
        padding: 0;
        max-width: none;
        background: transparent;
        border: none;
        scroll-snap-align: start;
    }

    body.page-home .hero__ta-img {
        height: 40px;
    }

    body.page-home .hero__stat-icon {
        width: 28px;
        height: 28px;
    }

    body.page-home .hero__stat-icon svg {
        width: 15px;
        height: 15px;
    }

    body.page-home .hero__stat-text strong {
        font-size: 0.6875rem;
        line-height: 1.3;
        display: block;
    }

    body.page-home .hero__stat-text small {
        font-size: 0.625rem;
        line-height: 1.35;
        display: block;
        margin-top: 0.1rem;
    }

    /* ── Top destinations ─────────────────────────────────────── */
    body.page-home .home-top-dest.section {
        padding: 1.35rem 0 1rem;
    }

    body.page-home .home-top-dest__heading {
        font-size: 1.125rem;
        line-height: 1.35;
        margin-bottom: 0.4rem;
        padding-inline: 0;
        max-width: 20rem;
        margin-left: auto;
        margin-right: auto;
    }

    body.page-home .home-top-dest__sub {
        font-size: 0.8125rem;
        line-height: 1.5;
        margin-bottom: 0.85rem;
        max-width: 100%;
        padding-inline: 0.25rem;
    }

    body.page-home .home-top-dest__slider {
        margin-inline: -1rem;
        width: calc(100% + 2rem);
    }

    body.page-home .home-dest-arrow {
        display: none;
    }

    body.page-home .home-top-dest__track {
        gap: 0.75rem;
        padding-inline: 1rem;
        padding-bottom: 0.35rem;
        scroll-padding-inline: 1rem;
    }

    body.page-home .home-top-dest__slide {
        flex: 0 0 min(11.25rem, calc(100vw - 5.5rem));
    }

    body.page-home .home-dest-card {
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    body.page-home .home-dest-card:hover {
        transform: none;
    }

    body.page-home .home-dest-card__media {
        aspect-ratio: 3 / 4;
        border-radius: 12px;
    }

    body.page-home .home-dest-card__copy {
        left: 0.65rem;
        right: 0.65rem;
        bottom: 0.65rem;
        gap: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    body.page-home .home-dest-card__icon {
        display: none;
    }

    body.page-home .home-dest-card__body {
        gap: 0.15rem;
    }

    body.page-home .home-dest-card__name {
        font-size: 0.9375rem;
        line-height: 1.2;
    }

    body.page-home .home-dest-card__blurb {
        font-size: 0.6875rem;
        line-height: 1.35;
    }

    body.page-home .home-dest-card__cta {
        font-size: 0.6875rem;
        margin-top: 0.35rem;
    }

    /* ── Value strip ──────────────────────────────────────────── */
    body.page-home .home-value-strip {
        padding: 1rem 0;
    }

    body.page-home .home-value-strip__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem 0.75rem;
        align-items: start;
    }

    body.page-home .home-value-strip__item {
        gap: 0.55rem;
        align-items: flex-start;
    }

    body.page-home .home-value-strip__icon {
        width: 2.15rem;
        height: 2.15rem;
        margin-top: 0;
    }

    body.page-home .home-value-strip__icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    body.page-home .home-value-strip__copy {
        padding-top: 0.1rem;
        gap: 0.15rem;
    }

    body.page-home .home-value-strip__title {
        font-size: 0.8125rem;
        line-height: 1.25;
    }

    body.page-home .home-value-strip__desc {
        font-size: 0.6875rem;
        line-height: 1.3;
    }

    /* ── Popular tours / safaris ──────────────────────────────── */
    body.page-home .tours-section {
        padding: 1.35rem 0 1.75rem;
    }

    body.page-home .tours-heading {
        font-size: 1.35rem;
        margin-bottom: 0.85rem;
        line-height: 1.2;
    }

    body.page-home .tours-slider {
        margin-bottom: 1.1rem;
    }

    body.page-home {
        --hp-tour-card-width: min(19rem, calc(100vw - 3.75rem));
    }

    body.page-home .tours-track {
        gap: 0.65rem;
    }

    body.page-home .tour-card__badge {
        top: 0.6rem;
        left: 0.6rem;
        font-size: 0.625rem;
        padding: 0.22rem 0.55rem;
    }

    body.page-home .tour-card__img-meta {
        padding: 0.45rem 0.65rem 0.55rem;
    }

    body.page-home .img-meta-item {
        font-size: 0.6875rem;
        gap: 0.2rem;
    }

    body.page-home .tour-card__body {
        padding: 0.75rem 0.85rem 0.55rem;
    }

    body.page-home .tour-card__title {
        font-size: 0.9375rem;
        margin-bottom: 0.35rem;
    }

    body.page-home .tour-card__location {
        font-size: 0.75rem;
    }

    body.page-home .tour-card__footer {
        padding: 0.65rem 0.85rem 0.75rem;
    }

    body.page-home .card-price-from--compare .card-price-from__sale,
    body.page-home .card-price-from:not(.card-price-from--compare) .card-price-from__sale {
        font-size: 0.9375rem;
    }

    body.page-home .tour-card__cta {
        font-size: 0.8125rem;
        padding: 0.45rem 0.75rem;
    }

    body.page-home .btn-view-all {
        font-size: 0.875rem;
        padding: 0.7rem 1.15rem;
        width: 100%;
        max-width: 100%;
        display: inline-flex;
        justify-content: center;
    }

    /* ── Homepage footer stats + CTA ─────────────────────────── */
    body.page-home .site-footer-home__stats {
        padding: 1.35rem 0;
        background-attachment: scroll;
    }

    body.page-home .site-footer-home__stats-inner {
        gap: 0.55rem;
    }

    body.page-home .site-footer-home__stat {
        padding: 0.65rem 0.45rem;
    }

    body.page-home .site-footer-home__stat-icon {
        margin-bottom: 0.45rem;
    }

    body.page-home .site-footer-home__stat-icon svg {
        width: 28px;
        height: 28px;
    }

    body.page-home .site-footer-home__stat-num {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    body.page-home .site-footer-home__stat-label {
        font-size: 0.6875rem;
        line-height: 1.35;
        max-width: none;
        font-style: normal;
    }

    body.page-home .site-footer-home__cta {
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }

    body.page-home .site-footer-home__cta-logo-ring {
        width: 84px;
        height: 84px;
        padding: 0.5rem;
    }

    body.page-home .site-footer-home__cta-brand-text {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    body.page-home .site-footer-home__cta-title {
        font-size: 1.35rem;
    }

    body.page-home .site-footer-home__cta-sub {
        font-size: 0.8125rem;
    }

    body.page-home .site-footer-home__cta-phone {
        font-size: 1.15rem;
    }

    body.page-home .site-footer-home__btn {
        font-size: 0.8125rem;
        padding: 0.65rem 0.85rem;
    }

    body.page-home .site-footer-home__col-title {
        font-size: 0.9375rem;
    }

    body.page-home .site-footer-home__links a {
        font-size: 0.8125rem;
        padding: 0.12rem 0;
    }
}

/* ══════════════════════════════════════════════════════════════
   CUSTOM TOUR PAGE (ctt-*)
══════════════════════════════════════════════════════════════ */

.ctt-check-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.65rem;
}

.ctt-check {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    color: var(--clr-text);
    cursor: pointer;
}

.ctt-check input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--clr-primary);
    flex-shrink: 0;
}

.ctt-check-empty {
    font-size: 0.88rem;
    color: var(--clr-muted);
    margin: 0 0 0.65rem;
    line-height: 1.5;
}

.ctt-check--other {
    margin-top: 0.65rem;
}

.ctt-other-input {
    display: none;
    margin-top: 0.5rem;
}

.ctt-other-input--visible,
.ctt-other-input:not([hidden]) {
    display: block;
}

.ctt-interest-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.ctt-interest {
    position: relative;
    cursor: pointer;
}

.ctt-interest input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.ctt-interest span {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    border: 1.5px solid var(--clr-border);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--clr-text);
    background: var(--clr-white);
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.ctt-interest input:checked + span,
.ctt-interest:hover span {
    border-color: var(--clr-primary);
    background: rgba(26, 60, 52, 0.08);
    color: var(--clr-primary);
}

.ctt-promo-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.ctt-promo-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.ctt-promo-card__body {
    background: var(--clr-primary);
    color: var(--clr-white);
    padding: 1.1rem 1.25rem 1.25rem;
}

.ctt-promo-card__title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.ctt-promo-card__text {
    font-size: 0.82rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 0.85rem;
}

.ctt-promo-card__btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--clr-accent);
    color: var(--clr-primary);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}

.ctt-promo-card__btn:hover {
    background: var(--clr-accent-lite);
    transform: translateY(-1px);
}

.ctt-reviews-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 1.15rem 1.25rem;
    text-align: center;
}

.ctt-reviews-card__stars {
    display: flex;
    justify-content: center;
    gap: 0.15rem;
    color: var(--clr-accent);
    margin-bottom: 0.4rem;
}

.ctt-reviews-card__score {
    font-size: 0.9rem;
    color: var(--clr-text);
    margin-bottom: 0.5rem;
}

.ctt-reviews-card__score strong {
    font-size: 1.25rem;
    color: var(--clr-primary);
}

.ctt-reviews-card__link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-accent-dark);
    text-decoration: none;
}

.ctt-reviews-card__link:hover { text-decoration: underline; }

.ctt-trust {
    background: var(--clr-white);
    border-top: 1px solid var(--clr-border);
}

.ctt-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ctt-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
}

.ctt-trust__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(26, 60, 52, 0.08);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.ctt-trust__item strong {
    font-size: 0.88rem;
    color: var(--clr-primary);
}

.ctt-trust__item span {
    font-size: 0.78rem;
    color: var(--clr-muted);
    line-height: 1.4;
}

.ctt-banner {
    background: var(--clr-primary);
    color: var(--clr-white);
    padding: 0.85rem 0;
}

.ctt-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}

.ctt-banner__inner svg {
    flex-shrink: 0;
    color: var(--clr-accent);
}

.ctt-banner__inner p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.45;
}

/* ══════════════════════════════════════════════════════════════
   CUSTOM TOUR PAGE — RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    body.page-custom-tour .ct-sidebar {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    body.page-custom-tour .ct-body.section {
        padding: 2.25rem 0;
    }

    body.page-custom-tour .ct-layout {
        gap: 1.75rem;
    }

    body.page-custom-tour .ct-hero {
        min-height: auto;
        padding-top: 1.25rem;
        padding-bottom: 2.5rem;
    }

    body.page-custom-tour .ct-hero__content {
        max-width: none;
    }

    body.page-custom-tour .au-breadcrumb__list {
        flex-wrap: wrap;
        row-gap: 0.25rem;
        font-size: 0.72rem;
    }

    body.page-custom-tour .ct-hero__title br {
        display: none;
    }

    body.page-custom-tour .ct-hero__quick {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.55rem;
    }

    body.page-custom-tour .ct-hero__quick-item {
        width: 100%;
    }

    body.page-custom-tour .ct-hero__quick-item span:not(.ct-hero__quick-icon) strong {
        display: block;
        margin-bottom: 0.12rem;
    }

    body.page-custom-tour .ct-form-card {
        padding: 1.5rem 1.15rem;
    }

    body.page-custom-tour .ct-form-card__title br {
        display: none;
    }

    body.page-custom-tour .ct-form-card__title {
        font-size: 1.45rem;
    }

    body.page-custom-tour .ct-form-card__sub {
        font-size: 0.86rem;
        margin-bottom: 1.35rem;
    }

    body.page-custom-tour .ct-submit {
        min-height: 48px;
        font-size: 0.95rem;
    }

    body.page-custom-tour .ct-input,
    body.page-custom-tour .ct-select {
        font-size: 16px; /* prevents iOS zoom on focus */
    }

    body.page-custom-tour .ct-info-card {
        padding: 1rem 1.1rem;
    }

    .ctt-check-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem 0.65rem;
    }

    .ctt-check {
        font-size: 0.84rem;
        align-items: flex-start;
        line-height: 1.35;
    }

    .ctt-check input {
        margin-top: 0.15rem;
    }

    .ctt-interest-grid {
        gap: 0.45rem;
    }

    .ctt-interest span {
        font-size: 0.78rem;
        padding: 0.48rem 0.8rem;
    }

    .ctt-promo-card__body {
        padding: 1rem 1.1rem 1.15rem;
    }

    .ctt-promo-card__title {
        font-size: 1.05rem;
    }

    .ctt-trust.section {
        padding: 2rem 0;
    }

    .ctt-trust__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.15rem 0.85rem;
    }

    .ctt-trust__item {
        padding: 0 0.25rem;
    }

    .ctt-banner {
        padding: 0.9rem 0;
    }

    .ctt-banner__inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.65rem;
        text-align: left;
        padding: 0 0.25rem;
    }

    .ctt-banner__inner p {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .ctt-form-alerts--toast {
        top: calc(var(--site-sticky-header-top, 88px) + 0.5rem);
        left: 0.75rem;
        right: 0.75rem;
        width: auto;
        max-width: none;
        transform: none;
    }

    .ctt-form-alerts--toast .ct-alert {
        padding: 0.9rem 2.65rem 0.9rem 1rem;
        font-size: 0.88rem;
    }

    .ctt-form-alerts--toast .ct-alert--success svg {
        width: 20px;
        height: 20px;
    }

    .ct-alert__close {
        top: 0.5rem;
        right: 0.5rem;
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    body.page-custom-tour .ct-form-card {
        padding: 1.25rem 1rem;
    }

    body.page-custom-tour .ct-hero__title {
        font-size: 1.65rem;
    }

    .ctt-check-grid {
        grid-template-columns: 1fr;
    }

    .ctt-interest span {
        display: block;
        text-align: center;
    }

    .ctt-trust__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ctt-trust__item {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 0.75rem;
    }

    .ctt-trust__icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .ctt-banner__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ctt-form-alerts--toast {
        left: 0.65rem;
        right: 0.65rem;
    }
}

