/* ============================================================================
   UPCOUNTRY — main stylesheet
   Identity: fresh botanical minimal — tea greens, cream, amber & mist.
   ========================================================================== */

:root {
    --tea:         #2F5D46;
    --tea-dark:    #234837;
    --leaf:        #7FA98A;
    --moss:        #4A6B55;
    --cream:       #F7F4EA;
    --cream-dark:  #EDE7D6;
    --amber:       #E8A33D;
    --amber-light: #F2BE6E;
    --slate:       #24312B;
    --slate-soft:  #5A675F;
    --white:       #FFFFFF;
    --line:        rgba(36, 49, 43, 0.14);
    --line-light:  rgba(247, 244, 234, 0.24);

    --font-display: 'Lora', Georgia, serif;
    --font-body:    'Mulish', 'Helvetica Neue', Arial, sans-serif;

    --radius: 8px;
    --shadow: 0 16px 36px rgba(36, 49, 43, 0.14);
    --container: 1200px;

    --header-h: 76px;
}

/* ------------------------------- Reset ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--slate);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--tea); text-decoration: none; }
a:hover { text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; margin: 0 0 0.6em; color: var(--slate); }
h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }
em { font-family: var(--font-display); font-style: italic; color: var(--tea); }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

::selection { background: var(--tea); color: var(--cream); }

/* ------------------------------ Utilities -------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 2000;
    background: var(--tea); color: var(--cream); padding: 12px 20px;
    font-weight: 700;
}
.skip-link:focus { left: 0; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ------------------------------- Buttons --------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
    letter-spacing: 0.02em; text-transform: uppercase;
    padding: 14px 26px; border-radius: var(--radius); border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
    text-decoration: none; line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
.btn--tea { background: var(--tea); color: var(--cream); }
.btn--tea:hover { background: var(--tea-dark); color: var(--cream); }
.btn--amber { background: var(--amber); color: var(--slate); }
.btn--amber:hover { background: var(--amber-light); color: var(--slate); }
.btn--ghost { border-color: var(--cream); color: var(--cream); background: transparent; }
.btn--ghost:hover { background: rgba(247, 244, 234, 0.12); color: var(--cream); }
.btn--ghost-dark { border-color: var(--slate); color: var(--slate); background: transparent; }
.btn--ghost-dark:hover { background: var(--slate); color: var(--cream); }
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--lg { padding: 17px 34px; font-size: 1rem; }
.btn--block { width: 100%; }

.link-arrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
    text-transform: uppercase; color: var(--tea);
}
.link-arrow:hover { color: var(--tea-dark); }
.link-arrow .icon { transition: transform 0.2s; }
.link-arrow:hover .icon { transform: translateX(4px); }

/* -------------------------------- Kickers -------------------------------- */
.kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 0.8rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--moss); margin: 0 0 14px;
}
.kicker::before { content: "❧"; color: var(--amber); font-size: 1.05rem; }
.kicker--amber { color: var(--amber); }
.kicker--amber::before { content: "❧"; color: var(--leaf); }
.kicker--light { color: var(--leaf); }
.kicker--light::before { color: var(--amber); }

