:root {
    --ink: #221b12;
    --ink-soft: #4a4136;
    --sand: #f3ede2;
    --paper: #fbf8f2;
    --shuka: #c42b24;
    --shuka-deep: #9c1f1a;
    --forest: #1e5a3c;
    --gold: #d9a03c;
    --display: "Bricolage Grotesque", serif;
    --body: "Montserrat", sans-serif;
    --radius: 18px;
    --shadow: 0 18px 45px rgba(34, 27, 18, 0.12);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    background: var(--sand);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

::selection {
    background: var(--shuka);
    color: var(--paper);
}

main {
    animation: pageIn 0.7s var(--ease) both;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    transition-delay: var(--d, 0s);
}

[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

.shuka-strip {
    height: 10px;
    background: repeating-linear-gradient(
        90deg,
        var(--shuka) 0 26px,
        var(--ink) 26px 34px,
        var(--shuka) 34px 60px,
        var(--sand) 60px 66px
    );
}

.container {
    width: min(1180px, 92vw);
    margin-inline: auto;
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--shuka);
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--shuka) 0 8px, var(--ink) 8px 11px);
}

.eyebrow.on-dark {
    color: var(--gold);
}

.h-display {
    font-family: var(--display);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.h-xl {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.h-lg {
    font-size: clamp(2rem, 4.2vw, 3.2rem);
}

.h-md {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.lead {
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    max-width: 56ch;
}

.lead.on-dark {
    color: rgba(251, 248, 242, 0.85);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 1.9rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s var(--ease), color 0.35s var(--ease);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn i {
    transition: transform 0.35s var(--ease);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--shuka);
    color: var(--paper);
    box-shadow: 0 12px 30px rgba(196, 43, 36, 0.35);
}

.btn-primary:hover {
    background: var(--shuka-deep);
}

.btn-ghost {
    background: transparent;
    color: var(--paper);
    border-color: rgba(251, 248, 242, 0.55);
}

.btn-ghost:hover {
    background: rgba(251, 248, 242, 0.14);
    border-color: var(--paper);
}

.btn-dark {
    background: var(--ink);
    color: var(--paper);
}

.btn-dark:hover {
    background: var(--forest);
}

.btn-sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
}

/* ---------- Navbar ---------- */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    padding: 1.4rem 0;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}

.nav.scrolled {
    background: rgba(251, 248, 242, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(34, 27, 18, 0.1);
    padding: 0.8rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
    color: var(--paper);
    transition: color 0.4s var(--ease);
}

.nav-logo span {
    color: var(--gold);
}

.nav.scrolled .nav-logo {
    color: var(--ink);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    position: relative;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(251, 248, 242, 0.92);
    padding-bottom: 4px;
    transition: color 0.3s var(--ease);
}

.nav.scrolled .nav-links a {
    color: var(--ink-soft);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
    background: repeating-linear-gradient(90deg, var(--shuka) 0 9px, var(--ink) 9px 12px);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-burger {
    display: none;
    background: none;
    border: 0;
    font-size: 1.5rem;
    color: var(--paper);
    transition: color 0.4s var(--ease);
}

.nav.scrolled .nav-burger {
    color: var(--ink);
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 55;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8vw;
    gap: 1.4rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
}

.mobile-menu.open {
    transform: none;
}

.mobile-menu a {
    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--paper);
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.3s;
}

.mobile-menu.open a {
    opacity: 1;
    transform: none;
}

.mobile-menu.open a:nth-child(1) {
    transition-delay: 0.12s;
}

.mobile-menu.open a:nth-child(2) {
    transition-delay: 0.19s;
}

.mobile-menu.open a:nth-child(3) {
    transition-delay: 0.26s;
}

.mobile-menu.open a:nth-child(4) {
    transition-delay: 0.33s;
}

.mobile-menu.open a:nth-child(5) {
    transition-delay: 0.4s;
}

.mobile-menu a.active,
.mobile-menu a:hover {
    color: var(--gold);
}

/* ---------- Hero (home) ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--paper);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -12% 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
    rgba(34, 27, 18, 0.55) 0%,
    rgba(34, 27, 18, 0.25) 45%,
    rgba(34, 27, 18, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 1.4rem;
    animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.hero h1 {
    font-size: clamp(3rem, 8.5vw, 6.4rem);
    max-width: 14ch;
    font-family: var(--display);
    font-weight: 800;
    line-height: 1.05;
}

.hero h1 .w {
    display: inline-block;
    margin-right: 0.28em;
    animation: wordIn 0.8s var(--ease) both;
}

.hero h1 .w:nth-child(1) {
    animation-delay: 0.35s;
}

.hero h1 .w:nth-child(2) {
    animation-delay: 0.47s;
}

.hero h1 .w:nth-child(3) {
    animation-delay: 0.59s;
}

.hero h1 .w:nth-child(4) {
    animation-delay: 0.71s;
}

.hero h1 .w:nth-child(5) {
    animation-delay: 0.83s;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

@keyframes wordIn {
    from {
        opacity: 0;
        transform: translateY(46px) rotate(2deg);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.hero p {
    margin: 1.6rem 0 2.4rem;
    max-width: 52ch;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(251, 248, 242, 0.88);
    animation: fadeUp 0.8s var(--ease) 1.05s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s var(--ease) 1.25s both;
}

.scroll-cue {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    z-index: 2;
    color: rgba(251, 248, 242, 0.8);
    font-size: 1.4rem;
    animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 12px);
    }
}

/* ---------- Marquee ---------- */
.marquee {
    background: var(--ink);
    color: var(--paper);
    overflow: hidden;
    padding: 1.1rem 0;
    border-block: 4px solid var(--shuka);
}

.marquee-track {
    display: flex;
    gap: 3.5rem;
    width: max-content;
    animation: marquee 26s linear infinite;
}

.marquee-track span {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 3.5rem;
}

.marquee-track i {
    color: var(--gold);
    font-size: 0.7rem;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

/* ---------- Cards ---------- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--paper);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.card.hide {
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
}

.card:hover .card-media img {
    transform: scale(1.08);
}

.card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(34, 27, 18, 0.78);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.card-body {
    padding: 1.5rem 1.5rem 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex: 1;
}

.card-body h3 {
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 700;
}

.card-body p {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.card-body p i {
    color: var(--gold);
    margin-right: 8px;
}

.card-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.9rem;
    border-top: 1px dashed rgba(34, 27, 18, 0.18);
    gap: 0.6rem;
    flex-wrap: wrap;
}

.price {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--forest);
}

.price small {
    font-family: var(--body);
    font-weight: 500;
    color: var(--ink-soft);
    font-size: 0.75rem;
}

.card-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--shuka);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.card-link.green {
    color: var(--forest);
}

.card-link i {
    transition: transform 0.3s var(--ease);
}

.card-link:hover i {
    transform: translateX(4px);
}

/* ---------- Stats ---------- */
.stats {
    background: var(--forest);
    color: var(--paper);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-value {
    font-family: var(--display);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(251, 248, 242, 0.75);
    margin-top: 0.3rem;
}

/* ---------- Section headers ---------- */
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* ---------- Testimonials ---------- */
.testimonial {
    background: var(--paper);
    border-radius: var(--radius);
    padding: clamp(2rem, 4vw, 3.4rem);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 8px;
    background: repeating-linear-gradient(180deg, var(--shuka) 0 20px, var(--ink) 20px 26px);
}

.t-slide {
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.t-slide.out {
    opacity: 0;
    transform: translateY(-16px);
}

.testimonial blockquote {
    font-family: var(--display);
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    font-weight: 600;
    line-height: 1.4;
}

.testimonial figcaption {
    margin-top: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.testimonial figcaption i {
    font-size: 1.8rem;
    color: var(--forest);
}

.testimonial figcaption strong {
    color: var(--ink);
}

.dot-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.6rem;
}

.dot-row button {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    background: rgba(34, 27, 18, 0.2);
    transition: background 0.3s, transform 0.3s;
}

.dot-row button.on {
    background: var(--shuka);
    transform: scale(1.25);
}

/* ---------- CTA band ---------- */
.cta-band {
    position: relative;
    color: var(--paper);
    text-align: center;
    padding: clamp(4.5rem, 9vw, 7.5rem) 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(34, 27, 18, 0.72);
}

.cta-band .container {
    position: relative;
    z-index: 2;
}

.cta-band p {
    margin: 1.4rem auto 2.2rem;
    max-width: 48ch;
    color: rgba(251, 248, 242, 0.85);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    position: relative;
    padding: clamp(6.5rem, 10vw, 8rem) 0 clamp(2.2rem, 3.5vw, 3rem);
    color: var(--paper);
    background: var(--ink);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.42;
    animation: heroZoom 8s var(--ease) both;
}

@keyframes heroZoom {
    from {
        transform: scale(1.12);
    }
    to {
        transform: scale(1);
    }
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

/* ---------- Filters ---------- */
.filter-row {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 2.6rem;
}

.filter-row button {
    border: 2px solid rgba(34, 27, 18, 0.18);
    background: transparent;
    color: var(--ink-soft);
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.3s var(--ease);
}

.filter-row button:hover {
    border-color: var(--ink);
    color: var(--ink);
}

.filter-row button.on {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--gold);
}

/* ---------- Itinerary accordion ---------- */
.itinerary {
    border-top: 1px dashed rgba(34, 27, 18, 0.18);
    margin-top: 0.4rem;
}

.itinerary-toggle {
    width: 100%;
    background: none;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--forest);
    padding: 0.9rem 0 0.4rem;
}

.itinerary-toggle i {
    transition: transform 0.3s var(--ease);
}

.itinerary-toggle.open i {
    transform: rotate(180deg);
}

.itinerary-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}

.itinerary ul {
    list-style: none;
    padding: 0.4rem 0 0.6rem;
    display: grid;
    gap: 0.55rem;
}

.itinerary li {
    display: flex;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.itinerary li i {
    color: var(--gold);
    margin-top: 0.25rem;
}

/* ---------- Values / About ---------- */
.value-card {
    background: var(--paper);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.4s var(--ease);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-6px);
}

.value-card h3 {
    font-family: var(--display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    color: var(--paper);
    background: var(--forest);
    margin-bottom: 1.2rem;
}

.value-card:nth-child(2n) .value-icon {
    background: var(--shuka);
}

.value-card:nth-child(3n) .value-icon {
    background: var(--gold);
    color: var(--ink);
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.split-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
}

.split-img:hover img {
    transform: scale(1.05);
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(2rem, 5vw, 4rem);
}

.contact-card {
    background: var(--paper);
    border-radius: var(--radius);
    padding: clamp(1.6rem, 3vw, 2.4rem);
    box-shadow: var(--shadow);
}

.field {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
}

.field label {
    font-weight: 700;
    font-size: 0.85rem;
}

.field input, .field select, .field textarea {
    font-family: inherit;
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 2px solid rgba(34, 27, 18, 0.15);
    background: var(--sand);
    transition: border-color 0.3s;
}

.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--forest);
}

.info-line {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.3rem;
}

.info-line i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: var(--gold);
    flex-shrink: 0;
}

.info-line span {
    color: var(--ink-soft);
}

.map-frame {
    border: 0;
    width: 100%;
    height: 260px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.success-note {
    display: none;
    gap: 0.8rem;
    align-items: center;
    background: rgba(30, 90, 60, 0.1);
    border: 2px solid var(--forest);
    color: var(--forest);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    font-weight: 600;
}

.success-note.show {
    display: flex;
    animation: fadeUp 0.5s var(--ease) both;
}

.success-note i {
    font-size: 1.4rem;
}

.wa-float {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 70;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45);
    animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45);
    }
    50% {
        box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0.12);
    }
}

