/*
Theme Name: Desire Adventure
Author: Suraj
Version: 1.0
*/

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
    /* overflow-x on html only — does NOT break sticky */
}

body {
    max-width: 100%;
    position: relative;
    font-family: 'DM Sans', sans-serif;
    background: #F5F0E8;
    color: #1C1A17;
    /* No overflow-x here — this is what was breaking sticky positioning */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ============================================================
   SITE HEADER
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.site-header.is-revealed {
    opacity: 1;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
}


/* Fixed on homepage only */

body.home .site-header {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
}

body.home {
    padding-top: 0px;
}


/* Admin bar offset */

.admin-bar .site-header {
    top: 32px;
}

.admin-bar body.home {
    padding-top: calc(70px + 32px);
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
    .admin-bar body.home {
        padding-top: calc(70px + 46px);
    }
}


/* Scrolled state */

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}


/* --- Logo --- */

.site-logo a {
    color: #c99b2d;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-logo .custom-logo {
    max-height: 44px;
    width: auto;
    display: block;
}


/* --- Desktop Nav --- */

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}


/* Active page */

.nav-item.current-menu-item>.nav-link,
.nav-item.current-menu-parent>.nav-link {
    color: #c99b2d;
}

.nav-chevron {
    transition: transform 0.25s ease;
    opacity: 0.6;
    flex-shrink: 0;
}


/* --- Dropdown --- */

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 8px;
    min-width: 220px;
    list-style: none;
    margin: 0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 9999;
}


/* Invisible bridge fills the gap between link and dropdown */

.nav-item--has-children::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 16px;
}


/* Small arrow pointing up */

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #1a1a1a;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    rotate: 45deg;
}


/* Show on hover */

.nav-item--has-children:hover>.nav-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.nav-item--has-children:hover>.nav-link .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown-link {
    display: block;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 13px;
    border-radius: 6px;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.nav-dropdown-link:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.nav-dropdown .current-menu-item>.nav-dropdown-link {
    color: #c99b2d;
}


/* ── NESTED DROPDOWN — flyout to right ── */


/* The nested dropdown */

.nav-dropdown .nav-item--has-children {
    position: relative;
}

.nav-dropdown .nav-item--has-children>.nav-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 8px;
    transform: translateX(6px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    /* Reset parent centering */
    left: 100% !important;
    transform: translateX(6px) !important;
}


/* Show nested dropdown on hover */

.nav-dropdown .nav-item--has-children:hover>.nav-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0) !important;
}


/* Remove the arrow pip from nested dropdowns */

.nav-dropdown .nav-dropdown::before {
    display: none;
}


/* Arrow indicator showing item has children */

.nav-dropdown .nav-item--has-children>.nav-dropdown-link::after {
    content: '›';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #c99b2d;
    line-height: 1;
}


/* Make room for the arrow */

.nav-dropdown .nav-item--has-children>.nav-dropdown-link {
    position: relative;
    padding-right: 28px;
}


/* Hover bridge for nested — fills gap between item and flyout */

.nav-dropdown .nav-item--has-children::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 12px;
    height: 100%;
    /* Override parent bridge */
    right: auto;
}


/* Sub arrow for nested items */

.nav-sub-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #c99b2d;
    line-height: 1;
}


/* Remove ::after arrow since we use span now */

.nav-dropdown .nav-item--has-children>.nav-dropdown-link::after {
    display: none;
}


/* --- Header Right --- */

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-wa-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.header-wa-btn:hover {
    color: #25D366;
}

.header-wa-btn svg {
    color: #25D366;
    flex-shrink: 0;
}


/* --- Hamburger --- */

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.nav-hamburger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}


/* Hamburger → X animation */

.nav-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   MOBILE OVERLAY
   ============================================================ */

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
}

.nav-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}


/* ============================================================
   MOBILE DRAWER (SLIDE FROM RIGHT)
   ============================================================ */

.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #111;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}


/* Push drawer below admin bar when logged in */

.admin-bar .nav-drawer {
    top: 32px;
    height: calc(100vh - 32px);
}

.admin-bar .nav-overlay {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .nav-drawer {
        top: 46px;
        height: calc(100vh - 46px);
    }
    .admin-bar .nav-overlay {
        top: 46px;
    }
}

.nav-drawer.is-open {
    transform: translateX(0);
}


/* Drawer Header */

.nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-drawer-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-drawer-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}


/* Drawer Body — menu items */

.nav-drawer-body {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}

.nav-drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-drawer-menu li a {
    display: block;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease, background 0.2s ease;
    border-left: 3px solid transparent;
}

.nav-drawer-menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border-left-color: #c99b2d;
}

.nav-drawer-menu li.current-menu-item>a {
    color: #c99b2d;
    border-left-color: #c99b2d;
}


/* Submenu items — indented */

.nav-drawer-menu .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.03);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    margin-left: 24px;
}

.nav-drawer-menu .sub-menu li a {
    font-size: 13px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.5);
    border-left: none;
}

.nav-drawer-menu .sub-menu li a:hover {
    color: #c99b2d;
    background: none;
    border-left: none;
}


/* Parent item arrow */

.nav-drawer-menu .menu-item-has-children>a::after {
    content: '›';
    float: right;
    font-size: 18px;
    line-height: 1;
    opacity: 0.4;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-drawer-menu .menu-item-has-children.is-open>a::after {
    transform: rotate(90deg);
    opacity: 1;
}


/* Sub menu toggle — hidden by default, shown on click */

.nav-drawer-menu .sub-menu {
    display: none;
}

.nav-drawer-menu .menu-item-has-children.is-open>.sub-menu {
    display: block;
}


/* Drawer Footer */

.nav-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.nav-drawer-wa {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #25D366;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.nav-drawer-wa:hover {
    opacity: 0.8;
}


/* ============================================================
   RESPONSIVE — Show hamburger, hide desktop nav
   ============================================================ */

@media screen and (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    .header-wa-btn span {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .header-container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 480px) {
    .header-wa-btn {
        display: none;
    }
}


/* Hero section */


/* --- Hero Section --- */

.hero-slider {
    position: relative;
    height: 100vh;
    /* This makes the banner exactly the height of the screen */
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    inset: 0;
    background-size: cover;
    background-position: center center;
    /* Keeps the middle of the photo visible */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    color: #fff;
    position: absolute;
    top: 65%;
    transform: translateX(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    z-index: 2;
}

.hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: #c99b2d;
    /* Golden Sand Accent */
    font-weight: 700;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1.1;
    margin: 20px 0;
    font-weight: 300;
}

.hero-content h1 em {
    font-style: italic;
    font-weight: 400;
}


/* --- Hero Buttons --- */

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary {
    background: #c99b2d;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #a06828;
}

.btn-secondary:hover {
    background: #fff;
    color: #0f5a43;
}


/* Video for the banner */

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}


/* ============================================================
   FEATURED TRIPS — Magazine Layout
   ============================================================ */

.featured-trips {
    position: relative;
    padding: 100px 5%;
    background-color: #0f5a43;
    /* fallback if no image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


/* Dark overlay on top of background image */

.ft-overlay {
    position: absolute;
    inset: 0;
    background: #0f5a43;
    z-index: 0;
}


/* Everything inside sits above the overlay */

.ft-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}


/* Section intro text — white on dark bg */

.ft-section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.ft-section-intro .eyebrow {
    color: #c99b2d;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 13px;
}

.ft-section-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    margin: 15px 0;
    color: #ffffff;
}

.ft-section-intro p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
}


/* ── Magazine Grid ── */

.ft-magazine-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: repeat(3, 180px);
    gap: 14px;
}


/* Big card spans all 3 rows on the left */

.ft-card-big {
    grid-row: 1 / 4;
}


/* ── Card Base ── */

.ft-card {
    border-radius: 10px;
    overflow: hidden;
}

.ft-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    position: relative;
    transition: transform 0.4s ease;
}

.ft-card:hover .ft-card-inner {
    transform: scale(1.02);
}


/* Gradient overlay on each card */

.ft-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.85) 100%);
    transition: background 0.3s ease;
}

.ft-card:hover .ft-card-overlay {
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.9) 100%);
}


/* Content sits at bottom of card */

.ft-card-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.ft-card-big .ft-card-content {
    padding: 30px;
}


/* Difficulty tag */

.ft-card-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c99b2d;
    border: 1px solid #c99b2d;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
}


/* Card title */

.ft-card-title {
    font-family: 'Cormorant Garamond', serif;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 10px;
    text-decoration: none;
}

.ft-card-big .ft-card-title {
    font-size: 32px;
    font-weight: 400;
}

.ft-card-small .ft-card-title {
    font-size: 18px;
    font-weight: 400;
}


/* Price + duration row */

.ft-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.ft-card-price {
    color: #c99b2d;
    font-size: 14px;
    font-weight: 700;
}

.ft-card-sep {
    color: rgba(255, 255, 255, 0.3);
}

.ft-card-duration {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}


/* CTA link */

.ft-card-cta {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.ft-card:hover .ft-card-cta {
    color: #c99b2d;
    border-color: #c99b2d;
}


/* Small cards hide CTA to keep it clean */

.ft-card-small .ft-card-cta {
    display: none;
}


/* ── Responsive ── */

@media screen and (max-width: 1024px) {
    .ft-magazine-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 160px);
    }
}

@media screen and (max-width: 768px) {
    .ft-magazine-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .ft-card-big {
        grid-row: auto;
        height: 320px;
    }
    .ft-card-small {
        height: 200px;
    }
    .ft-card-small .ft-card-cta {
        display: inline-block;
    }
    .featured-trips {
        background-attachment: scroll;
        /* fixed doesn't work well on mobile */
    }
}


/* ============================================================
   SHARED SECTION INTRO (used by region slider + others)
   ============================================================ */

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.eyebrow {
    color: #c99b2d;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 13px;
}

.section-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    margin: 15px 0;
    color: #0f5a43;
}

.section-intro p {
    color: #666;
    font-size: 15px;
}


/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.why-choose-section {
    background-color: #141414;
    color: #ffffff;
    padding: 60px 0;
    position: relative;
    font-family: 'DM Sans', sans-serif;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}


/* Header */

.why-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.why-kicker-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.why-kicker-line {
    display: block;
    width: 24px;
    height: 1px;
    background: #c99b2d;
}

.why-kicker {
    font-size: 11px;
    color: #c99b2d;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
}

.why-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 12px;
    color: #ffffff;
    text-transform: capitalize;
}

.why-intro {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
    margin: 0;
}


/* Slider */

.why-slider-wrap {
    margin-bottom: 32px;
}

.why-cards-viewport {
    overflow: hidden;
}

.why-cards-track {
    display: grid;
    grid-template-columns: repeat(6, calc(33.333% - 8px));
    gap: 12px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Card */

.why-card {
    background: #222222;
    border-radius: 10px;
    padding: 28px 22px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 155, 45, 0.35);
}

.why-card-accent {
    position: absolute;
    top: 0;
    left: 22px;
    width: 36px;
    height: 3px;
    background: #c99b2d;
}

.why-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 18px;
    color: #c99b2d;
    font-size: 22px;
}

.why-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.why-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0;
}


/* Nav */

.why-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.why-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.why-nav-btn:hover {
    border-color: #c99b2d;
    color: #c99b2d;
}

.why-nav-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.why-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.why-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.why-dot.active {
    background: #c99b2d;
    transform: scale(1.4);
}


/* Stats Bar */

.why-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.stat-item {
    background: #1a1a1a;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Bebas Neue', 'Cormorant Garamond', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #c99b2d;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
}


/* Responsive */

@media screen and (max-width: 1024px) {
    .why-cards-track {
        grid-template-columns: repeat(6, calc(50% - 6px));
    }
}

@media screen and (max-width: 768px) {
    .why-choose-section {
        padding: 50px 0;
    }
    .why-container {
        padding: 0 20px;
    }
    .why-cards-track {
        grid-template-columns: repeat(6, calc(100vw - 40px));
        gap: 12px;
    }
    .why-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-main-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .why-dots {
        display: none;
    }
}


/* ============================================================
   FEATURED PACKAGES — Dark Style A
   ============================================================ */

.packages-section {
    background: #0f5a43;
    padding: 20px 0 60px;
}

.packages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}


/* Header */

.pkg-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.pkg-eyebrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.pkg-eyebrow-line {
    display: block;
    width: 30px;
    height: 1px;
    background: #c99b2d;
}

.pkg-subtitle {
    color: #c99b2d;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.pkg-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}


/* Grid */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}


/* Card */

.pkg-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pkg-card:hover {
    transform: translateY(-4px);
    border-color: #c99b2d;
}

.pkg-card a {
    text-decoration: none;
    display: block;
    color: inherit;
}

.pkg-thumb {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
}

.pkg-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
}

.pkg-content {
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.25);
}

.pkg-days {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.pkg-days svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.pkg-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    line-height: 1.3;
    min-height: 34px;
    overflow: hidden;
    text-decoration: none;
}

.pkg-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 8px;
}

.price-value {
    font-size: 14px;
    font-weight: 700;
    color: #c99b2d;
}

.pkg-arrow {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.2s ease;
}

.pkg-card:hover .pkg-arrow {
    color: #c99b2d;
}


/* View All Button */

.view-all-container {
    text-align: center;
    margin-top: 24px;
    width: 100%;
}

.btn-view-all {
    display: inline-block;
    padding: 12px 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.75);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    border-color: #c99b2d;
    color: #c99b2d;
}


/* Responsive */

@media screen and (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .packages-container {
        padding: 0 16px;
    }
    .pkg-main-title {
        font-size: 30px;
    }
}


/* ============================================================
   REVIEWS SECTION & MODAL
   Font stack shared by both components
   ============================================================ */

.reviews-section,
.review-dialog {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}


/* --- 1. Section Shell --- */

.reviews-section {
    background: #FDFBF8;
    padding: 50px 0;
}


/* --- 2. Header & Branding --- */

.centered-header {
    text-align: center;
    margin-bottom: 30px;
}

.ta-brand-block {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ta-logo-main {
    max-width: 120px;
    height: auto;
    margin-bottom: 6px;
}

.ta-stats-link {
    font-size: 14px;
    font-weight: 600;
    color: #1c1a17;
    text-decoration: none;
}

.ta-stars {
    color: #00aa6c;
    font-size: 18px;
    margin-right: 5px;
}


/* --- 3. Four-Column Grid (desktop default) --- */

.reviews-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0 15px;
    margin-bottom: 24px;
}


/* --- 4. Card --- */

.ta-card {
    background: #fff;
    padding: 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
    text-align: left;
}


/* --- 5. User Meta --- */

.ta-user {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
}

.ta-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.ta-user-info strong {
    display: block;
    font-size: 15px;
    overflow-wrap: break-word;
}

.ta-user-info span {
    font-size: 12px;
    color: #757575;
}


/* --- 6. Rating Dots (all 5 levels covered) --- */

.ta-dots {
    display: flex;
    gap: 4px;
    margin: 10px 0;
}

.ta-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
}

.ta-dots[data-rating="1"] span:nth-child(-n+1) {
    background: #00aa6c;
}

.ta-dots[data-rating="2"] span:nth-child(-n+2) {
    background: #00aa6c;
}

.ta-dots[data-rating="3"] span:nth-child(-n+3) {
    background: #00aa6c;
}

.ta-dots[data-rating="4"] span:nth-child(-n+4) {
    background: #00aa6c;
}

.ta-dots[data-rating="5"] span {
    background: #00aa6c;
}


/* --- 7. Card Text --- */

.ta-excerpt {
    overflow-wrap: break-word;
}


/* --- 8. Read More Button --- */

.ta-read-more {
    background: none;
    border: none;
    color: #000;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin: 10px 0 15px;
}


/* --- 9. Modal --- */


/*
   Using a plain <dialog> element?  Remove position/transform here and
   let the browser centre it natively — doing both breaks ::backdrop.
   If you need manual positioning, switch to a <div>-based modal instead.
*/

.review-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    border: none;
    border-radius: 15px;
    padding: 0;
    width: 90%;
    max-width: 850px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.review-dialog::backdrop {
    background: rgba(0, 0, 0, 0.7);
}

.modal-inner {
    padding: 40px;
    background: #fff;
    max-height: 90vh;
    overflow-y: auto;
}


/* Fix the upstream specificity conflict that required !important here */

.modal-inner .modal-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    font-weight: 400;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 32px;
    font-weight: 300;
    border: none;
    background: none;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.close-modal:hover {
    color: #000;
}


/* --- 10. Modal Gallery --- */

.review-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.gallery-item {
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.gallery-item:hover {
    opacity: 0.8;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */


/* --- Desktop: 4-column grid, hide slider arrows --- */

@media screen and (min-width: 1025px) {
    .reviews-grid-four {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .slider-nav {
        display: none !important;
    }
}


/* --- Mobile & Tablet: horizontal snap slider --- */

@media screen and (max-width: 1024px) {
    .slider-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    .reviews-grid-four {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        /*
           scroll-padding must match the container padding so snap targets
           align with the visible centre rather than the scroll origin.
        */
        padding: 20px 7.5%;
        scroll-padding: 0 7.5%;
        scroll-snap-type: x mandatory;
        gap: 0;
        margin-bottom: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .reviews-grid-four::-webkit-scrollbar {
        display: none;
    }
    .ta-card {
        /*
           Each card occupies 85% of the viewport width.
           The 7.5% padding on the container handles the visible side-peek —
           no margin needed here, which keeps scroll-snap reliable.
           (7.5% padding-left  +  85% card  +  7.5% padding-right = 100%)
        */
        flex: 0 0 85% !important;
        width: 85% !important;
        margin: 0 !important;
        scroll-snap-align: center;
        box-sizing: border-box;
        overflow-wrap: break-word;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    /* --- Slider Arrow Buttons --- */
    .slider-nav {
        display: flex !important;
        justify-content: center;
        gap: 25px;
        margin-top: 20px;
        width: 100%;
    }
    .slider-nav button,
    .nav-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid #e0e0e0;
        background: #fff;
        font-size: 20px;
        line-height: 1;
        cursor: pointer;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s, color 0.2s;
    }
    .slider-nav button:hover {
        background: #00aa6c;
        color: #fff;
        border-color: #00aa6c;
    }
}


/* --- Single Trip Page --- */

.trip-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 5%;
}


/* Responsive: reduce top padding on mobile */

@media screen and (max-width: 768px) {
    .trip-page-container {
        padding: 60px 5%;
    }
}


/* --- No Trips Fallback Message --- */

.no-trips-message {
    text-align: center;
    grid-column: 1 / -1;
    color: #666;
    font-size: 16px;
    padding: 40px 0;
}


/* --- Lightbox --- */


/* --- Lightbox --- */

.lightbox-dialog {
    background: transparent;
    border: none;
    padding: 0;
    margin: auto;
    /* ← centers the dialog natively */
    max-width: 90vw;
    max-height: 90vh;
    overflow: visible;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox-dialog::backdrop {
    background: rgba(0, 0, 0, 0.92);
}

.lightbox-dialog img {
    display: block;
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 6px;
    object-fit: contain;
    /* ← keeps full image visible, no cropping */
}

.lightbox-close {
    position: fixed;
    /* ← fixed so it stays top-right regardless of image size */
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s ease;
    z-index: 99999;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}


/* ============================================================
   ABOUT TEASER SECTION
   ============================================================ */

.about-teaser-section {
    background-color: #141414;
    padding: 100px 0;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.at-snow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.about-teaser-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


/* --- Kicker (small label above title) --- */

.at-kicker {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #c99b2d;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.at-kicker::before,
.at-kicker::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: #c99b2d;
}


/* --- Title --- */

.at-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
}


/* --- Description --- */

.at-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}


/* --- Founder Block --- */

.at-founder {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.at-founder-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c99b2d;
    flex-shrink: 0;
}

.at-founder-initials {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2a2a2a;
    border: 2px solid #c99b2d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #c99b2d;
    flex-shrink: 0;
}

.at-founder-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.at-founder-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* --- Button --- */

.btn-about {
    display: inline-block;
    padding: 14px 32px;
    border: 1.5px solid #c99b2d;
    color: #c99b2d;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background: #c99b2d;
    color: #141414;
}


/* --- Photo Column --- */

.at-photo-col {
    position: relative;
    padding-bottom: 30px;
    /* Space for badge overflow */
}

.at-team-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    background: #2a2a2a;
}

.at-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.at-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}


/* --- Experience Badge --- */

.at-badge {
    position: absolute;
    bottom: 0;
    left: -20px;
    width: 110px;
    height: 110px;
    background: #c99b2d;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 4px solid #141414;
}

.at-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 600;
    color: #141414;
    line-height: 1;
}