/* ------------------------------- Header ---------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(247, 244, 234, 0.94); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(36, 49, 43, 0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
    width: 40px; height: 40px; border-radius: 50%; display: inline-flex;
    align-items: center; justify-content: center; background: var(--leaf); color: var(--cream);
}
.brand-word { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--slate); }
.brand-word em { font-style: italic; color: var(--tea); }
.brand--light .brand-word { color: var(--cream); }
.brand--light .brand-word em { color: var(--amber-light); }
.brand--light .brand-mark { background: var(--amber); color: var(--slate); }

.main-nav-list { display: flex; gap: 6px; }
.main-nav-list a {
    display: block; padding: 8px 14px; font-weight: 600; font-size: 0.98rem;
    color: var(--slate); border-radius: var(--radius); text-decoration: none;
}
.main-nav-list a:hover { color: var(--tea); background: var(--cream-dark); }
.main-nav-list .is-active a { color: var(--tea); background: var(--cream-dark); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
    display: none; align-items: center; gap: 8px; background: none; border: 0;
    font-weight: 700; color: var(--slate); font-size: 0.95rem; text-transform: uppercase;
}

/* ---------------------------- Mobile navigation -------------------------- */
.mnav {
    position: fixed; inset: 0; z-index: 300; background: var(--tea-dark);
    color: var(--cream); display: flex; flex-direction: column;
    padding: 26px 30px 34px; transform: translateX(100%); visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s;
}
.mnav.is-open { transform: translateX(0); visibility: visible; }
.mnav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 34px; }
.mnav-close { background: none; border: 0; color: var(--cream); display: inline-flex; }
.mnav-list li { border-bottom: 1px solid var(--line-light); }
.mnav-list a {
    display: flex; align-items: center; gap: 16px; padding: 18px 4px;
    color: var(--cream); font-family: var(--font-display); font-size: 1.45rem;
    text-decoration: none;
}
.mnav-list a:hover { color: var(--amber-light); }
.mnav-num { font-family: var(--font-body); font-size: 0.8rem; color: var(--amber); letter-spacing: 0.1em; }
.mnav-arrow { margin-left: auto; }
.mnav-list .is-active a { color: var(--amber-light); }
.mnav-foot { margin-top: auto; }
.mnav-tel { display: block; font-weight: 700; color: var(--cream); font-size: 1.15rem; margin-bottom: 4px; }
.mnav-mail { color: var(--leaf); margin-bottom: 18px; }
.mnav-cta { margin-bottom: 20px; }
.mnav-social { display: flex; gap: 14px; }
.mnav-social a { color: var(--leaf); display: inline-flex; }
.mnav-social a:hover { color: var(--amber-light); }

/* --------------------------------- Hero ---------------------------------- */
.hero { position: relative; color: var(--cream); padding: 90px 0 80px; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    will-change: transform;
}
.hero-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(35, 72, 55, 0.86) 0%, rgba(35, 72, 55, 0.55) 45%, rgba(35, 72, 55, 0.25) 100%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero-kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 0.82rem; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--amber-light); margin-bottom: 18px;
}
.hero-kicker::before { content: "❧"; }
.hero h1 { color: var(--cream); font-size: clamp(2.5rem, 5.4vw, 4.1rem); margin-bottom: 18px; }
.hero h1 em { color: var(--amber-light); }
.hero-sub { font-size: 1.15rem; color: rgba(247, 244, 234, 0.92); max-width: 34em; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Trip widget */
.trip-widget {
    background: rgba(247, 244, 234, 0.97); color: var(--slate);
    padding: 26px; border-radius: var(--radius); box-shadow: var(--shadow);
    border-top: 4px solid var(--amber);
}
.trip-widget-title {
    display: flex; align-items: center; gap: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.9rem;
    color: var(--tea); margin: 0 0 18px;
}
.trip-widget-grid { display: grid; gap: 14px; }
.trip-field label, .field label {
    display: block; font-weight: 700; font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; color: var(--slate-soft);
}
.trip-field select, .trip-field input {
    width: 100%; padding: 12px 14px; border: 1px solid var(--line);
    background: var(--white); border-radius: var(--radius); color: var(--slate);
}
.trip-widget-note {
    display: flex; align-items: center; gap: 8px; font-size: 0.85rem;
    color: var(--slate-soft); margin: 16px 0 0;
}

/* -------------------------------- Sections ------------------------------- */
.section { padding: 90px 0; }
.section--alt { background: var(--cream-dark); }
.section--tight { padding: 64px 0; }
.section--stat { padding: 0; margin-top: -40px; position: relative; z-index: 5; }
.section-head { margin-bottom: 46px; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-head--row h2 { margin-bottom: 0; }

/* -------------------------------- Stats ---------------------------------- */
.stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.stat {
    background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px 20px; text-align: center;
}
.stat b { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--tea); }
.stat-suffix { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--tea); }
.stat p { margin: 6px 0 0; font-size: 0.92rem; color: var(--slate-soft); }