/* ---------- Footer ---------- */
.footer {
    background: var(--ink);
    color: rgba(251, 248, 242, 0.78);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer h4 {
    font-family: var(--display);
    color: var(--paper);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.footer p {
    font-size: 0.93rem;
    max-width: 34ch;
}

.footer ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    font-size: 0.93rem;
}

.footer ul i {
    color: var(--gold);
    margin-right: 8px;
}

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

.footer-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(251, 248, 242, 0.1);
    transition: background 0.3s, transform 0.3s;
}

.footer-social a:hover {
    background: var(--shuka);
    color: var(--paper);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(251, 248, 242, 0.14);
    padding-top: 1.6rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

/* ---------- Custom trip banner ---------- */
.custom-banner {
    margin-top: 3rem;
    text-align: center;
}

.custom-banner p {
    font-weight: 600;
}

.custom-banner p i {
    color: var(--shuka);
    margin-right: 10px;
}

.custom-banner .btn {
    margin-top: 1.2rem;
}

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

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

    .split, .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-band {
        background-attachment: scroll;
    }
}

@media (max-width: 680px) {
    .nav-links {
        display: none;
    }

    .nav-burger {
        display: block;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* ============================================================
   How it works — step cards  (was missing → section rendered unstyled)
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.step-card {
    position: relative;
    background: var(--paper);
    border: 1px solid rgba(34, 27, 18, 0.08);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem 2rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(34, 27, 18, 0.18);
}

.step-card .step-num {
    position: absolute;
    top: 0.6rem;
    right: 1.2rem;
    font-family: var(--display);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(196, 43, 36, 0.10);
    pointer-events: none;
}

.step-card .step-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest);
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.step-card h3 {
    font-family: var(--display);
    font-size: 1.3rem;
    margin: 0 0 0.5rem;
    color: var(--ink);
}

.step-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* ============================================================
   Why travel with us — feature grid
   ============================================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: 2.4rem;
}