.at-badge-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #141414;
    line-height: 1.3;
    margin-top: 3px;
    padding: 0 8px;
}


/* --- Tablet --- */

@media screen and (max-width: 1024px) {
    .about-teaser-container {
        gap: 50px;
    }
    .at-title {
        font-size: 2.4rem;
    }
}


/* --- Mobile --- */

@media screen and (max-width: 768px) {
    .about-teaser-container {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 50px;
        padding: 0 20px;
    }
    /* Photo goes above text on mobile */
    .at-photo-col {
        order: -1;
    }
    .at-team-photo {
        aspect-ratio: 16 / 9;
        /* Wider on mobile to save vertical space */
    }
    .at-badge {
        left: auto;
        right: 20px;
        bottom: -10px;
        width: 90px;
        height: 90px;
    }
    .at-badge-num {
        font-size: 26px;
    }
    .at-title {
        font-size: 2rem;
    }
    .about-teaser-section {
        padding: 60px 0;
    }
}


/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
    background: #F8F5F0;
    padding: 100px 0;
    font-family: 'DM Sans', sans-serif;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}


/* --- Left Column --- */

.faq-left {
    position: sticky;
    top: 100px;
    /* Stays visible while scrolling through answers */
}

.faq-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #c99b2d;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.faq-kicker::before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: #c99b2d;
}

.faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.15;
    color: #1c1a17;
    margin-bottom: 20px;
}

.faq-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.btn-faq-contact {
    display: inline-block;
    padding: 13px 28px;
    border: 1.5px solid #1c1a17;
    color: #1c1a17;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-faq-contact:hover {
    background: #1c1a17;
    color: #fff;
}


/* --- Accordion List --- */

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    border-bottom: 1px solid #e0ddd8;
}

.faq-item:first-child {
    border-top: 1px solid #e0ddd8;
}


/* --- Question Button --- */

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-q-text {
    font-size: 15px;
    font-weight: 700;
    color: #1c1a17;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid #c99b2d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #c99b2d;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s ease;
}


/* --- Open State --- */

.faq-item.is-open .faq-icon {
    background: #c99b2d;
    color: #fff;
    transform: rotate(45deg);
}

.faq-item.is-open .faq-q-text {
    color: #c99b2d;
}


/* --- Answer Panel --- */

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0;
}

.faq-answer p {
    padding: 0 40px 22px 0;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}


/* Open state — JS sets max-height dynamically */

.faq-item.is-open .faq-answer {
    max-height: 500px;
    /* Large enough for any answer */
}


/* --- Tablet --- */

@media screen and (max-width: 1024px) {
    .faq-container {
        gap: 50px;
    }
    .faq-title {
        font-size: 2.2rem;
    }
}


/* --- Mobile --- */

@media screen and (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    .faq-container {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 40px;
        padding: 0 20px;
    }
    /* Left column no longer sticky on mobile */
    .faq-left {
        position: static;
    }
    .faq-title {
        font-size: 2rem;
    }
    .faq-answer p {
        padding-right: 10px;
    }
}


/* ============================================================
   BLOG PREVIEW SECTION
   ============================================================ */

.blog-preview-section {
    background: #0f5a43;
    padding: 64px 0;
    font-family: 'DM Sans', sans-serif;
}

.blog-preview-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
}


/* --- Header Row --- */

.bp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 20px;
}

.bp-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #c99b2d;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.bp-kicker::before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: #c99b2d;
}

.bp-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.15;
    margin: 0;
}

.btn-blog-all {
    display: inline-block;
    padding: 12px 26px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.btn-blog-all:hover {
    background: #c99b2d;
    border-color: #c99b2d;
    color: #fff;
}


/* --- Grid Layout --- */

.bp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* --- Cards --- */

.bp-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bp-card:hover {
    transform: translateY(-5px);
    border-color: #c99b2d;
}

.bp-thumb {
    width: 100%;
    aspect-ratio: 3 / 2;
    background-size: cover;
    background-position: center;
    background-color: #0d4a38;
}


/* --- Category Badge --- */

.bp-cat {
    display: inline-block;
    background: #c99b2d;
    color: #0f5a43;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 12px;
    align-self: flex-start;
}


/* --- Content --- */

.bp-content {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}


/* --- Title --- */

.bp-post-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff !important;
    line-height: 1.3;
    margin-bottom: 10px;
    text-decoration: none;
}


/* --- Excerpt --- */

.bp-excerpt {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}


/* --- Meta (date + read time) --- */

.bp-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bp-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #c99b2d;
    flex-shrink: 0;
}


/* --- Tablet --- */

@media screen and (max-width: 1024px) {
    .bp-title {
        font-size: 2.2rem;
    }
    .bp-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* --- Mobile --- */

@media screen and (max-width: 768px) {
    .blog-preview-section {
        padding: 60px 0;
    }
    .blog-preview-container {
        padding: 0 20px;
    }
    .bp-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .bp-title {
        font-size: 1.9rem;
    }
    /* Single column on phones */
    .bp-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   AFFILIATIONS MARQUEE
   ============================================================ */

.affiliations-section {
    background: #F8F5F0;
    padding: 28px 0;
    overflow: hidden;
    border-top: 1px solid #e5e1db;
    border-bottom: 1px solid #e5e1db;
}


/* --- Section Label --- */

.aff-label {
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 16px;
}


/* --- Track Wrapper: the "window" logos scroll past --- */

.aff-track-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}


/*
   Fade edges — left side fades in, right side fades out
   This makes the loop feel seamless
*/

.aff-track-wrapper::before,
.aff-track-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.aff-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #F8F5F0, transparent);
}

.aff-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #F8F5F0, transparent);
}


/* --- The Moving Track --- */

.aff-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: aff-marquee 22s linear infinite;
    /* Start from center — offset by 25% so it begins centered */
    /*transform: translateX(calc(-25%));*/
    will-change: transform;
}


/* Pause on hover — lets users read logos */

.aff-track:hover {
    animation-play-state: paused;
}


/*
   The animation moves the track left by exactly 50% of its width.
   Since we printed logos twice, 50% = one full set of logos.
   When it reaches 50%, it snaps back to 0% — perfectly seamless.
*/

@keyframes aff-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* --- Individual Logo Item --- */

.aff-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    height: 52px;
    border-right: 1px solid #e5e1db;
    flex-shrink: 0;
}


/* --- Logo Images --- */

.aff-logo-item img {
    height: 32px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    transition: filter 0.4s ease;
}
/* --- Text Fallback (when no logo image uploaded) --- */
.aff-logo-item:hover img { transform: scale(1.06); }
.aff-logo-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #bbb;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
    user-select: none;
}

.aff-logo-item:hover .aff-logo-text {
    color: #c99b2d;
}


/* --- Mobile: speed up slightly on small screens --- */

@media screen and (max-width: 768px) {
    .aff-track {
        animation-duration: 16s;
    }
    .aff-logo-item {
        padding: 0 30px;
    }
    .aff-logo-item img {
        height: 32px;
    }
    .aff-track-wrapper::before,
    .aff-track-wrapper::after {
        width: 60px;
        /* Narrower fade on mobile */
    }
}


/* ============================================================
   SITE FOOTER
   ============================================================ */

.site-footer {
    background: #0d0d0d;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
}


/* --- Main Grid --- */

.ft-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 50px;
}


/* --- Column Base --- */


/* --- Brand Column --- */

.ft-logo-wrap {
    margin-bottom: 12px;
}


/* If no custom logo — text fallback */

.ft-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: #c99b2d;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}


/* Make WordPress custom logo fit neatly */

.ft-logo-wrap .custom-logo {
    max-width: 160px;
    height: auto;
    /* Makes dark logos white */
}

.ft-tagline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
}

.ft-about {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
}


/* --- Social Buttons --- */

.ft-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ft-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ft-social-btn:hover {
    border-color: #c99b2d;
    background: #c99b2d;
    color: #fff;
    transform: translateY(-2px);
}


/* --- Column Titles --- */

.ft-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c99b2d;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ft-col-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(193, 127, 58, 0.25);
}


/* --- Navigation Links --- */

.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ft-links li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, gap 0.3s ease;
}

.ft-links li a::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c99b2d;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ft-links li a:hover {
    color: #c99b2d;
    gap: 12px;
}

.ft-links li a:hover::before {
    opacity: 1;
}


/* --- Contact Items --- */

.ft-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.ft-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(193, 127, 58, 0.12);
    border: 1px solid rgba(193, 127, 58, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #c99b2d;
}

.ft-contact-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.ft-contact-text strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.ft-contact-text a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ft-contact-text a:hover {
    color: #c99b2d;
}


/* --- Divider --- */

.ft-divider-line {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}


/* --- Bottom Bar --- */

.ft-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ft-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.ft-nepal-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ft-legal-links {
    display: flex;
    gap: 20px;
}

.ft-legal-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ft-legal-links a:hover {
    color: #c99b2d;
}


/* --- Tablet --- */

@media screen and (max-width: 1024px) {
    .ft-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .ft-col-brand {
        grid-column: 1 / 3;
        /* Brand spans full width on tablet */
    }
}


/* --- Mobile --- */

@media screen and (max-width: 768px) {
    .ft-main {
        grid-template-columns: 1fr;
        padding: 50px 20px 40px;
        gap: 35px;
    }
    .ft-col-brand {
        grid-column: auto;
    }
    .ft-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 12px;
    }
    .ft-legal-links {
        gap: 15px;
    }
}


/* ============================================================
   PAGE NAVIGATOR (Homepage only)
   ============================================================ */

.page-nav-floater {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 9990;
    font-family: 'DM Sans', sans-serif;
}


/* --- Popup Menu --- */

.page-nav-popup {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 0;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 8px;
    min-width: 210px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    /* Hidden by default */
    transform-origin: bottom left;
    transform: scale(0.88) translateY(8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}


/* Open state */

.page-nav-popup.is-open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}


/* Label above links */

.page-nav-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    padding: 6px 12px 6px;
    margin: 0;
}


/* Divider line between groups */

.page-nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 4px 8px;
}


/* --- Individual nav items --- */

.page-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s ease;
}

.page-nav-item:hover {
    background: rgba(255, 255, 255, 0.07);
}

.page-nav-item.is-active {
    background: rgba(193, 127, 58, 0.15);
}


/* Dot indicator */

.page-nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    transition: background 0.15s ease;
}

.page-nav-item:hover .page-nav-dot,
.page-nav-item.is-active .page-nav-dot {
    background: #c99b2d;
}


/* Section name */

.page-nav-name {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.15s ease;
    flex: 1;
}

.page-nav-item:hover .page-nav-name,
.page-nav-item.is-active .page-nav-name {
    color: #fff;
}


/* Section number */

.page-nav-num {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
}


/* --- Trigger Button --- */

.page-nav-trigger {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 9px 16px 9px 10px;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.page-nav-trigger:hover {
    border-color: #c99b2d;
    background: #1a1a1a;
}


/* Icon circle */

.page-nav-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #c99b2d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease;
}


/* Menu and close icons — swap on open */

.page-nav-icon .icon-menu,
.page-nav-icon .icon-close {
    position: absolute;
    transition: opacity 0.2s ease, transform 0.3s ease;
}

.page-nav-icon .icon-close {
    opacity: 0;
    transform: rotate(-45deg);
}


/* When open — swap icons */

.page-nav-trigger.is-open .page-nav-icon .icon-menu {
    opacity: 0;
    transform: rotate(45deg);
}

.page-nav-trigger.is-open .page-nav-icon .icon-close {
    opacity: 1;
    transform: rotate(0deg);
}


/* Button label text */

.page-nav-trigger-text {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}


/* --- Tablet: Hide text, show icon only --- */

@media screen and (max-width: 1024px) {
    .page-nav-floater {
        bottom: 24px;
        left: 20px;
    }
    /* Hide the "Navigate" text — just show the icon */
    .page-nav-trigger-text {
        display: none;
    }
    .page-nav-trigger {
        padding: 9px;
        border-radius: 50%;
        width: 46px;
        height: 46px;
        justify-content: center;
    }
    .page-nav-popup {
        min-width: 190px;
    }
}


/* --- Mobile: Even smaller --- */


/* --- Tablet: Hide text, show icon only --- */

@media screen and (max-width: 1024px) {
    .page-nav-floater {
        bottom: 24px;
        left: 20px;
    }
    .page-nav-trigger-text {
        display: none;
    }
    .page-nav-trigger {
        padding: 9px;
        border-radius: 50%;
        width: 46px;
        height: 46px;
        justify-content: center;
    }
    /* KEY FIX: Cap height so popup never reaches the header */
    .page-nav-popup {
        min-width: 190px;
        max-height: calc(100vh - 160px);
        /* 160px = header + button + gaps */
        overflow-y: auto;
        /* Scroll inside if content is tall */
        scrollbar-width: none;
        /* Hide scrollbar on Firefox */
    }
    .page-nav-popup::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar on Chrome/Safari */
    }
}


/* --- Mobile: Even smaller --- */

@media screen and (max-width: 480px) {
    .page-nav-floater {
        bottom: 20px;
        left: 16px;
    }
    .page-nav-trigger {
        width: 42px;
        height: 42px;
    }
    .page-nav-popup {
        min-width: 175px;
        /* Even stricter cap on small phones */
        max-height: calc(100vh - 180px);
    }
    .page-nav-name {
        font-size: 12px;
    }
}


/* ============================================================
   SINGLE TRIP PAGE
   ============================================================ */

:root {
    --tp-cream: #F5F0E8;
    --tp-stone: #E8E0D0;
    --tp-forest: #0d4a38;
    --tp-deep: #0f5a43;
    --tp-accent: #c99b2d;
    --tp-text: #0f5a43;
    --tp-muted: #6B6558;
    --tp-snow: #FAFAF8;
    --tp-sidebar: 340px;
    --tp-nav-h: 52px;
}


/* ── HERO ───────────────────────────────────── */

.tp-hero {
    position: relative;
    height: 92vh;
    min-height: 560px;
    overflow: hidden;
}

.tp-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.tp-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.tp-slide.active {
    opacity: 1;
}

.tp-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.tp-slide.active .tp-slide-bg {
    transform: scale(1);
}

.tp-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(15, 22, 13, 0.15) 0%, rgba(15, 22, 13, 0.05) 40%, rgba(10, 16, 8, 0.65) 100%);
}

.tp-hero-content {
    position: absolute;
    bottom: 64px;
    left: 64px;
    z-index: 10;
    max-width: 640px;
}

.tp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.tp-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.tp-breadcrumb a:hover {
    color: #fff;
}

.tp-hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.tp-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 300;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.tp-hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.tp-hero-meta {
    position: absolute;
    right: 64px;
    bottom: 64px;
    z-index: 10;
    text-align: right;
}

.tp-meta-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    display: block;
}

.tp-meta-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    display: block;
    margin-bottom: 12px;
}

.tp-slide-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.tp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.tp-dot.active {
    background: #fff;
    transform: scale(1.4);
}


/* ── GALLERY STRIP ──────────────────────────── */

.tp-gallery-strip {
    display: flex;
    gap: 3px;
    height: 85px;
    background: var(--tp-deep);
}

.tp-thumb {
    flex: 1;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s, flex 0.4s;
    position: relative;
}

.tp-thumb.active,
.tp-thumb:hover {
    opacity: 1;
    flex: 1.8;
}

.tp-thumb-label {
    position: absolute;
    bottom: 7px;
    left: 8px;
    color: #fff;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s;
}

.tp-thumb:hover .tp-thumb-label,
.tp-thumb.active .tp-thumb-label {
    opacity: 1;
}


/* ── STICKY SUBNAV ──────────────────────────── */

.tp-subnav-wrap {
    position: sticky;
    top: 0;
    z-index: 500;
    background: var(--tp-deep);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tp-subnav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    position: relative;
}


/* Book Now — absolute on desktop, inline on mobile */

.tp-subnav-cta {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
}


/* On mobile: remove absolute, put it back in the scroll flow */

@media screen and (max-width: 1024px) {
    .tp-subnav {
        justify-content: flex-start;
        /* left aligned so scroll works */
        padding: 0 12px;
        gap: 0;
    }
    .tp-subnav-cta {
        position: static;
        /* back in normal flow */
        transform: none;
        margin-left: 8px;
        /* small gap from last link */
        flex-shrink: 0;
    }
}

.tp-subnav::-webkit-scrollbar {
    display: none;
}

.tp-subnav-link {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    padding: 16px 16px;
    border-bottom: 2px solid transparent;
    transition: all 0.25s;
    white-space: nowrap;
}

.tp-subnav-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

.tp-subnav-link.active {
    color: #fff;
    border-bottom-color: var(--tp-accent);
}

.tp-subnav-cta {
    margin-left: auto;
    background: var(--tp-accent);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 9px 22px;
    border-radius: 100px;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.25s;
}

.tp-subnav-cta:hover {
    background: #a06828;
}


/* ── PAGE BODY ──────────────────────────────── */

.tp-page-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 120px;
    display: grid;
    grid-template-columns: 1fr var(--tp-sidebar);
    gap: 60px;
    align-items: start;
}


/* ── SECTIONS ───────────────────────────────── */

.tp-section {
    margin-bottom: 64px;
    scroll-margin-top: 55px;
}

.tp-section-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--tp-accent);
    font-weight: 500;
    margin-bottom: 8px;
}

.tp-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    line-height: 1.15;
    color: var(--tp-text);
    margin-bottom: 20px;
}

.tp-lead {
    font-size: 16px;
    color: var(--tp-muted);
    line-height: 1.8;
    max-width: 620px;
    margin-bottom: 28px;
}

.tp-lead p {
    margin-bottom: 16px;
}

.tp-section-divider {
    width: 48px;
    height: 2px;
    background: var(--tp-accent);
    margin-bottom: 24px;
}


/* ── HIGHLIGHT CARDS ────────────────────────── */

.tp-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.tp-highlight-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--tp-stone);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tp-highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.tp-hc-icon {
    font-size: 20px;
    margin-bottom: 10px;
}

.tp-hc-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--tp-text);
    margin-bottom: 4px;
}

.tp-hc-desc {
    font-size: 12px;
    color: var(--tp-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* ── ITINERARY TIMELINE ─────────────────────── */


/* .tp-timeline {} */

.tp-day-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0 24px;
}

.tp-day-spine {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tp-day-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--tp-forest);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 400;
    flex-shrink: 0;
    z-index: 1;
}

.tp-day-line {
    width: 1px;
    flex: 1;
    background: var(--tp-stone);
    margin: 4px 0;
    min-height: 24px;
}

.tp-day-content {
    padding-bottom: 36px;
}

.tp-day-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
    padding-top: 10px;
    flex-wrap: wrap;
}

.tp-day-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--tp-text);
}

.tp-chip {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--tp-stone);
    color: var(--tp-muted);
    font-weight: 500;
    white-space: nowrap;
}

.tp-day-body {
    font-size: 14px;
    color: var(--tp-muted);
    line-height: 1.75;
}


/* ── INCLUDES & EXCLUDES ────────────────────── */

.tp-inc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


/* 8b. Includes list items — prevent text overflow */

