/*
Theme Name: Vines Signature Journeys
Theme URI: http://localhost:8080
Author: Vines Signature Journeys Ltd
Description: Custom theme for Vines Signature Journeys Ltd - Luxury Safari & Travel
Version: 4.1.3
Text Domain: vines-theme
*/

/* =====================
   VARIABLES
   ===================== */
:root {
    --bg:           #faf8f3;
    --green:        #0f3d20;
    --green-hover:  #14522a;
    --green-footer: #0d3319;
    --gold:         #b8894a;
    --gold-light:   #c9a15e;
    --gold-pale:    #c9b48c;
    --text:         #22261f;
    --text-dark:    #1d2b20;
    --text-muted:   #5c6459;
    --text-body:    #3a4238;
    --border:       #e8e4da;
    --border-light: #e5e1d6;
    --white:        #ffffff;
    --serif:        'Cormorant Garamond', Georgia, serif;
    --script:       'Parisienne', cursive;
    --sans:         'Lato', 'Helvetica Neue', Arial, sans-serif;
    --radius:       3px;
    --max-w:        1320px;
}

/* =====================
   RESET
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    font-family: var(--sans);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--green); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--gold); }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =====================
   LAYOUT HELPERS
   ===================== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }

/* Ornament divider: ── ✦ ── */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gold);
    margin-bottom: 34px;
}
.ornament span.line {
    display: inline-block;
    width: 44px;
    height: 1px;
    background: var(--gold-pale);
}
.ornament span.star { font-size: 12px; }

/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 17px 26px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s;
}
.btn-green {
    background: var(--green);
    color: var(--white);
}
.btn-green:hover { background: var(--green-hover); color: var(--white); }

.btn-gold {
    background: var(--gold);
    color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); color: var(--white); }

.btn-outline-gold {
    background: transparent;
    color: var(--green);
    border: 1px solid var(--gold-pale);
}
.btn-outline-gold:hover { background: var(--green); color: var(--white); }

/* =====================
   HEADER
   ===================== */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
/* Scrolled: white + shadow (home page only, via JS class) */
#site-header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(15,61,32,0.10);
}
/* All non-home pages: white navbar always + clear the fixed header */
body:not(.home) #site-header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(15,61,32,0.10);
}
body:not(.home) { padding-top: 154px; }
@media (max-width: 768px) {
    body:not(.home) { padding-top: 96px; }
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 22px 40px;
}

/* Logo text block */
.site-logo-block {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.site-logo-block:hover { opacity: 0.88; }
.site-logo-img {
    height: 110px;
    width: auto;
    display: block;
    object-fit: contain;
}
/* on non-home white header, keep logo readable */
body:not(.home) .site-logo-img,
#site-header.scrolled .site-logo-img { filter: none; }

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav a {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.main-nav a:hover { color: var(--gold); }
.main-nav .current-menu-item > a,
.main-nav .active-link {
    padding-bottom: 6px;
    border-bottom: 2px solid var(--gold);
    color: var(--text-dark);
}

/* Header CTA */
.header-cta a {
    background: var(--green);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    padding: 16px 26px;
    border-radius: var(--radius);
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
}
.header-cta a:hover { background: var(--green-hover); color: var(--white); }

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    flex-shrink: 0;
}
.mobile-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-panel {
    display: none;
    background: var(--white);
    border-top: 1px solid #f0f0f0;
    padding: 16px 40px 24px;
}
.mobile-nav-panel.open { display: block; }
.mobile-nav-panel ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-panel a {
    display: block;
    padding: 12px 0;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 1px solid #f5f5f5;
}
.mobile-nav-panel a:hover { color: var(--green); }
.mobile-nav-panel .btn { margin-top: 16px; }

/* =====================
   HERO
   ===================== */
.hero {
    position: relative;
    width: 100%;
    height: 780px;
    overflow: visible;
    background-image: url('assets/images/hero-photo.jpg');
    background-color: #3a7a4a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Cream gradient overlay — left bright, fades to transparent right */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
        rgba(250,248,243,0.96) 0%,
        rgba(250,248,243,0.85) 26%,
        rgba(250,248,243,0.25) 46%,
        rgba(250,248,243,0) 62%);
    pointer-events: none;
    z-index: 1;
}
/* Leaf decoration — grows up from beneath the search card */
.hero::after {
    content: '';
    position: absolute;
    left: 20px;
    bottom: -55px;   /* base tucks under search card, tip emerges at card's top-left */
    width: 26%;
    height: 92%;
    background: url('assets/images/leaf-left.png') no-repeat left bottom;
    background-size: contain;
    opacity: 0.82;
    z-index: 4;      /* above hero content but below search-section z-index:10 */
    pointer-events: none;
}

.hero-body {
    position: relative;
    z-index: 3;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 140px 40px 0;
}
.hero-body-inner { max-width: 520px; }

.hero-script {
    font-family: var(--script);
    font-size: 52px;
    color: var(--gold);
    line-height: 1;
    margin-left: 6px;
}
.hero-headline {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 104px;
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--green);
    margin-top: -6px;
}
.hero-sub {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 42px;
    letter-spacing: 0.03em;
    color: var(--text-dark);
    margin-top: 6px;
}
.hero-rule {
    width: 70px;
    height: 2px;
    background: var(--gold);
    margin: 22px 0 20px;
}
.hero-desc {
    font-size: 17px;
    line-height: 1.7;
    font-weight: 600;
    color: #1a1a1a;
    max-width: 420px;
    margin: 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 44px;
    background: var(--green);
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 18px 24px;
    border-radius: var(--radius);
    margin-top: 30px;
    text-decoration: none;
}
.hero-cta:hover { background: var(--green-hover); color: var(--white); }

/* =====================
   SEARCH BAR
   ===================== */
.search-section {
    max-width: var(--max-w);
    margin: -56px auto 0;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}
.search-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1fr auto;
    align-items: center;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 18px 45px rgba(20,40,25,0.13);
    padding: 16px 16px 16px 28px;
    gap: 0;
}
.search-field {
    display: flex;
    align-items: center;
    gap: 14px;
}
.search-field.has-divider {
    border-right: 1px solid var(--border);
    padding-right: 20px;
}
.search-field.has-pad-lr {
    padding: 0 20px;
}
.search-field.last-field {
    padding: 0 20px;
}
/* Search field positioning for date picker indicator */
.search-field { position: relative; }

/* CSS-drawn search icons */
.icon-destination {
    width: 26px;
    height: 26px;
    border: 2px solid var(--gold);
    border-radius: 50% 50% 50% 4px;
    transform: rotate(-45deg);
    flex-shrink: 0;
}
.icon-calendar {
    width: 24px;
    height: 22px;
    border: 2px solid var(--gold);
    border-radius: 3px;
    border-top-width: 6px;
    flex-shrink: 0;
}
.icon-travelers {
    width: 24px;
    height: 24px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.sf-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}
