/*
Theme Name: Project Name Theme
Theme URI: https://example.com
Author: Greg
Author URI: https://example.com
Description: Custom WordPress theme for Project Name.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: project-name-theme
Tags: custom, minimal
*/

/* ================= GOOGLE FONTS ================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,600;1,400&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');


/* ================= CSS CUSTOM PROPERTIES ================= */
:root {
    --gold:          #D4AF37;
    --gold-dark:     #b8952e;
    --dark-bg:       #333333;
    --dark-bg-deep:  #222222;
    --white:         #ffffff;
    --text:          #1a1a1a;
    --text-muted:    #666666;
    --text-light:    #b0b0b0;
    --border:        #e8e8e8;
    --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:     0 4px 20px rgba(0,0,0,0.12);
    --font-sans:     'Montserrat', system-ui, sans-serif;
    --font-serif:    'Lora', Georgia, serif;
    --font-display:  'Playfair Display', Georgia, serif;
    --header-h:      80px;
    --radius:        3px;
    --transition:    0.2s ease;
    --container:     1200px;
}


/* ================= CSS RESET & BASE ================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

address {
    font-style: normal;
}


/* ================= LAYOUT UTILITIES ================= */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}


/* ================= HEADER ================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    height: var(--header-h);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 2rem;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo a {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 50px;
    width: auto;
}


/* ================= NAVIGATION ================= */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 0.5rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.nav-menu > li > a:hover {
    color: var(--gold);
}


/* ================= DROPDOWN MENU ================= */
.has-dropdown {
    position: relative;
}

.has-dropdown > a::after {
    content: ' ▾';
    font-size: 0.6rem;
    opacity: 0.6;
}

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 210px;
    background: var(--white);
    border-top: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius) var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 600;
}

.dropdown li a {
    display: block;
    padding: 0.65rem 1.1rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    transition: color var(--transition), background var(--transition);
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    color: var(--gold);
    background: #fafafa;
}

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


/* ================= CONTACT CTA BUTTON ================= */
.nav-cta > a {
    background: var(--gold) !important;
    color: var(--text) !important;
    padding: 0.55rem 1.25rem !important;
    border-radius: var(--radius) !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em;
    transition: background var(--transition), box-shadow var(--transition) !important;
    box-shadow: 0 2px 6px rgba(212,175,55,0.35);
}

.nav-cta > a:hover {
    background: var(--gold-dark) !important;
    color: var(--text) !important;
    box-shadow: 0 4px 12px rgba(212,175,55,0.45);
}


/* ================= HAMBURGER MENU ================= */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius);
    transition: background var(--transition);
    flex-shrink: 0;
}

.nav-toggle:hover {
    background: #f5f5f5;
}

.hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ================= FOOTER ================= */
.site-footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 4rem 0 0;
}


/* ================= FOOTER GRID ================= */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h4 {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-footer a {
    color: var(--text-light);
    transition: color var(--transition);
}

.site-footer a:hover {
    color: var(--gold);
}


/* ================= FOOTER — BRAND COLUMN ================= */
.footer-brand .footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-brand .brand-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.85rem;
    letter-spacing: 0.05em;
}

.footer-brand address {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.footer-brand .footer-phone {
    font-size: 0.82rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
}


/* ================= FOOTER — SOCIAL ICONS ================= */
.social-icons {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    color: var(--text-light);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--text);
}

.social-icons svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-join a {
    font-size: 0.82rem;
    color: var(--text-light);
}


/* ================= FOOTER — SERVICES & NEWS LISTS ================= */
.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-list li a {
    font-size: 0.82rem;
    color: var(--text-light);
    transition: color var(--transition);
}

.footer-list li a:hover {
    color: var(--gold);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.news-list li a {
    font-size: 0.82rem;
    font-family: var(--font-serif);
    color: var(--text-light);
    line-height: 1.45;
    transition: color var(--transition);
}

.news-list li a:hover {
    color: var(--gold);
}

.footer-legal {
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-legal a {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
}


/* ================= FOOTER — BOTTOM BAR ================= */
.footer-bottom {
    padding: 1.25rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.04em;
}


/* ============================================================
   HOMEPAGE (front-page.php)
   ============================================================ */

/* -- Hero / Intro -- */
.fp-hero {
    padding: 5.5rem 0 3.5rem;
    text-align: center;
    background: var(--white);
}

.fp-hero__heading {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-style: italic;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 2.25rem;
    letter-spacing: -0.01em;
}

.fp-hero__heading em {
    font-style: italic;
    color: var(--gold);
}

.fp-hero__desc-wrap {
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
}

.fp-hero__desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: #888;
}


/* -- Category Filter -- */
.fp-filter {
    padding: 2rem 0 1.75rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.fp-filter__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.15rem 0.5rem;
}

.fp-filter__item {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #aaa;
    padding: 0.4rem 0.6rem;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
    cursor: pointer;
}

.fp-filter__item:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.fp-filter__item--active {
    color: var(--text);
    font-weight: 700;
    border-bottom-color: var(--gold);
}


/* -- Destination Grid -- */
.fp-grid {
    background: #111;
}

.fp-grid__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.fp-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    text-decoration: none;
}

.fp-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.55s ease;
    z-index: 0;
}

.fp-card:hover .fp-card__bg {
    transform: scale(1.07);
}

.fp-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.2)  45%,
        transparent         75%
    );
    z-index: 1;
    transition: opacity 0.3s ease;
}

.fp-card:hover .fp-card__overlay {
    opacity: 0.9;
}

.fp-card__name {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
    line-height: 1.3;
}

.fp-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text);
    background: var(--gold);
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.fp-card:hover .fp-card__badge {
    opacity: 1;
    transform: translateY(0);
}

/* -- Filter state -- */
.fp-card--hidden {
    display: none;
}

@keyframes fp-card-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0);   }
}

.fp-card--visible {
    animation: fp-card-in 0.28s ease forwards;
}

.fp-grid__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
}


/* -- Pre-Footer CTA -- */
.fp-cta {
    background: var(--dark-bg);
    padding: 6rem 0;
    text-align: center;
}

.fp-cta .container {
    max-width: 760px;
}

.fp-cta__sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.fp-cta__heading {
    font-family: var(--font-sans);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 2.5rem;
}

.fp-cta__btn {
    display: inline-block;
    background: var(--gold);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 1.1rem 2.75rem;
    border-radius: 0;
    text-decoration: none;
    transition: background var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.28);
}

.fp-cta__btn:hover {
    background: var(--gold-dark);
    color: var(--text);
    box-shadow: 0 6px 28px rgba(212, 175, 55, 0.45);
}


/* -- Homepage Responsive -- */
@media (max-width: 900px) {
    .fp-grid__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fp-hero {
        padding: 3.5rem 0 2.5rem;
    }

    .fp-hero__desc-wrap {
        padding-left: 1rem;
    }

    .fp-cta {
        padding: 4rem 0;
    }
}

@media (max-width: 560px) {
    .fp-grid__inner {
        grid-template-columns: 1fr;
    }

    .fp-card {
        aspect-ratio: 16 / 9;
    }
}


/* ================= RESPONSIVE — TABLET (max 900px) ================= */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}


/* ================= RESPONSIVE — MOBILE (max 768px) ================= */
@media (max-width: 768px) {

    /* Header */
    .site-header {
        height: 64px;
    }

    /* Show hamburger */
    .nav-toggle {
        display: flex;
    }

    /* Nav slides down below header */
    .main-navigation {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        padding: 0.5rem 1.5rem 1rem;
        z-index: 499;
    }

    .main-navigation.is-open {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-menu > li > a {
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        font-size: 0.75rem;
    }

    .nav-menu > li:last-child > a {
        border-bottom: none;
    }

    /* Flatten dropdown on mobile */
    .has-dropdown > a::after {
        content: '';
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        background: #fafafa;
        padding: 0.25rem 0 0.25rem 1rem;
    }

    .dropdown li a {
        padding: 0.5rem 0.5rem;
        font-size: 0.7rem;
        border-bottom: none;
    }

    /* CTA button reset on mobile */
    .nav-cta > a {
        display: inline-block;
        margin-top: 0.5rem;
        padding: 0.65rem 1.25rem !important;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* ================= RESPONSIVE — SMALL MOBILE (max 480px) ================= */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .site-footer {
        padding-top: 2.5rem;
    }
}


/* ============================================================
   DESTINATIONS PAGE (page-destinations.php)
   ============================================================ */

/* -- Page Hero -- */
.dp-hero {
    background-color: #0f0f0f;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 5.5rem 0 4.5rem;
    position: relative;
}

.dp-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
}

.dp-hero__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold);
    margin-bottom: 1.25rem;
    opacity: 0.85;
}

.dp-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-style: italic;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.dp-hero__divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 1.75rem;
}

.dp-hero__desc {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
}


/* -- Category Sections -- */
.dp-section {
    padding: 5rem 0;
    background: var(--white);
}

.dp-section:nth-child(even) {
    background: #f7f7f7;
}

.dp-section__hd {
    margin-bottom: 3rem;
}

.dp-section__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

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

