/* ==========================================================================
   Brand Elmina — Main Stylesheet
   ========================================================================== */

/* -------------------------------------------------------------------------
   1. CSS Custom Properties
   ------------------------------------------------------------------------- */
:root {
    --gold:        #C9A84C;
    --gold-light:  #E8D5A3;
    --gold-dark:   #8B6914;
    --ink:         #0A2540;   /* ocean navy — replaces old brownish ink */
    --ink-mid:     #1a3a5c;   /* mid navy for hover/dark sections */
    --ink-deep:    #040f1a;   /* footer deep navy */
    --warm-white:  #FAFAF7;
    --sand:        #F5EDD8;
    --muted:       #5A6A7A;   /* blue-grey, replaces brownish muted */
    --border:      rgba(201,168,76,0.25);
    --serif:       'Cormorant Garamond', Georgia, serif;
    --sans:        'Jost', sans-serif;
    --nav-h:       72px;
}

/* -------------------------------------------------------------------------
   2. Reset & Base
   ------------------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--warm-white);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    font-size: 16px;          /* explicit base — prevents browser scaling issues */
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* -------------------------------------------------------------------------
   3. Typography
   ------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 300;
    line-height: 1.1;
}
h1 em, h2 em { font-style: italic; color: var(--gold-light); }

/* All paragraph / body text → sans-serif for readability on mobile */
p, li, td, th, label, input, textarea, select, blockquote.entry-content,
.entry-content p, .entry-content li, .post-content p, .post-content li,
.page-content p, .page-content li { font-family: var(--sans); }
/* Exception: decorative pull-quotes keep serif */
.testi-quote, .about-quote, blockquote.hero-quote { font-family: var(--serif); }

/* -------------------------------------------------------------------------
   4. Navigation
   ------------------------------------------------------------------------- */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    padding: 1.25rem 5%;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(10,37,64,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    transition: background 0.3s;
}
.site-nav.scrolled { background: rgba(10,37,64,0.98); }
.nav-logo {
    font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
    color: var(--gold); letter-spacing: 0.04em;
}
.nav-logo span { color: #fff; font-weight: 300; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; flex-wrap: nowrap; list-style: none; margin: 0; padding: 0; }
.nav-links a {
    color: rgba(255,255,255,0.75); font-size: 0.72rem;
    letter-spacing: 0.07em; text-transform: uppercase; transition: color 0.3s;
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links .current-menu-item > a { color: var(--gold); }

/* ── Dropdown menus ───────────────────────────────────────────────── */
/* Use #site-nav prefix throughout for high specificity — prevents
   WordPress/Elementor default styles overriding the panel colours.   */

#site-nav .menu-item-has-children { position: relative; }

/* Chevron after parent label */
#site-nav .menu-item-has-children > a::after {
    content: ' ▾'; font-size: 0.55rem; opacity: 0.65;
    transition: opacity 0.2s, color 0.2s; display: inline-block;
}
#site-nav .menu-item-has-children:hover > a::after { opacity: 1; color: var(--gold); }

/* ── Dropdown panel ─────────────────────────────────────────────── */
#site-nav .sub-menu {
    visibility: hidden !important; opacity: 0 !important; pointer-events: none;
    position: absolute; top: calc(100% + 1rem); left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #0a2540 !important;          /* solid ink-blue, no override possible */
    min-width: 220px; padding: 0.5rem 0;
    border-top: 2px solid #c9a84c;
    list-style: none !important; margin: 0; padding-left: 0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.45);
    border-radius: 0 0 3px 3px;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 9999;
}
/* Gold caret pointer above panel */
#site-nav .sub-menu::before {
    content: ''; position: absolute; top: -6px; left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent; border-top: none;
    border-bottom-color: #c9a84c;
}
/* Show on hover / keyboard navigation */
#site-nav .menu-item-has-children:hover > .sub-menu,
#site-nav .menu-item-has-children:focus-within > .sub-menu {
    visibility: visible !important; opacity: 1 !important;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
/* Dropdown item rows */
#site-nav .sub-menu li { display: block !important; background: transparent !important; }
#site-nav .sub-menu li a {
    display: block !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.68rem !important; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.78) !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(201,168,76,0.12) !important;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
#site-nav .sub-menu li:last-child a { border-bottom: none !important; }
#site-nav .sub-menu li a:hover,
#site-nav .sub-menu li a:focus {
    color: #c9a84c !important;
    background: rgba(201,168,76,0.1) !important;
}
.nav-cta {
    background: var(--gold); color: var(--ink);
    padding: 0.55rem 1.4rem; font-size: 0.78rem;
    letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
    transition: background 0.3s;
}
.nav-cta:hover { background: var(--gold-light); }
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    padding: 4px; background: none; border: none; cursor: pointer;
}
.hamburger span { width: 24px; height: 2px; background: var(--gold); display: block; transition: 0.3s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   5. Mobile Menu
   ------------------------------------------------------------------------- */
.mobile-menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(10,37,64,0.98); z-index: 190;
    padding: 2rem 5%; overflow-y: auto;
    transform: translateX(100%); transition: transform 0.35s ease;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 0; margin-bottom: 2rem; list-style: none; padding: 0; }
.mobile-nav-links > li > a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0;
    color: rgba(255,255,255,0.85); font-size: 1.2rem;
    font-family: var(--serif); font-style: italic;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    transition: color 0.3s;
}
.mobile-nav-links > li > a:hover { color: var(--gold); }

/* Mobile dropdown toggle button */
.mobile-nav-links .menu-item-has-children > a::after {
    content: '+'; font-size: 1.4rem; font-weight: 300; font-style: normal;
    font-family: var(--sans); color: var(--gold); flex-shrink: 0;
    transition: transform 0.3s; line-height: 1;
}
.mobile-nav-links .menu-item-has-children.is-open > a::after {
    transform: rotate(45deg);
}

/* Mobile sub-menu — hidden by default, revealed by JS */
.mobile-nav-links .sub-menu {
    display: none; list-style: none; padding: 0.25rem 0 0.75rem 1rem; margin: 0;
}
.mobile-nav-links .menu-item-has-children.is-open > .sub-menu { display: block; }
.mobile-nav-links .sub-menu a {
    display: block; padding: 0.65rem 0;
    color: rgba(255,255,255,0.55); font-size: 0.8rem;
    font-family: var(--sans); font-style: normal;
    letter-spacing: 0.1em; text-transform: uppercase;
    border-bottom: 1px solid rgba(201,168,76,0.08);
    transition: color 0.2s;
}
.mobile-nav-links .sub-menu a:hover { color: var(--gold); }
.mobile-nav-links .sub-menu li:last-child > a { border-bottom: none; }