.search-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: #8a8f84;
    font-weight: 700;
    display: block;
    cursor: pointer;
}
.sf-input {
    border: none;
    background: transparent;
    font-family: var(--sans);
    font-size: 15px;
    color: #2b3129;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    min-width: 0;
}
.sf-input:focus { outline: none; box-shadow: none; }
/* Date input: restore native picker, expand click target to full input */
input[type="date"].sf-input {
    color: #2b3129;
    position: relative;
    -webkit-appearance: textfield;
    appearance: textfield;
}
input[type="date"].sf-input::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}
.search-btn {
    background: var(--green);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 20px 34px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}
.search-btn:hover { background: var(--green-hover); color: var(--white); }

/* =====================
   DESTINATIONS SECTION
   ===================== */
.destinations-section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 74px 40px 0;
    text-align: center;
}
.section-eyebrow {
    font-size: 13px;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--gold);
    display: block;
}
.section-title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 44px;
    color: var(--green);
    margin: 10px 0 6px;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 0;
}
.dest-card {
    position: relative;
    height: 270px;
    border-radius: 4px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}
.dest-card img,
.dest-card .dest-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.dest-card:hover img,
.dest-card:hover .dest-bg { transform: scale(1.07); }
.dest-card-overlay {
    position: absolute;
    inset: auto 0 0 0;
    height: 60%;
    background: linear-gradient(to top, rgba(8,24,12,0.85), rgba(8,24,12,0));
    pointer-events: none;
}
.dest-card-info {
    position: absolute;
    left: 16px;
    bottom: 16px;
    text-align: left;
}
.dest-name {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    letter-spacing: 0.04em;
}
.dest-sub {
    font-size: 14px;
    color: #eee9dd;
}
.destinations-cta {
    margin-top: 32px;
    padding-bottom: 0;
}
.destinations-cta a {
    display: inline-flex;
    align-items: center;
    gap: 34px;
    border: 1px solid var(--gold-pale);
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 16px 28px;
    border-radius: var(--radius);
    text-decoration: none;
}
.destinations-cta a:hover { background: var(--green); color: var(--white); }

/* =====================
   FEATURES / WHY SECTION
   ===================== */
.why-section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 58px 40px 70px;
    text-align: center;
}
.why-section .section-title { font-size: 40px; }

.features-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.feature {
    padding: 0 22px;
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.feature:last-child { border-right: none; }

/* CSS-drawn feature icons */
.feat-icon-expert {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feat-icon-expert-inner {
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--text-dark);
    border-radius: 50%;
}
.feat-icon-signature {
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--text-dark);
    transform: rotate(45deg);
    margin: 5px 0;
}
.feat-icon-quality {
    width: 38px;
    height: 44px;
    border: 1.5px solid var(--text-dark);
    border-radius: 4px 4px 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-dark);
}
.feat-icon-tailor {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--text-dark);
    border-top-width: 7px;
    border-radius: 4px;
    margin: 2px 0;
}
.feat-icon-support {
    width: 44px;
    height: 26px;
    border: 1.5px solid var(--text-dark);
    border-bottom: none;
    border-radius: 22px 22px 0 0;
    margin: 9px 0;
}
.feat-icon-responsible {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--text-dark);
    border-radius: 0 50% 0 50%;
    margin: 4px 0;
}

.feature h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}
.feature p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* =====================
   DREAM / CTA SECTION
   ===================== */
.dream-section {
    display: grid;
    grid-template-columns: 5fr 7fr;
    min-height: 230px;
}
.dream-photo-col {
    position: relative;
    overflow: hidden;
    background-image: url('assets/images/dream-photo.jpg');
    background-size: cover;
    background-position: center;
    min-height: 340px;
}
/* Leaf decoration on right col */
.dream-text-col {
    background: var(--green);
    padding: 48px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.dream-text-col::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 22%;
    height: 85%;
    background: url('assets/images/leaf-right.png') no-repeat right bottom;
    background-size: contain;
    opacity: 0.35;
    pointer-events: none;
}
.dream-eyebrow {
    font-size: 13px;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: var(--gold-light);
}
.dream-title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 38px;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}
.dream-text {
    font-size: 15px;
    line-height: 1.7;
    color: #d9e3d6;
    margin: 0;
    max-width: 620px;
}
.dream-cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 40px;
    background: var(--gold);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 17px 26px;
    border-radius: var(--radius);
    margin-top: 10px;
    text-decoration: none;
}
.dream-cta:hover { background: var(--gold-light); color: var(--white); }

/* =====================
   PAYMENT SECTION
   ===================== */
.payment-section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 52px 40px 60px;
    text-align: center;
}
.payment-section .section-title { font-size: 36px; }
.payment-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 30px;
}
.payment-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18px;
}
.payment-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 22px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.p-mpesa {
    font-size: 18px;
    font-weight: 900;
    color: #4caf50;
    letter-spacing: -0.02em;
}
.p-visa {
    font-size: 20px;
    font-weight: 900;
    font-style: italic;
    color: #1a1f71;
}
.p-mc {
    display: flex;
    align-items: center;
}
.mc-circle-red {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #eb001b;
    display: inline-block;
}
.mc-circle-orange {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f79e1b;
    display: inline-block;
    margin-left: -9px;
}
.p-amex {
    font-size: 13px;
    font-weight: 900;
    line-height: 1.1;
    color: #0077a6;
    text-align: center;
}
.p-paypal {
    font-size: 19px;
    font-weight: 900;
    font-style: italic;
    color: #003087;
}
.p-paypal span { color: #009cde; }
.p-bank { font-size: 20px; color: #2b3129; }
.p-apple { font-size: 18px; font-weight: 700; color: #111; }
.p-label {
    font-size: 12px;
    color: var(--text-muted);
}
.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

/* =====================
   FOOTER
   ===================== */
#site-footer {
    background: var(--green-footer);
    color: #e5ece2;
}
.footer-top {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 44px 40px 30px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 44px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-logo-name {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 0.06em;
    color: var(--white);
    line-height: 1;
}
.footer-logo-sub {
    font-size: 10px;
    letter-spacing: 0.16em;
    color: var(--gold-pale);
    margin-top: 4px;
}
.footer-about {
    font-size: 13px;
    line-height: 1.7;
    color: #b9c8b5;
    margin: 0;
    max-width: 280px;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 4px;
    font-size: 14px;
}
.footer-social a {
    color: var(--gold-pale);
}
.footer-social a:hover { color: var(--white); }

.footer-col-title {
    font-size: 12px;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: var(--gold-pale);
    margin-bottom: 14px;
    text-transform: uppercase;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-col ul a {
    font-size: 14px;
    color: #dbe4d7;
}
.footer-col ul a:hover { color: var(--white); }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: 14px;
    color: #dbe4d7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-bottom-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #a8b8a4;
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a {
    color: #a8b8a4;
}
.footer-bottom-links a:hover { color: var(--white); }

/* =====================
   GENERIC PAGE TEMPLATE
   ===================== */
.page-hero {
    background: var(--green);
    padding: 120px 40px 60px;
    text-align: center;
}
.page-hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.page-hero-title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    letter-spacing: 0.03em;
    margin: 0;
}
.page-content-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 60px 40px 80px;
}
.page-content-inner {
    max-width: 860px;
    margin: 0 auto;
}
.page-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
}
.page-body h2 { font-family: var(--serif); font-size: 1.8rem; color: var(--green); margin: 2rem 0 1rem; }
.page-body h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--green); margin: 1.5rem 0 0.75rem; }
.page-body p  { margin-bottom: 1.2rem; }
.page-body ul, .page-body ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.page-body li { margin-bottom: 0.4rem; }
.page-body a  { color: var(--gold); text-decoration: underline; }
.page-body a:hover { color: var(--green); }