.dp-section__title {
    font-family: var(--font-sans);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0f0f0f;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.dp-section__intro {
    font-size: 0.88rem;
    font-weight: 300;
    color: #999;
    max-width: 500px;
    line-height: 1.8;
}


/* -- Destination Grid -- */
.dp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}


/* -- Destination Card -- */
.dp-card {
    background: #1a1a1a;
    border-top: 3px solid var(--gold);
    display: flex;
    flex-direction: column;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.dp-card:hover {
    background: #232323;
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.dp-card__inner {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dp-card__region {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 0.6rem;
    opacity: 0.8;
}

.dp-card__name {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.dp-card__desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: #7a7a7a;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.75rem;
}

.dp-card__btn {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.65rem 1.35rem;
    border-radius: 0;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.dp-card__btn:hover,
.dp-card:hover .dp-card__btn {
    background: var(--gold);
    color: #0f0f0f;
}


/* -- Destinations Responsive -- */
@media (max-width: 1024px) {
    .dp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dp-hero {
        padding: 4rem 0 3rem;
    }

    .dp-section {
        padding: 3.5rem 0;
    }

    .dp-section__title {
        font-size: 1.75rem;
    }

    .dp-section__hd {
        margin-bottom: 2rem;
    }
}

@media (max-width: 560px) {
    .dp-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dp-card__inner {
        padding: 1.5rem 1.25rem;
    }

    .dp-hero__title {
        font-size: 2.4rem;
    }
}


/* ============================================================
   TOURS PAGE (page-tours.php)
   ============================================================ */

/* -- Tours Hero -- */
.tp-hero {
    background: var(--white);
    padding: 5.5rem 0 4rem;
    border-bottom: 3px solid var(--gold);
}

.tp-hero__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.tp-hero__title {
    font-family: var(--font-sans);
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0f0f0f;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.tp-hero__divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 1.75rem;
}

.tp-hero__desc {
    font-size: 1rem;
    font-weight: 300;
    color: #999;
    max-width: 600px;
    line-height: 1.85;
}


/* -- Tour Grid Section -- */
.tp-grid-section {
    background: #0a0a0a;
    padding: 5rem 0;
}

.tp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}


/* -- Tour Card -- */
.tp-card {
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: background var(--transition);
}

.tp-card:hover {
    background: #202020;
}

/* Image */
.tp-card__img-wrap {
    overflow: hidden;
    aspect-ratio: 8 / 5;
    flex-shrink: 0;
}

.tp-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.tp-card:hover .tp-card__img {
    transform: scale(1.06);
}

/* Card body */
.tp-card__body {
    padding: 1.75rem 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 2px solid #262626;
    transition: border-color var(--transition);
}

.tp-card:hover .tp-card__body {
    border-top-color: var(--gold);
}

/* Meta row */
.tp-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.tp-card__dot {
    opacity: 0.4;
}

/* Title */
.tp-card__title {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 0.9rem;
}

/* Summary */
.tp-card__summary {
    font-size: 0.82rem;
    font-weight: 300;
    color: #686868;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 1.75rem;
}

/* CTA Button */
.tp-card__btn {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.65rem 1.35rem;
    border-radius: 0;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.tp-card__btn:hover,
.tp-card:hover .tp-card__btn {
    background: var(--gold);
    color: #0f0f0f;
}


/* -- Bespoke CTA Strip -- */
.tp-cta-strip {
    background: var(--dark-bg);
    padding: 3rem 0;
    border-top: 3px solid var(--gold);
}

.tp-cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.tp-cta-strip__text {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    max-width: 560px;
    line-height: 1.75;
}

.tp-cta-strip__btn {
    display: inline-block;
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: var(--gold);
    color: #0f0f0f;
    padding: 0.9rem 2.25rem;
    border-radius: 0;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition);
}

.tp-cta-strip__btn:hover {
    background: var(--gold-dark);
}


/* -- Tours Responsive -- */
@media (max-width: 1100px) {
    .tp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tp-hero {
        padding: 4rem 0 3rem;
    }

    .tp-grid-section {
        padding: 3rem 0;
    }

    .tp-cta-strip__inner {
        flex-direction: column;
        text-align: center;
    }

    .tp-cta-strip__btn {
        align-self: center;
    }
}

@media (max-width: 560px) {
    .tp-grid {
        grid-template-columns: 1fr;
    }

    .tp-card__body {
        padding: 1.25rem 1.25rem 1.5rem;
    }
}


/* ============================================================
   CONTACT PAGE (page-contact.php)
   ============================================================ */

/* -- Contact Hero -- */
.cp-hero {
    background: var(--dark-bg);
    padding: 5rem 0 4rem;
    border-bottom: 3px solid var(--gold);
}

.cp-hero__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold);
    margin-bottom: 1.25rem;
    opacity: 0.8;
}

.cp-hero__title {
    font-family: var(--font-sans);
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.cp-hero__sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    max-width: 500px;
    line-height: 1.8;
}


/* -- Main Section -- */
.cp-main {
    background: #f0f0f0;
    padding: 5rem 0;
}

.cp-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3px;
    align-items: start;
}


/* -- Shared Panel Heading -- */
.cp-panel__heading {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: #aaa;
    padding: 1.25rem 2rem;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}


/* -- Left Column: Contact Info -- */
.cp-info {
    background: var(--white);
    border-top: 3px solid var(--gold);
    display: flex;
    flex-direction: column;
}

.cp-detail-list {
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
}

.cp-detail {
    padding: 1.35rem 0;
    border-bottom: 1px solid #f2f2f2;
}

.cp-detail:last-child {
    border-bottom: none;
}

.cp-detail__label {
    display: block;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 0.45rem;
}

.cp-detail__value {
    font-size: 0.88rem;
    font-weight: 400;
    color: #444;
    line-height: 1.7;
}

.cp-detail__value a {
    color: #444;
    text-decoration: none;
    transition: color var(--transition);
}

.cp-detail__value a:hover {
    color: var(--gold);
}

.cp-response-note {
    margin: 1.5rem 2rem 2rem;
    padding: 1.1rem 1.25rem;
    border-left: 3px solid var(--gold);
    background: #fafafa;
}

.cp-response-note p {
    font-size: 0.78rem;
    font-weight: 300;
    color: #888;
    line-height: 1.75;
}

.cp-response-note strong {
    font-weight: 600;
    color: #555;
}


/* -- Right Column: Contact Form -- */
.cp-form-wrap {
    background: var(--white);
    border-top: 3px solid var(--gold);
    display: flex;
    flex-direction: column;
}

.cp-form {
    padding: 2rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

/* Two-field row */
.cp-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
}

/* Individual field group */
.cp-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

/* Label */
.cp-form__label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #2a2a2a;
}

.cp-form__req {
    color: var(--gold);
    font-size: 0.65rem;
}

/* Input / Select / Textarea base */
.cp-form__input,
.cp-form__select,
.cp-form__textarea {
    width: 100%;
    background: #fafafa;
    border: 1px solid #d8d8d8;
    border-radius: 0;
    padding: 0.85rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    color: #222;
    outline: none;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.cp-form__input::placeholder,
.cp-form__textarea::placeholder {
    color: #bbb;
    font-weight: 300;
}

/* Focus state */
.cp-form__input:focus,
.cp-form__select:focus,
.cp-form__textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Select — custom arrow */
.cp-form__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23aaa' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
    color: #aaa;
}

.cp-form__select.cp-form__select--chosen {
    color: #222;
}

/* Textarea */
.cp-form__textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.65;
}

/* Form footer row */
.cp-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid #f0f0f0;
}