.mobile-menu-footer { padding-top: 2rem; }
.mobile-menu-overlay {
    position: fixed; inset: 0; z-index: 180;
    background: rgba(0,0,0,0.5);
    opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.mobile-menu-overlay.is-open { opacity: 1; pointer-events: all; }

/* -------------------------------------------------------------------------
   6. Utility Buttons
   ------------------------------------------------------------------------- */
.btn-primary {
    background: var(--gold); color: var(--ink);
    padding: 0.85rem 2rem; font-family: var(--sans);
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    display: inline-block; transition: background 0.3s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-dark {
    background: var(--ink); color: #fff;
    padding: 0.85rem 2rem; font-size: 0.78rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 500; display: inline-block; transition: background 0.3s;
}
.btn-dark:hover { background: var(--ink-mid); }
.btn-gold {
    background: var(--gold); color: var(--ink);
    padding: 0.85rem 2rem; font-size: 0.78rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 500; display: inline-block; transition: background 0.3s;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost {
    border: 1px solid rgba(255,255,255,0.35); color: #fff;
    padding: 0.85rem 2rem; font-size: 0.78rem; font-weight: 400;
    letter-spacing: 0.12em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-dark {
    border: 1px solid var(--border); color: var(--ink);
    padding: 0.85rem 1.75rem; font-size: 0.75rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    display: inline-block; transition: background 0.3s;
}
.btn-ghost-dark:hover { background: var(--sand); }
.btn-wa {
    border: 1.5px solid var(--ink); color: var(--ink);
    padding: 0.85rem 2rem; font-size: 0.78rem;
    letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: background 0.3s;
}
.btn-wa:hover { background: rgba(10,37,64,0.08); }

/* -------------------------------------------------------------------------
   7. Section Utilities
   ------------------------------------------------------------------------- */
.section { padding: 7rem 5%; }
.section-alt { background: var(--sand); }
.section-dark { background: var(--ink); }
.section-eyebrow {
    font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.section-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title {
    font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300; line-height: 1.15; margin-bottom: 1.25rem;
}
.section-title.light { color: #fff; }
.section-lead { font-size: 1rem; color: var(--muted); line-height: 1.85; max-width: 600px; font-family: var(--sans); }
.section-lead.light { color: rgba(255,255,255,0.82); }

/* -------------------------------------------------------------------------
   8. Page Hero (shared across inner pages)
   ------------------------------------------------------------------------- */
.page-hero {
    height: 60vh; position: relative;
    display: flex; align-items: flex-end;
    background: var(--ink); overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 50%; opacity: 0.35;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,37,64,1) 0%, rgba(10,37,64,0.5) 55%, transparent 100%);
}
.hero-content {
    position: relative; z-index: 2;
    padding: 0 5% 6vh; max-width: 700px;
}
.page-eyebrow {
    font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.page-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.page-hero h1 {
    font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300; color: #fff; line-height: 1.08;
}
.hero-sub {
    font-size: 0.92rem; color: rgba(255,255,255,0.55);
    margin-top: 1rem; line-height: 1.75; max-width: 520px;
}

/* -------------------------------------------------------------------------
   9. Homepage Hero
   ------------------------------------------------------------------------- */
.home-hero {
    height: 100vh; position: relative; overflow: hidden;
    display: flex; align-items: flex-end;
    background: linear-gradient(160deg, #040f1a 0%, #0a2540 40%, #1a3a5c 100%);
}
.home-hero .hero-bg {
    background-position: center 30%; opacity: 0.35;
}
.home-hero .hero-overlay {
    background: linear-gradient(to top, rgba(10,37,64,0.98) 0%, rgba(10,37,64,0.5) 50%, rgba(10,37,64,0.2) 100%);
}
.home-hero .hero-content {
    padding: 0 5% 8vh; max-width: 800px;
}
.hero-eyebrow {
    font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.home-hero h1 {
    font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 300; color: #fff; line-height: 1.08; margin-bottom: 1.5rem;
}
.hero-sub-home {
    font-weight: 300; font-size: 1rem; color: rgba(255,255,255,0.65);
    line-height: 1.8; max-width: 560px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 2rem; right: 5%; z-index: 2;
    writing-mode: vertical-rl; font-size: 0.68rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
    display: flex; align-items: center; gap: 0.75rem;
}
.hero-scroll::after { content: ''; width: 1px; height: 60px; background: rgba(255,255,255,0.25); }

/* -------------------------------------------------------------------------
   10. Promise Strip (homepage)
   ------------------------------------------------------------------------- */
.promise {
    background: var(--ink); padding: 5rem 5%;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
    border-top: 1px solid rgba(201,168,76,0.2);
}
.promise-item {
    padding: 3rem 2.5rem;
    border-right: 1px solid rgba(201,168,76,0.15);
}
.promise-item:last-child { border-right: none; }
.promise-num {
    font-family: var(--serif); font-size: 3rem;
    color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 1rem; display: block;
}
.promise-label {
    font-family: var(--serif); font-size: 1.5rem;
    color: var(--gold); margin-bottom: 0.75rem; font-weight: 400;
}
.promise-text { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.85; }

/* -------------------------------------------------------------------------
   11. Destinations Grid
   ------------------------------------------------------------------------- */
.destinations-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    margin-top: 4rem; background: var(--border);
}
/* Whole card is now an <a> tag — ensure it behaves as a block */
a.dest-card-link { display: block; text-decoration: none; color: inherit; }
a.dest-card-link:hover { color: inherit; }
.dest-card {
    position: relative; overflow: hidden;
    aspect-ratio: 3/4; cursor: pointer; background: var(--ink);
}
.dest-card img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.6; transition: opacity 0.5s, transform 0.6s;
}
.dest-card:hover img { opacity: 0.4; transform: scale(1.04); }
.dest-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2rem 1.75rem;
    background: linear-gradient(to top, rgba(10,37,64,0.95) 0%, transparent 100%);
}
.dest-country {
    font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.5rem;
}
.dest-name {
    font-family: var(--serif); font-size: 1.6rem;
    color: #fff; font-weight: 300; margin-bottom: 0.5rem;
}
.dest-tagline { font-size: 0.92rem; color: rgba(255,255,255,0.82); line-height: 1.7; font-family: var(--sans); }
.dest-arrow {
    position: absolute; top: 1.5rem; right: 1.5rem;
    width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.4);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1rem;
    opacity: 0; transform: translateY(4px); transition: opacity 0.3s, transform 0.3s;
}
.dest-card:hover .dest-arrow { opacity: 1; transform: translateY(0); }

/* -------------------------------------------------------------------------
   12. Tours List (homepage)
   ------------------------------------------------------------------------- */
.tours-list { margin-top: 4rem; }
.tour-item {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border: 1px solid var(--border); margin-bottom: 1px;
    transition: background 0.3s;
}
.tour-item:hover { background: rgba(201,168,76,0.04); }
.tour-num {
    font-family: var(--serif); font-size: 0.7rem; color: var(--gold);
    letter-spacing: 0.1em; padding: 2.5rem;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; justify-content: space-between;
}
.tour-num strong { font-size: 2.5rem; opacity: 0.2; display: block; }
.tour-info { padding: 2.5rem; }
.tour-tag {
    font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.75rem;
}
.tour-name {
    font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
    margin-bottom: 0.75rem; line-height: 1.25;
}
.tour-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }
.tour-link {
    display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem;
    font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold);
}
.tour-link::after { content: '→'; transition: transform 0.3s; }
.tour-link:hover::after { transform: translateX(4px); }

/* -------------------------------------------------------------------------
   13. Why Choose (homepage)
   ------------------------------------------------------------------------- */
.why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    margin-top: 4rem;
}
.why-item { padding: 2.5rem; border: 1px solid var(--border); }
.why-icon {
    width: 40px; height: 40px; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.1rem; margin-bottom: 1.25rem;
}
.why-title { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 0.6rem; }
.why-text { font-size: 0.95rem; color: var(--muted); line-height: 1.8; }

/* -------------------------------------------------------------------------
   14. Review / Testimonial (homepage)
   ------------------------------------------------------------------------- */
.review-section { background: var(--ink); padding: 7rem 5%; }
.review-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.2em; margin-bottom: 2rem; }
.review-quote {
    font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-style: italic; color: rgba(255,255,255,0.88); line-height: 1.65; margin-bottom: 2rem;
}
.review-attr { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.review-ta {
    margin-top: 3rem; display: flex; justify-content: center;
    align-items: center; gap: 0.75rem;
}
.review-ta-logo { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }
.review-ta-badge {
    background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
    padding: 0.4rem 1rem; font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em;
}

/* -------------------------------------------------------------------------
   14b. Testimonials Carousel
   ------------------------------------------------------------------------- */
.testi-section {
    background: var(--ink);
    padding: 7rem 5%;
    overflow: hidden;
}
.testi-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.testi-ta-bar {
    display: flex; align-items: center; justify-content: center;
    gap: 0.75rem; margin-top: 1rem;
}
.testi-ta-badge {
    background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold); font-size: 0.68rem; letter-spacing: 0.1em;
    padding: 0.3rem 0.9rem;
}
.testi-ta-sep  { color: rgba(255,255,255,0.25); }
.testi-ta-count { font-size: 0.75rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; }

/* Carousel wrapper */
.testi-carousel-wrap {
    display: flex; align-items: center; gap: 1rem;
    max-width: 1300px; margin: 0 auto;
}
.testi-viewport {
    overflow: hidden; flex: 1; min-width: 0;
}
.testi-track {
    display: flex; gap: 1.5rem; align-items: stretch;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}

/* Individual card */
.testi-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-top: 3px solid var(--gold);
    padding: 2rem 1.75rem 1.75rem;
    display: flex; flex-direction: column; gap: 1rem;
    align-self: stretch;
    transition: background 0.2s, border-color 0.2s;
}
.testi-card:hover {
    background: rgba(201,168,76,0.06);
    border-color: rgba(201,168,76,0.4);
}

/* Stars */
.testi-stars {
    color: var(--gold); font-size: 0.85rem; letter-spacing: 0.15em;
}