/* =====================
   FEATURED TOURS (homepage)
   ===================== */
.featured-tours-section {
    background: var(--bg);
    padding: 80px 40px;
    max-width: 100%;
}
.featured-tours-header {
    text-align: center;
    max-width: var(--max-w);
    margin: 0 auto 48px;
}
.section-eyebrow {
    font-size: 13px;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}
.section-title-serif {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 44px;
    color: var(--green);
    margin: 10px 0 14px;
}
.featured-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.featured-tours-cta {
    text-align: center;
    margin-top: 48px;
}
.btn-outline-green {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--green);
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 16px 36px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
}
.btn-outline-green:hover {
    background: var(--green);
    color: var(--white);
}

/* =====================
   TOURS ARCHIVE
   ===================== */
.tours-hero-banner {
    background: var(--green);
    padding: 120px 40px 60px;
    text-align: center;
}
.tours-hero-banner h1 {
    font-family: var(--serif);
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 12px;
}
.tours-hero-banner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
.tours-section { padding: 60px 0; }
.tours-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}
.filter-pill {
    padding: 9px 22px;
    border-radius: 50px;
    border: 2px solid var(--green);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--green);
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
}
.filter-pill:hover, .filter-pill.active {
    background: var(--green);
    color: var(--white);
}
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.tour-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.09);
    transition: all 0.3s;
    border: 1px solid var(--border);
}
.tour-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.18); }
.tc-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg);
}
.tc-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.tour-card:hover .tc-img img { transform: scale(1.07); }
.tc-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--gold);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.tc-body { padding: 22px 22px 16px; }
.tc-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }
.tc-meta span { font-size: 0.77rem; color: var(--text-muted); }
.tc-title {
    font-family: var(--serif);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.tc-title a:hover { color: var(--green); }
.tc-excerpt { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.tc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.tc-quote-label {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1.2;
}
.tc-quote-sub { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.tc-btn {
    padding: 9px 18px;
    font-size: 0.78rem;
    border-radius: var(--radius);
    background: var(--green);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}
.tc-btn:hover { background: var(--green-hover); color: var(--white); }

/* =====================
   SINGLE TOUR
   ===================== */
.stour-hero {
    min-height: 62vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 100px 40px 50px;
    overflow: hidden;
}
.stour-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.stour-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}
.stour-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    color: var(--white);
}
.stour-breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.stour-breadcrumb a { color: rgba(255,255,255,0.65); }
.stour-breadcrumb a:hover { color: var(--gold); }
.stour-title { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); margin-bottom: 20px; }
.stour-facts { display: flex; gap: 14px; flex-wrap: wrap; }
.stour-fact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    backdrop-filter: blur(4px);
    color: rgba(255,255,255,0.9);
}
.stour-layout {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 370px;
    gap: 48px;
    align-items: start;
}
.stour-main h2 {
    font-family: var(--serif);
    font-size: 1.35rem;
    margin: 30px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bg);
}
.stour-main h2:first-child { margin-top: 0; }
.stour-main p { line-height: 1.8; margin-bottom: 14px; }
.itinerary { padding: 0; }
.itin-day {
    border-left: 3px solid var(--green);
    padding: 0 0 28px 24px;
    position: relative;
}
.itin-day::before {
    content: '';
    position: absolute;
    left: -8px; top: 5px;
    width: 13px; height: 13px;
    background: var(--green);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--green);
}
.itin-day:last-child { padding-bottom: 0; }
.itin-label { font-size: 0.72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.itin-title { font-weight: 700; margin-bottom: 7px; }
.itin-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.inc-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; padding: 7px 0; }
.inc-item.yes::before { content: '✓'; color: var(--green); font-weight: 700; }
.inc-item.no::before  { content: '✗'; color: #e74c3c; font-weight: 700; }
.stour-sidebar { position: sticky; top: 90px; }
.booking-box {
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.14);
    padding: 28px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}
.booking-price-top { text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 22px; }
.bp-from { font-size: 0.78rem; color: var(--text-muted); }
.bp-amount { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--green); }
.bp-per { font-size: 0.8rem; color: var(--text-muted); }
.b-form { display: flex; flex-direction: column; gap: 14px; }
.b-form label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); display: block; margin-bottom: 5px; }
.b-form input, .b-form select {
    width: 100%; padding: 12px; border: 2px solid var(--border);
    border-radius: var(--radius); font-family: var(--sans); font-size: 0.9rem;
    outline: none; transition: border-color 0.2s;
}
.b-form input:focus, .b-form select:focus { border-color: var(--green); }
.b-form .btn { width: 100%; justify-content: center; margin-top: 6px; }

/* =====================
   TOUR SINGLE PAGE (TSP)
   ===================== */

/* Slider (full-width main + prev/next + thumbnail strip below) */
.tsp-slider {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    background: transparent;
}
.tsp-slider-main {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 640px;
    border-radius: 16px;
    overflow: hidden;
    background: #0a2814;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}
.tsp-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: opacity .22s ease;
}
.tsp-slider-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--green), #1a5c30); }

/* Prev / Next arrows */
.tsp-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--green);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
    transition: background .22s, transform .22s, box-shadow .22s;
    z-index: 2;
}
.tsp-slider-nav:hover {
    background: var(--green);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .28);
}
.tsp-slider-prev { left: 16px; }
.tsp-slider-next { right: 16px; }

/* Counter chip */
.tsp-slider-counter {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    letter-spacing: .3px;
    z-index: 2;
}

/* "View all photos" bottom-right */
.tsp-slider-expand {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, .92);
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background .22s, color .22s;
    z-index: 2;
    letter-spacing: .3px;
}
.tsp-slider-expand:hover { background: var(--green); color: #fff; }

/* Thumbnail strip */
.tsp-slider-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding: 4px 2px 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--green) transparent;
}
.tsp-slider-thumbs::-webkit-scrollbar { height: 6px; }
.tsp-slider-thumbs::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }
.tsp-slider-thumbs::-webkit-scrollbar-track { background: transparent; }
.tsp-slider-thumb {
    flex: 0 0 auto;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    border: 3px solid transparent;
    cursor: pointer;
    background: none;
    transition: border-color .22s, transform .22s, opacity .22s;
    opacity: .7;
}
.tsp-slider-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tsp-slider-thumb:hover { opacity: 1; transform: translateY(-2px); }
.tsp-slider-thumb-active { opacity: 1; border-color: var(--green); }