/* Submit button */
.cp-form__submit {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    background: var(--dark-bg);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 0;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.cp-form__submit:hover {
    background: var(--gold);
    color: #0f0f0f;
}

/* Privacy note */
.cp-form__privacy {
    font-size: 0.72rem;
    font-weight: 300;
    color: #bbb;
    line-height: 1.5;
}

.cp-form__privacy a {
    color: #999;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}

.cp-form__privacy a:hover {
    color: var(--gold);
}


/* -- Contact Responsive -- */
@media (max-width: 960px) {
    .cp-grid {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}

@media (max-width: 768px) {
    .cp-hero {
        padding: 3.5rem 0 3rem;
    }

    .cp-main {
        padding: 3rem 0;
    }

    .cp-form__row {
        grid-template-columns: 1fr;
    }

    .cp-form {
        padding: 1.5rem 1.5rem 2rem;
    }

    .cp-detail-list {
        padding: 0 1.5rem;
    }

    .cp-response-note {
        margin: 1.25rem 1.5rem 1.75rem;
    }

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

@media (max-width: 480px) {
    .cp-form__submit {
        width: 100%;
        text-align: center;
    }
}


/* ============================================================
   ABOUT PAGE (page-about.php)
   ============================================================ */

/* -- Hero -- */
.ap-hero {
    background: var(--white);
    padding: 5.5rem 0 4.5rem;
    border-bottom: 1px solid #ebebeb;
}

.ap-hero__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.ap-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-style: italic;
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.ap-hero__divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 1.75rem;
}

.ap-hero__sub {
    font-size: 1.05rem;
    font-weight: 400;
    color: #555;
    max-width: 560px;
    line-height: 1.75;
}


/* -- Stats Strip -- */
.ap-stats {
    background: #161616;
    border-top: 3px solid var(--gold);
    border-bottom: 1px solid #222;
}

.ap-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ap-stat {
    padding: 2.5rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.ap-stat:last-child {
    border-right: none;
}

.ap-stat__value {
    font-family: var(--font-sans);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.01em;
}

.ap-stat__label {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.35);
}


/* -- Mission / Story -- */
.ap-mission {
    background: var(--white);
    padding: 5.5rem 0;
}

.ap-mission__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start;
}

/* Sticky image column — stays visible while text scrolls */
.ap-mission__img-col {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
}

.ap-mission__img-wrap {
    overflow: hidden;
    border-top: 3px solid var(--gold);
}

.ap-mission__img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.ap-mission__img-wrap:hover .ap-mission__img {
    transform: scale(1.03);
}

.ap-mission__caption {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.ap-mission__caption span {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #c0c0c0;
}

/* Text column */
.ap-mission__section {
    padding: 1.85rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.ap-mission__section:first-child {
    padding-top: 0;
}

.ap-mission__section:last-child {
    border-bottom: none;
}

.ap-mission__label {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.ap-mission__body {
    font-size: 0.9rem;
    font-weight: 300;
    color: #555;
    line-height: 1.9;
}

/* Inline CTA inside text column */
.ap-mission__cta {
    padding-top: 2.25rem;
}

.ap-mission__btn {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #0f0f0f;
    background: var(--gold);
    padding: 0.95rem 2rem;
    border-radius: 0;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.ap-mission__btn:hover {
    background: var(--gold-dark);
}


/* -- Certifications -- */
.ap-certs {
    background: var(--dark-bg);
    padding: 5rem 0 5.5rem;
}

.ap-certs__hd {
    max-width: 680px;
    margin-bottom: 3.5rem;
}

.ap-certs__eyebrow {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(212, 175, 55, 0.6);
    margin-bottom: 0.9rem;
}

.ap-certs__title {
    font-family: var(--font-sans);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.ap-certs__sub {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.8;
}

/* Cert grid */
.ap-certs__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

/* Individual cert block */
.ap-cert {
    background: #2c2c2c;
    border-top: 3px solid rgba(212, 175, 55, 0.35);
    padding: 2.25rem 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    transition: background var(--transition), border-color var(--transition);
}

.ap-cert:hover {
    background: #303030;
    border-top-color: var(--gold);
}

/* Large acronym */
.ap-cert__acronym {
    font-family: var(--font-sans);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.85rem;
}

/* Short gold rule */
.ap-cert__rule {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.ap-cert:hover .ap-cert__rule {
    opacity: 1;
}

/* Full organisation name */
.ap-cert__name {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
    margin-bottom: 0.75rem;
    flex: 1;
}

/* Short description */
.ap-cert__desc {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

/* Type badge */
.ap-cert__badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.52rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.3rem 0.7rem;
}

.ap-cert:hover .ap-cert__badge {
    border-color: var(--gold);
}


/* -- About Responsive -- */
@media (max-width: 960px) {
    .ap-mission__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Unstick image on smaller viewports */
    .ap-mission__img-col {
        position: static;
    }

    .ap-certs__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ap-hero {
        padding: 4rem 0 3.5rem;
    }

    .ap-mission {
        padding: 3.5rem 0;
    }

    .ap-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ap-stat {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .ap-stat:nth-child(even) {
        border-right: none;
    }

    .ap-certs {
        padding: 3.5rem 0;
    }
}

@media (max-width: 540px) {
    .ap-certs__grid {
        grid-template-columns: 1fr;
    }

    .ap-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ap-cert {
        padding: 1.75rem 1.5rem;
    }
}


/* ============================================================
   CUSTOM ITINERARIES PAGE (page-custom-itineraries.php)
   ============================================================ */

/* -- Hero -- */
.ci-hero {
    background: var(--dark-bg);
    padding: 5.5rem 0 4.5rem;
    border-bottom: 3px solid var(--gold);
}

.ci-hero__inner {
    border-left: 4px solid var(--gold);
    padding-left: 2.5rem;
    max-width: 760px;
}

.ci-hero__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(212, 175, 55, 0.65);
    margin-bottom: 1.25rem;
}

.ci-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-style: italic;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.ci-hero__sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.9;
    max-width: 600px;
}


/* -- Engineering Process Section -- */
.ci-process {
    background: #f5f5f5;
    padding: 5.5rem 0;
}

.ci-process__hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #d8d8d8;
}

.ci-process__title {
    font-family: var(--font-sans);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0f0f0f;
    line-height: 1.15;
}

.ci-process__subtitle {
    font-size: 0.82rem;
    font-weight: 300;
    color: #aaa;
    max-width: 340px;
    line-height: 1.7;
    text-align: right;
}


/* -- Step Grid -- */
.ci-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

/* Individual step card */
.ci-step {
    background: var(--white);
    border-top: 3px solid #ddd;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: border-top-color var(--transition);
}

.ci-step:hover {
    border-top-color: var(--gold);
}

/* Oversized step number */
.ci-step__number {
    font-family: var(--font-sans);
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.85;
    transition: opacity var(--transition);
}

.ci-step:hover .ci-step__number {
    opacity: 1;
}

/* Step title */
.ci-step__title {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #0f0f0f;
    margin-bottom: 0.65rem;
}

/* Short gold rule */
.ci-step__rule {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.1rem;
    opacity: 0.6;
    transition: opacity var(--transition), width var(--transition);
}

.ci-step:hover .ci-step__rule {
    opacity: 1;
    width: 36px;
}

/* Step description */
.ci-step__desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: #777;
    line-height: 1.85;
    flex: 1;
}


/* -- Inquiry CTA -- */
.ci-cta {
    background: var(--white);
    padding: 6rem 0;
    border-top: 1px solid #e8e8e8;
    text-align: center;
}

.ci-cta .container {
    max-width: 680px;
}

.ci-cta__eyebrow {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.ci-cta__title {
    font-family: var(--font-sans);
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0f0f0f;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.ci-cta__sub {
    font-size: 0.9rem;
    font-weight: 300;
    color: #aaa;
    max-width: 480px;
    margin: 0 auto 2.75rem;
    line-height: 1.8;
}

/* CTA button: gold fill → dark/gold on hover */
.ci-cta__btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #0f0f0f;
    background: var(--gold);
    border: 2px solid var(--gold);
    padding: 1.15rem 3.25rem;
    border-radius: 0;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.ci-cta__btn:hover {
    background: var(--dark-bg);
    color: var(--gold);
    border-color: var(--dark-bg);
}


/* -- Custom Itineraries Responsive -- */
@media (max-width: 960px) {
    .ci-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .ci-process__subtitle {
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .ci-hero {
        padding: 4rem 0 3.5rem;
    }

    .ci-hero__inner {
        padding-left: 1.5rem;
        border-left-width: 3px;
    }

    .ci-process {
        padding: 3.5rem 0;
    }

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

    .ci-cta {
        padding: 4rem 0;
    }
}

@media (max-width: 540px) {
    .ci-steps {
        grid-template-columns: 1fr;
    }

    .ci-step__number {
        font-size: 3.5rem;
    }

    .ci-step {
        padding: 2rem 1.5rem;
    }
}


/* ============================================================
   GROUP TOURS PAGE (page-group-tours.php)
   ============================================================ */

/* -- Hero -- */
.gt-hero {
    background: var(--dark-bg);
    padding: 5rem 0 4rem;
    border-bottom: 3px solid var(--gold);
}

.gt-hero__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(212, 175, 55, 0.55);
    margin-bottom: 1.25rem;
}

.gt-hero__title {
    font-family: var(--font-sans);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1.1rem;
}

.gt-hero__sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 520px;
    letter-spacing: 0.02em;
}


/* -- Departure Board Section -- */
.gt-departures {
    background: var(--white);
    padding: 5rem 0;
}

.gt-departures__hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid #0f0f0f;
}

.gt-departures__title {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0f0f0f;
}

.gt-departures__note {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #bbb;
    text-transform: uppercase;
}


/* -- Departure Board Table -- */
.gt-board-wrap {
    overflow-x: auto;
    border: 1px solid #e0e0e0;
    border-top: none;
}

.gt-board {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-sans);
    table-layout: fixed;
}

/* Column widths */
.gt-board colgroup col:nth-child(1) { width: 28%; }
.gt-board colgroup col:nth-child(2) { width: 22%; }
.gt-board colgroup col:nth-child(3) { width: 14%; }
.gt-board colgroup col:nth-child(4) { width: 12%; }
.gt-board colgroup col:nth-child(5) { width: 24%; }

/* Header row */
.gt-board__head th {
    background: #161616;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    padding: 0.95rem 1.25rem;
    text-align: left;
    border-right: 1px solid #2a2a2a;
    white-space: nowrap;
}

.gt-board__head th:first-child {
    border-left: 3px solid var(--gold);
    color: rgba(212, 175, 55, 0.7);
}

.gt-board__head th:last-child {
    border-right: none;
}

/* Body rows */
.gt-board__row td {
    padding: 1.1rem 1.25rem;
    font-size: 0.82rem;
    color: #444;
    border-bottom: 1px solid #ececec;
    vertical-align: middle;
    transition: background var(--transition);
}

.gt-board__row:last-child td {
    border-bottom: none;
}

.gt-board__row:hover td {
    background: #fafafa;
}

/* Destination cell */
.gt-board__dest {
    border-left: 3px solid transparent;
    transition: border-color var(--transition);
}

.gt-board__row:hover .gt-board__dest {
    border-left-color: var(--gold);
}

.gt-board__dest-name {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0f0f0f;
    margin-bottom: 0.2rem;
}

.gt-board__dest-region {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #aaa;
}

/* Capacity + Price cells */
.gt-board__capacity {
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: #555;
}

.gt-board__price {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.04em;
}

/* Status cell */
.gt-board__status-cell {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    align-items: flex-start;
}

/* Status badge */
.gt-board__status {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
}

.gt-board__status--available { color: #22c55e; }
.gt-board__status--limited   { color: #f59e0b; }
.gt-board__status--soldout   { color: #aaa;    }

/* Book Now button */
.gt-board__btn {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.38rem 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
}

.gt-board__btn:hover {
    background: var(--gold);
    color: #0f0f0f;
}

/* Disabled / sold out state */
.gt-board__btn--disabled {
    color: #ccc;
    border-color: #e0e0e0;
    cursor: not-allowed;
    pointer-events: none;
    background: transparent;
}

/* Sold-out row — dim entire row */
.gt-board__row--soldout td {
    opacity: 0.55;
}

.gt-board__row--soldout:hover td {
    background: transparent;
    opacity: 0.55;
}


/* -- Private Charter Section -- */
.gt-charter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

/* Image column */
.gt-charter__img-col {
    position: relative;
    overflow: hidden;
}

.gt-charter__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.15) brightness(0.9);
    transition: transform 0.55s ease, filter 0.4s ease;
}

.gt-charter__img-col:hover .gt-charter__img {
    transform: scale(1.04);
    filter: grayscale(80%) contrast(1.1) brightness(0.95);
}

.gt-charter__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.25),
        transparent 60%
    );
    pointer-events: none;
}

/* Text column */
.gt-charter__text {
    background: var(--white);
    padding: 4.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 3px solid var(--gold);
}

.gt-charter__label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--gold);
    margin-bottom: 1.25rem;
    opacity: 0.85;
}