/* Quote — hard 6-line height with soft fade; full text via "View review →" */
.testi-quote {
    font-family: var(--serif); font-size: clamp(0.95rem,1.3vw,1.1rem);
    font-style: italic; color: rgba(255,255,255,0.85);
    line-height: 1.7; margin: 0;
    height: calc(6 * 1.7em);   /* exactly 6 lines — no more, no less */
    overflow: hidden;
    position: relative;
}
.testi-quote::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2.5em;
    background: linear-gradient(to bottom, transparent, #0A2540);
    pointer-events: none;
}

/* Footer row — always pinned to bottom of card */
.testi-footer {
    display: flex; flex-direction: column; gap: 0.75rem;
    padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: auto;
}
.testi-name {
    font-size: 0.85rem; font-weight: 600; color: #fff; letter-spacing: 0.02em;
}
.testi-location {
    font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em;
}
.testi-source {
    display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
}
.testi-platform-badge {
    font-size: 0.62rem; letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem; border-radius: 2px;
}
.testi-platform-tripadvisor { background: rgba(52,168,83,0.15);  color: #4caf6a; border: 1px solid rgba(52,168,83,0.3); }
.testi-platform-google      { background: rgba(66,133,244,0.12); color: #7aabf7; border: 1px solid rgba(66,133,244,0.25); }
.testi-platform-direct,
.testi-platform-other       { background: rgba(201,168,76,0.1);  color: var(--gold); border: 1px solid rgba(201,168,76,0.25); }

.testi-verify-link {
    font-size: 0.68rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.4);
    text-decoration: none; transition: color 0.2s;
}
.testi-verify-link:hover { color: var(--gold); }

/* Navigation arrows */
.testi-arrow {
    background: transparent; border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold); font-size: 2rem; line-height: 1;
    width: 44px; height: 44px; border-radius: 2px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background 0.2s, opacity 0.2s;
}
.testi-arrow:hover { background: rgba(201,168,76,0.15); }
.testi-arrow[disabled] { opacity: 0.2; pointer-events: none; }

/* Dot indicators */
.testi-dots {
    display: flex; justify-content: center; gap: 0.5rem;
    margin-top: 2rem;
}
.testi-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.2); border: none; cursor: pointer;
    padding: 0; transition: background 0.2s, transform 0.2s;
}
.testi-dot.active {
    background: var(--gold); transform: scale(1.3);
}

/* Responsive */
@media (max-width: 960px) {
    .testi-card { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 580px) {
    .testi-card { flex: 0 0 100%; }
    .testi-track { gap: 1rem; }
    .testi-section { padding: 5rem 5%; }
    .testi-carousel-wrap { gap: 0.5rem; }
    .testi-arrow { width: 36px; height: 36px; font-size: 1.6rem; }
}

/* -------------------------------------------------------------------------
   15. Events Calendar (homepage & standalone)
   ------------------------------------------------------------------------- */
.calendar-section { padding: 7rem 5%; background: var(--warm-white); }
.cal-layout {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem;
    align-items: start; margin-top: 4rem;
}
.cal-widget { background: #fff; border: 1px solid var(--border); }
.cal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
    background: var(--ink);
}
.cal-month { font-family: var(--serif); font-size: 1.1rem; color: #fff; }
.cal-nav {
    background: none; border: none; color: var(--gold);
    cursor: pointer; font-size: 1rem; padding: 0 0.5rem;
    transition: color 0.2s;
}
.cal-nav:hover { color: var(--gold-light); }
.cal-days-header {
    display: grid; grid-template-columns: repeat(7,1fr);
    padding: 0.75rem 0; text-align: center;
}
.cal-day-name {
    font-size: 0.65rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--muted);
}
.cal-grid {
    display: grid; grid-template-columns: repeat(7,1fr);
    padding: 0.5rem; gap: 2px;
}
.cal-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; cursor: pointer; position: relative;
    transition: background 0.2s; border-radius: 2px;
}
.cal-day:hover { background: var(--sand); }
.cal-day.today { background: var(--gold); color: var(--ink); font-weight: 500; }
.cal-day.has-event::after {
    content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
}
.cal-day.today::after { background: var(--ink); }
.cal-day.other-month { color: rgba(90,106,122,0.3); }
.cal-day.selected { outline: 2px solid var(--gold); }

/* Events list beside calendar */
.cal-events-title { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 1.5rem; }
.event-item {
    padding: 1.5rem 0; border-bottom: 1px solid var(--border);
    display: grid; grid-template-columns: 60px 1fr; gap: 1rem;
}
.event-date-box {
    text-align: center; background: var(--sand);
    padding: 0.5rem; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}
.event-date-day { font-family: var(--serif); font-size: 1.6rem; color: var(--gold-dark); line-height: 1; }
.event-date-mon { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.event-name { font-family: var(--serif); font-size: 1rem; margin-bottom: 0.25rem; }
.event-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }
.event-tag {
    display: inline-block; margin-top: 0.5rem;
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
    padding: 0.2rem 0.6rem; font-size: 0.62rem;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark);
}

/* -------------------------------------------------------------------------
   16. About Strip (homepage)
   ------------------------------------------------------------------------- */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.about-img { background-size: cover; background-position: center; }
.about-content {
    background: var(--ink); padding: 6rem 5%;
    display: flex; flex-direction: column; justify-content: center;
}
.about-quote {
    font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic; color: rgba(255,255,255,0.7); line-height: 1.75;
    border-left: 2px solid var(--gold); padding-left: 1.5rem; margin: 2rem 0;
}
.about-text { font-size: 0.9rem; color: rgba(255,255,255,0.82); line-height: 1.85; margin-bottom: 2rem; font-family: var(--sans); }

/* -------------------------------------------------------------------------
   16b. Travel With Purpose page
   ------------------------------------------------------------------------- */
.purpose-intro-band { background: var(--sand); padding: 5rem 5%; }
.purpose-intro-inner { max-width: 800px; }
.purpose-lead {
    font-family: var(--serif); font-size: 1.3rem;
    line-height: 1.75; color: var(--ink); margin-bottom: 1.5rem;
}
.purpose-body { font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,0.65); }

/* Institution blocks */
.inst-block {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 600px; border-bottom: 1px solid rgba(201,168,76,0.15);
    width: 100%; overflow: hidden;
}
.inst-block > * { min-width: 0; }
.inst-block-reverse { direction: rtl; }
.inst-block-reverse > * { direction: ltr; min-width: 0; }
.inst-visual {
    position: relative; overflow: hidden;
    background: var(--ink);
    display: flex; flex-direction: column; justify-content: flex-end;
}
.inst-visual-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.4; transition: opacity 0.5s;
}
.inst-block:hover .inst-visual-bg { opacity: 0.28; }
.inst-visual-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,37,64,0.95) 0%, transparent 60%);
}
.inst-visual-label {
    position: relative; z-index: 2;
    padding: 2.5rem;
    border-top: 1px solid rgba(201,168,76,0.2);
}
.inst-visual-name {
    font-family: var(--serif); font-size: 1.8rem;
    color: #fff; font-weight: 300;
}
.inst-visual-type {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-top: 0.25rem;
}
.inst-content {
    padding: 5rem 4.5rem;
    display: flex; flex-direction: column; justify-content: center;
}
.inst-light { background: var(--warm-white); }
.inst-sand  { background: var(--sand); }
.inst-dark  { background: var(--ink); }
.inst-title {
    font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300; line-height: 1.15; margin-bottom: 1.25rem;
    color: var(--ink);
}
.inst-tagline {
    font-family: var(--serif); font-size: 1.05rem; font-style: italic;
    border-left: 2px solid var(--gold); padding-left: 1.25rem;
    margin-bottom: 1.5rem; line-height: 1.65; color: var(--muted);
}
.inst-body {
    font-size: 0.95rem; line-height: 1.85;
    color: var(--ink); margin-bottom: 1.25rem;
}
.inst-pillars { list-style: none; margin-bottom: 2rem; }
.inst-pillars li {
    font-size: 0.85rem; color: var(--muted);
    padding: 0.65rem 0; border-bottom: 1px solid var(--border);
    display: flex; gap: 0.75rem; align-items: flex-start;
}
.inst-pillars li::before {
    content: '◈'; color: var(--gold); flex-shrink: 0;
    font-size: 0.7rem; margin-top: 0.15rem;
}
.inst-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* How We Connect */
.purpose-connect-section {
    background: var(--ink); padding: 7rem 5%;
}
.purpose-connect-title {
    font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem);
    color: #fff; font-weight: 300; max-width: 600px;
    margin: 1rem 0 4rem; line-height: 1.2;
}
.purpose-connect-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: rgba(201,168,76,0.15);
}
.purpose-connect-item { background: var(--ink); padding: 2.5rem; }
.purpose-connect-num {
    font-family: var(--serif); font-size: 2.5rem;
    color: rgba(201,168,76,0.15); line-height: 1; margin-bottom: 1rem;
}
.purpose-connect-label {
    font-family: var(--serif); font-size: 1.15rem;
    color: var(--gold); margin-bottom: 0.75rem;
}
.purpose-connect-text {
    font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.75;
}

