/* ─── CSS Variables ────────────────────────────────────────────── */
:root {
    --sand:    #f5ede0;
    --cream:   #faf7f2;
    --terracotta: #c9623f;
    --terra-dark: #a84e31;
    --deep:    #1a1512;
    --mid:     #3d2f26;
    --muted:   #8c7b6e;
    --gold:    #d4a853;
    --white:   #ffffff;
    --red:   #ac3636;
    --green: #3a6b35;
    --nav-h:   80px;
    --radius:  16px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;
}

/* ─── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--deep);
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ═══════════════════════════════════════════════════════════════
    HEADER / NAVBAR
═══════════════════════════════════════════════════════════════ */
#navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    height: var(--nav-h);
    display: flex; align-items: center;
    padding: 0 2rem;
    transition: background .4s ease, box-shadow .4s ease;
}
#navbar.scrolled {
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0,0,0,.08);
}
.nav-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .04em;
    transition: color .3s;
}
#navbar.scrolled .nav-brand { color: var(--deep); }
.nav-brand span { color: var(--red); }

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.4rem;
    margin: 0;
}
.nav-links a {
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(141, 141, 141, 0.85);
    transition: color .3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background: var(--red);
    transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--red); }
#navbar.scrolled .nav-links a { color: var(--muted); }
#navbar.scrolled .nav-links a:hover { color: var(--red); }

.nav-cta {
    background: var(--green);
    color: var(--white) !important;
    padding: .5rem 1.3rem;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background .3s, transform .2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 26px; height: 2px;
    background: var(--deep);
    border-radius: 2px;
    transition: .3s;
}
#navbar.scrolled .hamburger span { background: var(--deep); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed; top: var(--nav-h); left: 0; width: 100%;
    background: var(--cream);
    padding: 2rem;
    z-index: 999;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.mobile-menu ul a {
    font-size: 1.1rem; font-weight: 500;
    color: var(--deep); letter-spacing: .06em;
}

/* ═══════════════════════════════════════════════════════════════
    HERO
═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh; min-height: 640px;
    overflow: hidden;
}
.hero-slider { height: 100%; }
.hero-slide {
    height: 100vh; min-height: 640px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-slide::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
    160deg,
    rgba(26,21,18,.62) 0%,
    rgba(26,21,18,.3) 60%,
    rgba(201,98,63,.18) 100%
    );
}
.slide-1 { background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=80'); }
.slide-2 { background-image: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1800&q=80'); }
.slide-3 { background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1800&q=80'); }

.hero-content {
    position: absolute; z-index: 10;
    bottom: 14vh; left: 8vw;
    max-width: 700px;
}
.hero-badge {
    /* display: inline-flex; */
    display: none;
     align-items: center; 
     gap: .5rem;
    background: rgba(212,168,83,.2);
    border: 1px solid rgba(212,168,83,.5);
    color: var(--red);
    font-size: .75rem; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase;
    padding: .4rem 1rem; border-radius: 50px;
    margin-bottom: 1.4rem;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6.2rem);
    font-weight: 300;
    line-height: 1.06;
    color: var(--white);
    margin-bottom: 1.4rem;
}
.hero-title em { font-style: italic; color: var(--green); }
.hero-desc {
    font-size: clamp(.9rem, 1.6vw, 1.05rem);
    color: rgba(255,255,255,.78);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.4rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-primary-custom {
    display: inline-flex; align-items: center; gap: .6rem;
    background: var(--green);
    color: var(--white);
    padding: .85rem 2rem;
    border-radius: 50px;
    font-size: .9rem; font-weight: 600;
    letter-spacing: .04em;
    transition: background .3s, transform .25s, box-shadow .3s;
    box-shadow: 0 8px 28px rgba(201,98,63,.45);
}
.btn-primary-custom:hover {
    background: var(--green); transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(201,98,63,.55);
    color: var(--white);
}
.btn-ghost-white {
    display: inline-flex; align-items: center; gap: .6rem;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.5);
    padding: .82rem 1.8rem;
    border-radius: 50px;
    font-size: .9rem; font-weight: 500;
    transition: border-color .3s, background .3s;
}
.btn-ghost-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.1);
    color: var(--white);
}