.gt-charter__title {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0f0f0f;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.gt-charter__rule {
    width: 36px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.gt-charter__desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: #666;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    max-width: 400px;
}

/* Charter button: dark bg, gold text */
.gt-charter__btn {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    background: var(--dark-bg);
    padding: 1rem 2rem;
    border-radius: 0;
    text-decoration: none;
    border: 2px solid var(--dark-bg);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.gt-charter__btn:hover {
    background: var(--gold);
    color: #0f0f0f;
    border-color: var(--gold);
}


/* -- Group Tours Responsive -- */
@media (max-width: 1024px) {
    .gt-board {
        table-layout: auto;
    }

    .gt-charter__text {
        padding: 3.5rem 3rem;
    }
}

@media (max-width: 900px) {
    .gt-charter {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .gt-charter__img-col {
        height: 320px;
    }

    .gt-charter__text {
        border-left: none;
        border-top: 3px solid var(--gold);
        padding: 3rem 2rem;
    }

    .gt-charter__title br {
        display: none;
    }
}

@media (max-width: 768px) {
    .gt-hero {
        padding: 3.5rem 0 3rem;
    }

    .gt-departures {
        padding: 3rem 0;
    }

    /* Responsive table: hide header, stack each row */
    .gt-board-wrap {
        border: none;
    }

    .gt-board thead {
        display: none;
    }

    .gt-board,
    .gt-board tbody,
    .gt-board tr,
    .gt-board td {
        display: block;
        width: 100%;
    }

    .gt-board tbody tr {
        border: 1px solid #e0e0e0;
        margin-bottom: 1rem;
        border-left: 3px solid var(--gold);
    }

    .gt-board__row--soldout {
        border-left-color: #ddd;
    }

    .gt-board tbody td {
        display: grid;
        grid-template-columns: 110px 1fr;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #f5f5f5;
        font-size: 0.82rem;
    }

    .gt-board tbody td:last-child {
        border-bottom: none;
    }

    /* Label generated from data-label attribute */
    .gt-board tbody td::before {
        content: attr(data-label);
        font-size: 0.52rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        color: var(--gold);
    }

    /* Status cell overrides */
    .gt-board__status-cell {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }

    /* Remove left border transition on mobile */
    .gt-board__dest {
        border-left: none;
    }
}

@media (max-width: 480px) {
    .gt-departures__hd {
        flex-direction: column;
        align-items: flex-start;
    }

    .gt-board tbody td {
        grid-template-columns: 90px 1fr;
    }
}


/* ============================================================
   LUXURY TRAVEL PAGE (page-luxury-travel.php)
   ============================================================ */

/* -- Immersive Hero -- */
.lt-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lt-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.lt-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.82) 100%
    );
    z-index: 1;
}

.lt-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 6rem 1.5rem;
    max-width: 820px;
    width: 100%;
}

.lt-hero__pretitle {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    color: rgba(212, 175, 55, 0.55);
    margin-bottom: 2.25rem;
}

.lt-hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    font-style: italic;
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.lt-hero__rule {
    width: 56px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2rem;
    opacity: 0.6;
}

.lt-hero__sub {
    font-size: 0.72rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.45);
    line-height: 2.2;
}

.lt-hero__cta {
    display: inline-block;
    margin-top: 3rem;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    padding-bottom: 0.25rem;
    transition: color var(--transition), border-color var(--transition);
}

.lt-hero__cta:hover {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.35);
}

/* Subtle scroll pulse at hero base */
.lt-hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(212,175,55,0.6), transparent);
    animation: lt-scroll-pulse 2s ease-in-out infinite;
}

@keyframes lt-scroll-pulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) scaleY(1);   }
    50%       { opacity: 1;   transform: translateX(-50%) scaleY(1.1); }
}


/* -- VIP Framework -- */
.lt-vip {
    background: var(--white);
    padding: 8rem 0;
}

.lt-vip__hd {
    text-align: center;
    margin-bottom: 5.5rem;
}

.lt-vip__eyebrow {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(212, 175, 55, 0.45);
    margin-bottom: 1rem;
}

.lt-vip__heading {
    font-family: var(--font-sans);
    font-size: clamp(0.85rem, 1.5vw, 1.15rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold);
}

/* Pillar grid */
.lt-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #e8e8e8;
}

.lt-pillar {
    padding: 3.5rem 2.75rem;
    border-right: 1px solid #e8e8e8;
    border-top: 4px solid var(--gold);
    transition: background var(--transition);
}

.lt-pillar:last-child {
    border-right: none;
}

.lt-pillar:hover {
    background: #fafafa;
}

.lt-pillar__num {
    display: block;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: rgba(212, 175, 55, 0.45);
    margin-bottom: 1.75rem;
}

.lt-pillar__title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #0f0f0f;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.lt-pillar__body {
    font-size: 0.85rem;
    font-weight: 300;
    color: #999;
    line-height: 1.95;
}


/* -- Destinations Section Header -- */
.lt-destinations {
    background: #f2f2f2;
}

.lt-dest-section-hd {
    padding: 6rem 0 4rem;
}

.lt-dest-section-eyebrow {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(212, 175, 55, 0.55);
    margin-bottom: 0.85rem;
}

.lt-dest-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-style: italic;
    font-weight: 700;
    color: #0f0f0f;
}


/* -- Asymmetric Destination Rows -- */
.lt-dest-row {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 600px;
    position: relative;
}

.lt-dest-row--reverse {
    grid-template-columns: 45% 55%;
}

/* Swap order in reversed rows */
.lt-dest-row--reverse .lt-dest__img-col {
    order: 2;
}

.lt-dest-row--reverse .lt-dest__text-col {
    order: 1;
    justify-content: flex-end;
}

/* Image column */
.lt-dest__img-col {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.lt-dest__img-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lt-dest__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) brightness(0.95);
    transition: transform 0.65s ease, filter 0.4s ease;
}

.lt-dest__img-inner:hover .lt-dest__img {
    transform: scale(1.05);
    filter: contrast(1.08) brightness(1);
}

/* Text column */
.lt-dest__text-col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 3rem 0;
}

/* Dark overlapping text box */
.lt-dest__text {
    background: var(--dark-bg);
    padding: 3.5rem 3rem;
    max-width: 400px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Pull toward image */
    margin-left: -4rem;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.25);
}

.lt-dest-row--reverse .lt-dest__text {
    margin-left: 0;
    margin-right: -4rem;
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.25);
}

.lt-dest__tag {
    display: block;
    font-size: 0.52rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(212, 175, 55, 0.55);
    margin-bottom: 1.1rem;
}

.lt-dest__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.6rem);
    font-style: italic;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.lt-dest__rule {
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.lt-dest__desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.9;
    margin-bottom: 2rem;
}