/* ---- Lightbox ---- */
#vines-lb {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
#vines-lb.vlb-open { display: flex; }
.vlb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
}
.vlb-img-wrap {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vlb-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.6);
    display: block;
}
.vlb-close, .vlb-prev, .vlb-next {
    position: absolute;
    z-index: 3;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.vlb-close:hover, .vlb-prev:hover, .vlb-next:hover { background: rgba(255,255,255,0.28); }
.vlb-close  { top: 18px; right: 18px; width: 42px; height: 42px; font-size: 26px; line-height: 1; }
.vlb-prev   { left: 18px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 32px; }
.vlb-next   { right: 18px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 32px; }
.vlb-counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-family: var(--sans);
    z-index: 3;
}

/* ---- Booking widget price (no "From") ---- */
.tsp-bw-price-row { text-align: center; padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.tsp-bw-price { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--green); line-height: 1.1; }
.tsp-bw-per   { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* Page wrap: 65/35 grid */
.tsp-main { background: #f7f5f0; }
.tsp-wrap {
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 36px;
    align-items: start;
}
.tsp-content {
    background: var(--white);
    border-radius: 10px;
    padding: 32px 36px;
    box-shadow: 0 2px 16px rgba(15,61,32,0.07);
}

/* Breadcrumb */
.tsp-breadcrumb {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.tsp-breadcrumb a { color: var(--text-muted); }
.tsp-breadcrumb a:hover { color: var(--green); }
.tsp-bc-sep { color: #b0b8ab; }

/* Category pills */
.tsp-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.tsp-pill {
    background: #fff3e0;
    color: #b8560a;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.04em;
}
.tsp-pill-dest { background: #e6f0ea; color: var(--green); }

/* Title */
.tsp-title {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px;
    line-height: 1.25;
}

/* Meta row (icons + text) */
.tsp-meta-row { display: flex; gap: 20px; flex-wrap: wrap; color: var(--text-muted); font-size: 13px; margin-bottom: 20px; }
.tsp-meta-item { display: flex; align-items: center; gap: 5px; }
.tsp-meta-item svg { color: var(--gold); flex-shrink: 0; }

/* Stats bar */
.tsp-stats-bar {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 22px;
}
.tsp-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-right: 1px solid var(--border);
}
.tsp-stat:last-child { border-right: none; }
.tsp-stat-icon {
    width: 36px; height: 36px;
    background: #e8f0e9;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    flex-shrink: 0;
}
.tsp-stat-label { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.tsp-stat-value { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-top: 2px; }

/* Route */
.tsp-route-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #f7f5f0;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 13px;
}
.tsp-route-label { font-size: 10px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; flex-shrink: 0; }
.tsp-route-path { display: flex; align-items: center; gap: 10px; }
.tsp-route-city { font-weight: 700; color: var(--text-dark); }
.tsp-route-arrow { color: var(--gold); font-size: 16px; }

/* Mini section labels */
.tsp-section-mini { margin-bottom: 16px; }
.tsp-mini-label { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }

/* Tour type pills */
.tsp-type-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.tsp-type-pill {
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    background: #fff;
}

/* Tag pills */
.tsp-tag-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.tsp-tag-pill {
    font-size: 12px;
    color: var(--text-muted);
    padding: 3px 10px;
    border-radius: 14px;
    background: #f0ede6;
}

/* Cancellation bar */
.tsp-cancel-bar {
    font-size: 12px;
    color: var(--text-muted);
    padding: 10px 0;
    margin-bottom: 14px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.tsp-cancel-label { font-weight: 700; color: var(--text-dark); margin-right: 6px; }

/* Rating row */
.tsp-rating-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 14px 0 18px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
    font-size: 12px;
    color: var(--text-muted);
}
.tsp-rating-stars { display: flex; align-items: center; gap: 6px; }
.tsp-stars { color: #e0c580; font-size: 16px; letter-spacing: 2px; }
.tsp-review-count { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.tsp-rating-meta { display: flex; align-items: center; gap: 5px; }
.tsp-rating-meta svg { color: var(--gold); }

/* Content sections */
.tsp-section { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.tsp-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.tsp-section-title {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 18px;
}

/* Overview */
.tsp-overview-body { font-size: 14px; line-height: 1.8; color: var(--text-body); margin-bottom: 16px; }
.tsp-overview-body p { margin-bottom: 12px; }

/* Highlights */
.tsp-highlights { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.tsp-highlight-pill {
    display: flex; align-items: center; gap: 6px;
    background: #e8f0e9;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
}
.tsp-highlight-pill svg { flex-shrink: 0; }

/* Itinerary accordion */
.tsp-itinerary { display: flex; flex-direction: column; gap: 0; }
.tsp-itin-item { border-bottom: 1px solid var(--border); }
.tsp-itin-item:first-child { border-top: 1px solid var(--border); }
.tsp-itin-head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--sans);
}
.tsp-itin-head:hover .tsp-itin-title { color: var(--green); }
.tsp-itin-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.tsp-itin-head[aria-expanded="false"] .tsp-itin-num { background: #e0ece2; color: var(--green); }
.tsp-itin-title { flex: 1; font-size: 14px; font-weight: 700; color: var(--text-dark); }
.tsp-itin-caret {
    color: var(--text-muted);
    transition: transform 0.25s;
    flex-shrink: 0;
}
.tsp-itin-head[aria-expanded="true"] .tsp-itin-caret { transform: rotate(180deg); }
.tsp-itin-body { padding: 0 0 18px 48px; font-size: 14px; line-height: 1.75; color: var(--text-body); }
.tsp-itin-body p { margin: 0; }

/* Included / Excluded */
.tsp-inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tsp-inc-col-head {
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
    padding-bottom: 10px; margin-bottom: 12px; border-bottom: 2px solid;
}
.tsp-inc-yes { color: var(--green); border-color: var(--green); }
.tsp-inc-no  { color: #c0392b; border-color: #c0392b; }
.tsp-inc-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-body); padding: 6px 0; border-bottom: 1px solid #f0ede6; }
.tsp-inc-item:last-child { border-bottom: none; }
.tsp-inc-item svg { flex-shrink: 0; margin-top: 1px; }

/* Reviews */
.tsp-reviews-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.tsp-reviews-header .tsp-section-title { margin: 0; }
.tsp-review-btn {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    background: var(--gold);
    padding: 8px 18px;
    border-radius: 4px;
    white-space: nowrap;
}
.tsp-review-btn:hover { background: var(--gold-light); color: var(--white); }
.tsp-reviews-empty { text-align: center; padding: 36px 0; color: var(--text-muted); }
.tsp-stars-lg { font-size: 28px; color: #ddd; letter-spacing: 4px; margin-bottom: 10px; }
.tsp-reviews-empty p { font-size: 14px; }

/* ---- Sticky Sidebar ---- */
.tsp-sidebar {
    margin-top: -32px;
    position: sticky;
    top: 90px;
}
.tsp-booking-widget {
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 4px 24px rgba(15,61,32,0.12);
    padding: 24px;
    border: 1px solid var(--border);
}

/* BW info rows */
.tsp-bw-info { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.tsp-bw-info-row { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-body); }
.tsp-bw-info-row svg { color: var(--gold); flex-shrink: 0; }

/* Deposit badge */
.tsp-bw-deposit {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #fff8ec;
    border: 1px solid #f0d8a0;
    border-radius: 5px;
    padding: 10px 14px;
    font-size: 12px;
    color: #7a5a10;
    margin-bottom: 18px;
}
.tsp-bw-deposit svg { color: #c07a2a; flex-shrink: 0; }
.tsp-bw-deposit strong { color: #5a4008; }

/* CTA buttons */
.tsp-bw-btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--gold);
    color: var(--white);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.04em;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: background 0.2s;
}
.tsp-bw-btn-primary:hover { background: #a07038; color: var(--white); }
.tsp-bw-btn-outline {
    display: block;
    width: 100%;
    text-align: center;
    border: 2px solid var(--green);
    color: var(--green);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.04em;
    padding: 14px;
    border-radius: 4px;
    margin-bottom: 16px;
    transition: all 0.2s;
}
.tsp-bw-btn-outline:hover { background: var(--green); color: var(--white); }

/* Cancel note */
.tsp-bw-cancel { font-size: 11px; color: var(--text-muted); text-align: center; padding: 0 4px 14px; border-bottom: 1px solid var(--border); margin-bottom: 14px; line-height: 1.6; }

/* Sidebar tags */
.tsp-bw-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tsp-bw-tag {
    background: #f0ede6;
    color: var(--text-muted);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 14px;
}

/* Related tours */
.tsp-related-section { padding: 64px 0; background: #f0ede6; }
.tsp-related-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.tsp-related-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; }
.tsp-related-title { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--text-dark); margin: 0 0 32px; }
.tsp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Responsive overrides for TSP */
@media (max-width: 1100px) {
    .tsp-wrap { grid-template-columns: 1fr; }
    .tsp-sidebar { position: static; margin-top: 0; }
    .tsp-booking-widget { max-width: 480px; }
    .tsp-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .tsp-slider { padding: 0 12px; }
    .tsp-slider-main { aspect-ratio: 4/3; border-radius: 12px; }
    .tsp-slider-nav { width: 40px; height: 40px; }
    .tsp-slider-prev { left: 8px; }
    .tsp-slider-next { right: 8px; }
    .tsp-slider-expand { font-size: 0.7rem; padding: 6px 10px; }
    .tsp-slider-thumb { width: 90px; height: 60px; }
    .tsp-content { padding: 22px 18px; }
    .tsp-stats-bar { flex-wrap: wrap; }
    .tsp-stat { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
    .tsp-inc-grid { grid-template-columns: 1fr; }
    .tsp-related-grid { grid-template-columns: 1fr; }
    .tsp-wrap { padding: 0 12px; }
}

/* =====================
   TESTIMONIALS
   ===================== */
.testi-section {
    background: var(--white);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
/* Subtle decorative quote watermark */
.testi-section::before {
    content: '\201C';
    position: absolute;
    top: -40px;
    left: 30px;
    font-family: var(--serif);
    font-size: 340px;
    color: rgba(15,61,32,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.testi-inner { max-width: var(--max-w); margin: 0 auto; }

.testi-header { text-align: center; margin-bottom: 52px; }
.testi-eyebrow {
    font-size: 12px;
    letter-spacing: 0.22em;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.testi-title {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--green);
    margin: 0 0 14px;
}
.testi-ornament .line { background: rgba(184,137,74,0.45); }
.testi-ornament .star { color: var(--gold); }

/* Grid */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */
.testi-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px 32px 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(15,61,32,0.10);
}

/* Large opening quote */
.testi-quote-mark {
    font-family: var(--serif);
    font-size: 72px;
    line-height: 0.6;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 700;
    opacity: 0.85;
}

/* Stars */
.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}
.testi-star { font-size: 16px; color: #ddd; }
.testi-star.filled { color: #f5a623; }

/* Quote text */
.testi-text {
    font-family: var(--serif);
    font-size: 1.06rem;
    line-height: 1.75;
    color: var(--text-body);
    margin: 0 0 20px;
    font-style: italic;
    flex: 1;
    quotes: none;
}

/* Tour tag */
.testi-tour-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e8f0e9;
    border: 1px solid #c4d8c6;
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 24px;
}
.testi-tour-tag svg { flex-shrink: 0; }

/* Divider line */
.testi-card::after {
    content: '';
    display: block;
    height: 1px;
    background: var(--border);
    margin-bottom: 20px;
}

/* Reviewer row */
.testi-reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(184,137,74,0.6);
    background: rgba(184,137,74,0.2);
}
.testi-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.testi-avatar-initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--gold);
    font-family: var(--serif);
}
.testi-reviewer-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.testi-reviewer-sub {
    font-size: 12px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1100px) {
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
    .testi-grid { grid-template-columns: 1fr; }
    .testi-section { padding: 60px 20px; }
}

/* =====================
   DESTINATIONS ARCHIVE
   ===================== */
.dest-archive-section { padding: 64px 40px; background: var(--bg); }
.dest-archive-inner   { max-width: var(--max-w); margin: 0 auto; }

.dest-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.dest-archive-card {
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(15,61,32,0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dest-archive-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(15,61,32,0.14);
}

.dest-archive-img {
    position: relative;
    height: 240px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.dest-archive-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,35,15,0.55) 0%, transparent 60%);
    transition: background 0.3s;
}
.dest-archive-card:hover .dest-archive-img-overlay {
    background: linear-gradient(to top, rgba(10,35,15,0.7) 0%, rgba(10,35,15,0.1) 60%);
}
.dest-archive-count {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(15,61,32,0.75);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.dest-archive-info {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.dest-archive-name {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
}
.dest-archive-sub {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}
.dest-archive-highlight {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 2px;
}
.dest-archive-cta {
    margin-top: 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.04em;
}
.dest-archive-cta span { font-size: 16px; }
.dest-archive-card:hover .dest-archive-cta { color: var(--gold); }

@media (max-width: 1100px) { .dest-archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  {
    .dest-archive-grid   { grid-template-columns: 1fr; }
    .dest-archive-section { padding: 40px 20px; }
}

/* =====================
   DESTINATION SINGLE PAGE
   ===================== */
.dest-single-hero {
    position: relative;
    height: 480px;
    background-size: cover;
    background-position: center;
    background-color: var(--green);
    display: flex;
    align-items: flex-end;
}
.dest-single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,35,15,0.85) 0%, rgba(10,35,15,0.3) 55%, rgba(10,35,15,0.1) 100%);
}
.dest-single-hero-body {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    padding: 0 40px 44px;
}
.dest-single-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
}
.dest-single-title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.1;
}
.dest-single-tagline {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    margin: 0;
}

.dest-single-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 48px 40px 64px;
}
.dest-single-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    max-width: 780px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
.dest-single-tours-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.dest-single-tours-title {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}
.dest-single-count {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}
.dest-single-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.dest-single-empty {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
    font-size: 1rem;
}

@media (max-width: 1100px) { .dest-single-tours-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .dest-single-hero { height: 340px; }
    .dest-single-hero-body { padding: 0 20px 32px; }
    .dest-single-wrap { padding: 32px 20px 48px; }
    .dest-single-tours-grid { grid-template-columns: 1fr; }
}

/* =====================
   MISC
   ===================== */
.wp-post-image { width: 100%; height: 100%; object-fit: cover; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.pagination .page-numbers {
    padding: 10px 16px; border-radius: var(--radius);
    border: 2px solid var(--green); color: var(--green);
    font-weight: 700; font-size: 0.875rem; transition: all 0.3s;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current { background: var(--green); color: var(--white); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1100px) {
    .dest-grid { grid-template-columns: repeat(3, 1fr); }
    .features-row { grid-template-columns: repeat(3, 1fr); }
    .features-row .feature { border-right: none; border-bottom: 1px solid var(--border-light); padding-bottom: 20px; }
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-tours-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .search-card { grid-template-columns: 1fr 1fr; }
    .search-btn { grid-column: 1 / -1; }
    .stour-layout { grid-template-columns: 1fr; }
    .stour-sidebar { position: static; }
    .payment-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .main-nav, .header-cta { display: none; }
    .mobile-toggle { display: flex; }
    .hero { height: auto; min-height: 580px; }
    .hero-headline { font-size: clamp(3rem, 14vw, 5rem); }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .features-row { grid-template-columns: repeat(2, 1fr); }
    .tours-grid { grid-template-columns: 1fr; }
    .featured-tours-grid { grid-template-columns: 1fr; }
    .featured-tours-section { padding: 60px 20px; }
    .footer-top { grid-template-columns: 1fr; }
    .search-card { grid-template-columns: 1fr; padding: 20px; }
    .search-field.has-divider { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 14px; margin-bottom: 14px; }
    .dream-section { grid-template-columns: 1fr; }
    .dream-photo-col { height: 220px; }
    .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
    .includes-grid { grid-template-columns: 1fr; }
    .payment-grid { grid-template-columns: repeat(3, 1fr); }
    .hero::after { display: none; }
}
@media (max-width: 480px) {
    .dest-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .features-row { grid-template-columns: 1fr 1fr; }
    .payment-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==============================================================
   v4.0 — Booking modal, forms, tours filter sidebar, about, contact, travel-info
   ============================================================== */

/* ---------- Reusable form ---------- */
.vines-form { display: block; }
.vines-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 14px;
}
.vines-form-field { display: block; margin-bottom: 14px; }
.vines-form-row .vines-form-field { margin-bottom: 0; }
.vines-form-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: .3px;
}
.vines-form-field label .req { color: #c0392b; }
.vines-form-field input,
.vines-form-field select,
.vines-form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fff;
    color: var(--text);
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}
.vines-form-field input:focus,
.vines-form-field select:focus,
.vines-form-field textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(15, 61, 32, .1);
}
.vines-form-field textarea { resize: vertical; min-height: 100px; }
.vines-form-field input[type="date"] { appearance: auto; -webkit-appearance: auto; }
.vines-btn-submit {
    width: 100%;
    padding: 15px 24px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background .25s, transform .25s;
    margin-top: 8px;
}
.vines-btn-submit:hover { background: var(--green-hover); transform: translateY(-1px); }
.vines-form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin: 10px 0 0;
    line-height: 1.55;
}
.vines-form-tour-hint {
    padding: 12px 14px;
    background: #f2f7f2;
    border-left: 3px solid var(--green);
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 14px;
}
.vines-hp {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

/* ---------- Booking modal ---------- */
.vines-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 16px;
}
.vines-modal.vines-modal-open { display: flex; overflow-y: auto; }
.vines-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 61, 32, .55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.vines-modal-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    background: #fff;
    border-radius: 18px;
    padding: 40px 40px 32px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
    margin: auto;
    animation: vines-modal-in .28s ease-out;
}
@keyframes vines-modal-in {
    from { opacity: 0; transform: translateY(20px) scale(.96); }
    to   { opacity: 1; transform: none; }
}
.vines-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f4f4f2;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-muted);
    transition: background .2s, color .2s;
}
.vines-modal-close:hover { background: var(--green); color: #fff; }
.vines-modal-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold, #b08b3e);
    margin-bottom: 6px;
}
.vines-modal-title {
    font-family: var(--serif);
    font-size: 1.6rem;
    line-height: 1.25;
    color: var(--green);
    margin: 0 0 10px;
}
.vines-modal-lead { color: var(--text-muted); font-size: 0.95rem; margin: 0 0 24px; line-height: 1.55; }