/* ---------------------------- Category tiles ----------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cat-tile {
    position: relative; display: flex; flex-direction: column; gap: 6px;
    min-height: 260px; padding: 24px; border-radius: var(--radius); overflow: hidden;
    color: var(--cream); text-decoration: none; border: 1px solid var(--line);
}
.cat-tile::before {
    content: ""; position: absolute; inset: 0;
    background: var(--img) center/cover no-repeat;
    transition: transform 0.6s ease;
}
.cat-tile::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(35, 72, 55, 0.1) 0%, rgba(35, 72, 55, 0.86) 100%);
}
.cat-tile > * { position: relative; z-index: 2; }
.cat-tile:hover::before { transform: scale(1.06); }
.cat-tile-icon { color: var(--amber-light); margin-bottom: 4px; }
.cat-tile h3 { color: var(--cream); font-size: 1.4rem; margin-bottom: 2px; }
.cat-tile p { font-size: 0.9rem; color: rgba(247, 244, 234, 0.85); margin: 0; }
.cat-tile-link {
    margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--amber-light);
}

/* ------------------------------ Tour cards ------------------------------- */
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tours-grid--full { grid-template-columns: repeat(2, 1fr); }
.tour-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}
.tour-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.tour-card-media { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; }
.tour-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.tour-card:hover .tour-card-media img { transform: scale(1.05); }
.chip {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: rgba(36, 49, 43, 0.82); color: var(--cream);
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
    padding: 6px 12px; border-radius: 999px;
}
.tour-card-days {
    position: absolute; bottom: 14px; left: 14px; z-index: 2;
    background: var(--amber); color: var(--slate); font-weight: 700;
    font-size: 0.8rem; padding: 5px 12px; border-radius: 999px;
}
.tour-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.tour-card-price { font-weight: 700; color: var(--tea); font-size: 1.15rem; margin: 0 0 8px; }
.tour-card-price span { font-weight: 400; font-size: 0.85rem; color: var(--slate-soft); }
.tour-card-body h3 { margin-bottom: 8px; font-size: 1.4rem; }
.tour-card-body h3 a { color: var(--slate); }
.tour-card-body h3 a:hover { color: var(--tea); }
.tour-card-summary { font-size: 0.95rem; color: var(--slate-soft); flex: 1; }
.tour-card-meta { display: flex; flex-wrap: wrap; gap: 6px 16px; margin: 14px 0; font-size: 0.88rem; color: var(--slate-soft); }
.tour-card-meta span { display: inline-flex; align-items: center; gap: 6px; }
.tour-card-meta .icon { color: var(--amber); }
.tour-card-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* --------------------------- Destination rail ---------------------------- */
.dest-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dest-card {
    position: relative; display: block; border-radius: var(--radius); overflow: hidden;
    min-height: 320px; color: var(--cream); text-decoration: none; border: 1px solid var(--line);
}
.dest-card-img {
    position: absolute; inset: 0; background: var(--img) center/cover no-repeat;
    transition: transform 0.6s ease;
}
.dest-card:hover .dest-card-img { transform: scale(1.06); }
.dest-card::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(35, 72, 55, 0.86) 100%);
}
.dest-card-body { position: absolute; inset: auto 0 0 0; padding: 22px; z-index: 2; }
.dest-card-region {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.16em; color: var(--amber-light); margin: 0 0 4px;
}
.dest-card-body h3 { color: var(--cream); font-size: 1.3rem; margin-bottom: 4px; }
.dest-card-body p:last-child { margin: 0; font-size: 0.9rem; color: rgba(247, 244, 234, 0.85); }