/* Text link CTA */
.lt-dest__cta {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.2rem;
    align-self: flex-start;
    transition: color var(--transition), border-color var(--transition);
}

.lt-dest__cta:hover {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}


/* -- Exclusive Inquiry CTA -- */
.lt-cta {
    background: var(--dark-bg);
    padding: 7rem 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.lt-cta .container {
    max-width: 620px;
}

.lt-cta__eyebrow {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: rgba(212, 175, 55, 0.45);
    margin-bottom: 1.25rem;
}

.lt-cta__heading {
    font-family: var(--font-sans);
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.lt-cta__desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    max-width: 460px;
    margin: 0 auto 3.5rem;
    line-height: 1.9;
}

.lt-cta__btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #0f0f0f;
    background: var(--gold);
    padding: 1.15rem 3.5rem;
    border-radius: 0;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.lt-cta__btn:hover {
    background: var(--white);
    color: #0f0f0f;
}


/* -- Luxury Travel Responsive -- */
@media (max-width: 1100px) {
    .lt-dest__text {
        padding: 3rem 2.5rem;
        max-width: 360px;
        min-height: 320px;
    }
}

@media (max-width: 960px) {
    .lt-pillars {
        grid-template-columns: 1fr;
    }

    .lt-pillar {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .lt-pillar:last-child {
        border-bottom: none;
    }

    /* Stack destination rows vertically */
    .lt-dest-row,
    .lt-dest-row--reverse {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .lt-dest-row--reverse .lt-dest__img-col,
    .lt-dest-row--reverse .lt-dest__text-col {
        order: unset;
    }

    .lt-dest__img-col {
        height: 380px;
    }

    .lt-dest__text-col {
        justify-content: flex-start;
        padding: 0;
    }

    /* Remove overlap on small viewports */
    .lt-dest__text,
    .lt-dest-row--reverse .lt-dest__text {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        min-height: auto;
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    .lt-hero {
        min-height: 80vh;
    }

    .lt-hero__title {
        font-size: 3.2rem;
    }

    .lt-vip {
        padding: 5rem 0;
    }

    .lt-vip__hd {
        margin-bottom: 3.5rem;
    }

    .lt-dest-section-hd {
        padding: 4rem 0 2.5rem;
    }

    .lt-dest__text {
        padding: 2.5rem 2rem;
    }

    .lt-cta {
        padding: 4.5rem 0;
    }
}

@media (max-width: 480px) {
    .lt-hero__sub {
        letter-spacing: 0.18em;
    }

    .lt-vip {
        padding: 3.5rem 0;
    }

    .lt-pillar {
        padding: 2.5rem 1.75rem;
    }
}


/* ============================================================
   CRUISE PACKAGES PAGE (page-cruise-packages.php)
   ============================================================ */

/* -- Hero -- */
.cp-hero {
    background: var(--dark-bg);
    padding: 5rem 0 4rem;
    border-bottom: 3px solid var(--gold);
}

.cp-hero__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(212, 175, 55, 0.5);
    margin-bottom: 1.25rem;
}

.cp-hero__title {
    font-family: var(--font-sans);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1.1rem;
}

.cp-hero__sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 520px;
    letter-spacing: 0.02em;
}


/* -- Voyage Parameters (Filter Bar) -- */
.cp-filter {
    background: #161616;
    border-bottom: 2px solid #222;
    padding: 1.1rem 0;
    position: sticky;
    top: var(--header-h);
    z-index: 400;
}

.cp-filter__inner {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.cp-filter__label {
    font-size: 0.52rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.25);
    white-space: nowrap;
    flex-shrink: 0;
}

.cp-filter__group {
    flex: 1;
    min-width: 150px;
}

.cp-filter__select {
    width: 100%;
    background: #111;
    border: 1px solid #2e2e2e;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.7rem 2.5rem 0.7rem 0.9rem;
    border-radius: 0;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
}

.cp-filter__select:focus {
    border-color: var(--gold);
    color: var(--white);
}

.cp-filter__btn {
    flex-shrink: 0;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #0f0f0f;
    background: var(--gold);
    border: none;
    padding: 0.7rem 1.6rem;
    border-radius: 0;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition);
}

.cp-filter__btn:hover {
    background: var(--gold-dark);
}


/* -- Available Voyages Section -- */
.cp-voyages {
    background: #0a0a0a;
    padding: 5rem 0;
}

.cp-voyages__hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #1e1e1e;
}

.cp-voyages__title {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.3);
}

.cp-voyages__count {
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(212, 175, 55, 0.45);
}

/* 3-column voyage grid */
.cp-voyage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}


/* -- Voyage Card -- */
.cp-card {
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: background var(--transition);
}

.cp-card:hover {
    background: #202020;
}

.cp-card__img-wrap {
    overflow: hidden;
    aspect-ratio: 3 / 2;
    flex-shrink: 0;
}

.cp-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) brightness(0.92);
    transition: transform 0.55s ease;
}

.cp-card:hover .cp-card__img {
    transform: scale(1.06);
}

.cp-card__body {
    padding: 1.75rem 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 2px solid #282828;
    transition: border-color var(--transition);
}

.cp-card:hover .cp-card__body {
    border-top-color: var(--gold);
}

.cp-card__region {
    font-size: 0.52rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(212, 175, 55, 0.55);
    margin-bottom: 0.55rem;
}

.cp-card__title {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

/* Technical spec grid inside card */
.cp-card__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #2a2a2a;
    margin-bottom: 1.5rem;
}

.cp-card__spec {
    padding: 0.7rem 0.85rem;
    border-right: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.cp-card__spec:nth-child(2) {
    border-right: none;
}

.cp-card__spec--full {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
}

.cp-card__spec-label {
    display: block;
    font-size: 0.48rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(212, 175, 55, 0.45);
    margin-bottom: 0.3rem;
}

.cp-card__spec-value {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.03em;
}

/* Tariff display */
.cp-card__tariff {
    font-family: var(--font-sans);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
}

.cp-card__tariff-suffix {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: rgba(212, 175, 55, 0.45);
    text-transform: uppercase;
    align-self: flex-end;
    padding-bottom: 0.3rem;
}

/* CTA button */
.cp-card__btn {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.65rem 1.35rem;
    border-radius: 0;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.cp-card__btn:hover,
.cp-card:hover .cp-card__btn {
    background: var(--gold);
    color: #0f0f0f;
}


/* -- Fleet Specifications -- */
.cp-fleet {
    background: var(--white);
    padding: 5rem 0;
}

.cp-fleet__hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid #0f0f0f;
}

.cp-fleet__title {
    font-family: var(--font-sans);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #0f0f0f;
}

.cp-fleet__note {
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #bbb;
}

.cp-fleet-wrap {
    overflow-x: auto;
    border: 1px solid var(--dark-bg);
    border-top: none;
}

.cp-fleet__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

/* Header row */
.cp-fleet__table thead th {
    background: #0f0f0f;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.52rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    padding: 1rem 1.25rem;
    text-align: left;
    border-right: 1px solid #1e1e1e;
    white-space: nowrap;
}

.cp-fleet__table thead th:first-child {
    border-left: 3px solid var(--gold);
    color: rgba(212, 175, 55, 0.7);
    width: 35%;
}

.cp-fleet__table thead th:last-child {
    border-right: none;
}

/* Body cells */
.cp-fleet__table tbody td {
    padding: 1.1rem 1.25rem;
    font-size: 0.82rem;
    color: #555;
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    vertical-align: middle;
    transition: background var(--transition);
    font-weight: 400;
    letter-spacing: 0.04em;
}

.cp-fleet__table tbody td:first-child {
    border-left: 3px solid transparent;
    transition: border-color var(--transition), background var(--transition);
}

.cp-fleet__table tbody td:last-child {
    border-right: none;
}

.cp-fleet__table tbody tr:last-child td {
    border-bottom: none;
}

.cp-fleet__table tbody tr:hover td {
    background: #fafafa;
}

.cp-fleet__table tbody tr:hover td:first-child {
    border-left-color: var(--gold);
}

/* Vessel name + class stacked in first cell */
.cp-fleet__vessel-name {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0f0f0f;
    margin-bottom: 0.25rem;
}

.cp-fleet__vessel-class {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    opacity: 0.8;
}


/* -- Cruise Packages Responsive -- */
@media (max-width: 1024px) {
    .cp-fleet__table {
        table-layout: auto;
    }
}

@media (max-width: 900px) {
    .cp-voyage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cp-hero {
        padding: 3.5rem 0 3rem;
    }

    .cp-filter {
        position: static;
    }

    .cp-filter__inner {
        gap: 0.65rem;
    }

    .cp-filter__label {
        display: none;
    }

    .cp-filter__group {
        min-width: 120px;
    }

    .cp-voyages {
        padding: 3rem 0;
    }

    /* Responsive fleet table: stack rows */
    .cp-fleet-wrap {
        border: none;
    }

    .cp-fleet__table thead {
        display: none;
    }

    .cp-fleet__table,
    .cp-fleet__table tbody,
    .cp-fleet__table tr,
    .cp-fleet__table td {
        display: block;
        width: 100%;
    }

    .cp-fleet__table tbody tr {
        border: 1px solid #e0e0e0;
        border-left: 3px solid var(--gold);
        margin-bottom: 1rem;
    }

    .cp-fleet__table tbody td {
        display: grid;
        grid-template-columns: 110px 1fr;
        align-items: center;
        gap: 0.75rem;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 0.75rem 1rem;
    }

    .cp-fleet__table tbody td:last-child {
        border-bottom: none;
    }

    .cp-fleet__table tbody td:first-child {
        border-left: none;
    }

    .cp-fleet__table tbody td::before {
        content: attr(data-label);
        font-size: 0.52rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        color: var(--gold);
    }

    .cp-fleet {
        padding: 3.5rem 0;
    }
}

@media (max-width: 580px) {
    .cp-voyage-grid {
        grid-template-columns: 1fr;
    }

    .cp-filter__group {
        flex: 1 1 calc(50% - 0.5rem);
    }

    .cp-filter__btn {
        width: 100%;
        text-align: center;
    }
}


/* ============================================================
   TRAVEL INSURANCE PAGE (page-travel-insurance.php)
   ============================================================ */

/* -- Hero -- */
.ti-hero {
    background: var(--dark-bg);
    padding: 5rem 0 4rem;
    border-bottom: 3px solid var(--gold);
}

.ti-hero__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(212, 175, 55, 0.5);
    margin-bottom: 1.25rem;
}