.tp-inc-list li {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}

.tp-inc-col {
    max-width: 100%;
    overflow: hidden;
}

.tp-inc-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid;
}

.tp-inc-yes .tp-inc-heading {
    color: var(--tp-forest);
    border-color: var(--tp-forest);
}

.tp-inc-no .tp-inc-heading {
    color: #c0392b;
    border-color: #c0392b;
}

.tp-inc-list {
    list-style: none;
    padding: 0;
}

.tp-inc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--tp-muted);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    line-height: 1.5;
}

.tp-inc-yes .tp-inc-list li::before {
    content: "✓";
    color: var(--tp-forest);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.tp-inc-no .tp-inc-list li::before {
    content: "✕";
    color: #c0392b;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}


/* ── DIFFICULTY ─────────────────────────────── */

.tp-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.badge-green {
    background: #D6EDDC;
    color: #1E5A28;
}

.badge-amber {
    background: #FAECD0;
    color: #7A4A0E;
}

.badge-red {
    background: #F5D6D6;
    color: #7A1E1E;
}

.tp-diff-bar {
    background: var(--tp-stone);
    border-radius: 100px;
    height: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.tp-diff-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(to right, var(--tp-forest), var(--tp-accent));
    transition: width 0.6s ease;
}

.tp-diff-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--tp-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.tp-diff-desc {
    font-size: 14px;
    color: var(--tp-muted);
    line-height: 1.8;
    max-width: 560px;
}


/* ── GALLERY GRID ───────────────────────────── */

.tp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.tp-gallery-featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.tp-gallery-item {
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.tp-gallery-featured {
    aspect-ratio: auto;
}

.tp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.tp-gallery-item:hover img {
    transform: scale(1.04);
}


/* ── MAP ────────────────────────────────────── */

.tp-map-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--tp-stone);
}


/* ── FAQ ACCORDION ──────────────────────────── */

.tp-accordion {
    border-top: 1px solid var(--tp-stone);
}

.tp-acc-item {
    border-bottom: 1px solid var(--tp-stone);
}

.tp-acc-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--tp-text);
    gap: 16px;
}

.tp-acc-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--tp-stone);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: var(--tp-text);
    transition: background 0.2s, transform 0.3s;
}

.tp-acc-item.open .tp-acc-icon {
    background: var(--tp-forest);
    color: #fff;
    transform: rotate(45deg);
}

.tp-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0;
    font-size: 14px;
    color: var(--tp-muted);
    line-height: 1.8;
}

.tp-acc-item.open .tp-acc-content {
    max-height: 600px;
    /* Large enough for any answer */
    padding-bottom: 20px;
}


/* ── SIDEBAR ────────────────────────────────── */

.tp-sidebar {
    position: sticky;
    top: calc(var(--tp-nav-h) + 24px);
}

.tp-inquiry-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
    margin-bottom: 20px;
}

.tp-inquiry-head {
    background: var(--tp-forest);
    padding: 24px 28px;
}

.tp-inquiry-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    margin-bottom: 4px;
}

.tp-inquiry-head p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.tp-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 16px;
}

.tp-price-from {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.tp-price-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 600;
    color: #fff;
}

.tp-price-pp {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.tp-inquiry-body {
    padding: 24px 28px;
}

.tp-field {
    margin-bottom: 14px;
}

.tp-field label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tp-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.tp-field input,
.tp-field select,
.tp-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--tp-stone);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--tp-text);
    background: var(--tp-snow);
    transition: border 0.2s;
    outline: none;
    appearance: none;
}

.tp-field input:focus,
.tp-field select:focus,
.tp-field textarea:focus {
    border-color: var(--tp-forest);
}

.tp-field textarea {
    resize: vertical;
    min-height: 80px;
}

.tp-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tp-btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--tp-forest);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s;
    margin-top: 8px;
}

.tp-btn-submit:hover {
    background: var(--tp-deep);
}

.tp-btn-submit:active {
    transform: scale(0.98);
}

.tp-btn-wa {
    display: block;
    text-align: center;
    padding: 12px;
    margin-top: 10px;
    border: 1.5px solid var(--tp-stone);
    border-radius: 8px;
    font-size: 13px;
    color: var(--tp-text);
    text-decoration: none;
    transition: all 0.25s;
}

.tp-btn-wa:hover {
    border-color: #25D366;
    color: #25D366;
}

.tp-inquiry-footer {
    text-align: center;
    padding: 16px 24px 22px;
    background: #0f5a43;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}


/* ── QUICK FACTS CARD ───────────────────────── */

.tp-quick-facts {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.tp-fact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--tp-stone);
    font-size: 13px;
}

.tp-fact-row:last-child {
    border-bottom: none;
}

.tp-fact-label {
    color: var(--tp-muted);
}

.tp-fact-val {
    font-weight: 600;
    color: var(--tp-text);
}


/* ── MOBILE BOTTOM BAR ──────────────────────── */

.tp-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--tp-deep);
    padding: 14px 24px;
    z-index: 900;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.tp-mobile-from {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.tp-mobile-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}

.tp-mobile-book-btn {
    background: var(--tp-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px 28px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.25s;
}

.tp-mobile-book-btn:hover {
    background: #a06828;
}


/* ── LIGHTBOX ───────────────────────────────── */

.tp-lightbox {
    background: transparent;
    border: none;
    padding: 0;
    /* Let the browser center it natively — don't fight it with fixed+transform */
    margin: auto;
    max-width: 90vw;
    max-height: 90vh;
    /* Remove position/top/left/transform — these conflict with dialog's native centering */
}

.tp-lightbox::backdrop {
    background: rgba(0, 0, 0, 0.92);
}

.tp-lightbox img {
    display: block;
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
}

.tp-lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}


/* ── RESPONSIVE ─────────────────────────────── */

@media screen and (max-width: 1024px) {
    .tp-page-body {
        grid-template-columns: 1fr;
        padding: 40px 30px 120px;
    }
    .tp-sidebar {
        position: static;
        order: 2;
        /* Sidebar goes AFTER main content on mobile/tablet */
    }
    .tp-main {
        order: 1;
        /* Main content goes FIRST */
    }
    .tp-mobile-bar {
        display: flex;
    }
    .tp-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .tp-hero-content {
        left: 24px;
        bottom: 40px;
        right: 24px;
        max-width: 100%;
    }
    .tp-hero-meta {
        display: none;
    }
    .tp-hero-title {
        font-size: clamp(32px, 8vw, 50px);
    }
    .tp-subnav {
        padding: 0 20px;
    }
    .tp-page-body {
        padding: 30px 20px 120px;
    }
    .tp-section-title {
        font-size: 28px;
    }
    .tp-inc-grid {
        grid-template-columns: 1fr;
    }
    .tp-highlight-grid {
        grid-template-columns: 1fr 1fr;
    }
    .tp-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .tp-gallery-featured {
        grid-column: 1 / 3;
        grid-row: auto;
    }
    .tp-field-row {
        grid-template-columns: 1fr;
    }
    .tp-day-item {
        grid-template-columns: 48px 1fr;
        gap: 0 16px;
    }
    .tp-day-num {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    .tp-gallery-strip {
        height: 65px;
    }
}


/* --- Trip Price Discount --- */

.tp-price-original-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.tp-price-was {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: line-through;
}

.tp-discount-badge {
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
}

.tp-mobile-discount {
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}


/* ============================================================
   BOOKING BUTTONS + POPUPS + DEPARTURE DATES
   ============================================================ */


/* --- Action Buttons in Sidebar --- */

.tp-action-btns {
    padding: 20px 24px 24px;
    /* ← changed 0 to 20px top padding */
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #0f5a43;
}

.tp-btn-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.22s ease;
    text-decoration: none;
    width: 100%;
    text-align: left;
}


/* All buttons share the same dark green base */

.tp-btn-booknow {
    background: #0d4a38;
    color: #fff;
    border: 1.5px solid #0d4a38;
}

.tp-btn-booknow:hover {
    background: #c99b2d;
    border-color: #c99b2d;
    transform: translateY(-1px);
}

.tp-btn-departure {
    background: #0d4a38;
    color: #fff;
    border: 1.5px solid #0d4a38;
    flex-direction: row;
    /* icon + text side by side */
    align-items: flex-start;
    gap: 12px;
}


/* Make the multi text stack vertically */

.tp-btn-multi {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tp-btn-multi .tp-btn-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.tp-btn-multi .tp-btn-sublabel {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    line-height: 1.4;
}

.tp-btn-departure:hover {
    background: #c99b2d;
    border-color: #c99b2d;
    transform: translateY(-1px);
}

.tp-btn-enquiry {
    background: #0d4a38;
    color: #fff;
    border: 1.5px solid #0d4a38;
}

.tp-btn-enquiry:hover {
    background: #c99b2d;
    border-color: #c99b2d;
    transform: translateY(-1px);
}

.tp-btn-whatsapp {
    background: #0d4a38;
    color: #fff;
    border: 1.5px solid #0d4a38;
}

.tp-btn-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    transform: translateY(-1px);
}


/* Sublabel text color fix for dark background */

.tp-btn-sublabel {
    color: rgba(255, 255, 255, 0.6);
}


/* --- Popup System --- */

.tp-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    padding: 20px;
}

.tp-popup-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.tp-popup {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.92) translateY(16px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    scrollbar-width: none;
}

.tp-popup::-webkit-scrollbar {
    display: none;
}

.tp-popup-overlay.is-open .tp-popup {
    transform: scale(1) translateY(0);
}

.tp-popup-head {
    background: #0f5a43;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.tp-popup-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
}

.tp-popup-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.tp-popup-close:hover {
    color: #fff;
}

.tp-popup-body {
    padding: 24px;
}

.tp-popup-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tp-muted);
    margin-bottom: 12px;
}


/* --- Custom Calendar --- */

.tp-cal {
    border: 1.5px solid var(--tp-stone);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.tp-cal-header {
    background: #0f5a43;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tp-cal-month {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.tp-cal-nav {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    padding: 0 8px;
    line-height: 1;
    transition: color 0.2s;
}

.tp-cal-nav:hover {
    color: #fff;
}

.tp-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--tp-snow);
}

.tp-cal-dn {
    text-align: center;
    padding: 8px 2px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: #aaa;
    background: var(--tp-snow);
}

.tp-cal-cell {
    text-align: center;
    padding: 8px 4px;
    font-size: 13px;
    cursor: pointer;
    position: relative;
    transition: all 0.15s;
    user-select: none;
}

.tp-cal-cell:not(.tp-cal-empty):not(.tp-cal-past):hover {
    background: var(--tp-cream);
    border-radius: 50%;
}

.tp-cal-empty {
    cursor: default;
}

.tp-cal-past {
    color: #ccc;
    cursor: not-allowed;
}

.tp-cal-dep {
    font-weight: 700;
    color: #0f5a43;
}

.tp-cal-sel {
    background: #c99b2d !important;
    color: #fff !important;
    border-radius: 50%;
    font-weight: 700;
}

.tp-cal-dot {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c99b2d;
    margin: 1px auto 0;
}

.tp-cal-sel .tp-cal-dot {
    background: #fff;
}

.tp-cal-legend {
    font-size: 11px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.tp-cal-dot-sample {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c99b2d;
    flex-shrink: 0;
}


/* --- Pax Selector --- */

.tp-pax-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--tp-stone);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.tp-pax-btn {
    background: var(--tp-cream);
    border: none;
    width: 48px;
    height: 48px;
    font-size: 22px;
    font-weight: 300;
    cursor: pointer;
    color: #0f5a43;
    transition: background 0.15s;
    flex-shrink: 0;
}

.tp-pax-btn:hover {
    background: var(--tp-stone);
}

.tp-pax-display {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tp-pax-val {
    font-size: 20px;
    font-weight: 700;
    color: #0f5a43;
}

.tp-pax-unit {
    font-size: 13px;
    color: var(--tp-muted);
}

.tp-pax-note {
    font-size: 11px;
    color: #aaa;
    text-align: center;
    margin-bottom: 20px;
}


/* --- Group Discount Note --- */

.tp-group-note {
    background: var(--tp-cream);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--tp-muted);
    line-height: 1.6;
}

.tp-group-note a {
    color: #c99b2d;
    font-weight: 700;
    text-decoration: none;
}


/* --- Continue Button --- */

.tp-btn-continue {
    width: 100%;
    padding: 14px;
    background: #c99b2d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.22s, transform 0.15s;
}

.tp-btn-continue:hover {
    background: #a06828;
}

.tp-btn-continue:active {
    transform: scale(0.98);
}


/* --- Join Departure Popup Specifics --- */

.tp-dep-confirm-badge {
    background: #D6EDDC;
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.tp-dep-confirm-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.tp-dep-confirm-title {
    font-size: 14px;
    font-weight: 700;
    color: #1E5A28;
    margin-bottom: 2px;
}

.tp-dep-confirm-sub {
    font-size: 12px;
    color: #2D7A3A;
}

.tp-dep-price-badge {
    background: #FAECD0;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
    font-size: 13px;
}

.tp-dep-price-title {
    font-weight: 700;
    color: #7A4A0E;
}

.tp-dep-price-sub {
    font-size: 11px;
    color: #a06828;
}

.tp-dep-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--tp-text);
    line-height: 1.6;
    margin-bottom: 20px;
    cursor: pointer;
}

.tp-dep-checkbox-wrap input {
    margin-top: 3px;
    accent-color: #0f5a43;
    flex-shrink: 0;
}


/* --- Departure Dates Section --- */

.tp-dep-intro {
    font-size: 15px;
    color: var(--tp-muted);
    margin-bottom: 24px;
    max-width: 560px;
}

.tp-dep-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.tp-dep-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.tp-dep-table th {
    background: #0f5a43;
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 18px;
    text-align: left;
    white-space: nowrap;
}

.tp-dep-table td {
    padding: 16px 18px;
    font-size: 14px;
    color: var(--tp-text);
    border-bottom: 1px solid var(--tp-stone);
}

.tp-dep-table tr:last-child td {
    border-bottom: none;
}

.tp-dep-table tr:hover td {
    background: var(--tp-snow);
}

.tp-dep-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
}

.tp-dep-price {
    font-weight: 700;
    color: #c99b2d;
}

.tp-dep-spots {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.spots-ok {
    background: #D6EDDC;
    color: #1E5A28;
}

.spots-few {
    background: #FAECD0;
    color: #7A4A0E;
}

.spots-full {
    background: #F5D6D6;
    color: #7A1E1E;
}

.spots-wait {
    background: #E8E0D0;
    color: #6B6558;
}

.tp-btn-join-dep {
    background: #0f5a43;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 9px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.tp-btn-join-dep:hover {
    background: #c99b2d;
}

.tp-btn-join-dep.full {
    background: #E8E0D0;
    color: #999;
    cursor: default;
}


/* --- Mobile Floater --- */

.tp-mobile-floater {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    font-family: 'DM Sans', sans-serif;
    pointer-events: none;
    /* Container is taller than its visible UI (the closed panel still
       occupies layout). Let clicks fall through; real UI re-enables below. */
}

.tp-floater-bottom {
    pointer-events: auto;
}


/* Floater stays off-screen until the hero scrolls away (see trip-page.js) */

.tp-mobile-floater {
    transition: none;
}
.tp-mobile-floater.is-revealed {
    transform: none;
}
.tp-floater-bottom {
    transform: translateY(120%);
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.tp-mobile-floater.is-revealed .tp-floater-bottom {
    transform: translateY(0);
}

.tp-floater-panel {
  position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: #0d0d0d;
    border-radius: 20px 20px 0 0;
    padding: 20px 20px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none;
}

.tp-floater-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.tp-floater-panel-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
    text-align: center;
}

.tp-floater-option {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 8px;
    transition: background 0.2s;
    font-size: 16px;
    /* for emoji */
}

.tp-floater-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tp-fo-wa:hover {
    border-color: #25D366;
}

.tp-fo-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.tp-fo-sub {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1px;
}

.tp-floater-bottom {
    background: #0d0d0d;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.tp-floater-price-block {
    display: flex;
    flex-direction: column;
}

.tp-floater-from {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tp-floater-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
}

.tp-floater-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #c99b2d;
    border: none;
    border-radius: 100px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.tp-floater-trigger:hover {
    background: #a06828;
}

.tp-floater-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tp-floater-icon .icon-menu,
.tp-floater-icon .icon-close {
    position: absolute;
    transition: opacity 0.2s, transform 0.3s;
}

.tp-floater-icon .icon-close {
    opacity: 0;
    transform: rotate(-45deg);
}

.tp-floater-trigger.is-open .tp-floater-icon .icon-menu {
    opacity: 0;
    transform: rotate(45deg);
}

.tp-floater-trigger.is-open .tp-floater-icon .icon-close {
    opacity: 1;
    transform: rotate(0deg);
}

.tp-floater-trigger-text {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}


/* --- Show floater on mobile, hide desktop mobile bar --- */

@media screen and (max-width: 1024px) {
    .tp-mobile-floater {
        display: block;
    }
    .tp-mobile-bar {
        display: none !important;
    }
    /* Add bottom padding so last content isn't hidden behind floater */
    .tp-page-body {
        padding-bottom: 90px;
    }
}


/* --- Departure table responsive --- */

@media screen and (max-width: 768px) {
    .tp-dep-table th:nth-child(3),
    .tp-dep-table td:nth-child(3) {
        display: none;
    }
    /* Hide duration on mobile */
}


/* ============================================================
   BOOKING PAGE
   ============================================================ */

.bk-page {
    min-height: 100vh;
    background: var(--tp-cream);
    font-family: 'DM Sans', sans-serif;
}

.bk-header {
    background: #0f5a43;
    padding: 40px 0;
}

.bk-header-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.bk-back {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.bk-back:hover {
    color: #fff;
}

.bk-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 6px;
}

.bk-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.bk-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}


/* Summary */

.bk-summary {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    position: sticky;
    top: 20px;
}

.bk-summary-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #0f5a43;
}

.bk-dep-tag {
    background: #D6EDDC;
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
    font-size: 13px;
}

.bk-dep-tag strong {
    display: block;
    color: #1E5A28;
    font-weight: 700;
}

.bk-dep-tag span {
    color: #2D7A3A;
    font-size: 11px;
}

.bk-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--tp-stone);
}

.bk-summary-row:last-child {
    border-bottom: none;
}

.bk-summary-row span:first-child {
    color: var(--tp-muted);
}

.bk-summary-row span:last-child {
    font-weight: 600;
    color: var(--tp-text);
}

.bk-summary-total span:last-child {
    color: #c99b2d;
    font-size: 16px;
}

.bk-date-fixed {
    color: #1E5A28 !important;
}


/* Form */

.bk-form-wrap {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.bk-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #0f5a43;
}

.bk-field {
    margin-bottom: 16px;
}

.bk-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tp-muted);
    margin-bottom: 6px;
}

.bk-field label span {
    color: #e74c3c;
}

.bk-field input,
.bk-field select,
.bk-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--tp-stone);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--tp-text);
    background: var(--tp-snow);
    outline: none;
    appearance: none;
    transition: border-color 0.2s;
}

.bk-field input:focus,
.bk-field select:focus,
.bk-field textarea:focus {
    border-color: #0f5a43;
}

.bk-field textarea {
    resize: vertical;
    min-height: 100px;
}

.bk-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.bk-dep-confirm-box {
    background: #D6EDDC;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.bk-checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: #1E5A28;
    line-height: 1.6;
    cursor: pointer;
}

.bk-checkbox-label input {
    margin-top: 3px;
    accent-color: #0f5a43;
    flex-shrink: 0;
    width: auto;
}

.bk-btn-submit {
    width: 100%;
    padding: 15px;
    background: #c99b2d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.22s, transform 0.15s;
    margin-top: 8px;
}

.bk-btn-submit:hover {
    background: #a06828;
}

.bk-btn-submit:active {
    transform: scale(0.98);
}