/* Hero stats bar */
.hero-stats {
    position: absolute; z-index: 10;
    bottom: 0; left: 0; right: 0;
    display: flex; justify-content: center;
    padding: 1.2rem 2rem;
    background: rgba(250,247,242,.97);
    backdrop-filter: blur(10px);
    gap: 0;
}
.stat-item {
    flex: 1; max-width: 180px;
    text-align: center;
    padding: .8rem 1rem;
    position: relative;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute; left: 0; top: 20%; bottom: 20%;
    width: 1px; background: rgba(0,0,0,.12);
}
.stat-num {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 700;
    color: var(--green);
    line-height: 1;
}
.stat-label {
    font-size: .72rem; letter-spacing: .1em;
    text-transform: uppercase; color: var(--muted);
    margin-top: .25rem;
}

/* Swiper nav */
.hero .swiper-pagination-bullet {
    width: 28px; height: 3px; border-radius: 2px;
    background: rgba(255,255,255,.5); opacity: 1;
    transition: background .3s, width .3s;
}
.hero .swiper-pagination-bullet-active {
    background: var(--red); width: 48px;
}
.hero .swiper-pagination {
    bottom: 80px; left: 8vw; text-align: left; width: auto;
}

/* ═══════════════════════════════════════════════════════════════
    SECTION SHARED
═══════════════════════════════════════════════════════════════ */
section { padding: 7rem 0; }
.section-label {
    font-size: .72rem; font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--green); margin-bottom: .7rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400; line-height: 1.15;
    color: var(--deep);
}
.section-title em { font-style: italic; color: var(--green); }
.section-sub {
    font-size: .95rem; color: var(--muted);
    line-height: 1.75; max-width: 520px;
    margin-top: .8rem;
}
.divider {
    width: 52px; height: 3px;
    background:  var(--green);
    border-radius: 2px; margin: 1.2rem 0 2rem;
}

/* ═══════════════════════════════════════════════════════════════
    DESTINATIONS
═══════════════════════════════════════════════════════════════ */
#destinations { background: var(--cream); }
.dest-card {
    position: relative; border-radius: var(--radius);
    overflow: hidden; cursor: pointer;
    transition: transform .4s cubic-bezier(.25,.8,.25,1);
}
.dest-card:hover { transform: translateY(-8px); }
.dest-card img {
    width: 100%; object-fit: cover;
    transition: transform .6s ease;
}
.dest-card:hover img { transform: scale(1.07); }
.dest-card.tall img { height: 520px; }
.dest-card.short img { height: 240px; }
.dest-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,21,18,.8) 0%, transparent 55%);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 1.6rem;
    transition: background .4s;
}
.dest-card:hover .dest-overlay {
    background: linear-gradient(to top, rgba(26,21,18,.88) 0%, rgba(26,21,18,.15) 70%);
}
.dest-country {
    font-size: .7rem; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--red); margin-bottom: .3rem;
}
.dest-name {
    font-family: var(--font-display);
    font-size: 1.7rem; font-weight: 600;
    color: var(--white); line-height: 1.1;
}
.dest-info {
    display: flex; align-items: center; gap: 1rem;
    margin-top: .5rem; opacity: 0;
    transform: translateY(8px);
    transition: .35s ease;
}
.dest-card:hover .dest-info { opacity: 1; transform: translateY(0); }
.dest-info span {
    font-size: .78rem; color: rgba(255,255,255,.8);
    display: flex; align-items: center; gap: .3rem;
}
.dest-tag {
    position: absolute; top: 1rem; right: 1rem;
    background: var(--green);
    color: var(--white);
    font-size: .7rem; font-weight: 600; letter-spacing: .08em;
    padding: .3rem .75rem; border-radius: 50px;
}