/* ---------- Tour sidebar sidebar (single-tour) sidebar quote panel ---------- */
.tsp-bw-quote {
    padding: 18px 20px;
    background: linear-gradient(135deg, #f6f9f5, #eef4ec);
    border-radius: 12px;
    margin-bottom: 18px;
    border: 1px solid rgba(15, 61, 32, .08);
}
.tsp-bw-quote-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gold, #b08b3e);
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.tsp-bw-quote-title {
    font-family: var(--serif);
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1.2;
    margin-bottom: 8px;
}
.tsp-bw-quote-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ---------- Tours archive: sidebar + grid ---------- */
.tours-arch-hero {
    background: linear-gradient(135deg, var(--green-footer, #0a2814), var(--green, #0f3d20));
    color: #fff;
    padding: 90px 24px 70px;
    text-align: center;
}
.tours-arch-hero-inner { max-width: 900px; margin: 0 auto; }
.tours-arch-hero-title {
    font-family: var(--serif);
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    line-height: 1.15;
    color: #fff;
    margin: 0 0 14px;
}
.tours-arch-hero-sub {
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.55;
}

.tours-body { background: #fafaf7; padding: 46px 24px 90px; }
.tours-body-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 34px;
    align-items: start;
}

.tours-sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 14px;
    padding: 26px 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    max-height: calc(100vh - 130px);
    overflow-y: auto;
}
.tours-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 14px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border);
}
.tours-sidebar-title {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--green);
    margin: 0;
}
.tours-clear-btn {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
}
.tours-clear-btn:hover { color: var(--green); text-decoration: underline; }