.bk-form-note {
    font-size: 12px;
    color: var(--tp-muted);
    text-align: center;
    margin-top: 14px;
    line-height: 1.6;
}


/* Responsive */

@media screen and (max-width: 768px) {
    .bk-body {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    .bk-summary {
        position: static;
    }
    .bk-header-inner,
    .bk-body {
        padding-left: 20px;
        padding-right: 20px;
    }
    .bk-field-row {
        grid-template-columns: 1fr;
    }
}


/* ── Mobile Overflow Fixes ── */

@media screen and (max-width: 1024px) {
    /* Hero meta block goes off screen on mobile */
    .tp-hero-meta {
        display: none;
    }
    /* Gallery grid can overflow on small screens */
    .tp-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .tp-gallery-featured {
        grid-column: 1 / 3;
    }
    /* Departure table needs horizontal scroll within its own box */
    .tp-dep-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    /* Popup width fix */
    .tp-popup {
        width: calc(100% - 32px);
        margin: 0 16px;
    }
    /* Floater panel must not exceed screen */
    .tp-mobile-floater {
        max-width: 100vw;
    }
}

@media screen and (max-width: 768px) {
    /* Breadcrumb can wrap off screen */
    .tp-breadcrumb {
        flex-wrap: wrap;
        max-width: calc(100vw - 48px);
    }
    /* Hero title must not overflow */
    .tp-hero-title {
        max-width: calc(100vw - 48px);
        word-break: break-word;
    }
    /* Highlight grid 2 columns on small screens */
    .tp-highlight-grid {
        grid-template-columns: 1fr 1fr;
    }
    /* Subnav must scroll horizontally internally, not push page */
    .tp-subnav-wrap {
        max-width: 100vw;
    }
    .tp-subnav {
        max-width: 100%;
        overflow-x: auto;
        padding: 0 16px;
    }
}


/* ============================================================
   PRECISE OVERFLOW FIXES — targeting only the guilty elements
   ============================================================ */


/* 1. Hero — scale transform leaks outside, clip it */

.tp-hero {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    /* Already set but make sure it's here */
}

.tp-slides {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.tp-slide {
    width: 100%;
    max-width: 100vw;
}


/* 2. Page body — padding too wide on small screens */

@media screen and (max-width: 768px) {
    .tp-page-body {
        padding: 30px 16px 100px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    .tp-main {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    /* 3. Highlight grid — 2 columns, constrained */
    .tp-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        max-width: 100%;
    }
    /* 4. Departure table — scroll inside its own box */
    .tp-dep-table-wrap {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    /* 5. Section titles — prevent long words pushing width */
    .tp-section-title,
    .tp-hero-title,
    .tp-day-title {
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    /* 6. Subnav — already scrolls but make sure it doesn't push page */
    .tp-subnav-wrap {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    .tp-subnav {
        overflow-x: auto;
        width: 100%;
    }
    /* 7. Timeline items — grid columns can overflow */
    .tp-day-item {
        grid-template-columns: 48px 1fr;
        width: 100%;
        max-width: 100%;
    }
    /* 8. Inc grid — stack on mobile */
    .tp-inc-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    /* 9. Popup overlay — full screen, no overflow */
    .tp-popup-overlay {
        padding: 16px;
        box-sizing: border-box;
    }
    /* 10. Gallery grid — constrained */
    .tp-gallery-grid {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .tp-page-body {
        padding: 24px 12px 100px;
    }
    /* Single column highlight on very small phones */
    .tp-highlight-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* Ensure body always fills viewport exactly */

body {
    width: 100%;
    min-width: 0;
}


/* Ensure the trip page hero fills exactly */

.tp-hero,
.tp-gallery-strip,
.tp-subnav-wrap,
.tp-mobile-floater {
    width: 100%;
    max-width: 100vw;
    left: 0;
    right: 0;
}


/* The floater bottom bar must be exactly viewport width */

.tp-floater-bottom {
    width: 100%;
    box-sizing: border-box;
}


/* ============================================================
   TARGETED OVERFLOW FIXES (from console diagnosis)
   ============================================================ */


/* 1. Subnav links overflowing — the subnav must clip internally */

.tp-subnav-wrap {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

.tp-subnav {
    width: 100%;
    max-width: 100%;
    overflow-x: auto !important;
    overflow-y: visible;
}


/* The CTA button must not push the subnav wider */

.tp-subnav-cta {
    flex-shrink: 0;
    white-space: nowrap;
}


/* 2. Popup overlay must be exactly viewport size — not wider */

.tp-popup-overlay {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    overflow: hidden;
}


/* 3. Accordion icon overflowing — it's being pushed by long question text */

.tp-acc-trigger {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.tp-acc-trigger span:first-child {
    /* Question text must shrink, not push icon off screen */
    flex: 1;
    min-width: 0;
    /* Critical — allows flex child to shrink below content size */
    word-break: break-word;
    overflow-wrap: break-word;
}

.tp-acc-icon {
    flex-shrink: 0;
    /* Icon never shrinks */
}


/* ============================================================
   FINAL OVERFLOW FIX — clip without breaking sticky
   overflow-x: clip cuts overflow but does NOT create a scroll
   container so position: sticky still works perfectly
   ============================================================ */

.tp-hero,
.tp-gallery-strip,
.tp-subnav-wrap,
.tp-page-body,
.tp-main {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-x: clip;
    /* clips without breaking sticky! */
}


/* Subnav itself scrolls internally */

.tp-subnav {
    overflow-x: auto;
    overflow-y: visible;
    width: 100%;
}


/* Hero content must stay within hero bounds */

@media screen and (max-width: 768px) {
    .tp-hero-content {
        left: 20px;
        right: 20px;
        bottom: 40px;
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        box-sizing: border-box;
    }
    .tp-hero-title {
        font-size: clamp(24px, 6vw, 40px);
        word-break: break-word;
    }
    .tp-hero-sub {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    /* Page body text must not overflow */
    .tp-lead,
    .tp-lead p,
    .tp-day-body,
    .tp-diff-desc {
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}


/* ============================================================
   CONTENT TEXT OVERFLOW FIX
   ============================================================ */


/* The main content column must constrain all child elements */

.tp-main {
    min-width: 0;
    /* Critical for flex/grid children */
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    box-sizing: border-box;
}


/* All direct text content must wrap */

.tp-lead,
.tp-lead p,
.tp-lead ul,
.tp-lead ol,
.tp-lead li,
.tp-lead h1,
.tp-lead h2,
.tp-lead h3,
.tp-lead h4 {
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}


/* WordPress auto-generated content tags */

.tp-lead>* {
    max-width: 100%;
    box-sizing: border-box;
}


/* Section content */

.tp-section {
    min-width: 0;
    max-width: 100%;
    overflow-x: clip;
}


/* Page body grid columns must not exceed their lane */

@media screen and (max-width: 1024px) {
    .tp-page-body {
        grid-template-columns: 1fr;
        min-width: 0;
    }
    .tp-main,
    .tp-sidebar {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }
}


/* Departure table must scroll horizontally — override the clip */

.tp-dep-table-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}


/* The section containing the table must NOT clip */

#tp-departures {
    overflow-x: visible !important;
}


/* ============================================================
   DESKTOP CONTENT WIDTH FIX
   ============================================================ */


/* Constrain readable text width in the main column */

.tp-lead {
    max-width: 680px;
}

.tp-section-title {
    max-width: 680px;
}

.tp-dep-intro {
    max-width: 680px;
}

.tp-diff-desc {
    max-width: 560px;
}


/* Highlight grid should not stretch full width */

.tp-highlight-grid {
    max-width: 680px;
}


/* Timeline should not stretch full width */

.tp-timeline {
    max-width: 680px;
}


/* Inc grid max width */

.tp-inc-grid {
    max-width: 680px;
}


/* Accordion max width */

.tp-accordion {
    max-width: 680px;
}


/* Gallery grid uses full width — that's fine */


/* Fix the page body grid proportions on desktop */

@media screen and (min-width: 1025px) {
    .tp-page-body {
        grid-template-columns: 1fr 360px;
        gap: 60px;
        max-width: 1200px;
        padding: 60px 40px 120px;
    }
}


/* ============================================================
   ALTITUDE CHART + DAY PHOTOS
   ============================================================ */


/* --- Day altitude chip colour --- */

.tp-chip-altitude {
    background: #D6EDDC;
    color: #1E5A28;
}


/* --- Day photo --- */

.tp-day-photo {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 480px;
}

.tp-day-photo img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.tp-day-photo img:hover {
    transform: scale(1.02);
}


/* --- Altitude Chart --- */

.tp-altitude-chart-wrap {
    background: #fff;
    border: 1px solid var(--tp-stone);
    border-radius: 12px;
    padding: 24px 16px 16px;
    max-width: 680px;
    overflow: hidden;
}

.tp-altitude-canvas {
    width: 100% !important;
    height: 260px !important;
    display: block;
}

@media screen and (max-width: 768px) {
    .tp-altitude-canvas {
        height: 200px !important;
    }
    .tp-day-photo {
        max-width: 100%;
    }
}


/* ============================================================
   CUSTOM MAP IMAGE
   ============================================================ */

.tp-map-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--tp-stone);
    background: #fff;
    max-width: 680px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tp-map-image {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
    transition: transform 0.4s ease;
}

.tp-map-image:hover {
    transform: scale(1.02);
}

.tp-map-image-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: var(--tp-snow);
    border-top: 1px solid var(--tp-stone);
    flex-wrap: wrap;
    gap: 8px;
}

.tp-map-zoom-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--tp-muted);
}

.tp-map-credit {
    font-size: 11px;
    color: #aaa;
    font-style: italic;
}

.tp-related-section {
    background: #0f5a43;
    padding: 80px 0 100px;
    margin-top: 0;
}

.tp-related-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}


/* --- Header Row --- */

.tp-related-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 20px;
    flex-wrap: wrap;
}

.tp-related-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c99b2d;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-related-kicker::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #c99b2d;
}

.tp-related-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.15;
}

.tp-related-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.tp-related-view-all {
    display: inline-block;
    padding: 11px 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border-radius: 100px;
}

.tp-related-view-all:hover {
    background: #c99b2d;
    border-color: #c99b2d;
}


/* --- Cards Grid --- */

.tp-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* --- Card --- */

.tp-related-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.tp-related-card:hover {
    transform: translateY(-6px);
    border-color: #c99b2d;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


/* --- Card Image --- */

.tp-related-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.4s ease;
}

.tp-related-card:hover .tp-related-img {
    transform: scale(1.03);
}

.tp-related-region-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(26, 46, 32, 0.85);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

.tp-related-discount-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}


/* --- Card Content --- */

.tp-related-content {
    padding: 20px 20px 14px;
    flex: 1;
}

.tp-related-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
    transition: color 0.2s;
}

.tp-related-card:hover .tp-related-name {
    color: #c99b2d;
}

.tp-related-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}


/* Override chip colors for dark background */

.tp-related-card .tp-chip {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
}


/* --- Card Footer --- */

.tp-related-footer {
    padding: 14px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.tp-related-price-block {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.tp-related-price-was {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
}

.tp-related-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #c99b2d;
}

.tp-related-pp {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.tp-related-cta {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.2s;
}

.tp-related-card:hover .tp-related-cta {
    color: #c99b2d;
}


/* --- Responsive --- */

@media screen and (max-width: 1024px) {
    .tp-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .tp-related-section {
        padding: 60px 0 80px;
    }
    .tp-related-inner {
        padding: 0 20px;
    }
    .tp-related-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    /* Horizontal card on mobile */
    .tp-related-card {
        flex-direction: row;
        height: 130px;
    }
    .tp-related-img {
        width: 130px;
        min-width: 130px;
        height: 100%;
    }
    .tp-related-content {
        padding: 14px;
        flex: 1;
        min-width: 0;
    }
    .tp-related-name {
        font-size: 17px;
        margin-bottom: 8px;
    }
    .tp-related-footer {
        display: none;
        /* Hide footer on mobile horizontal cards */
    }
    .tp-related-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .tp-related-title {
        font-size: 26px;
    }
}


/* ============================================================
   TRIP HIGHLIGHTS SHORTCODE BLOCK
   ============================================================ */

.tp-highlights-block {
    background: #fff;
    border: 1px solid var(--tp-stone);
    border-left: 4px solid #c99b2d;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 32px 0;
    max-width: 680px;
}

.tp-highlights-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c99b2d;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-highlights-label::before {
    content: '✨';
    font-size: 14px;
    letter-spacing: 0;
}

.tp-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.tp-highlights-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--tp-text);
    line-height: 1.5;
}

.tp-highlights-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.tp-highlights-text {
    font-weight: 500;
    color: var(--tp-text);
}


/* Single column if only a few items */

.tp-highlights-list:has(li:nth-child(1):last-child),
.tp-highlights-list:has(li:nth-child(2):last-child),
.tp-highlights-list:has(li:nth-child(3):last-child) {
    grid-template-columns: 1fr;
}

@media screen and (max-width: 768px) {
    .tp-highlights-block {
        padding: 20px;
        margin: 24px 0;
    }
    .tp-highlights-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}


/* ============================================================
   TRIP ACCOMMODATION SHORTCODE BLOCK
   ============================================================ */

.tp-acc-block {
    background: #fff;
    border: 1px solid var(--tp-stone);
    border-left: 4px solid #0d4a38;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 32px 0;
    max-width: 680px;
}

.tp-acc-block-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0d4a38;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-acc-block-label::before {
    content: '🏨';
    font-size: 14px;
    letter-spacing: 0;
}

.tp-acc-block-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tp-acc-block-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--tp-stone);
}

.tp-acc-block-item:last-child {
    border-bottom: none;
}

.tp-acc-block-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 36px;
    text-align: center;
}

.tp-acc-block-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.tp-acc-block-place {
    font-size: 14px;
    font-weight: 700;
    color: var(--tp-text);
}

.tp-acc-block-type {
    font-size: 12px;
    color: var(--tp-muted);
}

.tp-acc-block-nights {
    font-size: 12px;
    font-weight: 600;
    color: #0d4a38;
    background: #D6EDDC;
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .tp-acc-block {
        padding: 20px;
        margin: 24px 0;
    }
}


/* ============================================================
   PACKING LIST SECTION
   ============================================================ */

.tp-pack-groups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 680px;
}

.tp-pack-group {
    background: #fff;
    border: 1px solid var(--tp-stone);
    border-radius: 12px;
    overflow: hidden;
}

.tp-pack-cat-title {
    background: #0f5a43;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 16px;
}

.tp-pack-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp-pack-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--tp-stone);
}

.tp-pack-item:last-child {
    border-bottom: none;
}

.tp-pack-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.tp-pack-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.tp-pack-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--tp-text);
}

.tp-pack-note {
    font-size: 11px;
    color: var(--tp-muted);
}


/* Required / Optional / Rental tags */

.tp-pack-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tp-pack-required {
    background: #D6EDDC;
    color: #1E5A28;
}

.tp-pack-optional {
    background: #FAECD0;
    color: #7A4A0E;
}

.tp-pack-rental {
    background: #E8E0D0;
    color: #6B6558;
}


/* Responsive */

@media screen and (max-width: 768px) {
    .tp-pack-groups {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   TRAVELLER REVIEWS SECTION
   ============================================================ */


/* ============================================================
   TRAVELLER REVIEWS SECTION — Two Column Layout
   ============================================================ */

.tp-reviews-section {
    background: #F5F0E8;
    padding: 80px 0;
    border-top: 1px solid #E8E0D0;
}

.tp-reviews-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
    text-align: left;
}


/* --- Left Column Header --- */

.tp-reviews-header {
    position: sticky;
    top: 80px;
}

.tp-reviews-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c99b2d;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.tp-reviews-kicker::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #c99b2d;
}

.tp-reviews-kicker::after {
    display: none;
    /* Only left line on left-aligned layout */
}

.tp-reviews-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: #1C1A17;
    margin-bottom: 16px;
    line-height: 1.15;
}

.tp-reviews-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.tp-reviews-avg-stars {
    font-size: 18px;
    color: #c99b2d;
    letter-spacing: 2px;
}

.tp-reviews-avg-text {
    font-size: 13px;
    color: #6B6558;
}


/* Optional CTA on left */

.tp-reviews-write-cta {
    display: inline-block;
    padding: 10px 22px;
    border: 1.5px solid #0f5a43;
    color: #0f5a43;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.tp-reviews-write-cta:hover {
    background: #0f5a43;
    color: #fff;
}


/* --- Right Column Slider --- */

.tp-reviews-slider {
    background: #fff;
    border-radius: 16px;
    padding: 40px 44px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
    position: relative;
}

.tp-reviews-track {
    position: relative;
    min-height: 240px;
}


/* --- Individual Slide --- */

.tp-review-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.tp-review-slide.is-active {
    opacity: 1;
    pointer-events: all;
    position: relative;
}


/* --- Stars --- */

.tp-review-stars {
    display: flex;
    gap: 3px;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.tp-star-filled {
    font-size: 18px;
    color: #c99b2d;
}

.tp-star-empty {
    font-size: 18px;
    color: #E8E0D0;
}


/* --- Quote --- */

.tp-review-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: #1C1A17;
    line-height: 1.6;
    margin: 0 0 28px;
    position: relative;
    padding-left: 20px;
}

.tp-review-quote::before {
    content: '\201C';
    font-size: 60px;
    color: #c99b2d;
    opacity: 0.25;
    position: absolute;
    top: -14px;
    left: -8px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}


/* --- Reviewer --- */

.tp-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tp-reviewer-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c99b2d;
    flex-shrink: 0;
}

.tp-reviewer-initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0d4a38;
    border: 2px solid #c99b2d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

.tp-reviewer-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tp-reviewer-name {
    font-size: 14px;
    font-weight: 700;
    color: #1C1A17;
}

.tp-reviewer-meta {
    font-size: 12px;
    color: #6B6558;
}


/* --- Navigation --- */

.tp-reviews-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    justify-content: flex-start;
}

.tp-reviews-prev,
.tp-reviews-next {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #E8E0D0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1C1A17;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.tp-reviews-prev:hover,
.tp-reviews-next:hover {
    background: #0f5a43;
    border-color: #0f5a43;
    color: #fff;
}

.tp-reviews-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.tp-reviews-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: #E8E0D0;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.tp-reviews-dot.is-active {
    background: #c99b2d;
    transform: scale(1.3);
}


/* --- Responsive --- */

@media screen and (max-width: 1024px) {
    .tp-reviews-inner {
        grid-template-columns: 1fr 1.2fr;
        gap: 50px;
    }
    .tp-reviews-title {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .tp-reviews-section {
        padding: 60px 0;
    }
    .tp-reviews-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 20px;
        text-align: left;
    }
    .tp-reviews-header {
        position: static;
    }
    .tp-reviews-title {
        font-size: 28px;
    }
    .tp-reviews-slider {
        padding: 28px 24px;
    }
    .tp-reviews-track {
        min-height: 260px;
    }
    .tp-review-quote {
        font-size: 19px;
    }
}


/* ============================================================
   SOCIAL SHARE BAR
   ============================================================ */

.tp-share-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.tp-share-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tp-muted);
    margin-right: 4px;
}

.tp-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}


/* Facebook */

.tp-share-facebook {
    background: #f0f4ff;
    color: #1877F2;
    border-color: #d0dcff;
}

.tp-share-facebook:hover {
    background: #1877F2;
    color: #fff;
    border-color: #1877F2;
}


/* WhatsApp */

.tp-share-whatsapp {
    background: #f0faf4;
    color: #25D366;
    border-color: #c3efd4;
}

.tp-share-whatsapp:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}


/* Pinterest */

.tp-share-pinterest {
    background: #fff0f0;
    color: #E60023;
    border-color: #ffd0d0;
}

.tp-share-pinterest:hover {
    background: #E60023;
    color: #fff;
    border-color: #E60023;
}