/* ---------------------------- Experience band ---------------------------- */
.experience-band { background: var(--tea-dark); color: var(--cream); padding: 90px 0; }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.experience-img {
    min-height: 460px; background-size: cover; background-position: center;
    border-radius: var(--radius); box-shadow: var(--shadow);
}
.experience-copy h2 { color: var(--cream); font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.experience-copy h2 em { color: var(--amber-light); }
.experience-copy > p:not(.kicker) { color: rgba(247, 244, 234, 0.86); }
.experience-list { margin: 22px 0 30px; display: grid; gap: 12px; }
.experience-list li { display: flex; gap: 12px; align-items: flex-start; }
.experience-list .icon { color: var(--amber-light); flex-shrink: 0; margin-top: 4px; }

/* ----------------------------- Testimonials ------------------------------ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px; display: flex; flex-direction: column;
}
.testi-stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote {
    margin: 0 0 20px; font-family: var(--font-display); font-size: 1.08rem;
    line-height: 1.6; color: var(--slate);
}
.testi-card figcaption { margin-top: auto; border-top: 1px solid var(--line); padding-top: 16px; }
.testi-card figcaption b { display: block; }
.testi-card figcaption span { font-size: 0.88rem; color: var(--slate-soft); }

/* ------------------------------ Gallery grid ----------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid--home { grid-template-columns: repeat(6, 1fr); }
.gallery-grid--home .gallery-item:nth-child(1) { grid-column: span 3; }
.gallery-grid--home .gallery-item:nth-child(2) { grid-column: span 3; }
.gallery-grid--home .gallery-item:nth-child(3) { grid-column: span 2; }
.gallery-grid--home .gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-grid--home .gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-grid--home .gallery-item:nth-child(6) { grid-column: span 3; }
.gallery-item {
    position: relative; display: block; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4/3; cursor: pointer; background: var(--cream-dark);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-cap {
    position: absolute; inset: auto 0 0 0; padding: 14px; z-index: 2;
    background: linear-gradient(180deg, transparent, rgba(35, 72, 55, 0.82));
    color: var(--cream); font-size: 0.88rem; font-weight: 600;
}
.gallery-item figcaption {
    position: absolute; inset: auto 0 0 0; padding: 14px; z-index: 2;
    background: linear-gradient(180deg, transparent, rgba(35, 72, 55, 0.82));
    color: var(--cream); font-size: 0.88rem; font-weight: 600;
}

/* Gallery filters */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.gallery-filter {
    background: none; border: 1px solid var(--line); border-radius: 999px;
    padding: 9px 18px; font-weight: 700; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate-soft);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.gallery-filter:hover { border-color: var(--tea); color: var(--tea); }
.gallery-filter.is-active { background: var(--tea); border-color: var(--tea); color: var(--cream); }

/* -------------------------------- CTA band ------------------------------- */
.cta-band { background: var(--tea); color: var(--cream); padding: 80px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: var(--cream); font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 8px; }
.cta-band h2 em { color: var(--amber-light); }
.cta-band p:not(.kicker) { color: rgba(247, 244, 234, 0.88); max-width: 36em; margin: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ------------------------------ Quote band ------------------------------- */
.quote-band { background: var(--tea-dark); color: var(--cream); padding: 64px 0; text-align: center; }
.quote-band-inner { max-width: 780px; }
.quote-mark {
    font-family: var(--font-display); font-size: 5rem; line-height: 0.4;
    color: var(--amber); margin: 0 0 18px;
}
.quote-band blockquote {
    margin: 0 0 16px; font-family: var(--font-display); font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.35;
}
.quote-by { color: var(--leaf); font-size: 0.92rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ------------------------------ Newsletter ------------------------------- */
.newsletter { background: var(--cream-dark); padding: 70px 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.newsletter-title { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.newsletter-title em { color: var(--tea); }
.newsletter-text { color: var(--slate-soft); margin: 0; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.input {
    width: 100%; padding: 14px 16px; border: 1px solid var(--line);
    background: var(--white); border-radius: var(--radius); color: var(--slate);
}
.field-error { color: #B3402E; font-size: 0.85rem; margin: 6px 0 0; min-height: 1.2em; grid-column: 1 / -1; }
.form-note { font-size: 0.85rem; color: var(--slate-soft); margin: 10px 0 0; grid-column: 1 / -1; display: flex; align-items: center; gap: 8px; }
.form-note .icon { color: var(--amber); }

/* -------------------------------- Footer --------------------------------- */
.footer { background: var(--tea-dark); color: var(--cream); padding: 76px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 56px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-about { font-size: 0.95rem; color: rgba(247, 244, 234, 0.75); max-width: 30em; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    display: inline-flex; padding: 9px; border: 1px solid var(--line-light);
    border-radius: 50%; color: var(--cream);
}
.footer-social a:hover { color: var(--amber-light); border-color: var(--amber-light); }
.footer-heading {
    font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.16em; color: var(--amber);
    margin: 0 0 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(247, 244, 234, 0.78); font-size: 0.95rem; }
.footer-links a:hover { color: var(--cream); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.95rem; }
.footer-contact .icon { color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: rgba(247, 244, 234, 0.85); }
.footer-contact address { font-style: normal; color: rgba(247, 244, 234, 0.85); }
.footer-cta { margin-top: 18px; color: var(--amber-light); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    border-top: 1px solid var(--line-light); padding-top: 22px;
    font-size: 0.88rem; color: rgba(247, 244, 234, 0.6); flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(247, 244, 234, 0.6); }
.footer-legal a:hover { color: var(--cream); }
.footer-disclosure { margin: 26px 0 0; font-size: 0.82rem; color: rgba(247, 244, 234, 0.5); }
.footer-disclosure a { color: var(--amber-light); }

/* ------------------------------- Page hero ------------------------------- */
.page-hero {
    position: relative; color: var(--cream); padding: 70px 0 76px; overflow: hidden;
}
.page-hero--short { padding: 54px 0 60px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; will-change: transform; }
.page-hero-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(35, 72, 55, 0.87) 0%, rgba(35, 72, 55, 0.55) 60%, rgba(35, 72, 55, 0.25) 100%);
}
.page-hero .container { position: relative; }
.breadcrumbs { display: flex; gap: 10px; align-items: center; font-size: 0.9rem; margin-bottom: 26px; }
.breadcrumbs a { color: rgba(247, 244, 234, 0.85); }
.breadcrumbs a:hover { color: var(--cream); }
.breadcrumbs .sep { color: var(--amber-light); }
.breadcrumbs span:last-child { color: var(--amber-light); }
.breadcrumbs--light { position: relative; z-index: 2; }
.hero-entrance { max-width: 760px; }
.page-hero h1 { color: var(--cream); font-size: clamp(2.3rem, 4.6vw, 3.6rem); margin-bottom: 16px; }
.page-hero h1 em { color: var(--amber-light); }
.hero-sub { color: rgba(247, 244, 234, 0.92); font-size: 1.1rem; max-width: 40em; margin: 0; }

/* ------------------------------- Filter bar ------------------------------ */
.filter-bar {
    display: flex; align-items: flex-end; gap: 20px; flex-wrap: wrap;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 20px 24px; margin-bottom: 40px;
}
.filter-group label {
    display: block; font-weight: 700; font-size: 0.78rem;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate-soft); margin-bottom: 6px;
}
.filter-group select {
    padding: 11px 14px; border: 1px solid var(--line); background: var(--cream);
    border-radius: var(--radius); color: var(--slate); min-width: 180px;
}
.filter-clear {
    background: none; border: 0; color: var(--tea); font-weight: 700;
    font-size: 0.88rem; text-decoration: underline; padding: 0;
}
.filter-count { margin: 10px 0 0; font-size: 0.92rem; color: var(--slate-soft); }
.filter-empty { display: none; text-align: center; padding: 60px 20px; }
.filter-empty.is-visible { display: block; }

/* ------------------------------ Tour details ----------------------------- */
.detail-hero { position: relative; color: var(--cream); padding: 60px 0 70px; overflow: hidden; }
.detail-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.detail-hero-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(35, 72, 55, 0.9) 0%, rgba(35, 72, 55, 0.6) 55%, rgba(35, 72, 55, 0.25) 100%);
}
.detail-hero-inner { position: relative; }
.detail-hero-kicker {
    font-weight: 700; font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--amber-light); margin: 0 0 12px;
}
.detail-hero h1 { color: var(--cream); font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin-bottom: 12px; }
.detail-hero-sub { color: rgba(247, 244, 234, 0.92); max-width: 44em; font-size: 1.08rem; }
.detail-hero-meta { display: flex; gap: 10px 26px; flex-wrap: wrap; margin-top: 22px; }
.detail-hero-meta span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.detail-hero-meta .icon { color: var(--amber-light); }

.detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 50px; align-items: start; }
.detail-main { min-width: 0; }
.prose h2, .highlights h2, .itinerary h2, .inclusions h2 {
    font-size: 1.6rem; margin: 0 0 18px; padding-bottom: 10px;
    border-bottom: 3px solid var(--leaf);
}
.highlights, .itinerary, .inclusions { margin-top: 46px; }
.highlights ul { display: grid; gap: 12px; }
.highlights li { display: flex; gap: 12px; align-items: flex-start; }
.highlights li .icon { color: var(--tea); flex-shrink: 0; margin-top: 4px; }
.itinerary-list { display: grid; gap: 0; }
.itinerary-list li {
    display: grid; grid-template-columns: 110px 1fr; gap: 20px;
    padding: 20px 0; border-bottom: 1px dashed var(--line);
}
.itinerary-day {
    font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--tea); padding-top: 2px;
}
.itinerary-list h3 { font-size: 1.15rem; margin-bottom: 6px; }
.itinerary-list p { margin: 0; color: var(--slate-soft); }
.inclusions { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.included-list li, .excluded-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.included-list .icon { color: var(--tea); flex-shrink: 0; margin-top: 4px; }
.excluded-list .icon { color: var(--slate-soft); flex-shrink: 0; margin-top: 4px; }
.dest-note {
    display: flex; gap: 14px; align-items: flex-start; margin-top: 46px;
    background: var(--cream-dark); border-left: 4px solid var(--amber);
    padding: 18px 20px; border-radius: var(--radius);
}
.dest-note .icon { color: var(--tea); flex-shrink: 0; margin-top: 4px; }
.dest-note p { margin: 0; color: var(--slate-soft); }

/* Side card */
.detail-side { position: sticky; top: calc(var(--header-h) + 24px); }
.side-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow);
}
.side-card-label {
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.14em; color: var(--slate-soft); margin: 0 0 6px;
}
.side-card-price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--tea); margin: 0; }
.side-card-price span { font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; color: var(--slate-soft); }
.side-card-old { color: var(--slate-soft); text-decoration: line-through; margin: 2px 0 18px; }
.side-card .btn { margin-bottom: 10px; }
.side-card-points { margin-top: 16px; border-top: 1px solid var(--line); padding-top: 16px; display: grid; gap: 8px; }
.side-card-points li { display: flex; gap: 8px; align-items: flex-start; font-size: 0.9rem; color: var(--slate-soft); }
.side-card-points .icon { color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.side-help {
    margin-top: 18px; background: var(--cream-dark); border-radius: var(--radius);
    padding: 18px 20px; font-size: 0.92rem;
}
.side-help b { color: var(--slate); }
.side-help p:last-child { margin: 6px 0 14px; color: var(--slate-soft); }
.side-help .btn { margin-top: 4px; }

/* ------------------------------ Destinations ----------------------------- */
.dest-list { display: grid; gap: 64px; }
.dest-feature {
    display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
}
.dest-feature:nth-child(even) .dest-feature-img { order: 2; }
.dest-feature-img {
    min-height: 420px; background-size: cover; background-position: center;
    border-radius: var(--radius); box-shadow: var(--shadow);
}
.dest-feature-region {
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.16em; color: var(--tea); margin: 0 0 8px;
}
.dest-feature-tag { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--tea); }
.dest-feature-body > p:last-of-type { color: var(--slate-soft); }
.dest-feature-tours { margin-top: 18px; border-top: 1px dashed var(--line); padding-top: 16px; }
.dest-feature-label {
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--slate-soft); margin-bottom: 8px;
}
.dest-feature-tours a {
    display: flex; align-items: center; gap: 8px; font-weight: 600;
    color: var(--slate); padding: 8px 0; border-bottom: 1px solid var(--line);
}
.dest-feature-tours a:hover { color: var(--tea); }
.dest-feature-tours .icon { margin-left: auto; }