/* Ecosystem section */
.purpose-ecosystem-section { padding: 7rem 5%; background: var(--sand); }
.purpose-ecosystem-inner { max-width: 900px; margin: 0 auto; }
.purpose-ecosystem-title {
    font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300; margin: 1rem 0 1rem; text-align: center; color: var(--ink);
}
.purpose-ecosystem-sub {
    font-size: 0.9rem; color: var(--muted); text-align: center;
    max-width: 560px; margin: 0 auto 4rem; line-height: 1.8;
}
.purpose-eco-diagram {
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 0; align-items: center; margin-bottom: 2rem;
}
.purpose-eco-box {
    border: 1px solid var(--border); padding: 2.5rem; background: #fff;
}
.purpose-eco-box-label {
    font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.6rem;
}
.purpose-eco-box-name {
    font-family: var(--serif); font-size: 1.4rem;
    color: var(--ink); margin-bottom: 1rem;
}
.purpose-eco-box-list { list-style: none; }
.purpose-eco-box-list li {
    font-size: 0.8rem; color: var(--muted);
    padding: 0.4rem 0; border-bottom: 1px solid var(--border);
    display: flex; gap: 0.5rem;
}
.purpose-eco-box-list li::before { content: '·'; color: var(--gold); }
.purpose-eco-connector {
    display: flex; flex-direction: column;
    align-items: center; padding: 0 2rem;
}
.purpose-eco-conn-line {
    width: 1px; height: 60px; background: var(--gold); opacity: 0.4;
}
.purpose-eco-conn-node {
    width: 40px; height: 40px; border: 1px solid var(--gold);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 0.8rem; background: #fff; margin: 0.5rem 0;
}
.purpose-eco-center {
    background: var(--ink); border: 1px solid rgba(201,168,76,0.3);
    padding: 2.5rem; grid-column: 1 / -1; text-align: center; margin-top: 2rem;
}
.purpose-eco-center-label {
    font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.75rem;
    display: flex; justify-content: center;
}
.purpose-eco-center-text {
    font-family: var(--serif); font-size: 1.1rem; font-style: italic;
    color: rgba(255,255,255,0.7); line-height: 1.65;
}

/* Quote section */
.purpose-quote-section {
    background: var(--ink); padding: 7rem 5%; text-align: center;
}
.purpose-quote-inner { max-width: 720px; margin: 0 auto; }
.purpose-quote-mark {
    font-family: var(--serif); font-size: 5rem;
    color: rgba(201,168,76,0.2); line-height: 0.5; margin-bottom: 2rem;
    display: block;
}
.purpose-quote-text {
    font-family: var(--serif); font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-style: italic; color: rgba(255,255,255,0.85);
    line-height: 1.65; margin-bottom: 2rem;
}
.purpose-quote-attr {
    font-size: 0.72rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold);
}

/* Responsive */
@media ( max-width: 900px ) {
    .inst-block,
    .inst-block-reverse { grid-template-columns: 1fr; direction: ltr; }
    .inst-visual { min-height: 300px; }
    .inst-content { padding: 3rem 2rem; }
    .purpose-connect-grid { grid-template-columns: 1fr; }
    .purpose-eco-diagram { grid-template-columns: 1fr; }
    .purpose-eco-connector { flex-direction: row; padding: 1rem 0; }
    .purpose-eco-conn-line { width: 40px; height: 1px; }
}

/* -------------------------------------------------------------------------
   17. CTA Strip (shared)
   ------------------------------------------------------------------------- */
.cta-strip {
    background: var(--gold); padding: 5rem 5%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
}
.cta-strip h2 {
    font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.4rem);
    color: var(--ink); font-weight: 400;
}
.cta-strip p { font-size: 0.9rem; color: rgba(10,37,64,0.7); margin-top: 0.5rem; }
.cta-strip-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* -------------------------------------------------------------------------
   18. Footer
   ------------------------------------------------------------------------- */
.site-footer {
    background: var(--ink-deep); padding: 5rem 5% 2.5rem;
    border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 4rem;
}
.footer-logo {
    font-family: var(--serif); font-size: 1.75rem; color: var(--gold);
    display: block; margin-bottom: 1rem;
}
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-contact-item { font-size: 0.8rem; color: rgba(255,255,255,0.72); margin-bottom: 0.4rem; }
.footer-contact-item a { color: rgba(255,255,255,0.72); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-col-title {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.72); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.footer-socials { display: flex; gap: 0.75rem; }
.social-link {
    width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.65); font-size: 0.7rem;
    transition: border-color 0.3s, color 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* -------------------------------------------------------------------------
   19. Back to Top
   ------------------------------------------------------------------------- */
.back-to-top {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
    background: var(--gold); color: var(--ink);
    width: 44px; height: 44px; font-size: 1.1rem; font-weight: 500;
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.back-to-top:hover { background: var(--gold-light); }
.back-to-top.visible { opacity: 1; visibility: visible; }

/* -------------------------------------------------------------------------
   20. Tours Page
   ------------------------------------------------------------------------- */
.tour-intro {
    padding: 5rem 5%; display: grid;
    grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.tour-intro-text p { font-size: 1rem; line-height: 1.85; color: var(--ink); margin-bottom: 1.25rem; }
.tour-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--border);
}
.stat-item { background: var(--sand); padding: 2rem; text-align: center; }
.stat-num { font-family: var(--serif); font-size: 2.5rem; color: var(--gold); display: block; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

.tours-section { padding: 2rem 5% 7rem; }
.section-title-tours { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.15; margin-bottom: 3rem; }

/* Featured tour */
.tour-featured {
    display: grid; grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border); margin-bottom: 1px;
}
.tour-featured-img { min-height: 420px; position: relative; overflow: hidden; background: var(--ink); }
.tour-featured-img-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; opacity: 0.65;
    transition: opacity 0.5s, transform 0.6s;
}
.tour-featured:hover .tour-featured-img-bg { opacity: 0.45; transform: scale(1.03); }
.tour-featured-badge {
    position: absolute; top: 1.5rem; left: 1.5rem;
    background: var(--gold); color: var(--ink);
    font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.35rem 0.85rem; font-weight: 500;
}
.tour-featured-content { padding: 3.5rem; }
.tour-title-large { font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 300; margin-bottom: 1rem; line-height: 1.2; }
.tour-desc { font-size: 0.88rem; color: var(--ink); line-height: 1.8; margin-bottom: 1.5rem; }
.tour-meta-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    margin-bottom: 1.5rem; padding: 1.5rem; background: var(--sand);
}
.tour-meta-label { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; }
.tour-meta-value { font-size: 0.88rem; color: var(--ink); font-weight: 400; }
.tour-includes { margin-bottom: 1.5rem; }
.tour-includes-title { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem; }
.tour-includes-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tour-includes-list li {
    background: #fff; border: 1px solid var(--border);
    padding: 0.3rem 0.75rem; font-size: 0.72rem; color: var(--muted);
}
.tour-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Small tour cards */
.tours-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
    background: var(--border); margin-top: 1px;
}
.tour-card { background: var(--warm-white); display: flex; flex-direction: column; box-shadow: 0 2px 16px rgba(0,0,0,0.08); border-radius: 2px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.tour-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.14); transform: translateY(-3px); }
.tour-card-img { height: 220px; position: relative; overflow: hidden; background: var(--sand); }
.tour-card-img-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; opacity: 1;
    transition: opacity 0.4s, transform 0.5s;
}
.tour-card:hover .tour-card-img-bg { opacity: 0.88; transform: scale(1.04); }
.tour-card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.tour-card-tag { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.tour-card-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1.25; color: var(--ink); }
.tour-card-desc { font-size: 0.88rem; color: var(--ink); opacity: 0.75; line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.tour-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; gap: 0.5rem; }
.tour-card-detail { font-size: 0.75rem; color: var(--ink); font-weight: 600; }
.tour-card-link { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 0.4rem; }
.tour-card-link::after { content: '→'; transition: transform 0.3s; }
.tour-card-link:hover::after { transform: translateX(4px); }