/* Copy Link */

.tp-share-copy {
    background: var(--tp-snow);
    color: var(--tp-muted);
    border-color: var(--tp-stone);
}

.tp-share-copy:hover {
    background: var(--tp-stone);
    color: var(--tp-text);
}

.tp-share-copied {
    background: #D6EDDC !important;
    color: #1E5A28 !important;
    border-color: #b2ddc0 !important;
}


/* Mobile */

@media screen and (max-width: 768px) {
    .tp-share-btn span {
        display: none;
        /* Icon only on mobile */
    }
    .tp-share-btn {
        padding: 8px 10px;
    }
    .tp-share-label {
        font-size: 10px;
    }
}


/* ============================================================
   PRINT / DOWNLOAD BUTTONS IN SUBNAV
   ============================================================ */

.tp-subnav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.tp-subnav-action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tp-subnav-action-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.tp-subnav-action-btn:disabled {
    opacity: 0.5;
    cursor: wait;
}


/* Hide on small mobile — space is too tight */

@media screen and (max-width: 768px) {
    .tp-subnav-actions span {
        display: none;
    }
    .tp-subnav-action-btn {
        padding: 6px 8px;
    }
}


/* ============================================================
   PRINT DOCUMENT STYLES
   ============================================================ */

.tp-print-doc {
    font-family: 'Georgia', serif;
    color: #1C1A17;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-size: 13px;
    line-height: 1.6;
}

.tp-print-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 3px solid #0f5a43;
    margin-bottom: 24px;
    gap: 20px;
}

.tp-print-logo img {
    max-height: 60px;
    width: auto;
}

.tp-print-logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #0f5a43;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tp-print-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f5a43;
    margin: 0 0 8px;
    line-height: 1.2;
}

.tp-print-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: #555;
}

.tp-print-price-block {
    background: #0f5a43;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.tp-print-price-label {
    font-size: 11px;
    opacity: 0.6;
}

.tp-print-price-val {
    font-size: 24px;
    font-weight: 700;
    color: #c99b2d;
}

.tp-print-price-pp {
    font-size: 12px;
    opacity: 0.6;
}

.tp-print-discount {
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
}

.tp-print-section {
    margin-bottom: 32px;
}

.tp-print-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f5a43;
    padding-bottom: 8px;
    border-bottom: 2px solid #c99b2d;
    margin-bottom: 16px;
}

.tp-print-content {
    font-size: 13px;
    color: #333;
    line-height: 1.7;
}

.tp-print-day {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.tp-print-day:last-child {
    border-bottom: none;
}

.tp-print-day-num {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: #0f5a43;
    padding: 4px 8px;
    border-radius: 4px;
    height: fit-content;
    white-space: nowrap;
    flex-shrink: 0;
}

.tp-print-day-body {
    flex: 1;
}

.tp-print-day-title {
    font-size: 14px;
    font-weight: 700;
    color: #1C1A17;
    margin: 0 0 4px;
}

.tp-print-day-chips {
    display: flex;
    gap: 10px;
    margin-bottom: 6px;
}

.tp-print-day-chips span {
    font-size: 11px;
    color: #888;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 100px;
}

.tp-print-day-desc {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.tp-print-day-photo {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-top: 10px;
    display: none;
    /* Hidden by default — shown for PDF only */
}

.tp-print-inc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tp-print-inc-col ul {
    padding-left: 16px;
    margin: 0;
}

.tp-print-inc-col li {
    font-size: 12px;
    color: #444;
    margin-bottom: 4px;
    line-height: 1.5;
}

.tp-print-footer {
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid #ddd;
    text-align: center;
    font-size: 11px;
    color: #888;
}

.tp-print-page-break {
    page-break-before: auto;
}


/* ============================================================
   PRINT MEDIA QUERY — No images, clean layout
   ============================================================ */

@media print {
    /* ── Hide entire page by default ── */
    body>*:not(#tp-print-template) {
        display: none !important;
    }
    /* ── Show only the print template ── */
    #tp-print-template {
        display: block !important;
        position: static !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
        z-index: 99999 !important;
    }
    #tp-print-template * {
        visibility: visible !important;
    }
    /* ── Hide day photos (print = no images) ── */
    .tp-pdf-only {
        display: none !important;
    }
    /* ── Page setup ── */
    @page {
        margin: 15mm;
        size: A4 portrait;
    }
    /* ── Prevent content breaking mid-element ── */
    .tp-print-day {
        page-break-inside: avoid;
        break-inside: avoid;
    }
    .tp-print-section {
        page-break-inside: avoid;
        break-inside: avoid;
    }
    .tp-print-page-break {
        page-break-before: always;
        break-before: always;
    }
    /* ── Typography cleanup for print ── */
    .tp-print-doc {
        font-size: 11pt;
        line-height: 1.5;
        color: #000 !important;
    }
    .tp-print-title {
        font-size: 22pt;
        color: #0f5a43 !important;
    }
    .tp-print-section-title {
        font-size: 14pt;
        color: #0f5a43 !important;
        border-bottom-color: #c99b2d !important;
    }
    .tp-print-day-title {
        font-size: 11pt;
        font-weight: bold;
    }
    .tp-print-day-desc {
        font-size: 10pt;
        color: #333 !important;
    }
    /* ── Hide print template header/footer from repeating ── */
    .tp-print-header {
        page-break-after: avoid;
        break-after: avoid;
    }
    .tp-print-footer {
        page-break-before: avoid;
        break-before: avoid;
    }
}


/* ============================================================
   THANK YOU PAGE
   ============================================================ */

.ty-page {
    min-height: 100vh;
    background: var(--tp-cream);
    font-family: 'DM Sans', sans-serif;
}


/* --- Hero --- */

.ty-hero {
    background: #0f5a43;
    padding: 80px 0 70px;
    text-align: center;
}

.ty-hero-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.ty-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(193, 127, 58, 0.25);
    border: 2px solid #c99b2d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.ty-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}

.ty-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.ty-subtitle strong {
    color: #c99b2d;
    font-weight: 600;
}


/* --- Body --- */

.ty-body {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}


/* --- Steps Card --- */

.ty-steps-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.ty-steps-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: #0f5a43;
    margin-bottom: 28px;
}

.ty-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ty-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 24px;
    position: relative;
}


/* Vertical line connecting steps */

.ty-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 17px;
    top: 38px;
    width: 2px;
    height: calc(100% - 14px);
    background: #E8E0D0;
}

.ty-step:last-child {
    padding-bottom: 0;
}

.ty-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0f5a43;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.ty-step-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 6px;
}

.ty-step-name {
    font-size: 15px;
    font-weight: 700;
    color: #1C1A17;
}

.ty-step-desc {
    font-size: 13px;
    color: #6B6558;
    line-height: 1.6;
}


/* --- Contact Card --- */

.ty-contact-card {
    background: #0f5a43;
    border-radius: 16px;
    padding: 36px 40px;
    text-align: center;
}

.ty-contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

.ty-contact-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.6;
}

.ty-contact-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.ty-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.ty-btn-wa:hover {
    background: #1da851;
}

.ty-btn-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.ty-btn-email:hover {
    background: rgba(255, 255, 255, 0.18);
}


/* --- Explore Section --- */

.ty-explore {
    text-align: center;
    padding: 8px 0;
}

.ty-explore-text {
    font-size: 14px;
    color: #6B6558;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    font-weight: 700;
}

.ty-explore-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.ty-btn-primary {
    display: inline-block;
    padding: 13px 28px;
    background: #c99b2d;
    color: #fff;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.ty-btn-primary:hover {
    background: #a06828;
}

.ty-btn-secondary {
    display: inline-block;
    padding: 13px 28px;
    background: transparent;
    color: #0f5a43;
    border: 1.5px solid #0f5a43;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.ty-btn-secondary:hover {
    background: #0f5a43;
    color: #fff;
}


/* --- Responsive --- */

@media screen and (max-width: 768px) {
    .ty-title {
        font-size: 32px;
    }
    .ty-hero {
        padding: 60px 0 50px;
    }
    .ty-steps-card,
    .ty-contact-card {
        padding: 28px 24px;
    }
    .ty-contact-btns,
    .ty-explore-btns {
        flex-direction: column;
        align-items: center;
    }
    .ty-btn-wa,
    .ty-btn-email,
    .ty-btn-primary,
    .ty-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}


/* ============================================================
   TRIP BADGES
   ============================================================ */

.trip-badges-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.trip-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}

.trip-badge-icon {
    font-size: 12px;
    line-height: 1;
}

.trip-badge-label {
    line-height: 1;
}


/* --- Colour Variants --- */

.trip-badge--gold {
    background: rgba(193, 127, 58, 0.92);
    color: #fff;
}

.trip-badge--orange {
    background: rgba(230, 81, 0, 0.9);
    color: #fff;
}

.trip-badge--green {
    background: rgba(30, 90, 40, 0.9);
    color: #fff;
}

.trip-badge--blue {
    background: rgba(25, 118, 210, 0.9);
    color: #fff;
}

.trip-badge--red {
    background: rgba(198, 40, 40, 0.9);
    color: #fff;
}

.trip-badge--teal {
    background: rgba(0, 121, 107, 0.9);
    color: #fff;
}

.trip-badge--darkred {
    background: rgba(130, 20, 20, 0.9);
    color: #fff;
}

.trip-badge--forest {
    background: rgba(45, 74, 53, 0.9);
    color: #fff;
}

.trip-badge--purple {
    background: rgba(106, 27, 154, 0.9);
    color: #fff;
}

.trip-badge--ice {
    background: rgba(2, 136, 209, 0.9);
    color: #fff;
}


/* --- Hero variant — larger and more prominent --- */

.trip-badge--hero {
    font-size: 12px;
    padding: 6px 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}


/* --- Card variant — standard size --- */

.trip-badge--card {
    font-size: 10px;
    padding: 4px 10px;
}


/* --- Small variant for packages grid --- */

.trip-badge--small {
    font-size: 9px;
    padding: 3px 8px;
}


/* --- Positioning on hero --- */

.tp-hero-content .trip-badges-wrap {
    margin-bottom: 16px;
}


/* --- Positioning on cards --- */

.trip-image .trip-badges-wrap,
.tp-related-img .trip-badges-wrap,
.pkg-thumb .trip-badges-wrap {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 5;
}


/* Override for pkg-thumb which needs relative positioning */

.pkg-thumb {
    position: relative;
}

.trip-image {
    position: relative;
}

.tp-related-img {
    position: relative;
}


/* --- Mobile --- */

@media screen and (max-width: 768px) {
    .trip-badge--hero {
        font-size: 11px;
        padding: 5px 12px;
    }
}


/* ============================================================
   PRICE BREAKDOWN CARD
   ============================================================ */

.tp-price-breakdown-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    margin-top: 16px;
}


/* --- Header --- */

.tp-pbd-header {
    background: var(--tp-cream);
    padding: 14px 18px;
    border-bottom: 1px solid var(--tp-stone);
}

.tp-pbd-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0f5a43;
    display: block;
    margin-bottom: 2px;
}

.tp-pbd-note {
    font-size: 11px;
    color: var(--tp-muted);
    display: block;
    line-height: 1.4;
}


/* --- Base Price Row --- */

.tp-pbd-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border-bottom: 1px solid var(--tp-stone);
    gap: 8px;
}

.tp-pbd-row:last-of-type {
    border-bottom: none;
}

.tp-pbd-label {
    font-size: 12px;
    color: var(--tp-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.tp-pbd-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--tp-text);
    text-align: right;
}

.tp-pbd-pp {
    font-size: 11px;
    font-weight: 400;
    color: var(--tp-muted);
}

.tp-pbd-base .tp-pbd-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: #c99b2d;
}


/* --- Group Discount Tiers --- */

.tp-pbd-tiers {
    padding: 12px 18px;
    border-bottom: 1px solid var(--tp-stone);
    background: #FAFAF8;
}

.tp-pbd-tiers-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--tp-muted);
    margin-bottom: 10px;
}

.tp-pbd-tier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px dashed var(--tp-stone);
    gap: 8px;
}

.tp-pbd-tier-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tp-pbd-tier-label {
    font-size: 12px;
    color: var(--tp-text);
}

.tp-pbd-tier-right {
    display: flex;
    align-items: center;
    gap: 6px;
    text-align: right;
}

.tp-pbd-tier-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--tp-text);
}

.tp-pbd-tier-discount {
    font-size: 10px;
    font-weight: 700;
    background: #D6EDDC;
    color: #1E5A28;
    padding: 2px 7px;
    border-radius: 100px;
}


/* --- Deposit Row --- */

.tp-pbd-deposit-val {
    color: #c99b2d;
}


/* --- Balance Row --- */

.tp-pbd-balance-val {
    font-size: 12px;
    font-weight: 600;
    color: var(--tp-muted);
    text-align: right;
    max-width: 140px;
}


/* --- Footer --- */

.tp-pbd-footer {
    padding: 12px 18px;
    background: #0f5a43;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    line-height: 1.5;
}


/* ============================================================
   TRIPS ARCHIVE PAGE
   ============================================================ */


/* --- Hero --- */

.arc-hero {
    background: #0f5a43;
    padding: 70px 0 60px;
    text-align: center;
}

.arc-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.arc-hero-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c99b2d;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.arc-hero-kicker::before,
.arc-hero-kicker::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #c99b2d;
}

.arc-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.1;
}

.arc-hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
}


/* --- Filter Bar --- */

.arc-filter-wrap {
    background: #fff;
    border-bottom: 1px solid #E8E0D0;
    position: sticky;
    top: 0;
    z-index: 400;
    transition: box-shadow 0.3s ease;
}

.arc-filter-wrap.is-sticky {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.arc-filter-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 60px;
    flex-wrap: wrap;
}

.arc-filter-count {
    font-size: 13px;
    color: #6B6558;
    white-space: nowrap;
    font-weight: 500;
}

.arc-filter-count span {
    font-weight: 700;
    color: #0f5a43;
}

.arc-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}


/* --- Filter Group --- */

.arc-filter-group {
    position: relative;
}

.arc-filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #F5F0E8;
    border: 1.5px solid #E8E0D0;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1C1A17;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.arc-filter-btn:hover,
.arc-filter-btn.is-active {
    border-color: #0f5a43;
    background: #fff;
}

.arc-filter-btn.has-value {
    background: #0f5a43;
    color: #fff;
    border-color: #0f5a43;
}

.arc-filter-btn.has-value .arc-filter-arrow {
    stroke: #fff;
}

.arc-filter-arrow {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.arc-filter-btn.is-active .arc-filter-arrow {
    transform: rotate(180deg);
}


/* --- Dropdown --- */

.arc-filter-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid #E8E0D0;
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: all 0.2s ease;
}

.arc-filter-dropdown.is-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.arc-dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 9px 12px;
    background: none;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #1C1A17;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease;
}

.arc-dropdown-item:hover {
    background: #F5F0E8;
}

.arc-dropdown-item.is-active {
    background: #0f5a43;
    color: #fff;
    font-weight: 600;
}

.arc-dropdown-count {
    font-size: 11px;
    background: #E8E0D0;
    color: #6B6558;
    padding: 2px 7px;
    border-radius: 100px;
    margin-left: 8px;
}

.arc-dropdown-item.is-active .arc-dropdown-count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}


/* --- Active Filter Tags --- */

.arc-active-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: auto;
}

.arc-active-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.arc-active-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #F5F0E8;
    border: 1px solid #E8E0D0;
    border-radius: 100px;
    font-size: 12px;
    color: #1C1A17;
}

.arc-tag-remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    color: #6B6558;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.15s;
}

.arc-tag-remove:hover {
    color: #c0392b;
}

.arc-clear-all {
    font-size: 12px;
    font-weight: 700;
    color: #c0392b;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    white-space: nowrap;
    text-decoration: underline;
}


/* --- Grid --- */

.arc-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 40px 100px;
}

.arc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* --- Card --- */

.arc-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
}

.arc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.arc-card-hidden {
    display: none;
}


/* --- Card Image --- */

.arc-card-img-wrap {
    display: block;
    text-decoration: none;
}

.arc-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.4s ease;
}

.arc-card:hover .arc-card-img {
    transform: scale(1.03);
}

.arc-card-img-wrap {
    overflow: hidden;
}

.arc-card-img .trip-badges-wrap {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-width: calc(100% - 70px);
    /* leaves room for discount badge */
}

.arc-card-discount {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 5;
}


/* --- Card Content --- */

.arc-card-content {
    padding: 18px 20px 12px;
    flex: 1;
}

.arc-card-region {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c99b2d;
    display: block;
    margin-bottom: 8px;
}

.arc-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 12px;
}

.arc-card-title a {
    color: #1C1A17;
    text-decoration: none;
    transition: color 0.2s;
}

.arc-card-title a:hover {
    color: #0f5a43;
}

.arc-card-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-bottom: 10px;
}

.arc-chip {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 100px;
    background: #F5F0E8;
    color: #6B6558;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.4;
}

.arc-diff-badge {
    font-size: 11px !important;
    padding: 4px 10px !important;
    line-height: 1.4 !important;
    display: inline-flex !important;
    align-items: center !important;
}

.arc-card-season {
    font-size: 12px;
    color: #6B6558;
    margin: 0;
}


/* --- Card Footer --- */

.arc-card-footer {
    padding: 14px 20px;
    border-top: 1px solid #F0EDE8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.arc-card-price-block {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
}

.arc-card-price-was {
    font-size: 12px;
    color: #bbb;
    text-decoration: line-through;
}

.arc-card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #c99b2d;
}

.arc-card-pp {
    font-size: 11px;
    color: #6B6558;
}

.arc-card-cta {
    font-size: 12px;
    font-weight: 700;
    color: #0f5a43;
    text-decoration: none;
    white-space: nowrap;
    padding: 8px 16px;
    border: 1.5px solid #0f5a43;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.arc-card-cta:hover {
    background: #0f5a43;
    color: #fff;
}


/* --- No Results --- */

.arc-no-results {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
}

.arc-no-results-inner {
    max-width: 360px;
}

.arc-no-results-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 16px;
}

.arc-no-results h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: #1C1A17;
    margin-bottom: 8px;
}

.arc-no-results p {
    font-size: 14px;
    color: #6B6558;
    margin-bottom: 24px;
}

.arc-clear-btn {
    padding: 11px 26px;
    background: #0f5a43;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.arc-clear-btn:hover {
    background: #c99b2d;
}


/* --- Responsive --- */

@media screen and (max-width: 1024px) {
    .arc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .arc-hero-title {
        font-size: 40px;
    }
}

@media screen and (max-width: 768px) {
    .arc-hero {
        padding: 50px 0 40px;
    }
    .arc-hero-title {
        font-size: 32px;
    }
    .arc-filter-inner {
        padding: 0 16px;
        height: auto;
        padding-top: 12px;
        padding-bottom: 12px;
        gap: 10px;
    }
    .arc-filter-count {
        width: 100%;
        font-size: 12px;
    }
    .arc-filters {
        gap: 6px;
    }
    .arc-filter-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    .arc-active-filters {
        margin-left: 0;
        width: 100%;
    }
    .arc-body {
        padding: 28px 16px 80px;
    }
    .arc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    /* Horizontal card on mobile */
    .arc-card {
        flex-direction: row;
        height: 140px;
        border-radius: 12px;
    }
    .arc-card-img-wrap {
        width: 140px;
        min-width: 140px;
        flex-shrink: 0;
    }
    .arc-card-img {
        height: 100%;
        border-radius: 0;
    }
    .arc-card-content {
        padding: 12px 14px 8px;
        overflow: hidden;
    }
    .arc-card-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .arc-card-chips {
        gap: 4px;
        margin-bottom: 0;
    }
    .arc-chip {
        font-size: 10px;
        padding: 2px 7px;
    }
    .arc-card-season {
        display: none;
    }
    .arc-card-footer {
        display: none;
    }
    /* Show price in content on mobile */
    .arc-card-content::after {
        content: attr(data-price);
        font-size: 14px;
        font-weight: 700;
        color: #c99b2d;
        display: block;
        margin-top: 6px;
    }
}