.tours-filter-block { margin-bottom: 22px; }
.tours-filter-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.tours-search-wrap { position: relative; }
.tours-search-wrap input[type="search"] {
    width: 100%;
    padding: 10px 36px 10px 12px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.87rem;
    background: #fff;
    box-sizing: border-box;
}
.tours-search-wrap input[type="search"]:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(15, 61, 32, .1);
}
.tours-search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}
.tours-filter-options { display: flex; flex-direction: column; gap: 6px; }
.tours-check {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.84rem;
    color: var(--text);
    cursor: pointer;
    padding: 4px 0;
    transition: color .2s;
}
.tours-check:hover { color: var(--green); }
.tours-check em { font-style: normal; color: var(--text-muted); font-size: 0.78rem; }
.tours-check input[type="checkbox"] {
    accent-color: var(--green);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin: 0;
}
.tours-check-extra { display: none; }
.tours-check-extra.tours-check-shown { display: flex; }
.tours-more-btn {
    background: none;
    border: none;
    padding: 6px 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green);
    cursor: pointer;
    text-align: left;
}
.tours-more-btn:hover { text-decoration: underline; }
.tours-apply-btn {
    width: 100%;
    padding: 12px 20px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: .5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background .25s;
}
.tours-apply-btn:hover { background: var(--green-hover); }