/* Policy section */
.policy-section { background: var(--sand); padding: 6rem 5%; }
.policy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); margin-top: 3rem; }
.policy-item { background: var(--sand); padding: 2.5rem; }
.policy-icon { font-size: 1.25rem; color: var(--gold); margin-bottom: 1rem; }
.policy-title { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 0.6rem; }
.policy-text { font-size: 0.92rem; color: var(--muted); line-height: 1.75; }

/* Custom tours section */
.custom-section {
    background: var(--ink); padding: 7rem 5%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.custom-content h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem); color: #fff; font-weight: 300; margin-bottom: 1.5rem; line-height: 1.2; }
.custom-content p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 1.25rem; }
.custom-list { list-style: none; margin: 1.5rem 0; }
.custom-list li { font-size: 0.88rem; color: rgba(255,255,255,0.85); padding: 0.6rem 0; border-bottom: 1px solid rgba(201,168,76,0.12); display: flex; gap: 0.75rem; font-family: var(--sans); }
.custom-list li::before { content: '◈'; color: var(--gold); flex-shrink: 0; }
.custom-image {
    position: relative; overflow: hidden; background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2); min-height: 380px;
    display: flex; align-items: center; justify-content: center;
}
.custom-image p { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,0.4); line-height: 1.7; padding: 3rem; text-align: center; }

/* -------------------------------------------------------------------------
   21. About Page
   ------------------------------------------------------------------------- */
.about-hero-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    width: 100%; align-items: end;
}
.hero-statement {
    font-family: var(--serif); font-size: 1.15rem; font-style: italic;
    color: rgba(255,255,255,0.65); line-height: 1.7;
    border-left: 2px solid var(--gold); padding-left: 1.5rem;
}
.origin { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.origin-img { position: relative; overflow: hidden; background: var(--ink); }
.origin-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; opacity: 0.5; }
.origin-content { padding: 6rem 5%; display: flex; flex-direction: column; justify-content: center; background: var(--sand); }
.body-text { font-size: 1rem; line-height: 1.85; color: var(--ink); margin-bottom: 1.25rem; }
.mv-section { background: var(--ink); padding: 7rem 5%; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(201,168,76,0.2); margin-top: 4rem; }
.mv-item { background: var(--ink); padding: 4rem; }
.mv-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.mv-text { font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: rgba(255,255,255,0.82); line-height: 1.65; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.service-item { background: var(--warm-white); padding: 2.5rem; transition: background 0.3s; }
.service-item:hover { background: var(--sand); }
.service-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 1.25rem; }
.service-title { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-text { font-size: 0.95rem; color: var(--muted); line-height: 1.8; }
.what-intro { max-width: 680px; margin-bottom: 5rem; }
.what-intro p { font-size: 1rem; line-height: 1.85; color: var(--ink); margin-bottom: 1.25rem; }
.position-section { background: var(--ink); padding: 7rem 5%; }
.position-title { font-family: var(--serif); font-size: clamp(1.8rem,3.5vw,3rem); color: #fff; font-weight: 300; max-width: 600px; margin-bottom: 4rem; line-height: 1.2; }
.position-table { width: 100%; border-collapse: collapse; }
.position-table th { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); padding: 1rem 1.5rem; text-align: left; border-bottom: 1px solid rgba(201,168,76,0.25); }
.position-table td { padding: 1.25rem 1.5rem; font-size: 0.88rem; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.06); line-height: 1.6; vertical-align: top; font-family: var(--sans); }
.position-table td:first-child { color: rgba(255,255,255,0.85); font-weight: 400; }
.position-table tr:last-child td { border-bottom: none; }
.audience-section { padding: 7rem 5%; background: var(--sand); }
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); margin-top: 4rem; }
.audience-item { background: var(--sand); padding: 2rem; }
.audience-title { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); margin-bottom: 0.6rem; }
.audience-text { font-size: 0.92rem; color: var(--muted); line-height: 1.75; }
.partner-section { padding: 7rem 5%; }
.partner-intro { max-width: 620px; font-size: 1rem; color: var(--ink); line-height: 1.9; margin-bottom: 3rem; }
.partner-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border); max-width: 700px; }
.partner-item { background: var(--warm-white); padding: 1.5rem 2rem; }
.partner-name { font-family: var(--serif); font-size: 1rem; margin-bottom: 0.3rem; }
.partner-type { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

/* -------------------------------------------------------------------------
   22. Contact Page
   ------------------------------------------------------------------------- */
.quick-contact {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
    background-color: rgba(201,168,76,0.15);
}
.quick-item { background: var(--ink); padding: 2.5rem; text-align: center; transition: background 0.3s; }
.quick-item:hover { background: var(--ink-mid); }
.quick-icon { font-size: 1.5rem; margin-bottom: 1rem; display: block; }
.quick-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.quick-value { font-family: var(--serif); font-size: 1.1rem; color: #fff; display: block; }
.quick-note { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.4rem; }
.quick-btn { display: inline-block; margin-top: 1rem; background: var(--gold); color: var(--ink); padding: 0.6rem 1.5rem; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; transition: background 0.3s; }
.quick-btn:hover { background: var(--gold-light); }
.quick-btn.ghost { background: none; border: 1px solid rgba(201,168,76,0.4); color: var(--gold); }
.quick-btn.ghost:hover { background: rgba(201,168,76,0.08); }
.contact-main { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.form-side { padding: 6rem 5%; }
.form-title { font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 300; margin-bottom: 0.75rem; line-height: 1.15; }
.form-sub { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; display: flex; flex-direction: column; }
.form-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
    background: #fff; border: 1px solid var(--border);
    padding: 0.85rem 1rem; font-family: var(--sans); font-size: 0.88rem;
    color: var(--ink); outline: none; width: 100%; transition: border-color 0.3s;
    -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(90,106,122,0.5); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
.form-check input { margin-top: 0.2rem; accent-color: var(--gold); flex-shrink: 0; }
.form-check label { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.form-submit {
    background: var(--gold); color: var(--ink); border: none;
    padding: 1rem 2.5rem; font-family: var(--sans); font-size: 0.78rem;
    letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500;
    cursor: pointer; width: 100%; transition: background 0.3s;
}
.form-submit:hover { background: var(--gold-light); }
.form-message { display: none; padding: 1.5rem; text-align: center; margin-top: 1rem; border: 1px solid; }
.form-message.success { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); color: var(--ink); }
.form-message.error { background: rgba(220,50,50,0.08); border-color: rgba(220,50,50,0.3); color: #8b1a1a; }
.form-message p { font-family: var(--serif); font-size: 1.1rem; }
.info-side { background: var(--ink); padding: 6rem 5%; display: flex; flex-direction: column; justify-content: space-between; }
.info-title { font-family: var(--serif); font-size: 1.8rem; color: #fff; font-weight: 300; margin-bottom: 2rem; line-height: 1.25; }
.info-block { margin-bottom: 2.5rem; }
.info-block-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.info-block-value { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.65; }
.info-block-value a { color: rgba(255,255,255,0.75); }
.info-block-value a:hover { color: var(--gold); }
.info-divider { width: 100%; height: 1px; background: rgba(201,168,76,0.2); margin: 2rem 0; }
.social-title { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.social-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-btn { border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); padding: 0.6rem 1rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.wa-section { background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.2); padding: 1.5rem; margin-top: 2rem; }
.wa-title { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(37,211,102,0.8); margin-bottom: 0.5rem; }
.wa-text { font-size: 0.82rem; color: rgba(255,255,255,0.82); line-height: 1.6; margin-bottom: 1rem; }
.wa-link { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.3); color: #25d366; padding: 0.6rem 1.25rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.3s; }
.wa-link:hover { background: rgba(37,211,102,0.25); }
.faq-section { padding: 7rem 5%; background: var(--sand); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 4rem; margin-top: 3rem; }
.faq-item { padding: 1.5rem 0; border-bottom: 1px solid var(--border); cursor: pointer; }
.faq-q { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; user-select: none; }
.faq-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-a { font-size: 0.95rem; color: var(--muted); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 400px; padding-top: 0.75rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* -------------------------------------------------------------------------
   23. Hotels Page
   ------------------------------------------------------------------------- */
.hotel-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn { background: #fff; border: 1px solid var(--border); color: var(--muted); padding: 0.5rem 1.25rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.hotels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.hotel-card { background: var(--warm-white); }
.hotel-card-img { height: 260px; position: relative; overflow: hidden; background: var(--sand); }
.hotel-card-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.7; transition: opacity 0.4s, transform 0.5s; }
.hotel-card:hover .hotel-card-img-bg { opacity: 0.5; transform: scale(1.03); }
.hotel-card-body { padding: 2rem; }
.hotel-name { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.4rem; }
.hotel-location { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.hotel-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.hotel-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.hotel-tag { background: var(--sand); padding: 0.2rem 0.6rem; font-size: 0.68rem; color: var(--muted); }

/* -------------------------------------------------------------------------
   24. Blog Page
   ------------------------------------------------------------------------- */
.blog-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 1rem; }
.blog-card { background: #fff; border: 1px solid var(--border); transition: box-shadow 0.3s; }
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.blog-card-img { height: 200px; overflow: hidden; background: var(--sand); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.75rem; }
.blog-card-cat { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.blog-card-title { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 0.6rem; line-height: 1.3; }
.blog-card-excerpt { font-size: 0.92rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.blog-card-meta { font-size: 0.72rem; color: rgba(90,106,122,0.6); display: flex; justify-content: space-between; }
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); margin-bottom: 4rem; }
.blog-featured-img { min-height: 400px; position: relative; overflow: hidden; background: var(--ink); }
.blog-featured-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.6; transition: opacity 0.5s; }
.blog-featured:hover .blog-featured-img-bg { opacity: 0.45; }
.blog-featured-content { padding: 4rem; background: var(--sand); display: flex; flex-direction: column; justify-content: center; }
.blog-featured-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.blog-featured-title { font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 300; margin-bottom: 1rem; line-height: 1.2; }
.blog-featured-excerpt { font-size: 0.9rem; color: var(--ink); line-height: 1.8; margin-bottom: 1.5rem; }
.blog-read-link { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 0.5rem; }
.blog-read-link::after { content: '→'; transition: transform 0.3s; }
.blog-read-link:hover::after { transform: translateX(4px); }
/* Video section — Blog/Stories page */
.video-section { background: var(--ink); padding: 6rem 5%; }
.video-section .section-title.light { color: #fff; margin-bottom: 0.75rem; }
.video-section .section-lead.light { color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 3rem; }
.video-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: rgba(201,168,76,0.15);
}
.video-item { background: var(--ink-deep); padding: 2rem; }
.video-thumb {
    height: 160px; background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.15);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem; cursor: pointer;
    position: relative; overflow: hidden; text-decoration: none;
    transition: background 0.3s;
}
.video-thumb:hover { background: rgba(201,168,76,0.12); }
.video-play {
    width: 52px; height: 52px; border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.5);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1rem;
    transition: background 0.3s, color 0.3s;
}
.video-thumb:hover .video-play { background: var(--gold); color: var(--ink); }
.video-title {
    font-family: var(--serif); font-size: 1.05rem;
    color: rgba(255,255,255,0.85); margin-bottom: 0.4rem; line-height: 1.3;
}
.video-meta { font-size: 0.75rem; color: rgba(255,255,255,0.35); letter-spacing: 0.04em; }

.newsletter-strip { background: var(--ink); padding: 5rem 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 0; }
.newsletter-title { font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2rem); color: #fff; font-weight: 300; margin-bottom: 0.75rem; }
.newsletter-sub { font-size: 0.88rem; color: rgba(255,255,255,0.82); line-height: 1.7; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-input { flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(201,168,76,0.25); border-right: none; padding: 0.85rem 1.25rem; font-family: var(--sans); font-size: 0.88rem; color: #fff; outline: none; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-btn { background: var(--gold); color: var(--ink); border: none; padding: 0.85rem 1.75rem; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; cursor: pointer; white-space: nowrap; transition: background 0.3s; }
.newsletter-btn:hover { background: var(--gold-light); }

/* -------------------------------------------------------------------------
   25. Elmina History Page & Bakatue Page
   ------------------------------------------------------------------------- */
.content-wrapper { max-width: 780px; margin: 0 auto; padding: 6rem 5%; }
.lead-text { font-family: var(--serif); font-size: 1.35rem; font-style: italic; color: var(--ink); line-height: 1.7; margin-bottom: 3rem; border-left: 2px solid var(--gold); padding-left: 1.5rem; }
.chapter-title { font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 300; margin: 3rem 0 1.25rem; color: var(--ink); }
.chapter-text { font-size: 1rem; line-height: 1.9; color: var(--ink); margin-bottom: 1.25rem; }
.pull-quote { font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.45rem); font-style: italic; color: var(--gold-dark); line-height: 1.65; padding: 2rem 0 2rem 2rem; border-left: 3px solid var(--gold); margin: 3rem 0; }
.pull-quote cite { display: block; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.75rem; font-style: normal; }
.fact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); margin: 3rem 0; }
.fact-item { background: var(--sand); padding: 1.75rem; }
.fact-num { font-family: var(--serif); font-size: 2rem; color: var(--gold); display: block; margin-bottom: 0.4rem; }
.fact-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.timeline { margin: 4rem 0; }
.timeline-item { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.timeline-year { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); font-weight: 400; padding-top: 0.2rem; }
.timeline-content h4 { font-family: var(--serif); font-size: 1.05rem; margin-bottom: 0.4rem; }
.timeline-content p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; }
/* Bakatue specific */
.ritual-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); margin: 3rem 0; }
.ritual-item { background: var(--warm-white); padding: 2rem; }
.ritual-num { font-family: var(--serif); font-size: 2.5rem; color: rgba(201,168,76,0.25); display: block; margin-bottom: 0.75rem; }
.ritual-title { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); margin-bottom: 0.6rem; }
.ritual-text { font-size: 0.92rem; color: var(--muted); line-height: 1.75; }
.festival-badge { display: inline-flex; align-items: center; gap: 0.75rem; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); padding: 0.5rem 1.25rem; margin-bottom: 2rem; }
.festival-badge-text { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }

/* -------------------------------------------------------------------------
   25b. Elmina Page — image break and inline image blocks
   ------------------------------------------------------------------------- */
.elmina-img-break {
    position: relative; height: 420px; overflow: hidden;
    background: var(--ink); margin: 0;
}
.elmina-img-break-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 40%; opacity: 0.45;
}
.elmina-img-break-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,37,64,0.7) 0%, transparent 60%);
}
.elmina-img-break-caption {
    position: absolute; bottom: 2rem; left: 5%;
    font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); z-index: 2;
}
/* Milestones strip — replaces the old timeline on the Elmina page */
.elmina-milestones {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 1px; background: var(--border);
    margin: 3rem 0 0;
}
.elmina-milestone {
    background: var(--ink); padding: 2rem 1.5rem;
    display: flex; flex-direction: column; gap: 0.75rem;
}
.elmina-milestone .fact-num {
    font-family: var(--serif); font-size: 2.2rem;
    color: var(--gold); display: block;
}
.elmina-milestone .fact-label {
    font-size: 0.82rem; color: rgba(255,255,255,0.75);
    line-height: 1.6; font-family: var(--sans);
}
@media (max-width: 760px) {
    .elmina-milestones { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .elmina-milestones { grid-template-columns: 1fr; }
}

.elmina-inline-img {
    position: relative; height: 300px; overflow: hidden;
    background: var(--ink); margin: 3rem 0;
    border: 1px solid var(--border);
}
.elmina-inline-img-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; opacity: 0.5;
}
.elmina-inline-img-caption {
    position: absolute; bottom: 1.25rem; left: 1.5rem;
    font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); z-index: 2;
}

/* -------------------------------------------------------------------------
   26. Destinations Page
   ------------------------------------------------------------------------- */