/* ------------------------------- Booking --------------------------------- */
.booking-layout { display: grid; grid-template-columns: 1fr 380px; gap: 50px; align-items: start; }
.booking-form {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 36px;
}
.booking-section { border: 0; margin: 0 0 30px; padding: 0; }
.booking-section legend {
    display: flex; align-items: center; gap: 12px; width: 100%;
    font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
    color: var(--slate); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 3px solid var(--leaf);
}
.booking-num {
    font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
    background: var(--tea); color: var(--cream); padding: 5px 9px;
    border-radius: 999px; letter-spacing: 0.08em;
}
.booking-optional { font-family: var(--font-body); font-size: 0.85rem; font-weight: 400; color: var(--slate-soft); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.field label {
    display: block; font-weight: 700; font-size: 0.82rem;
    text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-soft); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
    width: 100%; padding: 13px 15px; border: 1px solid var(--line);
    background: var(--cream); border-radius: var(--radius); color: var(--slate);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus,
.trip-field select:focus, .trip-field input:focus, .input:focus {
    outline: 2px solid var(--leaf); outline-offset: 1px; border-color: var(--leaf);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #B3402E; }
.field-error { color: #B3402E; font-size: 0.85rem; margin: 6px 0 0; min-height: 1.1em; }

/* Extras */
.extras { display: grid; gap: 10px; }
.extra-check {
    display: flex; align-items: center; gap: 14px; padding: 14px 16px;
    border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer;
    background: var(--cream); transition: border-color 0.2s, background 0.2s;
}
.extra-check:hover { border-color: var(--leaf); background: var(--white); }
.extra-check input { position: absolute; opacity: 0; }
.extra-box {
    width: 24px; height: 24px; border: 2px solid var(--slate-soft); border-radius: var(--radius);
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    color: transparent; transition: all 0.2s;
}
.extra-check input:checked + .extra-box { background: var(--tea); border-color: var(--tea); color: var(--cream); }
.extra-check input:focus-visible + .extra-box { outline: 2px solid var(--leaf); outline-offset: 2px; }
.extra-text { display: grid; flex: 1; }
.extra-text b { font-size: 0.98rem; }
.extra-text small { color: var(--slate-soft); font-size: 0.85rem; }
.extra-cost { font-weight: 700; color: var(--tea); }

.booking-form-foot {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 24px;
}

/* Booking summary */
.booking-summary { position: sticky; top: calc(var(--header-h) + 24px); }
.summary-lines { display: grid; gap: 12px; margin: 18px 0; }
.summary-line { display: flex; justify-content: space-between; gap: 16px; font-size: 0.95rem; }
.summary-line b { text-align: right; }
.summary-line--extras { color: var(--slate-soft); }
.summary-total {
    display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
    border-top: 3px solid var(--amber); padding-top: 16px; margin-top: 4px;
}
.summary-total span { font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.9rem; }
.summary-total b { font-family: var(--font-display); font-size: 2rem; color: var(--tea); }
.summary-note { font-size: 0.85rem; color: var(--slate-soft); margin: 14px 0 0; }

/* ------------------------------- Contact --------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 50px; align-items: start; }
.contact-side { display: grid; gap: 18px; position: sticky; top: calc(var(--header-h) + 24px); }
.contact-panel {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px;
}
.contact-panel h3 { font-size: 1.2rem; margin-bottom: 16px; }
.contact-panel .footer-contact { display: grid; gap: 0; }
.contact-panel--amber { background: var(--cream-dark); border-top: 4px solid var(--amber); }
.contact-note { font-size: 0.9rem; color: var(--slate-soft); margin: 14px 0 0; }

/* ------------------------------- FAQ ------------------------------------- */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q {
    display: flex; justify-content: space-between; align-items: center; gap: 18px;
    width: 100%; text-align: left; padding: 20px 24px; background: none; border: 0;
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--slate);
}
.faq-q:hover { color: var(--tea); }
.faq-icon { transition: transform 0.3s; color: var(--tea); flex-shrink: 0; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { margin: 0; padding: 0 24px 22px; color: var(--slate-soft); }
.faq-cta {
    margin-top: 40px; text-align: center; background: var(--cream-dark);
    border-radius: var(--radius); padding: 40px 30px; border-top: 4px solid var(--amber);
}
.faq-cta h2 { margin-bottom: 8px; }
.faq-cta p { color: var(--slate-soft); }
.faq-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ------------------------------ Thank you -------------------------------- */
.thanks { padding: 90px 0; }
.thanks-card {
    text-align: center; background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 60px 40px; box-shadow: var(--shadow);
}
.thanks-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 92px; height: 92px; border-radius: 50%;
    background: var(--cream-dark); color: var(--tea); margin-bottom: 22px;
}
.thanks-card h1 { font-size: clamp(2rem, 4vw, 3rem); }
.thanks-name { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--tea); }
.thanks-card > p:not(.thanks-name):not(.form-note):not(.kicker) { color: var(--slate-soft); max-width: 34em; margin: 0 auto 10px; }
.thanks-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 26px 0 14px; }
.thanks-card .form-note { grid-column: auto; justify-content: center; }

/* ------------------------------- Lightbox -------------------------------- */
.lightbox {
    position: fixed; inset: 0; z-index: 400; background: rgba(35, 72, 55, 0.95);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s;
    padding: 40px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-figure { max-width: 1000px; text-align: center; }
.lightbox-figure img { max-height: 76vh; width: auto; max-width: 100%; margin: 0 auto; border-radius: var(--radius); }
.lightbox-figure figcaption { color: var(--cream); margin-top: 14px; font-family: var(--font-display); font-style: italic; font-size: 1.05rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute; background: none; border: 0; color: var(--cream); display: inline-flex;
}
.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%) rotate(180deg); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--amber-light); }
.lightbox-count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(247, 244, 234, 0.7); font-size: 0.9rem; margin: 0; }

/* ------------------------------ cta-strip -------------------------------- */
.cta-strip { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-strip h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 4px; }
.cta-strip p { color: var(--slate-soft); margin: 0; }