.tours-main { min-width: 0; }
.tours-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 12px;
}
.tours-count { font-size: 0.9rem; color: var(--text-muted); }
.tours-count strong { color: var(--green); font-weight: 700; }
.tours-sidebar-toggle {
    display: none;
    padding: 10px 18px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
}
.tours-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tours-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #fff;
    border: 1.5px solid var(--green);
    color: var(--green);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.tours-chip:hover { background: var(--green); color: #fff; }
.tours-chip span { font-size: 1rem; line-height: 1; opacity: .8; }

.tours-body .tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}
.tours-empty {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
    border-radius: 14px;
}
.tours-empty h3 { font-family: var(--serif); color: var(--green); margin: 0 0 10px; }
.tours-empty p { color: var(--text-muted); margin: 0; }
.tours-empty a { color: var(--green); font-weight: 600; }

.tours-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.tours-pagination .page-numbers {
    padding: 10px 16px;
    border-radius: 8px;
    border: 2px solid var(--green);
    color: var(--green);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all .3s;
    text-decoration: none;
}
.tours-pagination .page-numbers:hover,
.tours-pagination .page-numbers.current {
    background: var(--green);
    color: #fff;
}

@media (max-width: 900px) {
    .tours-body-inner { grid-template-columns: 1fr; }
    .tours-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        max-height: 100vh;
        z-index: 9999;
        border-radius: 0;
        transition: left .3s;
        box-shadow: 6px 0 32px rgba(0,0,0,.15);
    }
    .tours-sidebar.tours-sidebar-open { left: 0; }
    .tours-sidebar-toggle { display: inline-flex; align-items: center; gap: 6px; }
}

/* ---------- Contact page ---------- */
.page-hero-contact { background: linear-gradient(135deg, var(--green-footer, #0a2814), var(--green, #0f3d20)); }

.contact-body { background: #fafaf7; padding: 60px 24px 90px; }
.contact-body-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}
.contact-info-card {
    background: linear-gradient(135deg, var(--green-footer, #0a2814), var(--green, #0f3d20));
    color: #fff;
    padding: 36px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(15, 61, 32, .15);
}
.contact-info-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold-light, #dcb87a);
    font-weight: 700;
    margin-bottom: 6px;
}
.contact-info-title {
    font-family: var(--serif);
    font-size: 1.6rem;
    margin: 0 0 4px;
    color: #fff;
}
.contact-info-tagline {
    font-family: 'Parisienne', cursive;
    font-size: 1.15rem;
    color: var(--gold-light, #dcb87a);
    margin: 0 0 26px;
}
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9rem;
    line-height: 1.6;
}
.contact-info-list a { color: #fff; text-decoration: none; border-bottom: 1px dotted rgba(255,255,255,.4); }
.contact-info-list a:hover { color: var(--gold-light, #dcb87a); border-bottom-color: var(--gold-light, #dcb87a); }
.ci-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light, #dcb87a);
}
.ci-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--gold-light, #dcb87a);
    margin-bottom: 4px;
    text-transform: uppercase;
}
.contact-socials {
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.contact-social-links { display: flex; gap: 12px; margin-top: 10px; }
.contact-social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    text-decoration: none;
    border: none;
    transition: background .25s, color .25s, transform .25s;
}
.contact-social-links a:hover { background: var(--gold-light, #dcb87a); color: var(--green); transform: translateY(-2px); }

.contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,.06);
}
.contact-form-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--gold, #b08b3e);
    margin-bottom: 6px;
}
.contact-form-title {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--green);
    margin: 0 0 10px;
}
.contact-form-lead { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 0 0 28px; }
.contact-success { text-align: center; padding: 20px 0 10px; }
.contact-success-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #eaf3e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.contact-success h2 { font-family: var(--serif); color: var(--green); margin: 0 0 10px; }
.contact-success p { color: var(--text-muted); font-size: 1rem; margin: 0 0 24px; line-height: 1.6; }

.contact-map-section { padding: 0 24px 90px; }
.contact-map-inner { max-width: 1200px; margin: 0 auto; }

@media (max-width: 900px) {
    .contact-body-inner { grid-template-columns: 1fr; }
    .vines-form-row { grid-template-columns: 1fr; }
    .contact-form-card { padding: 28px 22px; }
    .vines-modal-panel { padding: 30px 22px 22px; }
}

/* ---------- About page ---------- */
.about-hero {
    padding: 100px 24px 84px;
    text-align: center;
    background: linear-gradient(135deg, #0a2814, #0f3d20);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(220, 184, 122, .12), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(220, 184, 122, .08), transparent 45%);
}
.about-hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.about-hero-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    line-height: 1.15;
    color: #fff;
    margin: 0 0 18px;
}
.about-hero-lead {
    color: rgba(255,255,255,.85);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}
.about-h2 {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: var(--green);
    line-height: 1.2;
    margin: 8px 0 20px;
}
.about-h2-center { text-align: center; }

.about-story { padding: 90px 24px; background: #fff; }
.about-story-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-story-text p { color: var(--text); line-height: 1.75; margin: 0 0 16px; font-size: 1rem; }
.about-story-img img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.12); }

.about-mvv { padding: 80px 24px; background: #fafaf7; }
.about-mvv-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.about-mvv-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 6px 30px rgba(0,0,0,.04);
    transition: transform .3s, box-shadow .3s;
}
.about-mvv-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,.08); }
.about-mvv-icon {
    width: 64px;
    height: 64px;
    background: #eaf3e6;
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.about-mvv-title {
    font-family: var(--serif);
    font-size: 1.35rem;
    color: var(--green);
    margin: 0 0 12px;
}
.about-mvv-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; margin: 0; }