/* ═══════════════════════════════════════════════════════════════
    WHY CHOOSE US
═══════════════════════════════════════════════════════════════ */
#why { background: var(--deep); }
#why .section-title { color: var(--white); }
#why .section-sub { color: rgba(255,255,255,.55); }
.feature-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 2.4rem 2rem;
    height: 100%;
    transition: background .3s, border-color .3s, transform .3s;
}
.feature-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(212,168,83,.3);
    transform: translateY(-4px);
}
.feature-icon {
    width: 52px; height: 52px;
    /* background: linear-gradient(135deg, var(--green), var(--red)); */
    background: #3a6b35;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--white);
    margin-bottom: 1.4rem;
}
.feature-title {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 600;
    color: var(--white); margin-bottom: .6rem;
}
.feature-desc {
    font-size: .88rem; color: rgba(255,255,255,.52);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
    POPULAR TOURS
═══════════════════════════════════════════════════════════════ */
#tours { background: var(--sand); }
.tour-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    transition: box-shadow .35s, transform .35s;
}
.tour-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,.12);
    transform: translateY(-6px);
}
.tour-img-wrap { position: relative; overflow: hidden; }
.tour-img-wrap img {
    width: 100%; height: 220px; object-fit: cover;
    transition: transform .5s ease;
}
.tour-card:hover .tour-img-wrap img { transform: scale(1.06); }
.tour-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--green);
    color: var(--white);
    font-size: .68rem; font-weight: 700; letter-spacing: .1em;
    padding: .28rem .7rem; border-radius: 50px;
    text-transform: uppercase;
}
.tour-body { padding: 1.4rem 1.5rem 1.6rem; }
.tour-meta {
    display: flex; gap: 1rem;
    font-size: .75rem; color: var(--muted);
    margin-bottom: .7rem;
}
.tour-meta span { display: flex; align-items: center; gap: .3rem; }
.tour-name {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 600;
    color: var(--deep); line-height: 1.25;
    margin-bottom: .5rem;
}
.tour-desc {
    font-size: .82rem; color: var(--muted);
    line-height: 1.65; margin-bottom: 1.2rem;
}
.tour-footer {
    display: flex; align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0,0,0,.07);
    padding-top: 1rem;
}
.tour-price-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.tour-price {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700; color: var(--green);
}
.tour-price sup { font-size: .8rem; }
.btn-book {
    background: var(--deep);
    color: var(--white);
    padding: .5rem 1.2rem;
    border-radius: 50px;
    font-size: .8rem; font-weight: 600;
    transition: background .3s;
}
.btn-book:hover { background: var(--green); color: var(--white); }
.stars { color: var(--red); font-size: .8rem; letter-spacing: .05em; }

/* Tours Slider nav */
.tours-next, .tours-prev {
    width: 44px; height: 44px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--deep);
    cursor: pointer;
    transition: background .3s, color .3s;
}
.tours-next:hover, .tours-prev:hover {
    background: var(--green); color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
    EXPERIENCE STRIP
═══════════════════════════════════════════════════════════════ */
.experience-strip {
    position: relative;
    min-height: 480px;
    background: url('https://images.unsplash.com/photo-1503220317375-aaad61436b1b?w=1800&q=80') center/cover no-repeat fixed;
    display: flex; align-items: center;
}
.experience-strip::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(26,21,18,.88) 0%, rgba(26,21,18,.5) 60%, transparent 100%);
}
.experience-inner { position: relative; z-index: 1; }
.exp-number {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 700; color: var(--red); opacity: .15;
    line-height: 1; position: absolute; top: -20px; left: -10px;
    pointer-events: none; user-select: none;
}
.exp-tag {
    display: inline-block;
    background: rgba(212,168,83,.15);
    border: 1px solid rgba(212,168,83,.4);
    color: var(--red);
    font-size: .72rem; letter-spacing: .2em;
    text-transform: uppercase; font-weight: 600;
    padding: .35rem .9rem; border-radius: 50px;
    margin-bottom: 1rem;
}
.exp-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300; color: var(--white);
    line-height: 1.12; margin-bottom: 1.4rem;
}
.exp-title strong { font-weight: 700; }
.exp-desc { font-size: .95rem; color: rgba(255,255,255,.7); line-height: 1.75; max-width: 460px; margin-bottom: 2rem; }
.exp-checklist { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.exp-checklist li {
    display: flex; align-items: center; gap: .7rem;
    font-size: .88rem; color: rgba(255,255,255,.8);
}
.exp-checklist li i { color: var(--red); width: 16px; }

/* ═══════════════════════════════════════════════════════════════
    TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
#testimonials { background: var(--cream); }
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.2rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    height: 100%;
}
.testi-quote {
    font-size: 2.5rem; color: var(--green);
    line-height: 1; margin-bottom: .8rem;
    font-family: Georgia, serif;
}
.testi-text {
    font-size: .9rem; color: var(--mid); line-height: 1.75;
    margin-bottom: 1.4rem;
    font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: .9rem; }
.testi-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    object-fit: cover; border: 2px solid var(--sand);
}
.testi-name { font-weight: 600; font-size: .88rem; color: var(--deep); }
.testi-location { font-size: .75rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════
    GALLERY STRIP
═══════════════════════════════════════════════════════════════ */
.gallery-strip { overflow: hidden; background: var(--deep); padding: 0; }
.gallery-track {
    display: flex;
    gap: 12px;
    animation: galleryScroll 38s linear infinite;
    width: max-content;
}
.gallery-track:hover { animation-play-state: paused; }
@keyframes galleryScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.gallery-item {
    width: 240px; height: 180px;
    flex-shrink: 0; border-radius: 10px; overflow: hidden;
    cursor: pointer; position: relative;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s, filter .4s;
    filter: brightness(.85);
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1); }
.gallery-label {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
    display: flex; align-items: flex-end; padding: .8rem;
    opacity: 0; transition: opacity .35s;
}
.gallery-item:hover .gallery-label { opacity: 1; }
.gallery-label span {
    font-size: .75rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--red);
}