.ti-hero__title {
    font-family: var(--font-sans);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.ti-hero__divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.ti-hero__sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    max-width: 540px;
    line-height: 1.85;
}


/* -- Coverage Tiers Section -- */
.ti-tiers {
    background: #0a0a0a;
    padding: 5.5rem 0 6rem;
}

.ti-tiers__hd {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.ti-tiers__eyebrow {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: rgba(212, 175, 55, 0.45);
    margin-bottom: 0.85rem;
}

.ti-tiers__title {
    font-family: var(--font-sans);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 0.85rem;
}

.ti-tiers__sub {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.75;
}


/* -- Tier Grid -- */
.ti-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    align-items: start;
}

/* Base tier card */
.ti-tier {
    background: #181818;
    border-top: 3px solid #2a2a2a;
    padding: 2.5rem 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background var(--transition);
}

.ti-tier:hover {
    background: #1e1e1e;
}

/* ── Featured / Comprehensive tier ── */
.ti-tier--featured {
    background: #1e1e1e;
    border-top: 4px solid var(--gold);
    border-left: 2px solid rgba(212, 175, 55, 0.35);
    border-right: 2px solid rgba(212, 175, 55, 0.35);
    border-bottom: 2px solid rgba(212, 175, 55, 0.35);
    /* Slightly taller via extra vertical padding */
    padding-top: 3rem;
    padding-bottom: 3rem;
    /* Pull card up/down to visually elevate it */
    margin-top: -1rem;
    margin-bottom: -1rem;
    z-index: 1;
}

.ti-tier--featured:hover {
    background: #242424;
}

/* Featured badge */
.ti-tier__badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    background: var(--gold);
    color: #0f0f0f;
    font-size: 0.48rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 0.3rem 0.85rem;
}

/* Oversized tier level number */
.ti-tier__level {
    display: block;
    font-family: var(--font-sans);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.85rem;
    opacity: 0.8;
}

.ti-tier--featured .ti-tier__level {
    opacity: 1;
}

/* Tier name */
.ti-tier__name {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--white);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

/* Tier tag */
.ti-tier__tag {
    display: block;
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(212, 175, 55, 0.5);
    margin-bottom: 1.5rem;
}

.ti-tier--featured .ti-tier__tag {
    color: rgba(212, 175, 55, 0.85);
}

/* Thin gold separator rule */
.ti-tier__rule {
    width: 100%;
    height: 1px;
    background: #282828;
    margin-bottom: 1.5rem;
}

.ti-tier--featured .ti-tier__rule {
    background: rgba(212, 175, 55, 0.2);
}

/* Feature spec list */
.ti-tier__features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.ti-tier__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #222;
    font-size: 0.79rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.45;
    transition: color var(--transition);
}

.ti-tier:hover .ti-tier__feature {
    color: rgba(255, 255, 255, 0.6);
}

.ti-tier--featured .ti-tier__feature {
    color: rgba(255, 255, 255, 0.7);
    border-bottom-color: #2a2a2a;
}

.ti-tier__feature:last-child {
    border-bottom: none;
}

/* Gold square bullet */
.ti-tier__feature::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 0.45em;
    opacity: 0.4;
}

.ti-tier--featured .ti-tier__feature::before {
    opacity: 1;
}

/* CTA buttons — standard tiers */
.ti-tier__btn {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.45);
    padding: 0.85rem 1.25rem;
    border-radius: 0;
    text-decoration: none;
    text-align: center;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.ti-tier__btn:hover {
    background: var(--gold);
    color: #0f0f0f;
    border-color: var(--gold);
}

/* CTA button — featured tier (inverted) */
.ti-tier__btn--featured {
    background: var(--gold);
    color: #0f0f0f;
    border-color: var(--gold);
}

.ti-tier__btn--featured:hover {
    background: var(--white);
    color: #0f0f0f;
    border-color: var(--white);
}


/* -- Policy Directives Section -- */
.ti-policy {
    background: var(--white);
    padding: 5.5rem 0;
}

.ti-policy__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.ti-policy__label {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 1.1rem;
    opacity: 0.85;
}

.ti-policy__heading {
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #0f0f0f;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.ti-policy__body {
    font-size: 0.88rem;
    font-weight: 300;
    color: #666;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.ti-policy__body strong {
    font-weight: 700;
    color: #333;
}

.ti-policy__body:last-of-type {
    margin-bottom: 0;
}

/* Warning notice block */
.ti-policy__warning {
    margin-top: 1.75rem;
    padding: 1.1rem 1.35rem;
    border-left: 3px solid var(--gold);
    background: #fafafa;
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-size: 0.79rem;
    font-weight: 300;
    color: #666;
    line-height: 1.75;
}

.ti-policy__warning strong {
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* -- Supported Underwriters List -- */
.ti-underwriters {
    list-style: none;
    margin-top: 0.5rem;
}

.ti-underwriter {
    padding: 1.25rem 0;
    border-bottom: 1px solid #e8e8e8;
    transition: border-color var(--transition);
}

.ti-underwriter:first-child {
    border-top: 2px solid #0f0f0f;
}

.ti-underwriter:last-child {
    border-bottom: 2px solid #0f0f0f;
}

.ti-underwriter:hover {
    border-bottom-color: #ccc;
}

.ti-underwriter__name {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #0f0f0f;
    margin-bottom: 0.35rem;
    transition: color var(--transition);
}

.ti-underwriter:hover .ti-underwriter__name {
    color: var(--gold);
}

.ti-underwriter__desc {
    display: block;
    font-size: 0.75rem;
    font-weight: 300;
    color: #aaa;
    line-height: 1.55;
}


/* -- Travel Insurance Responsive -- */
@media (max-width: 960px) {
    .ti-tier-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    /* Remove vertical elevation on mobile */
    .ti-tier--featured {
        margin-top: 0;
        margin-bottom: 0;
        border: 2px solid rgba(212, 175, 55, 0.45);
        border-top: 4px solid var(--gold);
    }

    .ti-policy__grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

@media (max-width: 768px) {
    .ti-hero {
        padding: 3.5rem 0 3rem;
    }

    .ti-tiers {
        padding: 3.5rem 0;
    }

    .ti-policy {
        padding: 3.5rem 0;
    }

    .ti-tier {
        padding: 2rem 1.75rem;
    }

    .ti-tier--featured {
        padding: 2rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .ti-tier__level {
        font-size: 2.8rem;
    }

    .ti-policy__grid {
        gap: 2.5rem;
    }
}


/* ============================================================
   SERVICES PAGE (page-services.php)
   ============================================================ */

/* -- Hero -- */
.sv-hero {
    background: var(--dark-bg);
    padding: 5rem 0 4rem;
    border-bottom: 3px solid var(--gold);
}

.sv-hero__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(212, 175, 55, 0.5);
    margin-bottom: 1.25rem;
}

.sv-hero__title {
    font-family: var(--font-sans);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.sv-hero__divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.sv-hero__sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    max-width: 480px;
    line-height: 1.85;
}


/* -- Services Directory Section -- */
.sv-directory {
    background: #f2f2f2;
    padding: 5rem 0 6rem;
}

/* Section sub-header */
.sv-directory__hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid #0f0f0f;
}

.sv-directory__eyebrow {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(212, 175, 55, 0.65);
    margin-bottom: 0.5rem;
}

.sv-directory__title {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #0f0f0f;
}

/* Status indicator (right side of header) */
.sv-directory__hd-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.sv-directory__indicator {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    flex-shrink: 0;
}

.sv-directory__status {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #aaa;
}


/* -- Services CSS Grid -- */
.sv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #0f0f0f;
    border: 2px solid #0f0f0f;
}


/* -- Service Card -- */
.sv-card {
    background: var(--white);
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    transition: background var(--transition);
}

.sv-card:hover {
    background: #fafafa;
}