.destination-block { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; border-bottom: 1px solid var(--border); }
.destination-block.reverse { direction: rtl; }
.destination-block.reverse > * { direction: ltr; }
.dest-block-img { position: relative; overflow: hidden; background: var(--ink); min-height: 400px; }
.dest-block-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.6; transition: opacity 0.5s, transform 0.6s; }
.destination-block:hover .dest-block-img-bg { opacity: 0.45; transform: scale(1.03); }
.dest-block-content { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; background: var(--warm-white); }
.dest-block-region { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.dest-block-title { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; margin-bottom: 1rem; line-height: 1.1; }
.dest-block-desc { font-size: 0.9rem; color: var(--ink); line-height: 1.85; margin-bottom: 1.75rem; }
.coming-soon-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); margin-top: 3rem; }
.coming-soon-item { background: var(--sand); padding: 2rem; }
.coming-soon-flag { font-size: 1.75rem; margin-bottom: 0.75rem; }
.coming-soon-name { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 0.4rem; }
.coming-soon-region { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* -------------------------------------------------------------------------
   27. Services Page
   ------------------------------------------------------------------------- */
.services-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; padding: 6rem 5%; }
.service-block { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; border-bottom: 1px solid var(--border); }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block-img { position: relative; overflow: hidden; background: var(--ink); }
.service-block-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.78; transition: opacity 0.4s; }
.service-block:hover .service-block-img-bg { opacity: 0.88; }
.service-block-content { padding: 4rem 3.5rem; display: flex; flex-direction: column; justify-content: center; background: var(--warm-white); }
.service-block-num { font-family: var(--serif); font-size: 4rem; color: rgba(201,168,76,0.12); line-height: 1; margin-bottom: 0.5rem; }
.service-block-tag { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.service-block-title { font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 300; margin-bottom: 1rem; }
.service-block-desc { font-size: 1rem; color: var(--ink); line-height: 1.85; }
.clients-section { padding: 6rem 5%; background: var(--sand); }
.clients-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); margin-top: 3rem; }
.client-item { background: var(--sand); padding: 2rem; text-align: center; }
.client-name { font-family: var(--serif); font-size: 0.95rem; color: var(--ink); margin-bottom: 0.3rem; }
.client-type { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* -------------------------------------------------------------------------
   28. Hero Carousel
   ------------------------------------------------------------------------- */
.hero-carousel { position: absolute; inset: 0; overflow: hidden; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 0.38; }
.hero-dots {
    position: absolute; bottom: 4.5rem; left: 5%; z-index: 5;
    display: flex; gap: 0.6rem; list-style: none;
}
.hero-dot {
    width: 28px; height: 2px; background: rgba(255,255,255,0.3);
    border: none; cursor: pointer; padding: 0;
    transition: background 0.3s, width 0.3s;
    flex-shrink: 0;
}
.hero-dot.active { background: var(--gold); width: 48px; }

/* Image placeholder frames — decorative overlay on all image containers */
.hotel-card-img::before,
.dest-block-img::before,
.tour-card-img::before,
.blog-featured-img::before {
    content: '◈';
    position: absolute; inset: 0; z-index: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 3rem;
    color: rgba(201,168,76,0.18); pointer-events: none;
}
.hotel-card-img-bg,
.dest-block-img-bg,
.tour-card-img-bg,
.blog-featured-img-bg { z-index: 1; }

/* Tour list left panel — image placeholder */
.tour-num {
    padding: 0 !important;
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative; overflow: hidden;
}
.tour-num-img {
    flex: 1; background: var(--ink); min-height: 140px;
    position: relative; overflow: hidden;
}
.tour-num-img::before {
    content: '◈'; position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 2.5rem;
    color: rgba(201,168,76,0.15); pointer-events: none; z-index: 0;
}
.tour-num-img-bg {
    position: absolute; inset: 0; z-index: 1;
    background-size: cover; background-position: center; opacity: 0.4;
    transition: opacity 0.4s;
}
.tour-item:hover .tour-num-img-bg { opacity: 0.28; }
.tour-num-meta {
    padding: 1.5rem 1.75rem;
    border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 0.35rem;
}
.tour-num-meta strong {
    font-family: var(--serif); font-size: 2rem; opacity: 0.18;
    line-height: 1; display: block; color: var(--gold);
}
.tour-num-meta span { font-size: 0.68rem; letter-spacing: 0.1em; color: var(--gold); }

/* Blog post content — all heading levels, Gutenberg and Classic Editor */
.post-content h1, .post-content h2, .post-content h3,
.post-content h4, .post-content h5, .post-content h6,
.post-content .wp-block-heading {
    font-family: var(--serif); font-weight: 400;
    line-height: 1.25; color: var(--ink);
    margin: 2.5rem 0 0.85rem;
}
.post-content h2, .post-content h2.wp-block-heading { font-size: clamp(1.5rem,2.8vw,2.2rem); }
.post-content h3, .post-content h3.wp-block-heading { font-size: clamp(1.25rem,2.2vw,1.7rem); }
.post-content h4, .post-content h4.wp-block-heading { font-size: 1.2rem; letter-spacing: 0.01em; }
.post-content h5, .post-content h5.wp-block-heading { font-size: 1rem; font-weight: 600; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-dark); }
.post-content h6, .post-content h6.wp-block-heading { font-size: 0.85rem; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }

/* Inst-visual placeholder when image is absent */
.inst-visual::before {
    content: '◈'; position: absolute; inset: 0; z-index: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 4rem;
    color: rgba(201,168,76,0.1); pointer-events: none;
}
.inst-visual-bg { z-index: 1; }
.inst-visual-overlay { z-index: 2; }
.inst-visual-label { z-index: 3; }

/* -------------------------------------------------------------------------
   29. Blog Single Post
   ------------------------------------------------------------------------- */
.post-hero { height: 55vh; position: relative; display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); }
.post-content { max-width: 740px; margin: 0 auto; padding: 5rem 5%; }
.post-content p { font-size: 1rem; line-height: 1.85; color: var(--ink); margin-bottom: 1.5rem; }
.post-content h2, .post-content h3 { font-family: var(--serif); margin: 2.5rem 0 1rem; }
.post-content h2 { font-size: clamp(1.4rem,2.5vw,2rem); }
.post-content h3 { font-size: clamp(1.2rem,2vw,1.5rem); }
.post-content blockquote { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--gold-dark); padding-left: 1.5rem; border-left: 3px solid var(--gold); margin: 2rem 0; line-height: 1.65; }
.post-content ul, .post-content ol { margin: 1rem 0 1.5rem 2rem; }
.post-content li { font-size: 0.92rem; color: var(--ink); line-height: 1.75; margin-bottom: 0.4rem; }
.post-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.post-cats a { color: var(--gold); }

/* -------------------------------------------------------------------------
   30. 404 & Generic Page
   ------------------------------------------------------------------------- */
.not-found { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 5%; padding-top: calc(var(--nav-h) + 4rem); }
.not-found-num { font-family: var(--serif); font-size: clamp(6rem, 15vw, 12rem); color: rgba(201,168,76,0.15); line-height: 1; display: block; margin-bottom: 1rem; }
.not-found h1 { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.5rem); color: var(--ink); margin-bottom: 1rem; }
.not-found p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; max-width: 480px; margin: 0 auto 2rem; }
.generic-page { padding: 7rem 5%; padding-top: calc(var(--nav-h) + 5rem); }

/* -------------------------------------------------------------------------
   31. Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .coming-soon-grid { grid-template-columns: repeat(2,1fr); }
    .clients-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
    :root { --nav-h: 64px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .promise { grid-template-columns: 1fr; }
    .promise-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.15); }
    .destinations-grid { grid-template-columns: 1fr; }
    .tour-item { grid-template-columns: 1fr; }
    .tour-num { border-right: none; border-bottom: 1px solid var(--border); flex-direction: row; min-height: auto; }
    .tour-num-img { min-height: 100px; max-width: 120px; }
    .tour-num-meta { border-top: none; border-left: 1px solid var(--border); }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .cal-layout { grid-template-columns: 1fr; }
    .about-strip { grid-template-columns: 1fr; }
    .about-img { min-height: 300px; }
    .cta-strip { flex-direction: column; align-items: flex-start; }
    .tour-featured, .tour-intro, .custom-section { grid-template-columns: 1fr; }
    .tour-featured-img { min-height: 280px; }
    .tours-grid { grid-template-columns: 1fr 1fr; }
    .policy-grid { grid-template-columns: 1fr; }
    .quick-contact { grid-template-columns: 1fr; }
    .contact-main { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .about-hero-content { grid-template-columns: 1fr; }
    .origin, .mv-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .audience-grid { grid-template-columns: 1fr 1fr; }
    .clients-grid { grid-template-columns: 1fr 1fr; }
    .destination-block, .service-block, .institution-block { grid-template-columns: 1fr; }
    .destination-block.reverse, .service-block.reverse, .institution-block.reverse { direction: ltr; }
    .dest-block-img, .service-block-img, .institution-visual { min-height: 260px; }
    .service-block-content { padding: 2.5rem 1.5rem; }
    .service-block-num { font-size: 2.5rem; }
    .service-block-title { font-size: 1.4rem; }
    .service-block-desc { font-size: 0.9rem; line-height: 1.75; }
    .services-intro-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 5%; }
    .blog-featured { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-strip { grid-template-columns: 1fr; gap: 2rem; }
    .ecosystem-diagram { grid-template-columns: 1fr; }
    .eco-arrow { transform: rotate(90deg); margin: 1rem auto; }
    .connect-grid { grid-template-columns: 1fr; }
    .ritual-grid { grid-template-columns: 1fr; }
    .fact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .why-grid { grid-template-columns: 1fr; }
    .tour-stats, .tours-grid { grid-template-columns: 1fr; }
    .services-grid, .audience-grid, .clients-grid { grid-template-columns: 1fr; }
    .hotels-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .partner-list { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .fact-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-input { border-right: 1px solid rgba(201,168,76,0.25); border-bottom: none; }
}

@media (max-width: 480px) {
    .home-hero h1 { font-size: 2.4rem; }
    .page-hero h1 { font-size: 2.2rem; }
}

/* -------------------------------------------------------------------------
   32. Event Popup Modal + popup card styles
   → Canonical styles live in brand-elmina-events-plugin/assets/css/calendar.css
   ------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------
   33. Single Event Page
   ------------------------------------------------------------------------- */