.feature-card {
    background: var(--paper);
    border: 1px solid rgba(34, 27, 18, 0.08);
    border-radius: var(--radius);
    padding: 1.9rem 1.6rem;
    transition: transform 0.4s var(--ease), border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.feature-card .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 90, 60, 0.10);
    color: var(--forest);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: var(--display);
    font-size: 1.15rem;
    margin: 0 0 0.45rem;
}

.feature-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.6;
}

/* ============================================================
   Guests from around the world — markets band
   ============================================================ */
.markets {
    background: var(--forest);
    color: #fff;
    text-align: center;
}

.markets .eyebrow {
    color: var(--gold);
}

.markets h2 {
    color: #fff;
}

.markets p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 640px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.market-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.8rem;
}

.market-chips span {
    padding: 0.6rem 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.06);
}

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

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

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

/* ============================================================
   Single view pages — package & destination detail
   ============================================================ */
.crumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.crumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.crumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.crumb i {
    font-size: 0.7rem;
    opacity: 0.7;
}

.h-md {
    font-size: clamp(1.6rem, 3.4vw, 2.2rem);
    line-height: 1.1;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.6rem;
    align-items: start;
}

.detail-summary {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--ink-soft);
}

.detail-sub {
    font-family: var(--display);
    font-size: 1.25rem;
    margin: 2rem 0 0.9rem;
}