.about-why { padding: 90px 24px; background: #fff; }
.about-why-inner { max-width: 1200px; margin: 0 auto; }
.about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.about-why-item {
    padding: 30px;
    background: #fafaf7;
    border-radius: 14px;
    border-left: 4px solid var(--green);
}
.about-why-num {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold, #b08b3e);
    margin-bottom: 10px;
}
.about-why-item h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--green);
    margin: 0 0 10px;
}
.about-why-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }
.about-why-stat {
    background: linear-gradient(135deg, var(--green), var(--green-footer, #0a2814));
    color: #fff;
    border-left: none;
    text-align: center;
}
.about-why-stat-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-light, #dcb87a);
    line-height: 1;
}
.about-why-stat-label {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 8px;
    font-weight: 600;
}

.about-stats {
    padding: 70px 24px;
    background: linear-gradient(135deg, var(--green-footer, #0a2814), var(--green, #0f3d20));
    color: #fff;
}
.about-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.about-stat-num {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-light, #dcb87a);
    line-height: 1;
    margin-bottom: 8px;
}
.about-stat-label { font-size: 0.85rem; color: rgba(255,255,255,.75); letter-spacing: .5px; }

.about-team { padding: 90px 24px; background: #fff; }
.about-team-inner { max-width: 1200px; margin: 0 auto; }
.about-team-lead {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 40px;
}
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.about-team-card {
    padding: 30px 24px;
    background: #fafaf7;
    border-radius: 14px;
    text-align: center;
    transition: transform .3s;
}
.about-team-card:hover { transform: translateY(-4px); }
.about-team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-footer, #0a2814));
    color: var(--gold-light, #dcb87a);
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    letter-spacing: 1px;
}
.about-team-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 4px;
}
.about-team-role {
    font-size: 0.75rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gold, #b08b3e);
    margin-bottom: 12px;
    font-weight: 600;
}
.about-team-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; margin: 0; }

.about-cta {
    padding: 90px 24px;
    background: linear-gradient(135deg, var(--green-footer, #0a2814), var(--green, #0f3d20));
    color: #fff;
    text-align: center;
}
.about-cta-inner { max-width: 720px; margin: 0 auto; }
.about-cta-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #fff;
    margin: 0 0 14px;
}
.about-cta-sub { color: rgba(255,255,255,.8); font-size: 1.05rem; margin: 0 0 30px; line-height: 1.6; }
.about-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-white {
    padding: 13px 32px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: .5px;
    transition: background .25s, color .25s;
}
.btn-outline-white:hover { background: #fff; color: var(--green); }

@media (max-width: 900px) {
    .about-story-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-story-img img { min-height: 300px; }
    .about-mvv-inner { grid-template-columns: 1fr; }
    .about-why-grid { grid-template-columns: 1fr 1fr; }
    .about-stats-inner { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
    .about-team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .about-why-grid { grid-template-columns: 1fr; }
    .about-team-grid { grid-template-columns: 1fr; }
    .about-stats-inner { grid-template-columns: 1fr 1fr; }
}

/* ---------- Travel Info page ---------- */
.travel-info-body { background: #fafaf7; padding: 60px 24px 90px; }
.travel-info-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}
.travel-info-nav {
    position: sticky;
    top: 100px;
}
.travel-info-nav-inner {
    background: #fff;
    padding: 24px 22px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.travel-info-nav-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.travel-info-nav ul { list-style: none; margin: 0; padding: 0; }
.travel-info-nav li { margin: 3px 0; }
.travel-info-nav a {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.87rem;
    transition: background .2s, color .2s;
}
.travel-info-nav a:hover { background: #eaf3e6; color: var(--green); }

.travel-info-article {
    background: #fff;
    padding: 50px 46px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.ti-section { margin-bottom: 50px; padding-top: 20px; scroll-margin-top: 100px; }
.ti-section:last-of-type { margin-bottom: 30px; }
.ti-h2 {
    font-family: var(--serif);
    font-size: 1.7rem;
    color: var(--green);
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}
.ti-h3 {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--green);
    margin: 24px 0 10px;
}
.ti-section p { color: var(--text); line-height: 1.75; margin: 0 0 14px; font-size: 0.98rem; }
.ti-list { padding-left: 22px; margin: 8px 0 16px; }
.ti-list li { color: var(--text); line-height: 1.75; margin-bottom: 8px; font-size: 0.95rem; }
.ti-callout {
    background: #eaf3e6;
    border-left: 4px solid var(--green);
    padding: 16px 20px;
    border-radius: 8px;
    margin: 18px 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text);
}
.ti-callout strong { color: var(--green); }
.ti-country-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}
.ti-country {
    padding: 18px 20px;
    background: #fafaf7;
    border-radius: 10px;
    border-left: 3px solid var(--gold, #b08b3e);
}
.ti-country h4 { font-family: var(--serif); font-size: 1.05rem; color: var(--green); margin: 0 0 8px; }
.ti-country p { font-size: 0.85rem; margin: 0; line-height: 1.55; }
.ti-country em { color: var(--green); font-style: normal; font-weight: 600; }

.ti-season-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.9rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.ti-season-table th {
    background: var(--green);
    color: #fff;
    padding: 12px;
    text-align: left;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.ti-season-table td { padding: 14px 12px; border-bottom: 1px solid var(--border); line-height: 1.55; }
.ti-season-table tr:last-child td { border-bottom: none; }
.ti-season-table strong { color: var(--green); }

.ti-faq { margin-top: 16px; }
.ti-faq details {
    background: #fafaf7;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 14px 18px;
    transition: background .25s;
}
.ti-faq details:hover { background: #f2f7f2; }
.ti-faq details[open] { background: #eaf3e6; }
.ti-faq summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--green);
    font-family: var(--serif);
    font-size: 1.02rem;
    padding: 4px 0;
    outline: none;
    list-style: none;
    position: relative;
    padding-right: 30px;
}
.ti-faq summary::-webkit-details-marker { display: none; }
.ti-faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--green);
    transition: transform .25s;
    line-height: 1;
    font-weight: 400;
}
.ti-faq details[open] summary::after { content: '−'; }
.ti-faq details p { margin: 10px 0 4px; color: var(--text); font-size: 0.92rem; line-height: 1.65; }

.ti-cta {
    background: linear-gradient(135deg, var(--green), var(--green-footer, #0a2814));
    color: #fff;
    padding: 30px 34px;
    border-radius: 12px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.ti-cta h3 { font-family: var(--serif); font-size: 1.35rem; margin: 0 0 4px; color: #fff; }
.ti-cta p { color: rgba(255,255,255,.75); margin: 0; }
.ti-cta .btn { background: var(--gold-light, #dcb87a); color: var(--green); }
.ti-cta .btn:hover { background: #fff; color: var(--green); }

@media (max-width: 900px) {
    .travel-info-inner { grid-template-columns: 1fr; }
    .travel-info-nav { position: static; }
    .travel-info-article { padding: 34px 22px; }
    .ti-country-grid { grid-template-columns: 1fr; }
    .ti-cta { flex-direction: column; text-align: center; }
}

/* ---------- Page hero (generic) ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--green-footer, #0a2814), var(--green, #0f3d20));
    color: #fff;
    padding: 90px 24px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-title {
    font-family: var(--serif);
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    line-height: 1.15;
    color: #fff;
    margin: 0;
}