/* Image */
.sv-card__img-wrap {
    overflow: hidden;
    aspect-ratio: 3 / 2;
    flex-shrink: 0;
    border-bottom: 2px solid #333;
    position: relative;
}

.sv-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%) contrast(1.05);
    transition: transform 0.55s ease, filter 0.4s ease;
}

.sv-card:hover .sv-card__img {
    transform: scale(1.06);
    filter: grayscale(0%) contrast(1.05);
}

/* Body text area */
.sv-card__body {
    padding: 1.75rem 1.75rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sv-card__num {
    display: block;
    font-size: 0.52rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(212, 175, 55, 0.65);
    margin-bottom: 0.55rem;
}

.sv-card__title {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #0f0f0f;
    line-height: 1.3;
    margin-bottom: 0.85rem;
    /* Gold underline on hover */
    position: relative;
    display: inline-block;
    align-self: flex-start;
}

.sv-card:hover .sv-card__title {
    color: var(--dark-bg);
}

.sv-card__desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: #888;
    line-height: 1.8;
    flex: 1;
}

/* Full-width bottom button */
.sv-card__btn {
    display: block;
    width: 100%;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    background: var(--dark-bg);
    border: none;
    border-top: 1px solid #333;
    padding: 1rem 1.75rem;
    text-decoration: none;
    text-align: left;
    transition: background var(--transition), color var(--transition);
}

.sv-card__btn:hover {
    background: var(--gold);
    color: #0f0f0f;
}


/* -- Services Responsive -- */
@media (max-width: 960px) {
    .sv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sv-hero {
        padding: 3.5rem 0 3rem;
    }

    .sv-directory {
        padding: 3.5rem 0 4rem;
    }

    .sv-directory__hd {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 540px) {
    .sv-grid {
        grid-template-columns: 1fr;
    }

    .sv-card__body {
        padding: 1.5rem 1.5rem 1.25rem;
    }
}


/* ============================================================
   BLOG PAGE (page-blog.php)
   ============================================================ */

/* -- Hero -- */
.bl-hero {
    background: var(--dark-bg);
    padding: 5rem 0 4rem;
    border-bottom: 3px solid var(--gold);
}

.bl-hero__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(212, 175, 55, 0.5);
    margin-bottom: 1.25rem;
}

.bl-hero__title {
    font-family: var(--font-sans);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.bl-hero__divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.bl-hero__sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    max-width: 520px;
    line-height: 1.85;
}


/* -- Blog Layout Section -- */
.bl-layout {
    background: #f2f2f2;
    padding: 5rem 0 6rem;
}

/* 2-column layout: main feed + sidebar */
.bl-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
}


/* -- Post Grid -- */
.bl-post-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: #333;
    border: 2px solid #333;
    margin-bottom: 3rem;
}


/* -- Post Card (base) -- */
.bl-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
    transition: background var(--transition);
}

.bl-card:hover {
    background: #fafafa;
}

/* Image wrapper */
.bl-card__img-wrap {
    overflow: hidden;
    aspect-ratio: 3 / 2;
    flex-shrink: 0;
    display: block;
    border-bottom: 1px solid #333;
}

.bl-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.bl-card:hover .bl-card__img {
    transform: scale(1.04);
}

/* Card body */
.bl-card__body {
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Meta row: category · date · read time */
.bl-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.7rem;
}

.bl-card__cat {
    font-size: 0.52rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

.bl-card__cat:hover {
    color: var(--gold-dark);
}

.bl-card__sep {
    font-size: 0.55rem;
    color: #ccc;
}

.bl-card__date,
.bl-card__read {
    font-size: 0.6rem;
    font-weight: 400;
    color: #bbb;
    letter-spacing: 0.06em;
}

/* Post title */
.bl-card__title {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.bl-card__title a {
    color: #0f0f0f;
    text-decoration: none;
    transition: color var(--transition);
}

.bl-card__title a:hover {
    color: var(--gold);
}

/* Excerpt — clamped to 3 lines */
.bl-card__excerpt {
    font-size: 0.83rem;
    font-weight: 300;
    color: #777;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read more text link */
.bl-card__more {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.1rem;
    transition: color var(--transition), border-color var(--transition);
}

.bl-card__more:hover {
    color: var(--gold-dark);
    border-bottom-color: var(--gold-dark);
}


/* -- Featured Card (first post, spans full width) -- */
.bl-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.bl-card--featured .bl-card__img-wrap {
    aspect-ratio: auto;
    border-bottom: none;
    border-right: 1px solid #333;
    min-height: 320px;
}

.bl-card--featured .bl-card__body {
    justify-content: center;
    padding: 2.5rem;
}

.bl-card--featured .bl-card__title {
    font-size: 1.5rem;
    line-height: 1.25;
}

.bl-card--featured .bl-card__excerpt {
    -webkit-line-clamp: 4;
}


/* -- Pagination -- */
.bl-pagination {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
}

.bl-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    background: var(--white);
    color: #555;
    border: 1px solid #ccc;
    padding: 0 0.85rem;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.bl-pagination .page-numbers:hover,
.bl-pagination .page-numbers.current {
    background: var(--dark-bg);
    color: var(--gold);
    border-color: var(--dark-bg);
}

.bl-pagination .page-numbers.dots {
    border-color: transparent;
    background: transparent;
    color: #bbb;
    pointer-events: none;
}


/* -- No Posts State -- */
.bl-no-posts {
    border: 1px solid #ccc;
    background: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.bl-no-posts p {
    font-size: 0.88rem;
    font-weight: 300;
    color: #999;
    letter-spacing: 0.06em;
    line-height: 1.7;
}


/* ── SIDEBAR ─────────────────────────────────────────────────── */
.bl-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    border: 2px solid #333;
    background: var(--white);
}

/* Individual widget */
.bl-widget {
    border-bottom: 1px solid #333;
}

.bl-widget:last-child {
    border-bottom: none;
}

/* Widget dark header bar */
.bl-widget__hd {
    background: #0f0f0f;
    padding: 0.8rem 1.25rem;
    border-bottom: 1px solid #1e1e1e;
}

.bl-widget__title {
    font-size: 0.52rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(212, 175, 55, 0.7);
    margin: 0;
}

.bl-widget__body {
    padding: 1.25rem;
}

/* Search widget */
.bl-search__wrap {
    display: flex;
    border: 1px solid #333;
}

.bl-search__input {
    flex: 1;
    min-width: 0;
    background: #fafafa;
    border: none;
    padding: 0.65rem 0.85rem;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #333;
    outline: none;
    transition: background var(--transition);
}

.bl-search__input::placeholder {
    color: #ccc;
    font-weight: 600;
}

.bl-search__input:focus {
    background: var(--white);
}

.bl-search__btn {
    background: var(--dark-bg);
    border: none;
    border-left: 1px solid #333;
    padding: 0 0.9rem;
    cursor: pointer;
    color: var(--gold);
    display: flex;
    align-items: center;
    transition: background var(--transition), color var(--transition);
    flex-shrink: 0;
}

.bl-search__btn:hover {
    background: var(--gold);
    color: #0f0f0f;
}

.bl-search__btn svg {
    width: 15px;
    height: 15px;
}

/* Categories widget */
.bl-cat-list {
    list-style: none;
}

.bl-cat-list__item {
    border-bottom: 1px solid #f0f0f0;
}

.bl-cat-list__item:last-child {
    border-bottom: none;
}

.bl-cat-list__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #555;
    text-decoration: none;
    gap: 0.5rem;
    transition: color var(--transition);
}

.bl-cat-list__link:hover {
    color: var(--gold);
}

.bl-cat-list__count {
    font-size: 0.58rem;
    font-weight: 700;
    color: #bbb;
    background: #f5f5f5;
    padding: 0.1rem 0.5rem;
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition);
}

.bl-cat-list__link:hover .bl-cat-list__count {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

/* Recent posts widget */
.bl-recent-list {
    list-style: none;
}

.bl-recent-list__item {
    border-bottom: 1px solid #f0f0f0;
}

.bl-recent-list__item:last-child {
    border-bottom: none;
}

.bl-recent-list__link {
    display: block;
    padding: 0.85rem 0;
    text-decoration: none;
    transition: color var(--transition);
}

.bl-recent-list__title {
    display: block;
    font-size: 0.79rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 0.3rem;
    transition: color var(--transition);
}

.bl-recent-list__link:hover .bl-recent-list__title {
    color: var(--gold);
}

.bl-recent-list__date {
    display: block;
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #bbb;
}


/* -- Blog Responsive -- */
@media (max-width: 1024px) {
    .bl-content {
        grid-template-columns: 1fr 260px;
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    /* Stack main + sidebar vertically */
    .bl-content {
        grid-template-columns: 1fr;
    }

    .bl-sidebar {
        position: static;
        /* Display sidebar widgets in 2-col row on tablet */
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border: 2px solid #333;
    }

    .bl-widget {
        border-bottom: none;
        border-right: 1px solid #333;
    }

    .bl-widget:nth-child(even) {
        border-right: none;
    }

    .bl-widget:nth-child(n+3) {
        border-top: 1px solid #333;
    }
}

@media (max-width: 768px) {
    .bl-hero {
        padding: 3.5rem 0 3rem;
    }

    .bl-layout {
        padding: 3rem 0 4rem;
    }

    /* Stack featured card */
    .bl-card--featured {
        grid-template-columns: 1fr;
    }

    .bl-card--featured .bl-card__img-wrap {
        aspect-ratio: 3 / 2;
        border-right: none;
        border-bottom: 1px solid #333;
        min-height: auto;
    }

    .bl-card--featured .bl-card__body {
        padding: 1.5rem 1.75rem 1.75rem;
    }

    .bl-card--featured .bl-card__title {
        font-size: 1.2rem;
    }
}

/* ============================================================
   HERO CONSISTENCY — applies the Destinations page heading
   style uniformly across all dark-background page heroes.
   This section loads last so it overrides page-specific rules.
   ============================================================ */

/* Gold grid background on every dark page hero */
.dp-hero,
.tp-hero,
.cp-hero,
.ci-hero,
.gt-hero,
.ti-hero,
.sv-hero,
.bl-hero,
.ca-hero {
    background-color: #0f0f0f;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Unified heading: Playfair Display italic, white, consistent size */
.dp-hero__title,
.tp-hero__title,
.cp-hero__title,
.ci-hero__title,
.gt-hero__title,
.lt-hero__title,
.ti-hero__title,
.sv-hero__title,
.bl-hero__title,
.ca-hero__title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    color: var(--white);
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    text-transform: none;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

/* Unified gold divider bar */
.dp-hero__divider,
.tp-hero__divider,
.cp-hero__divider,
.ci-hero__divider,
.gt-hero__divider,
.ti-hero__divider,
.sv-hero__divider,
.bl-hero__divider,
.ca-hero__divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}

/* Unified eyebrow */
.dp-hero__eyebrow,
.tp-hero__eyebrow,
.cp-hero__eyebrow,
.ci-hero__eyebrow,
.gt-hero__eyebrow,
.lt-hero__eyebrow,
.ti-hero__eyebrow,
.sv-hero__eyebrow,
.bl-hero__eyebrow,
.ca-hero__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(212, 175, 55, 0.55);
    margin-bottom: 1.25rem;
    display: block;
}

/* Unified subheading */
.dp-hero__desc,
.tp-hero__desc,
.cp-hero__sub,
.ci-hero__sub,
.gt-hero__sub,
.lt-hero__sub,
.ti-hero__sub,
.sv-hero__sub,
.bl-hero__sub,
.ca-hero__sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    max-width: 540px;
    line-height: 1.85;
}

/* Add divider after title where it was previously missing */
.tp-hero__title,
.gt-hero__title,
.ti-hero__title,
.sv-hero__title,
.bl-hero__title {
    margin-bottom: 1.5rem;
}


@media (max-width: 580px) {
    /* Single-column post grid */
    .bl-post-grid {
        grid-template-columns: 1fr;
    }

    /* Single-column sidebar */
    .bl-sidebar {
        grid-template-columns: 1fr;
    }

    .bl-widget {
        border-right: none;
        border-bottom: 1px solid #333;
    }

    .bl-widget:last-child {
        border-bottom: none;
    }

    .bl-widget:nth-child(n+3) {
        border-top: none;
    }
}


/* ============================================================
   CAREERS PAGE (page-careers.php)
   ============================================================ */

/* -- Hero -- */
.ca-hero {
    background: var(--dark-bg);
    padding: 5rem 0 4rem;
    border-bottom: 3px solid var(--gold);
}

.ca-hero__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(212, 175, 55, 0.5);
    margin-bottom: 1.25rem;
}