/* ============================================================
   ABOUT US PAGE
   ============================================================ */

.about-page {
    font-family: 'DM Sans', sans-serif;
}


/* --- Shared Header Style --- */

.ab-section-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c99b2d;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ab-section-kicker::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #c99b2d;
}

.ab-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: #1C1A17;
    line-height: 1.15;
    margin-bottom: 0;
}


/* ── HERO ─────────────────────────────────── */

.ab-hero {
    background: #0f5a43;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.ab-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}


/* Left text */

.ab-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c99b2d;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ab-kicker::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #c99b2d;
}

.ab-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.ab-hero-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 460px;
}

.ab-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ab-btn-primary {
    display: inline-block;
    padding: 13px 28px;
    background: #c99b2d;
    color: #fff;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.ab-btn-primary:hover {
    background: #a06828;
}

.ab-btn-secondary {
    display: inline-block;
    padding: 13px 28px;
    background: #ffffff;
    color: #000000;
    border: 1.5px solid #ffffff;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.ab-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: #fff;
    color: #000000;
}


/* Right image */

.ab-hero-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.ab-hero-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.ab-hero-img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    text-align: center;
    padding: 20px;
}

.ab-hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 110px;
    height: 110px;
    background: #c99b2d;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 4px solid #0f5a43;
    z-index: 2;
}

.ab-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    color: #0f5a43;
    line-height: 1;
}

.ab-badge-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0f5a43;
    line-height: 1.3;
    margin-top: 3px;
    padding: 0 8px;
}


/* ── STATS BAR ──────────────────────────────── */

.ab-stats {
    background: #141414;
    padding: 0;
}

.ab-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ab-stat-item {
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ab-stat-item:last-child {
    border-right: none;
}

.ab-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: #c99b2d;
    line-height: 1;
}

.ab-stat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}


/* ── STORY ─────────────────────────────────── */

.ab-story {
    background: #F5F0E8;
    padding: 100px 0;
}

.ab-story-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.ab-story-header {
    margin-bottom: 48px;
}

.ab-story-content {
    max-width: 780px;
    font-size: 16px;
    line-height: 1.9;
    color: #3a3630;
}

.ab-story-content p {
    margin-bottom: 20px;
}

.ab-story-content h2,
.ab-story-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: #1C1A17;
    margin: 32px 0 12px;
}


/* ── TIMELINE ───────────────────────────────── */

.ab-timeline {
    background: #fff;
    padding: 100px 0;
}

.ab-timeline-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.ab-timeline-track {
    position: relative;
    margin-top: 64px;
}


/* Center vertical line */

.ab-tl-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: #E8E0D0;
}

.ab-timeline-item {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    margin-bottom: 56px;
    width: 50%;
    padding-right: 48px;
}

.ab-timeline-item.ab-tl-right {
    justify-content: flex-start;
    margin-left: 50%;
    padding-right: 0;
    padding-left: 48px;
}

.ab-tl-content {
    background: #F5F0E8;
    border-radius: 12px;
    padding: 24px 28px;
    max-width: 340px;
    position: relative;
}

.ab-tl-year {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c99b2d;
    text-transform: uppercase;
    background: rgba(193, 127, 58, 0.12);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.ab-tl-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: #1C1A17;
    margin-bottom: 8px;
}

.ab-tl-desc {
    font-size: 13px;
    color: #6B6558;
    line-height: 1.7;
    margin: 0;
}


/* Dot on the line */

.ab-tl-dot {
    position: absolute;
    right: -8px;
    top: 24px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #c99b2d;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #c99b2d;
    z-index: 2;
}

.ab-tl-right .ab-tl-dot {
    right: auto;
    left: -8px;
}


/* ── VALUES ─────────────────────────────────── */

.ab-values {
    background: #0f5a43;
    padding: 100px 0;
}

.ab-values .ab-section-kicker {
    color: #c99b2d;
    justify-content: center;
}

.ab-values .ab-section-kicker::before {
    background: #c99b2d;
}

.ab-values .ab-section-title {
    color: #fff;
    text-align: center;
}

.ab-values-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.ab-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.ab-value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ab-value-card:hover {
    transform: translateY(-5px);
    border-color: #c99b2d;
}

.ab-value-icon {
    font-size: 44px;
    margin-bottom: 20px;
    display: block;
}

.ab-value-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 14px;
}

.ab-value-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin: 0;
}


/* ── AFFILIATIONS ───────────────────────────── */

.ab-affiliations {
    background: #F8F5F0;
    padding: 60px 0;
    border-top: 1px solid #E8E0D0;
    border-bottom: 1px solid #E8E0D0;
}

.ab-aff-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.ab-aff-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 36px;
}

.ab-aff-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    align-items: center;
}

.ab-aff-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ab-aff-logo {
    height: 48px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.45);
    transition: filter 0.3s ease;
}

.ab-aff-logo:hover {
    filter: grayscale(0%) opacity(1);
}

.ab-aff-text {
    font-size: 14px;
    font-weight: 700;
    color: #bbb;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ── CTA ────────────────────────────────────── */

.ab-cta {
    background: #F5F0E8;
    padding: 100px 0;
    text-align: center;
}

.ab-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
}

.ab-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 300;
    color: #1C1A17;
    line-height: 1.15;
    margin-bottom: 16px;
}

.ab-cta-desc {
    font-size: 15px;
    color: #6B6558;
    line-height: 1.7;
    margin-bottom: 36px;
}

.ab-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Override btn colors for light background CTA */

.ab-cta .ab-btn-secondary {
    color: #0f5a43;
    border-color: #0f5a43;
}

.ab-cta .ab-btn-secondary:hover {
    background: #0f5a43;
    color: #fff;
}


/* ── RESPONSIVE ─────────────────────────────── */

@media screen and (max-width: 1024px) {
    .ab-hero-inner {
        gap: 50px;
        padding: 60px 30px;
    }
    .ab-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ab-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .ab-stat-item:nth-child(2) {
        border-right: none;
    }
    .ab-stat-item:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .ab-stat-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-right: none;
    }
}

@media screen and (max-width: 768px) {
    .ab-hero {
        min-height: auto;
    }
    .ab-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 20px;
    }
    .ab-hero-img-wrap {
        order: -1;
    }
    .ab-hero-img {
        aspect-ratio: 16 / 9;
    }
    .ab-hero-badge {
        bottom: -15px;
        right: 20px;
        left: auto;
        width: 90px;
        height: 90px;
    }
    .ab-badge-num {
        font-size: 24px;
    }
    .ab-hero-title {
        font-size: 36px;
    }
    .ab-stats-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }
    .ab-stat-item {
        padding: 28px 16px;
    }
    .ab-stat-num {
        font-size: 32px;
    }
    .ab-story,
    .ab-timeline,
    .ab-values,
    .ab-cta {
        padding: 60px 0;
    }
    .ab-story-inner,
    .ab-timeline-inner,
    .ab-values-inner,
    .ab-aff-inner {
        padding: 0 20px;
    }
    .ab-section-title {
        font-size: 32px;
    }
    /* Timeline stacks on mobile */
    .ab-tl-line {
        left: 16px;
    }
    .ab-timeline-item,
    .ab-timeline-item.ab-tl-right {
        width: 100%;
        margin-left: 0;
        padding-left: 44px;
        padding-right: 0;
        justify-content: flex-start;
    }
    .ab-tl-dot,
    .ab-tl-right .ab-tl-dot {
        left: 8px;
        right: auto;
    }
    .ab-tl-content {
        max-width: 100%;
    }
    .ab-values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ab-cta-title {
        font-size: 32px;
    }
    .ab-cta-btns {
        flex-direction: column;
        align-items: center;
    }
    .ab-btn-primary,
    .ab-btn-secondary {
        width: 100%;
        text-align: center;
    }
}


/* ============================================================
   OUR TEAM PAGE
   ============================================================ */

.team-page {
    font-family: 'DM Sans', sans-serif;
    background: #F5F0E8;
}


/* --- Hero --- */

.team-hero {
    background: #0f5a43;
    padding: 80px 0 70px;
    text-align: center;
}

.team-hero-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
}

.team-hero-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c99b2d;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.team-hero-kicker::before,
.team-hero-kicker::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #c99b2d;
}

.team-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
}

.team-hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}


/* --- Body --- */

.team-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 40px 100px;
}


/* --- Grid --- */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}


/* --- Card --- */

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}


/* --- Photo --- */

.team-card-photo-wrap {
    position: relative;
    overflow: hidden;
}

.team-card-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card-photo {
    transform: scale(1.04);
}

.team-card-photo-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #0f5a43;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
}


/* Social links overlay */

.team-card-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 46, 32, 0.9), transparent);
    padding: 20px 16px 14px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.team-card:hover .team-card-socials {
    opacity: 1;
    transform: translateY(0);
}

.team-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.team-social-btn:hover {
    background: #c99b2d;
    border-color: #c99b2d;
}


/* --- Content --- */

.team-card-content {
    padding: 22px 24px 24px;
}

.team-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: #1C1A17;
    margin-bottom: 4px;
    line-height: 1.2;
}

.team-card-role {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c99b2d;
    margin-bottom: 14px;
}

.team-card-bio {
    font-size: 13px;
    color: #6B6558;
    line-height: 1.7;
    margin-bottom: 16px;
}

.team-card-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.team-chip {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 100px;
    background: #F5F0E8;
    color: #6B6558;
    font-weight: 500;
}

.team-card-treks {
    font-size: 12px;
    color: #6B6558;
    line-height: 1.6;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid #F0EDE8;
}

.team-treks-label {
    font-weight: 700;
    color: #0f5a43;
}


/* --- Empty State --- */

.team-empty {
    text-align: center;
    padding: 80px 20px;
    color: #6B6558;
}

.team-empty-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 11px 24px;
    background: #0f5a43;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}


/* --- CTA --- */

.team-cta {
    background: #0f5a43;
    padding: 80px 0;
    text-align: center;
}

.team-cta-inner {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 24px;
}

.team-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.15;
}

.team-cta-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 28px;
    line-height: 1.7;
}

.team-cta-btn {
    display: inline-block;
    padding: 13px 30px;
    background: #c99b2d;
    color: #fff;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.team-cta-btn:hover {
    background: #a06828;
}


/* --- Responsive --- */

@media screen and (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .team-hero-title {
        font-size: 40px;
    }
}

@media screen and (max-width: 768px) {
    .team-hero {
        padding: 60px 0 50px;
    }
    .team-hero-title {
        font-size: 32px;
    }
    .team-body {
        padding: 40px 20px 70px;
    }
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    /* Horizontal card on mobile */
    .team-card {
        display: flex;
        flex-direction: row;
        border-radius: 12px;
    }
    .team-card-photo-wrap {
        width: 120px;
        min-width: 120px;
        flex-shrink: 0;
    }
    .team-card-photo,
    .team-card-photo-placeholder {
        aspect-ratio: auto;
        height: 100%;
    }
    .team-card-content {
        padding: 16px;
    }
    .team-card-name {
        font-size: 18px;
    }
    .team-card-bio {
        display: none;
    }
    .team-cta-title {
        font-size: 30px;
    }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

.ct-page {
    font-family: 'DM Sans', sans-serif;
    background: #F5F0E8;
}


/* --- Hero --- */

.ct-hero {
    background: #0f5a43;
    padding: 80px 0 70px;
    text-align: center;
}

.ct-hero-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.ct-hero-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c99b2d;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ct-hero-kicker::before,
.ct-hero-kicker::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #c99b2d;
}

.ct-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
}

.ct-hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}


/* --- Body Grid --- */

.ct-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 40px 80px;
}

.ct-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
}


/* --- Form --- */

.ct-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 40px 44px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.ct-form-header {
    margin-bottom: 32px;
}

.ct-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: #0f5a43;
    margin-bottom: 6px;
}

.ct-form-sub {
    font-size: 13px;
    color: #6B6558;
}

.ct-field {
    margin-bottom: 18px;
}

.ct-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}

.ct-field-row .ct-field {
    margin-bottom: 18px;
}

.ct-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6B6558;
    margin-bottom: 6px;
}

.ct-required {
    color: #e74c3c;
}

.ct-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #E8E0D0;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #1C1A17;
    background: #FAFAF8;
    outline: none;
    appearance: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.ct-input:focus {
    border-color: #0f5a43;
    background: #fff;
}

.ct-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6558' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.ct-textarea {
    resize: vertical;
    min-height: 130px;
}

.ct-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: #0f5a43;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 8px;
}

.ct-submit-btn:hover {
    background: #c99b2d;
}

.ct-submit-btn:active {
    transform: scale(0.98);
}

.ct-form-note {
    font-size: 12px;
    color: #aaa;
    text-align: center;
    margin-top: 14px;
    line-height: 1.6;
}


/* --- Info Panel --- */

.ct-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 80px;
}

.ct-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 30px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.ct-info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: #0f5a43;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F0EDE8;
}

.ct-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #F0EDE8;
}

.ct-info-item--last {
    border-bottom: none;
    padding-bottom: 0;
}

.ct-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(26, 46, 32, 0.08);
    border: 1px solid rgba(26, 46, 32, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0f5a43;
}

.ct-info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.ct-info-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aaa;
}

.ct-info-val {
    font-size: 14px;
    color: #1C1A17;
    line-height: 1.5;
}

.ct-info-link {
    text-decoration: none;
    transition: color 0.2s;
}

.ct-info-link:hover {
    color: #c99b2d;
}


/* --- WhatsApp CTA --- */

.ct-wa-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: #25D366;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.ct-wa-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.ct-wa-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.ct-wa-sub {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}


/* --- Social Links --- */

.ct-socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ct-social-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    border: 1.5px solid #E8E0D0;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #1C1A17;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ct-social-btn:hover {
    background: #0f5a43;
    color: #fff;
    border-color: #0f5a43;
}


/* --- Map --- */

.ct-map-wrap {
    width: 100%;
    overflow: hidden;
    border-top: 4px solid #0f5a43;
}

.ct-map-wrap iframe {
    display: block;
    width: 100%;
}


/* --- FAQ Strip --- */

.ct-faq-strip {
    background: #0f5a43;
    padding: 70px 0;
}

.ct-faq-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.ct-faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.ct-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ct-faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px 26px;
    transition: border-color 0.3s ease;
}

.ct-faq-item:hover {
    border-color: #c99b2d;
}

.ct-faq-q {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.ct-faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #c99b2d;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.ct-faq-a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
    padding-left: 34px;
}


/* --- Responsive --- */

@media screen and (max-width: 1024px) {
    .ct-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ct-info-wrap {
        position: static;
    }
    .ct-faq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media screen and (max-width: 768px) {
    .ct-hero {
        padding: 60px 0 50px;
    }
    .ct-hero-title {
        font-size: 36px;
    }
    .ct-body {
        padding: 40px 20px 60px;
    }
    .ct-form-wrap {
        padding: 28px 22px;
    }
    .ct-field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .ct-faq-strip {
        padding: 50px 0;
    }
    .ct-faq-inner {
        padding: 0 20px;
    }
    .ct-faq-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   BLOG ARCHIVE PAGE
   ============================================================ */

.blog-page {
    font-family: 'DM Sans', sans-serif;
    background: #F5F0E8;
    min-height: 100vh;
}


/* --- Hero --- */

.blog-hero {
    background: #0f5a43;
    padding: 80px 0 70px;
    text-align: center;
}

.blog-hero-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-hero-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c99b2d;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.blog-hero-kicker::before,
.blog-hero-kicker::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #c99b2d;
}

.blog-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.1;
}

.blog-hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
}


/* --- Filter Bar --- */

.blog-filter-bar {
    background: #fff;
    border-bottom: 1px solid #E8E0D0;
    /* position: sticky;
    top: 70px;
    z-index: 400; */
}

.blog-filter-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    height: 54px;
}

.blog-filter-inner::-webkit-scrollbar {
    display: none;
}

.blog-filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #6B6558;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    border: 1.5px solid transparent;
}

.blog-filter-btn:hover {
    color: #0f5a43;
    background: #F5F0E8;
}

.blog-filter-btn.is-active {
    background: #0f5a43;
    color: #fff;
    border-color: #0f5a43;
}

.blog-filter-count {
    font-size: 11px;
    background: rgba(0, 0, 0, 0.08);
    padding: 1px 7px;
    border-radius: 100px;
}

.blog-filter-btn.is-active .blog-filter-count {
    background: rgba(255, 255, 255, 0.2);
}


/* --- Blog Body --- */

.blog-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 40px 100px;
}


/* --- Grid --- */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}


/* Featured card spans full width */

.blog-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
}


/* --- Card --- */

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}


/* --- Card Image --- */

.blog-card-img-wrap {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.blog-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.4s ease;
}

.blog-card-featured .blog-card-img {
    height: 100%;
    min-height: 380px;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}

.blog-card-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #c99b2d;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s;
    z-index: 2;
}

.blog-card-cat:hover {
    background: #a06828;
}


/* --- Card Content --- */

.blog-card-content {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-featured .blog-card-content {
    padding: 36px 40px;
    justify-content: center;
    background: #fff;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #aaa;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #c99b2d;
    flex-shrink: 0;
}

.blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 10px;
}

.blog-card-title-featured {
    font-size: 32px;
    margin-bottom: 16px;
}

.blog-card-title a {
    color: #1C1A17;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: #0f5a43;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #6B6558;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}


/* --- Card Footer --- */

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6B6558;
    font-weight: 500;
}

.blog-author-photo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #E8E0D0;
}

.blog-card-read-more {
    font-size: 12px;
    font-weight: 700;
    color: #c99b2d;
    text-decoration: none;
    transition: gap 0.2s;
}

.blog-card-read-more:hover {
    color: #a06828;
}


/* --- Pagination --- */

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
}

.blog-page-btn {
    padding: 9px 20px;
    background: #fff;
    border: 1.5px solid #E8E0D0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1C1A17;
    text-decoration: none;
    transition: all 0.2s;
}

.blog-page-btn:hover {
    background: #0f5a43;
    color: #fff;
    border-color: #0f5a43;
}

.blog-page-numbers {
    display: flex;
    gap: 4px;
}

.blog-page-num {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1C1A17;
    text-decoration: none;
    border: 1.5px solid #E8E0D0;
    background: #fff;
    transition: all 0.2s;
}

.blog-page-num:hover,
.blog-page-num.is-active {
    background: #0f5a43;
    color: #fff;
    border-color: #0f5a43;
}


/* --- Empty State --- */

.blog-empty {
    text-align: center;
    padding: 80px 20px;
}

.blog-empty-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 16px;
}

.blog-empty h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 8px;
}

.blog-empty p {
    font-size: 14px;
    color: #6B6558;
    margin-bottom: 24px;
}