/* ═══════════════════════════════════════════════════════════════
    NEWSLETTER
═══════════════════════════════════════════════════════════════ */
#newsletter {
    background: linear-gradient(135deg, var(--green) 0%, var(--deep) 100%);
    padding: 5rem 0;
}
.nl-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400; color: var(--white);
    line-height: 1.2;
}
.nl-sub { font-size: .92rem; color: rgba(255,255,255,.75); margin-top: .5rem; }
.nl-form {
    display: flex; gap: .6rem; flex-wrap: wrap;
    margin-top: 1.8rem; max-width: 460px;
}
.nl-form input {
    flex: 1; min-width: 200px;
    padding: .82rem 1.4rem;
    border-radius: 50px; border: none;
    background: rgba(255,255,255,.15);
    color: var(--white);
    font-size: .9rem;
    outline: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,.55); }
.nl-form input:focus { background: rgba(255,255,255,.22); }
.nl-form button {
    padding: .82rem 1.8rem;
    border-radius: 50px; border: none;
    background: var(--deep); color: var(--white);
    font-size: .88rem; font-weight: 600;
    cursor: pointer; transition: background .3s;
}
.nl-form button:hover { background: var(--mid); }

/* ═══════════════════════════════════════════════════════════════
    FOOTER
═══════════════════════════════════════════════════════════════ */
footer {
    background: var(--deep);
    color: rgba(255,255,255,.55);
    padding: 5rem 0 2rem;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 700;
    color: var(--white); margin-bottom: .8rem;
}
.footer-brand span { color: var(--red); }
.footer-tagline { font-size: .85rem; line-height: 1.65; max-width: 260px; }
.footer-socials { display: flex; gap: .7rem; margin-top: 1.4rem; }
.footer-socials a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.55); font-size: .85rem;
    transition: background .3s, color .3s, border-color .3s;
}
.footer-socials a:hover {
    background: var(--green);
    color: var(--white); border-color: transparent;
}
.footer-heading {
    font-size: .72rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255,255,255,.9); margin-bottom: 1.4rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-links a {
    color: rgba(255,255,255,.48); font-size: .87rem;
    transition: color .25s;
}
.footer-links a:hover { color: var(--red); }
.footer-contact { display: flex; flex-direction: column; gap: .7rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .8rem; }
.footer-contact-item i { color: var(--red); width: 16px; margin-top: .15rem; flex-shrink: 0; }
.footer-contact-item span { font-size: .85rem; line-height: 1.5; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    margin-top: 3.5rem; padding-top: 1.6rem;
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .8rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 1.4rem; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.35); transition: color .25s; }
.footer-bottom-links a:hover { color: var(--white); }

/* Back to top */
#back-top {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
    width: 44px; height: 44px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%; border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; cursor: pointer;
    opacity: 0; transform: translateY(12px);
    transition: opacity .3s, transform .3s, background .3s;
    box-shadow: 0 6px 20px rgba(201,98,63,.4);
}
#back-top.visible { opacity: 1; transform: translateY(0); }
#back-top:hover { background: var(--green); }

/* ═══════════════════════════════════════════════════════════════
    RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-stats { gap: 0; flex-wrap: wrap; }
    .stat-item { min-width: 33.33%; }
}
@media (max-width: 767px) {
    section { padding: 5rem 0; }
    .hero-content { left: 1.5rem; right: 1.5rem; bottom: 16vh; max-width: 100%; }
    .hero-stats .stat-item { min-width: 50%; }
    .dest-card.tall img { height: 380px; }
    .gallery-item { width: 180px; height: 130px; }
    .nl-form { max-width: 100%; }
    footer { padding: 4rem 0 2rem; }
    .nav-brand.text { display: none; }
}