.event-hero { }
.event-meta-band {
    background: var(--ink); padding: 1.5rem 5%;
}
.event-meta-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-wrap: wrap; align-items: center; gap: 2rem;
}
.event-meta-item {
    display: flex; align-items: center; gap: 0.75rem;
}
.event-meta-icon { font-size: 1.1rem; }
.event-meta-label {
    font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-bottom: 0.2rem;
}
.event-meta-value { font-size: 0.88rem; color: #fff; }
.event-content-wrap {
    max-width: 1200px; margin: 0 auto; padding: 5rem 5%;
    display: grid; grid-template-columns: 1fr 320px; gap: 4rem;
    align-items: start;
}
.event-content p { font-size: 1rem; line-height: 1.85; color: var(--ink); margin-bottom: 1.5rem; }
.event-content h2 { font-family: var(--serif); font-size: clamp(1.4rem,2.5vw,2rem); color: var(--ink); margin: 2.5rem 0 1rem; }
.event-content h3 { font-family: var(--serif); font-size: clamp(1.2rem,2vw,1.5rem); color: var(--ink); margin: 2rem 0 0.75rem; }
.event-sidebar-box {
    background: var(--sand); padding: 2rem;
    border-top: 3px solid var(--gold);
}
.event-sidebar-title {
    font-family: var(--serif); font-size: 1.1rem; color: var(--ink);
    margin-bottom: 0.75rem;
}
.event-sidebar-text {
    font-size: 0.85rem; line-height: 1.75; color: var(--muted); margin-bottom: 1.25rem;
}
.event-sidebar-link {
    font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); font-weight: 500;
}
.event-sidebar-link:hover { color: var(--gold-dark); }

@media (max-width: 900px) {
    .event-content-wrap { grid-template-columns: 1fr; }
    .event-meta-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* -------------------------------------------------------------------------
   33. Videos Page
   ------------------------------------------------------------------------- */

/* ── Gold outline button (used on dark backgrounds) ── */
.btn-gold-outline {
    display: inline-block;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    padding: 0.85rem 2rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.25s, color 0.25s;
    border-radius: 1px;
    text-decoration: none;
}
.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--ink);
}

/* ── Featured video section ── */
.video-featured-section {
    background: var(--ink);
    padding: 5rem 5%;
}
.video-featured-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
.video-featured-player {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
/* 16:9 aspect-ratio wrapper */
.video-featured-thumb,
.video-featured-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    cursor: pointer;
}
.video-featured-thumb {
    background-size: cover;
    background-position: center;
}
.video-featured-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,37,64,0.25);
    transition: background 0.25s;
}
.video-featured-thumb:hover .video-featured-overlay { background: rgba(10,37,64,0.1); }
.video-featured-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: none;
    border: none;
    cursor: pointer;
    width: 80px; height: 80px;
    padding: 0;
    transition: transform 0.2s;
}
.video-featured-thumb:hover .video-featured-play-btn { transform: translate(-50%, -50%) scale(1.1); }
.video-featured-play-btn svg {
    width: 100%; height: 100%;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}
.video-featured-frame {
    display: none;
}
.video-featured-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    border: 0;
}
/* Info panel */
.video-featured-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.video-featured-badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}
.video-featured-title {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.3;
    margin: 0;
}
.video-featured-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.85;
    margin: 0;
}

/* ── Video library ── */
.video-library {
    background: var(--warm-white);
    padding: 5rem 5%;
}
.video-library-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.video-playlist {
    margin-bottom: 4rem;
}
.video-playlist:last-child { margin-bottom: 0; }

.video-playlist-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.75rem;
    margin-bottom: 1.75rem;
}
.video-playlist-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--ink);
    margin: 0;
    letter-spacing: 0.01em;
}
.video-playlist-count {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

/* ── Video grid ── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.video-card {
    background: var(--ink);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.22s, box-shadow 0.22s;
    box-shadow: 0 4px 16px rgba(10,37,64,0.14);
    outline-offset: 3px;
}
.video-card:hover,
.video-card:focus {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(10,37,64,0.28);
}
/* 16:9 thumbnail */
.video-card-thumb {
    position: relative;
    padding-top: 56.25%;
    background-size: cover;
    background-position: center;
    background-color: #0a2540;
}
.video-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,37,64,0.3);
    transition: background 0.22s;
}
.video-card:hover .video-card-play { background: rgba(10,37,64,0.55); }
.video-card-play svg {
    width: 46px; height: 46px;
    color: #c9a84c;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.55));
    transition: transform 0.22s;
}
.video-card:hover .video-card-play svg { transform: scale(1.18); }
.video-card-body {
    padding: 1rem 1.25rem 1.25rem;
}
.video-card-title {
    font-family: var(--serif);
    font-size: 0.98rem;
    font-weight: 400;
    color: var(--cream);
    margin: 0 0 0.35rem;
    line-height: 1.45;
}
.video-card-meta {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin: 0;
}

/* ── Empty state ── */
.video-empty-state {
    background: var(--warm-white);
    padding: 6rem 5%;
    text-align: center;
    color: var(--muted);
}
.video-empty-icon {
    font-size: 3.5rem;
    color: rgba(201,168,76,0.3);
    margin-bottom: 1rem;
}
.video-empty-state h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

/* ── Video lightbox ── */
.video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}
.video-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}
.video-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4,12,24,0.93);
    backdrop-filter: blur(4px);
}
.video-lightbox-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 920px;
}
.video-lightbox-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    gap: 1rem;
}
.video-lightbox-title {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.video-lightbox-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s, transform 0.2s;
}
.video-lightbox-close:hover { color: var(--gold); transform: scale(1.1); }
.video-lightbox-embed {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.7);
}
.video-lightbox-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    /* !important overrides the inline style on the div */
    .video-featured-inner {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .video-featured-section { padding: 3.5rem 5%; }
    .video-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    /* On small phones make the featured section full-bleed and compact */
    .video-featured-inner {
        padding: 0 !important;
        gap: 1.5rem !important;
    }
    section[style*="padding:5rem 5%"] {
        padding: 2.5rem 5% !important;
    }
}
@media (max-width: 600px) {
    .video-grid { grid-template-columns: 1fr; }
    .video-library { padding: 3rem 5%; }
    .video-playlist-header { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
    .video-lightbox-inner { max-width: 100%; }
}

/* -------------------------------------------------------------------------
   34. Two-column pages — mobile responsive (Bakatue, Hotels, etc.)
   ------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .be-two-col-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .be-facts-inner-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    /* Reduce heavy padding on dark/light fact boxes on mobile */
    .be-two-col-grid > div[style*="padding:3rem"],
    .be-two-col-grid > div[style*="padding: 3rem"] {
        padding: 1.5rem !important;
    }
    /* Tour single: collapse sidebar below content */
    .be-tour-body-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        padding: 3rem 5% !important;
    }
}
@media (max-width: 480px) {
    .be-facts-inner-grid {
        grid-template-columns: 1fr !important;
    }
    .be-tour-body-grid {
        padding: 2rem 5% !important;
    }
}

/* -------------------------------------------------------------------------
   35. Video carousel card — ensure 100% width on mobile
   ------------------------------------------------------------------------- */
@media (max-width: 580px) {
    .vp-card {
        flex: 0 0 100% !important;
        min-width: 0 !important;
    }
    .vp-carousel {
        gap: 0.4rem !important;
    }
}