.blog-empty-btn {
    display: inline-block;
    padding: 11px 26px;
    background: #0f5a43;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}


/* --- Responsive --- */

@media screen and (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-card-featured {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }
    .blog-card-featured .blog-card-img {
        min-height: 280px;
    }
    .blog-card-featured .blog-card-content {
        padding: 28px;
    }
    .blog-card-title-featured {
        font-size: 26px;
    }
}

@media screen and (max-width: 768px) {
    .blog-hero-title {
        font-size: 36px;
    }
    .blog-hero {
        padding: 60px 0 50px;
    }
    .blog-filter-inner {
        padding: 0 16px;
    }
    .blog-body {
        padding: 28px 16px 70px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-card-featured {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   SINGLE POST PAGE — Updated
   ============================================================ */

.post-page {
    font-family: 'DM Sans', sans-serif;
    background: #F5F0E8;
}


/* --- Hero --- */

.post-hero {
    min-height: 65vh;
    background-color: #0f5a43;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.78) 100%);
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.post-hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
    width: 100%;
}

.post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.post-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.post-breadcrumb a:hover {
    color: #fff;
}

.post-cat-badge {
    display: inline-block;
    background: #c99b2d;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    text-decoration: none;
    margin-bottom: 16px;
}

.post-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 300;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 24px;
    max-width: 820px;
}

.post-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-hero-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.post-hero-meta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.post-hero-author {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.post-hero-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}


/* ── POST BODY GRID ──────────────────────────
   3 columns: TOC | Content | Sidebar
   ─────────────────────────────────────────── */

.post-body {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px 40px 80px;
}

.post-grid {
    display: grid;
    grid-template-columns: 240px 1fr 240px;
    gap: 28px;
    align-items: start;
}


/* ── TOC SIDEBAR (LEFT) ────────────────────── */

.post-toc-sidebar {
    position: sticky;
    top: 90px;
}

.post-toc-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border-top: 3px solid #c99b2d;
}

.post-toc-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0f5a43;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.post-toc-nav a {
    display: block;
    font-size: 13px;
    color: #6B6558;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.post-toc-nav a:hover {
    color: #0f5a43;
    background: #F5F0E8;
    border-left-color: #c99b2d;
}

.post-toc-nav a.is-active {
    color: #c99b2d;
    background: #FDF8F2;
    border-left-color: #c99b2d;
    font-weight: 600;
}


/* H3 items indented */

.post-toc-nav a.toc-h3 {
    padding-left: 22px;
    font-size: 12px;
}


/* ── MOBILE TOC ─────────────────────────────── */

.post-toc-mobile {
    display: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
    border-left: 4px solid #c99b2d;
    overflow: hidden;
}

.post-toc-mobile-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0f5a43;
    text-align: left;
}

.post-toc-mobile-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-toc-chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
    color: #6B6558;
}

.post-toc-mobile.is-open .post-toc-chevron {
    transform: rotate(180deg);
}

.post-toc-mobile-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.post-toc-mobile.is-open .post-toc-mobile-body {
    max-height: 500px;
}

.post-toc-mobile .post-toc-nav {
    padding: 8px 16px 16px;
    gap: 2px;
}


/* ── MAIN CONTENT ───────────────────────────── */

.post-main {
    min-width: 0;
}

.post-content {
    background: #fff;
    border-radius: 16px;
    padding: 48px 52px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 28px;
}


/* Typography */

.post-content {
    font-size: 17px;
    line-height: 1.85;
    color: #3d3a36;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.post-content p {
    margin-bottom: 24px;
    font-weight: 400;
    color: #3d3a36;
}

.post-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    color: #0f5a43;
    margin: 52px 0 18px;
    line-height: 1.15;
    padding-bottom: 10px;
    border-bottom: 2px solid #E8E0D0;
}

.post-content h2:first-child {
    margin-top: 0;
}

.post-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: #1C1A17;
    margin: 36px 0 14px;
    line-height: 1.2;
}

.post-content h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1C1A17;
    margin: 28px 0 10px;
    letter-spacing: 0.02em;
}

.post-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 32px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.post-content ul,
.post-content ol {
    padding-left: 28px;
    margin-bottom: 24px;
}

.post-content li {
    margin-bottom: 10px;
    line-height: 1.75;
    color: #3a3630;
    font-weight: 400;
}

.post-content blockquote {
    border-left: 4px solid #c99b2d;
    margin: 36px 0;
    padding: 20px 28px;
    background: #F5F0E8;
    border-radius: 0 10px 10px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: #1C1A17;
    line-height: 1.65;
}

.post-content a {
    color: #0f5a43;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.post-content a:hover {
    color: #c99b2d;
}

.post-content strong {
    color: #1C1A17;
    font-weight: 600;
}


/* Code blocks */

.post-content code {
    background: #F5F0E8;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    color: #0f5a43;
}

.post-content pre {
    background: #0f5a43;
    color: #fff;
    padding: 24px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 28px 0;
}

.post-content pre code {
    background: none;
    color: #fff;
    padding: 0;
}


/* Tables */

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 15px;
}

.post-content th {
    background: #0f5a43;
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.post-content td {
    padding: 12px 16px;
    border-bottom: 1px solid #E8E0D0;
    color: #3a3630;
}

.post-content tr:hover td {
    background: #F5F0E8;
}


/* ── TAGS ───────────────────────────────────── */

.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.post-tags-label {
    font-size: 12px;
    font-weight: 700;
    color: #6B6558;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #fff;
    border: 1.5px solid #E8E0D0;
    border-radius: 100px;
    font-size: 12px;
    color: #6B6558;
    text-decoration: none;
    transition: all 0.2s;
}

.post-tag:hover {
    background: #0f5a43;
    color: #fff;
    border-color: #0f5a43;
}


/* ── SHARE BAR ──────────────────────────────── */

.post-share-bar {
    background: #fff;
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.post-share-label {
    font-size: 12px;
    font-weight: 700;
    color: #6B6558;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.post-share-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.post-share-btn {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.post-share-fb {
    background: #f0f4ff;
    color: #1877F2;
    border: 1.5px solid #d0dcff;
}

.post-share-fb:hover {
    background: #1877F2;
    color: #fff;
    border-color: #1877F2;
}

.post-share-wa {
    background: #f0faf4;
    color: #25D366;
    border: 1.5px solid #c3efd4;
}

.post-share-wa:hover {
    background: #25D366;
    color: #fff;
}

.post-share-pin {
    background: #fff0f0;
    color: #E60023;
    border: 1.5px solid #ffd0d0;
}

.post-share-pin:hover {
    background: #E60023;
    color: #fff;
}


/* ── AUTHOR BOX ─────────────────────────────── */

.post-author-box {
    background: #fff;
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #c99b2d;
}

.post-author-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c99b2d;
    flex-shrink: 0;
}

.post-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.post-author-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
}

.post-author-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: #1C1A17;
}

.post-author-bio {
    font-size: 14px;
    color: #6B6558;
    line-height: 1.7;
    margin: 4px 0 0;
}


/* ── RIGHT SIDEBAR ──────────────────────────── */

.post-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-sidebar-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.post-sidebar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: #0f5a43;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F0EDE8;
}

.post-sidebar-cats {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-sidebar-cat-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 13px;
    color: #6B6558;
    text-decoration: none;
    border-bottom: 1px solid #F0EDE8;
    transition: color 0.2s;
}

.post-sidebar-cats li:last-child .post-sidebar-cat-link {
    border-bottom: none;
}

.post-sidebar-cat-link:hover,
.post-sidebar-cat-link.is-active {
    color: #c99b2d;
}

.post-sidebar-cat-count {
    font-size: 11px;
    background: #F5F0E8;
    padding: 2px 8px;
    border-radius: 100px;
    color: #aaa;
}

.post-recent-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #F0EDE8;
    text-decoration: none;
    transition: opacity 0.2s;
}

.post-recent-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post-recent-item:hover {
    opacity: 0.75;
}

.post-recent-img {
    width: 60px;
    min-width: 60px;
    height: 52px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.post-recent-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.post-recent-title {
    font-size: 13px;
    font-weight: 600;
    color: #1C1A17;
    line-height: 1.4;
}

.post-recent-date {
    font-size: 11px;
    color: #aaa;
}

.post-sidebar-cta {
    background: #0f5a43;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
}

.post-sidebar-cta-kicker {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c99b2d;
    margin-bottom: 10px;
}

.post-sidebar-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.post-sidebar-cta-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #c99b2d;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.post-sidebar-cta-btn:hover {
    background: #a06828;
}


/* ── RELATED POSTS ──────────────────────────── */

.post-related {
    background: #0f5a43;
    padding: 70px 0;
}

.post-related-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.post-related-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 36px;
}

.post-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.post-related-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.post-related-card:hover {
    transform: translateY(-5px);
    border-color: #c99b2d;
}

.post-related-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.post-related-content {
    padding: 18px 20px;
}

.post-related-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.35;
}

.post-related-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ── COMMENTS ───────────────────────────────── */

.comment-respond,
#comments {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

#comments h2,
.comment-reply-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: #0f5a43;
    margin-bottom: 24px;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.comment-body {
    padding: 16px 0;
    border-bottom: 1px solid #F0EDE8;
}

.comment-author b {
    font-size: 14px;
    font-weight: 700;
    color: #1C1A17;
}

.comment-metadata {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 8px;
}

.comment-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #E8E0D0;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    background: #FAFAF8;
    margin-bottom: 12px;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #0f5a43;
}

.comment-form-field {
    margin-bottom: 16px;
}

.comment-form-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6B6558;
    margin-bottom: 6px;
}

.comment-form-comment textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit .submit {
    padding: 12px 28px;
    background: #0f5a43;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.form-submit .submit:hover {
    background: #c99b2d;
}


/* ── RESPONSIVE ─────────────────────────────── */

@media screen and (max-width: 1200px) {
    .post-grid {
        grid-template-columns: 180px 1fr 220px;
        gap: 24px;
    }
    .post-content {
        padding: 40px 44px;
    }
}

@media screen and (max-width: 1024px) {
    /* Hide desktop TOC sidebar */
    .post-toc-sidebar {
        display: none;
    }
    /* Show mobile TOC */
    .post-toc-mobile {
        display: block;
    }
    .post-grid {
        grid-template-columns: 1fr 260px;
        gap: 28px;
    }
    .post-sidebar {
        position: static;
    }
}

@media screen and (max-width: 768px) {
    .post-hero {
        min-height: 55vh;
    }
    .post-hero-inner {
        padding: 40px 20px;
    }
    .post-body {
        padding: 28px 16px 60px;
    }
    .post-grid {
        grid-template-columns: 1fr;
    }
    .post-sidebar {
        display: none;
        /* Hide right sidebar on mobile — too cramped */
    }
    .post-content {
        padding: 28px 22px;
        font-size: 16px;
    }
    .post-content h2 {
        font-size: 28px;
    }
    .post-content h3 {
        font-size: 22px;
    }
    .post-related-inner {
        padding: 0 20px;
    }
    .post-related-grid {
        grid-template-columns: 1fr;
    }
    .post-related-title {
        font-size: 28px;
    }
    .post-share-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


/* ============================================================
   WORDPRESS COMMENT & PAGINATION FIXES
   ============================================================ */


/* Comment form fields */

.comment-form-field {
    margin-bottom: 16px;
}

.comment-form-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6B6558;
    margin-bottom: 6px;
}

.required {
    color: #e74c3c;
}


/* Comment avatars */

.comment-list .avatar {
    border-radius: 50%;
    border: 2px solid #E8E0D0;
}


/* Comment meta */

.comment-list article {
    padding: 16px 0;
    border-bottom: 1px solid #F0EDE8;
}

.comment-list .comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.comment-list .fn {
    font-size: 14px;
    font-weight: 700;
    color: #1C1A17;
    font-style: normal;
}

.comment-list .comment-metadata {
    font-size: 11px;
    color: #aaa;
    margin-left: auto;
}

.comment-list .comment-metadata a {
    color: #aaa;
    text-decoration: none;
}

.comment-list .comment-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.comment-list .reply a {
    font-size: 12px;
    font-weight: 700;
    color: #c99b2d;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
}


/* WordPress page navigation numbers */

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1C1A17;
    text-decoration: none;
    border: 1.5px solid #E8E0D0;
    background: #fff;
    transition: all 0.2s;
    margin: 0 2px;
}

.page-numbers:hover,
.page-numbers.current {
    background: #0f5a43;
    color: #fff;
    border-color: #0f5a43;
}

.page-numbers.dots {
    border: none;
    background: none;
    width: auto;
    color: #aaa;
}


/* ── PDF Template Styles ── */

#tp-print-template .tp-print-doc {
    font-family: 'Georgia', serif !important;
    width: 794px !important;
    max-width: 794px !important;
    box-sizing: border-box !important;
    padding: 20px !important;
    background: #fff !important;
}

#tp-print-template .tp-print-header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    padding-bottom: 20px !important;
    border-bottom: 3px solid #0f5a43 !important;
    margin-bottom: 24px !important;
}

#tp-print-template .tp-print-meta-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

#tp-print-template .tp-print-inc-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 24px !important;
}

#tp-print-template .tp-print-inc-col {
    flex: 1 !important;
}

#tp-print-template .tp-print-day {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    margin-bottom: 16px !important;
    padding-bottom: 16px !important;
    border-bottom: 1px solid #eee !important;
}

#tp-print-template .tp-print-price-block {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    background: #0f5a43 !important;
    padding: 12px 20px !important;
    margin-bottom: 24px !important;
    border-radius: 6px !important;
}


/* ── ITINERARY CONTROLS ─────────────────────── */

.tp-itin-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.tp-itin-ctrl-btn {
    padding: 7px 16px;
    border: 1.5px solid var(--tp-stone);
    border-radius: 100px;
    background: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--tp-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.tp-itin-ctrl-btn:hover {
    background: var(--tp-forest);
    color: #fff;
    border-color: var(--tp-forest);
}


/* ── ACCORDION DAY ITEM ─────────────────────── */

.tp-day-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 10px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
}

.tp-day-header-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.tp-day-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tp-day-toggle-icon {
    flex-shrink: 0;
    color: var(--tp-muted);
    transition: transform 0.3s ease;
    margin-top: 8px;
}

.tp-day-accordion.is-open .tp-day-toggle-icon {
    transform: rotate(180deg);
}


/* Body wrap — collapsible */

.tp-day-body-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.tp-day-accordion.is-open .tp-day-body-wrap {
    max-height: 2000px;
}


/* Paragraph spacing inside itinerary */

.tp-day-body p {
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--tp-muted);
    line-height: 1.75;
}

.tp-day-body p:last-child {
    margin-bottom: 0;
}

.tp-day-body a {
    color: var(--tp-forest);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.tp-day-body a:hover {
    color: var(--tp-accent);
}


/* ── ITINERARY NOTE / BLOCKQUOTE ─────────────── */

.tp-day-body blockquote {
    background: #FDF8F2;
    border-left: 4px solid #c99b2d;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin: 16px 0;
    font-size: 13px;
    color: #5a5040;
    line-height: 1.7;
    font-style: normal;
}

.tp-day-body blockquote::before {
    content: '📌 Note: ';
    font-weight: 700;
    color: #c99b2d;
    font-style: normal;
}


/* ============================================================
   MORE DETAILS SECTION
   ============================================================ */

.tp-more-details-content {
    font-size: 15px;
    line-height: 1.85;
    color: var(--tp-muted);
    max-width: 680px;
}

.tp-more-details-content p {
    margin-bottom: 18px;
}

.tp-more-details-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--tp-text);
    margin: 32px 0 14px;
    line-height: 1.2;
}

.tp-more-details-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--tp-text);
    margin: 24px 0 10px;
}

.tp-more-details-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--tp-text);
    margin: 20px 0 8px;
}

.tp-more-details-content ul,
.tp-more-details-content ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.tp-more-details-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.tp-more-details-content blockquote {
    background: #FDF8F2;
    border-left: 4px solid #c99b2d;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 14px;
    color: #5a5040;
    line-height: 1.7;
}

.tp-more-details-content a {
    color: var(--tp-forest);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.tp-more-details-content a:hover {
    color: var(--tp-accent);
}

.tp-more-details-content strong {
    color: var(--tp-text);
    font-weight: 600;
}

.tp-more-details-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.tp-more-details-content th {
    background: #0f5a43;
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tp-more-details-content td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--tp-stone);
    color: var(--tp-muted);
}

.tp-more-details-content tr:hover td {
    background: var(--tp-snow);
}

.tp-more-details-content img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


/* ============================================================
   BOOKING PAGE — Payment Option + Ref Badge
   ============================================================ */


/* Booking ref badge in summary */

.bk-ref-badge {
    background: #0f5a43;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bk-ref-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.bk-ref-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #c99b2d;
    letter-spacing: 1px;
}


/* Deposit row */

.bk-deposit-row {
    background: #FDF8F2;
    border-radius: 6px;
    padding: 10px 14px !important;
    margin: 4px 0;
}

.bk-deposit-val {
    color: #c99b2d !important;
    font-size: 16px !important;
}


/* Payment option section */

.bk-payment-option {
    margin-bottom: 20px;
}

.bk-payment-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tp-muted);
    margin-bottom: 10px;
    display: block;
}

.bk-payment-choice {
    display: block;
    border: 1.5px solid #E8E0D0;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.bk-payment-choice:hover {
    border-color: #0f5a43;
}

.bk-payment-choice.is-selected {
    border-color: #0f5a43;
    background: #F0F7F0;
}

.bk-payment-choice input[type="radio"] {
    display: none;
}

.bk-payment-choice-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bk-payment-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.bk-payment-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bk-payment-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f5a43;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bk-payment-amount {
    background: #c99b2d;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 700;
}

.bk-payment-sub {
    font-size: 12px;
    color: #6B6558;
    line-height: 1.5;
}

.bk-pay-now-notice {
    background: #FDF8F2;
    border: 1px solid #E8C97A;
    border-radius: 8px;
    padding: 14px 16px;
    margin-top: 8px;
}

.bk-pay-notice-inner {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: #5a4a20;
    line-height: 1.6;
}

.bk-pay-notice-inner strong {
    display: block;
    margin-bottom: 4px;
    color: #7A4A0E;
}

.bk-pay-notice-inner p {
    margin: 0;
    font-size: 12px;
}


/* ============================================================
   THANK YOU PAGE — Updated
   ============================================================ */


/* Booking reference card */

.ty-ref-card {
    background: #0f5a43;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 24px;
}

.ty-ref-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 0;
}

.ty-ref-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ty-ref-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.ty-ref-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #c99b2d;
    letter-spacing: 2px;
}

.ty-ref-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 380px;
    line-height: 1.5;
}

.ty-ref-copy {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
}

.ty-ref-copy:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ty-deposit-notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(193, 127, 58, 0.15);
    border: 1px solid rgba(193, 127, 58, 0.3);
    border-radius: 8px;
    padding: 14px 16px;
    margin-top: 16px;
    font-size: 13px;
    color: #fff;
    line-height: 1.6;
}

.ty-deposit-notice strong {
    display: block;
    margin-bottom: 4px;
    color: #c99b2d;
}

.ty-deposit-notice p {
    margin: 0;
    opacity: 0.75;
}


/* Email notice */

.ty-email-notice {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    border-left: 4px solid #c99b2d;
}

.ty-email-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.ty-email-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0f5a43;
    margin-bottom: 4px;
}

.ty-email-text p {
    font-size: 13px;
    color: #6B6558;
    margin: 0;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .ty-ref-inner {
        flex-direction: column;
    }
    .ty-ref-num {
        font-size: 22px;
    }
}

@media screen and (max-width: 1024px) {
    /* Level 3 submenu — darker background */
    #navDrawer .sub-menu .sub-menu {
        background: rgba(193, 127, 58, 0.08) !important;
        border-left: 2px solid rgba(193, 127, 58, 0.3) !important;
        margin-left: 16px !important;
    }
    /* Level 3 links */
    #navDrawer .sub-menu .sub-menu>li>a {
        padding-left: 24px !important;
        font-size: 12px !important;
        color: rgba(255, 255, 255, 0.5) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    }
    #navDrawer .sub-menu .sub-menu>li>a:hover {
        color: #c99b2d !important;
        background: rgba(193, 127, 58, 0.1) !important;
    }
    /* Hide walker arrow on mobile — JS adds its own */
    #navDrawer .nav-sub-arrow {
        display: none !important;
    }
    /* Also hide nav-chevron */
    #navDrawer .nav-chevron {
        display: none !important;
    }
    /* Hide submenu by default */
    #navDrawer .sub-menu {
        display: block !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.35s ease !important;
        background: rgba(255, 255, 255, 0.03) !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        position: static !important;
        opacity: 1 !important;
        pointer-events: all !important;
        transform: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        border: none !important;
        min-width: 0 !important;
        width: 100% !important;
    }
    #navDrawer .sub-menu::before,
    #navDrawer .sub-menu::after {
        display: none !important;
    }
    /* Open state */
    #navDrawer .menu-item-has-children.mob-open>.sub-menu {
        max-height: 800px !important;
    }
    /* Level 2 links */
    #navDrawer .sub-menu>li>a {
        padding: 11px 16px 11px 32px !important;
        font-size: 13px !important;
        color: rgba(255, 255, 255, 0.6) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-decoration: none !important;
    }
    /* Level 3 */
    #navDrawer .sub-menu .sub-menu>li>a {
        padding-left: 48px !important;
        font-size: 12px !important;
        color: rgba(255, 255, 255, 0.4) !important;
    }
    /* Hide desktop chevron on mobile */
    #navDrawer .nav-chevron {
        display: none !important;
    }
}