.ca-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-style: italic;
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.ca-hero__divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.ca-hero__sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    max-width: 520px;
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.ca-hero__scroll {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    padding-bottom: 0.2rem;
    transition: color var(--transition), border-color var(--transition);
}

.ca-hero__scroll:hover {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.35);
}


/* -- Culture & Philosophy -- */
.ca-culture {
    background: var(--white);
    padding: 5.5rem 0;
}

.ca-culture__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0;
}

.ca-culture__img-col {
    overflow: hidden;
    position: relative;
}

.ca-culture__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ca-culture__img-col:hover .ca-culture__img {
    transform: scale(1.03);
}

/* Text box with full gold border */
.ca-culture__text-col {
    padding: 4rem 3.5rem;
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ca-culture__label {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.85;
}

.ca-culture__heading {
    font-family: var(--font-sans);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0f0f0f;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.ca-culture__rule {
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.75rem;
    opacity: 0.6;
}

.ca-culture__body {
    font-size: 0.88rem;
    font-weight: 300;
    color: #666;
    line-height: 1.9;
    margin-bottom: 1rem;
}

/* Values bullet list */
.ca-culture__values {
    list-style: none;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.ca-culture__values li {
    font-size: 0.82rem;
    font-weight: 400;
    color: #444;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.ca-culture__values li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--gold);
    flex-shrink: 0;
}


/* -- Open Positions (The Manifest) -- */
.ca-positions {
    background: #f2f2f2;
    padding: 5rem 0 6rem;
}

.ca-positions__hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 2rem;
    margin-bottom: 0;
    border-bottom: 2px solid #0f0f0f;
}

.ca-positions__eyebrow {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(212, 175, 55, 0.65);
    margin-bottom: 0.5rem;
}

.ca-positions__title {
    font-family: var(--font-sans);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0f0f0f;
}

.ca-positions__note {
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
}

/* Manifest column header */
.ca-manifest-header {
    display: grid;
    grid-template-columns: 2fr 0.8fr 0.8fr auto;
    gap: 1.5rem;
    padding: 0.85rem 1.75rem;
    background: #0f0f0f;
    border: 1px solid #0f0f0f;
}

.ca-manifest-header span {
    font-size: 0.48rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
}

.ca-manifest-header span:first-child {
    color: rgba(212, 175, 55, 0.6);
}

/* Position rows container */
.ca-manifest-list {
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
}

/* Individual position row */
.ca-position {
    display: grid;
    grid-template-columns: 2fr 0.8fr 0.8fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem;
    background: var(--white);
    border-bottom: 1px solid #e8e8e8;
    transition: background var(--transition);
}

.ca-position:last-child {
    border-bottom: none;
}

.ca-position:hover {
    background: #fafafa;
}

/* Left cell: number + title */
.ca-position__main {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.ca-position__num {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(212, 175, 55, 0.5);
    padding-top: 0.2em;
    flex-shrink: 0;
}

.ca-position__title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0f0f0f;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.ca-position__division {
    display: block;
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    opacity: 0.75;
}

.ca-position__location,
.ca-position__type {
    font-size: 0.78rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.04em;
}

/* View Specifications button */
.ca-position__btn {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
    background: var(--dark-bg);
    border: 1px solid var(--dark-bg);
    padding: 0.65rem 1.25rem;
    border-radius: 0;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.ca-position__btn:hover {
    background: var(--gold);
    color: #0f0f0f;
    border-color: var(--gold);
}


/* -- Why Join Us -- */
.ca-why {
    background: #111;
    padding: 5.5rem 0;
    border-top: 3px solid var(--gold);
}

.ca-why__hd {
    text-align: center;
    margin-bottom: 4rem;
}

.ca-why__eyebrow {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: rgba(212, 175, 55, 0.45);
    margin-bottom: 0.9rem;
}

.ca-why__title {
    font-family: var(--font-sans);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--white);
}

/* 4-column grid */
.ca-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ca-why__col {
    padding: 3rem 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background var(--transition);
}

.ca-why__col:last-child {
    border-right: none;
}

.ca-why__col:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Icon */
.ca-why__icon {
    width: 44px;
    height: 44px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.ca-why__icon svg {
    width: 100%;
    height: 100%;
}

.ca-why__col:hover .ca-why__icon {
    opacity: 1;
}

.ca-why__col-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--white);
    margin-bottom: 1rem;
}

.ca-why__col-desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.85;
}


/* -- Careers Responsive -- */
@media (max-width: 960px) {
    .ca-culture__grid {
        grid-template-columns: 1fr;
    }

    .ca-culture__img-col {
        height: 340px;
    }

    .ca-culture__text-col {
        border-top: none;
    }

    .ca-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ca-why__col:nth-child(2) {
        border-right: none;
    }

    .ca-why__col:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .ca-why__col:nth-child(4) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .ca-hero {
        padding: 3.5rem 0 3rem;
    }

    .ca-positions {
        padding: 3.5rem 0 4rem;
    }

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

    /* Hide manifest column headers on tablet */
    .ca-manifest-header {
        display: none;
    }

    /* Stack position rows */
    .ca-position {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.5rem;
        border-left: 3px solid var(--gold);
    }

    .ca-position__btn {
        align-self: flex-start;
    }

    .ca-culture__text-col {
        padding: 3rem 2rem;
    }
}

@media (max-width: 580px) {
    .ca-why__grid {
        grid-template-columns: 1fr;
    }

    .ca-why__col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .ca-why__col:last-child {
        border-bottom: none;
    }

    .ca-why__col:nth-child(n+3) {
        border-top: none;
    }

    .ca-manifest-list {
        border: none;
    }
}