.tick-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.tick-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.tick-list li i {
    color: var(--forest);
    margin-top: 0.2rem;
}

.detail-side {
    position: sticky;
    top: 100px;
}

.price-card {
    background: var(--paper);
    border: 1px solid rgba(34, 27, 18, 0.10);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow);
}

.price-card .pc-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted, #8a8272);
    font-weight: 700;
}

.price-card .pc-price {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--shuka);
    margin: 0.2rem 0 1rem;
}

.price-card .pc-price small {
    font-size: 0.85rem;
    color: var(--ink-soft);
    font-weight: 600;
}

.price-card .pc-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    display: grid;
    gap: 0.6rem;
}

.price-card .pc-meta li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.price-card .pc-meta li i {
    color: var(--forest);
    width: 18px;
    text-align: center;
}

.price-card .btn {
    width: 100%;
    justify-content: center;
}

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

    .detail-side {
        position: static;
    }
}

/* Card media/title as links (view pages) */
a.card-media {
    display: block;
}

.card-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.card-body h3 a:hover {
    color: var(--shuka);
}

/* Booking success flash banner */
.booking-flash {
    display: flex;
    gap: .9rem;
    align-items: center;
    background: #e8f3ec;
    border: 1px solid #bfe0cd;
    color: #1e5a3c;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem
}

.booking-flash i {
    font-size: 1.6rem
}

.booking-flash strong {
    display: block;
    font-size: 1rem
}

.booking-flash span {
    font-size: .88rem;
    opacity: .9
}