/* Always hide walker arrow in drawer */

#navDrawer .nav-sub-arrow {
    display: none !important;
}


/* Remove grey CSS arrow from mobile drawer */

#navDrawer .nav-item--has-children>a::after,
#navDrawer .menu-item-has-children>a::after,
#navDrawer li::after {
    display: none !important;
    content: none !important;
}

.hero-subtitle {
    display: none;
}

.hero-btns a.btn-secondary {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.hero-btns a.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.85);
    color: #000000;
}

@media (max-width: 1024px) {
    .hero-slide {
        background-image: url('wp-content/themes/desire-adventure/images/mobile-screen.webp') !important;
        height: 100vh;
        background-position: center center;
    }
}

body.single-trips .site-header {
    position: absolute !important;
    top: 0 !important;
    background: transparent !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}


/* ============================================================
   GLASS PILL TRIGGER + HOVER HEADER
   ============================================================ */

.header-pill-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    display: flex;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.header-glass-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 32px 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: none;
    border-radius: 0 0 36px 36px;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.2s ease;
}

.header-glass-pill:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hgp-line {
    display: block;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: width 0.2s ease, background 0.2s ease;
}

.hgp-line:nth-child(1) {
    width: 22px;
}

.hgp-line:nth-child(2) {
    width: 15px;
}

.hgp-line:nth-child(3) {
    width: 8px;
}

.header-glass-pill:hover .hgp-line {
    width: 22px;
    background: #fff;
}


/* Pill hides when header is revealed */

.header-pill-wrap.is-hidden {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}


/* Hide pill on single-trips (has its own subnav) */

body.single-trips .header-pill-wrap {
    display: none;
}


/* Nav links — dark when header is revealed */

.site-header.is-revealed .main-nav a,
.site-header.is-revealed .nav-menu a {
    color: #0f5a43;
}


/* Single trip — keep white nav even when header revealed */

body.single-trips .site-header.is-revealed .main-nav a,
body.single-trips .site-header.is-revealed .nav-menu a {
    color: rgba(255, 255, 255, 0.85) !important;
}

body.single-trips .site-header.is-revealed .main-nav a:hover,
body.single-trips .site-header.is-revealed .nav-menu a:hover {
    color: #ffffff !important;
}

body.single-trips .site-header.is-revealed .header-wa-btn {
    color: rgba(255, 255, 255, 0.85) !important;
}


/* Dark blur background instead of white on single trip */

body.single-trips .site-header.is-revealed {
    background: rgba(0, 0, 0, 0.55) !important;
    backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.site-header.is-revealed .header-wa-btn {
    color: #0f5a43;
    /* WhatsApp button keeps white text on green bg */
}

.site-header.is-revealed .header-wa-btn:hover {
    color: #25D366;
}


/* Dropdown stays dark on single trips */

body.single-trips .site-header.is-revealed .nav-dropdown {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.single-trips .site-header.is-revealed .nav-dropdown::before {
    background: #1a1a1a !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

body.single-trips .site-header.is-revealed .nav-dropdown-link {
    color: rgba(255, 255, 255, 0.65) !important;
}

body.single-trips .site-header.is-revealed .nav-dropdown-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.07) !important;
}

body.single-trips .site-header.is-revealed .nav-dropdown a {
    color: rgba(255, 255, 255, 0.65) !important;
}

body.single-trips .site-header.is-revealed .nav-dropdown a:hover {
    color: #fff !important;
}


/* Nav links — white when transparent/scrolled */

.site-header:not(.is-revealed) .main-nav a,
.site-header:not(.is-revealed) .nav-menu a {
    color: #ffffff;
}


/* Dropdown submenu — white background when header is revealed */


/* Dropdown — white background when header is revealed */

.site-header.is-revealed .nav-dropdown {
    background: #ffffff;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.site-header.is-revealed .nav-dropdown::before {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

.site-header.is-revealed .nav-dropdown-link {
    color: #0f5a43 !important;
}

.site-header.is-revealed .nav-dropdown-link:hover {
    background: #f5f5f5 !important;
    color: #c99b2d !important;
}

.site-header.is-revealed .nav-sub-arrow {
    color: #c99b2d;
}

@media (max-width: 1024px) {
    .header-pill-wrap {
        display: none;
    }
    .site-header {
        opacity: 1 !important;
        pointer-events: auto !important;
        background: transparent;
    }
    /* Frosted glass bar once scrolled */
    .site-header.is-revealed {
        background: rgba(255, 255, 255, 0.72);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
    }
    /* White hamburger over the hero → dark on the glass bar */
    .site-header.is-revealed .nav-hamburger span {
        background: #0f5a43;
    }
}


/* Hide Rank Math rich snippet frontend display */

#rank-math-rich-snippet-wrapper {
    display: none !important;
}


/* Text highlight — marker pen effect */

.highlight-yellow {
    background: #FFE066;
    padding: 2px 4px;
    border-radius: 3px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.highlight-green {
    background: rgba(15, 90, 67, 0.15);
    color: #0f5a43;
    padding: 2px 4px;
    border-radius: 3px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}


/* ============================================================
   REGION SLIDER
   ============================================================ */

.region-slider-section {
    width: 100%;
    padding: 40px 0 60px;
    background: #f5f0e8;
    position: relative;
    overflow: hidden;
}


/* Background pattern overlay */

.rs-bg-pattern {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
}


/* CHOOSE vertical text */

.rs-choose-text {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-weight: 900;
    font-size: 120px;
    color: #0f5a43;
    letter-spacing: -4px;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
}


/* Section intro */

.region-slider-section .section-intro {
    position: relative;
    z-index: 2;
}


/* Track wrap */

.rs-track-wrap {
    position: relative;
    height: 380px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.rs-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-slide {
    position: absolute;
    width: 260px;
    height: 340px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    left: 50%;
    margin-left: -130px;
    will-change: transform, opacity;
}

.rs-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.rs-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    text-align: center;
}

.rs-subtitle {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-style: italic;
    font-size: 13px;
    color: #c99b2d;
    margin-bottom: 4px;
}

.rs-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


/* Nav buttons */

.rs-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    position: relative;
    z-index: 2;
}

.rs-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid #0f5a43;
    background: #ffffff;
    color: #0f5a43;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
    font-family: Arial, sans-serif;
}

.rs-btn:hover {
    background: #0f5a43;
    color: #fff;
}


/* Fade bottom */

.region-slider-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #f5f0e8);
    pointer-events: none;
    z-index: 3;
}


/* Mobile */

@media (max-width: 768px) {
    .rs-choose-text {
        font-size: 72px;
        left: -8px;
    }
    .rs-track-wrap {
        height: 340px;
    }
    .rs-slide {
        width: 220px;
        height: 300px;
        margin-left: -110px;
    }
}

@media (max-width: 639px) {
    .region-slider-section {
        overflow: hidden;
    }
    .rs-slide {
        width: calc(100vw - 60px);
        margin-left: calc(-50vw + 30px);
        height: 300px;
    }
    .rs-choose-text {
        font-size: 56px;
        opacity: 0.5;
    }
}


/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-page {
    font-family: 'DM Sans', sans-serif;
    background: #F5F0E8;
}

.legal-hero {
    background: #0f5a43;
    padding: 80px 0 60px;
    text-align: center;
}

.legal-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-hero-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c99b2d;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.legal-hero-kicker::before,
.legal-hero-kicker::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #c99b2d;
}

.legal-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.1;
}

.legal-hero-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.legal-body {
    padding: 60px 0 100px;
}

.legal-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
}


/* Content from WP editor */

.legal-content {
    background: #fff;
    border-radius: 16px;
    padding: 48px 52px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    font-size: 15px;
    line-height: 1.85;
    color: #3a3630;
}

.legal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: #0f5a43;
    margin: 36px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #E8E0D0;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: #1C1A17;
    margin: 28px 0 10px;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: #0f5a43;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: #c99b2d;
}

.legal-content strong {
    font-weight: 600;
    color: #1C1A17;
}


/* Legal doc cards (on Legal Documents page) */

.legal-doc-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.legal-doc-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: #fff;
    border: 1.5px solid #E8E0D0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.legal-doc-card:hover {
    border-color: #0f5a43;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.legal-doc-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.legal-doc-title {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #1C1A17;
}

.legal-doc-arrow {
    font-size: 16px;
    color: #0f5a43;
}


/* Mobile */

@media screen and (max-width: 768px) {
    .legal-hero {
        padding: 60px 0 40px;
    }
    .legal-hero-title {
        font-size: 36px;
    }
    .legal-container {
        padding: 0 20px;
    }
    .legal-content {
        padding: 28px 22px;
    }
    .legal-doc-links {
        grid-template-columns: 1fr;
    }
}


/* Typography word grid background */

.ft-word-grid {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    animation: wordDrift 20s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes wordDrift {
    0% {
        transform: translateX(0px) translateY(0px);
    }
    25% {
        transform: translateX(-15px) translateY(-8px);
    }
    50% {
        transform: translateX(-25px) translateY(5px);
    }
    75% {
        transform: translateX(-10px) translateY(-12px);
    }
    100% {
        transform: translateX(-20px) translateY(8px);
    }
}


/* ── Two-tone background + ADVENTURE text ── */

.packages-section {
    background: #0f5a43;
    padding: 20px 0 60px;
    position: relative;
    overflow: hidden;
}

.pkg-bg-band {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 55%;
    background: #252d3d;
    z-index: 0;
    pointer-events: none;
}

.pkg-adventure-text {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Arial Black', Impact, sans-serif;
    font-weight: 900;
    font-size: 110px;
    color: #c99b2d;
    letter-spacing: -4px;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    z-index: 3;
    opacity: 0.9;
}

.packages-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px 0 40px;
}

@media screen and (max-width: 768px) {
    .pkg-adventure-text {
        font-size: 64px;
        right: -8px;
    }
    .pkg-bg-band {
        height: 60%;
    }
    .packages-container {
        padding: 0 50px 0 16px;
    }
}


/* ============================================================
   PLAN MY TRIP PAGE
   ============================================================ */

.pmt-page {
    font-family: 'DM Sans', sans-serif;
    background: #F5F0E8;
    min-height: 100vh;
}


/* Hero */

.pmt-hero {
    background: #0f5a43;
    padding: 80px 0 60px;
    text-align: center;
}

.pmt-hero-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.pmt-hero-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c99b2d;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pmt-hero-kicker::before,
.pmt-hero-kicker::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #c99b2d;
}

.pmt-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.1;
}

.pmt-hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}


/* Main wrap */

.pmt-wrap {
    padding: 48px 0 80px;
}

.pmt-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}


/* Progress bar */

.pmt-progress {
    display: flex;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid #F0EDE8;
    background: #FAFAF8;
}

.pmt-prog-step {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pmt-prog-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    background: #E8E0D0;
    color: #6B6558;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pmt-prog-step.active .pmt-prog-num {
    background: #c99b2d;
    color: #fff;
}

.pmt-prog-step.done .pmt-prog-num {
    background: #0f5a43;
    color: #fff;
}

.pmt-prog-label {
    font-size: 12px;
    color: #6B6558;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.pmt-prog-step.active .pmt-prog-label {
    color: #c99b2d;
    font-weight: 700;
}

.pmt-prog-step.done .pmt-prog-label {
    color: #0f5a43;
    font-weight: 600;
}

.pmt-prog-line {
    flex: 1;
    height: 1px;
    background: #E8E0D0;
    margin: 0 6px;
    min-width: 12px;
    transition: background 0.3s ease;
}

.pmt-prog-line.done {
    background: #0f5a43;
}


/* Step body */

.pmt-body {
    padding: 36px 40px;
    min-height: 360px;
}

.pmt-step.hidden {
    display: none;
}

.pmt-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 400;
    color: #1C1A17;
    margin-bottom: 8px;
}

.pmt-step-desc {
    font-size: 14px;
    color: #6B6558;
    margin-bottom: 28px;
}


/* Option grid */

.pmt-option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.pmt-opt {
    border: 1.5px solid #E8E0D0;
    border-radius: 12px;
    padding: 20px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    background: #fff;
}

.pmt-opt:hover {
    border-color: #0f5a43;
    background: #f0f7f3;
    transform: translateY(-2px);
}

.pmt-opt.selected {
    border: 2px solid #0f5a43;
    background: #f0f7f3;
}

.pmt-opt-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.pmt-opt-name {
    font-size: 14px;
    font-weight: 700;
    color: #1C1A17;
    margin-bottom: 4px;
}

.pmt-opt-sub {
    font-size: 12px;
    color: #6B6558;
}


/* Range slider */

.pmt-range-wrap {
    max-width: 520px;
    margin: 0 auto 24px;
    text-align: center;
}

.pmt-range-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.pmt-range-prefix {
    font-size: 18px;
    color: #6B6558;
}

.pmt-range-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    color: #0f5a43;
    line-height: 1;
}

.pmt-range-unit {
    font-size: 16px;
    color: #6B6558;
}

.pmt-range-input {
    width: 100%;
    height: 6px;
    border-radius: 100px;
    background: #E8E0D0;
    outline: none;
    margin-bottom: 10px;
    -webkit-appearance: none;
    cursor: pointer;
}

.pmt-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0f5a43;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.pmt-range-limits {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #aaa;
}


/* Group note */

.pmt-group-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #F5F0E8;
    border-radius: 10px;
    padding: 14px 18px;
    max-width: 520px;
    margin: 0 auto;
}

.pmt-note-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.pmt-group-note p {
    font-size: 13px;
    color: #6B6558;
    line-height: 1.6;
    margin: 0;
}


/* Budget tiers */

.pmt-budget-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-width: 520px;
    margin: 0 auto;
}

.pmt-tier {
    background: #F5F0E8;
    border-radius: 8px;
    padding: 10px 12px;
    text-align: center;
}

.pmt-tier-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #0f5a43;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.pmt-tier-range {
    display: block;
    font-size: 11px;
    color: #6B6558;
}


/* Results */

.pmt-results {
    margin-bottom: 32px;
}

.pmt-result-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    border: 1.5px solid #E8E0D0;
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    text-decoration: none;
}

.pmt-result-card:hover {
    border-color: #0f5a43;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pmt-result-card.selected {
    border: 2px solid #0f5a43;
    background: #f0f7f3;
}

.pmt-result-thumb {
    width: 90px;
    height: 70px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.pmt-result-info {
    flex: 1;
}

.pmt-match-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    background: #D6EDDC;
    color: #1E5A28;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.pmt-result-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: #1C1A17;
    margin-bottom: 4px;
}

.pmt-result-meta {
    font-size: 12px;
    color: #6B6558;
    margin-bottom: 4px;
}

.pmt-result-price {
    font-size: 15px;
    font-weight: 700;
    color: #c99b2d;
}

.pmt-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #6B6558;
}

.pmt-no-results p {
    font-size: 15px;
    margin-bottom: 8px;
}


/* Inquiry form */

.pmt-inquiry-wrap {
    border-top: 1px solid #F0EDE8;
    padding-top: 28px;
}

.pmt-inquiry-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: #0f5a43;
    margin-bottom: 4px;
}

.pmt-inquiry-sub {
    font-size: 13px;
    color: #6B6558;
    margin-bottom: 20px;
}

.pmt-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}

.pmt-field {
    margin-bottom: 16px;
}

.pmt-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6B6558;
    margin-bottom: 6px;
}

.pmt-required {
    color: #e74c3c;
}

.pmt-field input,
.pmt-field textarea,
.pmt-field select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #E8E0D0;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #1C1A17;
    background: #FAFAF8;
    outline: none;
    transition: border-color 0.2s;
}

.pmt-field input:focus,
.pmt-field textarea:focus {
    border-color: #0f5a43;
}

.pmt-field textarea {
    resize: vertical;
    min-height: 100px;
}


/* Summary pills */

.pmt-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.pmt-summary-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: #F5F0E8;
    border: 1px solid #E8E0D0;
    border-radius: 100px;
    font-size: 12px;
    color: #6B6558;
}

.pmt-summary-pill::before {
    content: '✓';
    color: #0f5a43;
    font-weight: 700;
}


/* Submit */

.pmt-submit-btn {
    width: 100%;
    padding: 15px;
    background: #0f5a43;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 12px;
}

.pmt-submit-btn:hover {
    background: #c99b2d;
}

.pmt-form-note {
    font-size: 12px;
    color: #aaa;
    text-align: center;
    line-height: 1.6;
}


/* Footer nav */

.pmt-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    border-top: 1px solid #F0EDE8;
    background: #FAFAF8;
}

.pmt-btn-back {
    padding: 10px 20px;
    background: #fff;
    border: 1.5px solid #E8E0D0;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #6B6558;
    cursor: pointer;
    transition: all 0.2s;
}

.pmt-btn-back:hover {
    border-color: #0f5a43;
    color: #0f5a43;
}

.pmt-btn-back:disabled {
    opacity: 0.3;
    cursor: default;
}

.pmt-step-counter {
    font-size: 12px;
    color: #aaa;
    font-weight: 600;
}

.pmt-btn-next {
    padding: 10px 28px;
    background: #0f5a43;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.pmt-btn-next:hover {
    background: #c99b2d;
}


/* Responsive */

@media screen and (max-width: 768px) {
    .pmt-hero-title {
        font-size: 36px;
    }
    .pmt-container {
        border-radius: 0;
    }
    .pmt-body {
        padding: 24px 20px;
    }
    .pmt-footer {
        padding: 16px 20px;
    }
    .pmt-progress {
        padding: 16px 20px;
    }
    .pmt-prog-label {
        display: none;
    }
    .pmt-option-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pmt-field-row {
        grid-template-columns: 1fr;
    }
    .pmt-budget-tiers {
        grid-template-columns: repeat(2, 1fr);
    }
    .pmt-step-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .pmt-option-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .pmt-opt {
        padding: 14px 12px;
    }
    .pmt-opt-icon {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .tp-hero {
        height: 62vh;
        height: 62dvh;
        min-height: 420px;
    }
    /* Drop the slow zoom on mobile — it only adds crop here */
    .tp-slide-bg {
        transform: none;
        transition: none;
    }
}
.header-wa-help {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
}
.header-wa-text { display: flex; flex-direction: column; line-height: 1.3; text-align: right; }
.header-wa-line1 { font-size: 11px; color: rgba(255,255,255,0.6); }
.header-wa-line2 { font-size: 14px; font-weight: 700; color: #fff; }
.header-wa-name { color: #c99b2d; font-weight: 500; }
.header-wa-avatar img,
.header-wa-icon {
    width: 40px; height: 40px; border-radius: 50%;
    object-fit: cover; display: flex; align-items: center; justify-content: center;
    border: 2px solid #25D366; background: rgba(37,211,102,0.1);
}
/* When header is revealed (light bg), darken the text */
.site-header.is-revealed .header-wa-line1 { color: rgba(0,0,0,0.5); }
.site-header.is-revealed .header-wa-line2 { color: #0f5a43; }
/* Hide the desktop WhatsApp help block on mobile — logo + hamburger only */
@media (max-width: 1024px) {
    .header-wa-help {
        display: none;
    }
}