/* ═══════════════════════════════════════════════════════
   TOURZ Design System — Home page
   ═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ────────────────────────────────────── */
:root {
    --tz-navy:   #05073c;
    --tz-orange: #eb662b;
    --tz-gold:   #e2ad64;
    --tz-muted:  #717171;
    --tz-border: #e7e6e6;
    --tz-bg:     #f5f5f5;
    --tz-white:  #ffffff;
    --tz-radius: 12px;
    --tz-shadow: 0 4px 20px rgba(0,0,0,.08);
}

/* ── Base ─────────────────────────────────────────── */
.tourz-page { font-family: 'Inter', sans-serif; color: var(--tz-navy); }
.tourz-container { max-width: 1320px; margin: 0 auto; padding: 0 15px; }

/* ── Navbar ───────────────────────────────────────── */
.tourz-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: background .3s, box-shadow .3s;
    background: rgba(255,255,255,.97);
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.tourz-nav.is-transparent {
    background: transparent;
    box-shadow: none;
}
.tourz-nav-inner {
    display: flex; align-items: center; gap: 36px;
    height: 72px; max-width: 1320px; margin: 0 auto; padding: 0 20px;
}
.tourz-brand {
    display: flex; align-items: center; gap: 8px;
    font-size: 22px; font-weight: 800; color: var(--tz-navy);
    text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.tourz-brand-accent { color: var(--tz-orange); }
.tourz-nav-links { display: flex; gap: 28px; flex: 1; list-style: none; margin: 0; padding: 0; }
.tourz-nav-links a {
    font-size: 14px; font-weight: 500; color: var(--tz-navy);
    text-decoration: none; transition: color .2s;
}
.tourz-nav-links a:hover { color: var(--tz-orange); }
.tourz-nav.is-transparent .tourz-nav-links a,
.tourz-nav.is-transparent .tourz-brand { color: #fff; }
.tourz-nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.tourz-nav-supplier { font-size: .85rem; font-weight: 500; color: var(--tz-navy); white-space: nowrap; }
.tourz-nav.is-transparent .tourz-nav-supplier { color: #fff; }
.tourz-btn-outline {
    font-size: 14px; font-weight: 500; color: var(--tz-navy); background: none;
    padding: 8px 20px; border-radius: 8px; border: 1.5px solid var(--tz-border);
    cursor: pointer; transition: border-color .2s; text-decoration: none;
}
.tourz-btn-outline:hover { border-color: var(--tz-navy); color: var(--tz-navy); }
.tourz-nav.is-transparent .tourz-btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.tourz-btn-primary {
    font-size: 14px; font-weight: 600; color: #fff; background: var(--tz-orange);
    padding: 10px 24px; border-radius: 8px; border: none; cursor: pointer;
    transition: opacity .2s; text-decoration: none; display: inline-block;
}
.tourz-btn-primary:hover { opacity: .88; color: #fff; }

/* ── Section commons ──────────────────────────────── */
.tourz-section { padding: 80px 0; }
.tourz-section-alt { background: var(--tz-bg); }
.tourz-section-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 40px;
}
.tourz-section-title { font-size: 30px; font-weight: 700; color: var(--tz-navy); margin: 0; }
.tourz-see-all {
    font-size: 14px; color: var(--tz-navy); text-decoration: none;
    display: flex; align-items: center; gap: 6px; transition: color .2s;
}
.tourz-see-all:hover { color: var(--tz-orange); }

/* ── HERO ─────────────────────────────────────────── */
.tourz-hero {
    position: relative; height: 680px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    background: url('/images/hero.jpg') center/cover no-repeat;
}
.tourz-hero::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(5,7,60,.4) 0%, rgba(5,7,60,.6) 100%);
}
.tourz-hero-content {
    position: relative; z-index: 1; text-align: center; color: #fff;
    padding: 0 20px; animation: tz-fade-up .8s ease both;
}
.tourz-hero-title {
    font-size: 58px; font-weight: 800; line-height: 1.15; margin-bottom: 14px;
}
.tourz-hero-sub {
    font-size: 16px; opacity: .88; margin-bottom: 44px;
}

/* ── Search Pill ─────────────────────────────────── */
.tourz-search-wrap {
    max-width: 680px; margin: 0 auto; position: relative;
}
.tourz-search-pill {
    display: flex; align-items: center; background: #fff;
    border-radius: 100px; box-shadow: 0 8px 32px rgba(0,0,0,.22);
    padding: 8px 8px 8px 24px; gap: 12px; position: relative;
    transition: box-shadow .2s;
}
.tourz-search-pill:focus-within {
    box-shadow: 0 8px 32px rgba(235,102,43,.28);
}
.tourz-search-pill-icon { color: var(--tz-muted); font-size: 18px; flex-shrink: 0; }
.tourz-search-divider { width: 1px; height: 28px; background: var(--tz-border); flex-shrink: 0; }
.tourz-search-field { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; text-align: left; }
.tourz-search-field label {
    font-size: 11px; font-weight: 700; color: var(--tz-navy); letter-spacing: .04em; cursor: pointer;
}
.tourz-search-field input {
    font-size: 14px; color: var(--tz-muted); border: none; outline: none;
    font-family: inherit; width: 100%; background: transparent;
    text-align: left;
}
.tourz-search-field input::placeholder { color: #bbb; }
.tourz-search-btn {
    background: var(--tz-orange); color: #fff; border-radius: 50%;
    width: 56px; height: 56px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 19px; border: none; cursor: pointer;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 4px 16px rgba(235,102,43,.45);
}
.tourz-search-btn:hover { opacity: .88; transform: scale(1.06); }

/* ── Autocomplete ────────────────────────────────── */
.tourz-ac-dropdown {
    display: none; position: absolute; top: calc(100% + 8px);
    left: 0; right: 0; background: #fff; border-radius: var(--tz-radius);
    box-shadow: 0 12px 40px rgba(0,0,0,.14); overflow: hidden; z-index: 200;
}
.tourz-ac-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 20px; cursor: pointer; transition: background .15s;
    border-bottom: 1px solid var(--tz-border);
}
.tourz-ac-item:last-child { border-bottom: none; }
.tourz-ac-item:hover { background: var(--tz-bg); }
.tourz-ac-item i { color: var(--tz-orange); font-size: 14px; flex-shrink: 0; }
.tourz-ac-dest {
    font-size: 17px; font-weight: 600; color: var(--tz-navy);
}
.tourz-ac-sub { font-size: 12px; color: var(--tz-muted); margin-top: 1px; }

/* ── Category shortcuts ───────────────────────────── */
.tourz-search-cats {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 10px; margin-top: 20px;
}
.tourz-search-cats-label { font-size: 13px; color: rgba(255,255,255,.75); }
.tourz-cat-pill {
    display: flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28);
    color: #fff; font-size: 13px; font-weight: 500;
    padding: 8px 18px; border-radius: 100px; cursor: pointer;
    text-decoration: none; transition: background .2s;
}
.tourz-cat-pill:hover { background: rgba(255,255,255,.28); color: #fff; }

/* ── Why Choose ──────────────────────────────────── */
.tourz-why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px;
}
.tourz-why-icon { width: 60px; height: 60px; margin-bottom: 16px; }
.tourz-why-icon svg, .tourz-why-icon img { width: 60px; height: 60px; }
.tourz-why-label { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: var(--tz-navy); }
.tourz-why-desc { font-size: 14px; color: var(--tz-navy); line-height: 1.85; }

/* ── Destination circles ─────────────────────────── */
.tourz-dest-track {
    display: flex; gap: 28px; overflow-x: auto; padding-bottom: 12px;
    scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none;
}
.tourz-dest-track::-webkit-scrollbar { display: none; }
.tourz-dest-item {
    flex: 0 0 135px; display: flex; flex-direction: column;
    align-items: center; gap: 10px; scroll-snap-align: start;
    cursor: pointer; text-decoration: none;
}
.tourz-dest-img {
    width: 130px; height: 130px; border-radius: 50%; overflow: hidden;
    border: 3px solid transparent; transition: border-color .3s, transform .3s;
}
.tourz-dest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.tourz-dest-item:hover .tourz-dest-img { border-color: var(--tz-orange); transform: translateY(-4px); }
.tourz-dest-item:hover .tourz-dest-img img { transform: scale(1.06); }
.tourz-dest-name { font-size: 15px; font-weight: 600; color: var(--tz-navy); }
.tourz-dest-count { font-size: 12.5px; color: var(--tz-muted); }

/* Slider dots */
.tourz-dots { display: flex; justify-content: center; gap: 6px; margin-top: 24px; }
.tourz-dot {
    width: 6px; height: 6px; border-radius: 3px; background: var(--tz-border);
    cursor: pointer; transition: background .3s, width .3s; border: none;
}
.tourz-dot.active { background: var(--tz-navy); width: 18px; }

/* ── Tour Card ───────────────────────────────────── */
.tourz-tours-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.tourz-tour-card {
    border: 1px solid var(--tz-border); border-radius: var(--tz-radius);
    overflow: hidden; background: #fff;
    transition: box-shadow .3s, transform .3s; cursor: pointer;
    text-decoration: none; display: block; color: inherit;
}
.tourz-tour-card:hover { box-shadow: var(--tz-shadow); transform: translateY(-4px); color: inherit; }
.tourz-card-img { position: relative; height: 198px; overflow: hidden; }
.tourz-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tourz-tour-card:hover .tourz-card-img img { transform: scale(1.05); }
.tourz-wish-btn {
    position: absolute; top: 10px; right: 10px;
    width: 35px; height: 35px; background: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.12); transition: transform .2s;
    color: var(--tz-navy); font-size: 14px; border: none; cursor: pointer;
    z-index: 1;
}
.tourz-wish-btn:hover { transform: scale(1.12); }
.tourz-wish-btn.liked { color: #e74c3c; }
.tourz-card-body { padding: 14px 18px 8px; }
.tourz-card-loc {
    display: flex; align-items: center; gap: 5px;
    font-size: 12px; color: var(--tz-muted); margin-bottom: 7px;
}
.tourz-card-name {
    font-size: 15px; font-weight: 600; color: var(--tz-navy);
    line-height: 1.5; min-height: 46px; margin-bottom: 8px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.tourz-card-rating { display: flex; align-items: center; gap: 5px; font-size: 12px; }
.tourz-stars { color: var(--tz-gold); font-size: 10px; letter-spacing: 1px; }
.tourz-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 18px 12px; border-top: 1px solid var(--tz-border);
    margin-top: 8px;
}
.tourz-card-dur { display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--tz-navy); }
.tourz-card-dur i { color: var(--tz-muted); }
.tourz-card-price { font-size: 13px; color: var(--tz-navy); }
.tourz-card-price strong { font-size: 15px; font-weight: 600; }

/* ── Promo Banner ────────────────────────────────── */
.tourz-promo {
    border-radius: var(--tz-radius); overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 360px;
}
.tourz-promo-left {
    background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=800&auto=format&fit=crop') center/cover;
    position: relative;
}
.tourz-promo-right {
    background: url('https://images.unsplash.com/photo-1569428034239-f9565e32e224?w=800&auto=format&fit=crop') center/cover;
}
.tourz-promo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.92) 0%, rgba(255,255,255,.5) 70%, transparent 100%);
}
.tourz-promo-content {
    position: relative; z-index: 1;
    padding: 60px 50px; display: flex; flex-direction: column; justify-content: center;
}
.tourz-promo-title {
    font-size: 40px; font-weight: 800; line-height: 1.25; color: var(--tz-navy); margin-bottom: 12px;
}
.tourz-promo-title em { color: var(--tz-orange); font-style: normal; }
.tourz-promo-desc { font-size: 14px; color: var(--tz-muted); margin-bottom: 32px; }
.tourz-promo-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--tz-orange); color: #fff;
    padding: 16px 34px; border-radius: var(--tz-radius);
    font-size: 14px; font-weight: 600; text-decoration: none;
    transition: opacity .2s; width: fit-content;
}
.tourz-promo-btn:hover { opacity: .88; color: #fff; }

/* ── Popular Things Grid ─────────────────────────── */
.tourz-things-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: 240px 240px;
    gap: 16px;
}
.tourz-thing-card {
    position: relative; border-radius: var(--tz-radius); overflow: hidden; cursor: pointer;
    text-decoration: none; display: block;
}
.tourz-thing-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tourz-thing-card:hover img { transform: scale(1.06); }
.tourz-thing-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 45%, rgba(5,7,60,.72) 100%);
}
.tourz-thing-label {
    position: absolute; bottom: 18px; left: 22px;
    font-size: 19px; font-weight: 600; color: #fff;
}
.tourz-thing-card.tall { grid-row: span 2; }

/* ── Trending (horizontal scroll) ────────────────── */
.tourz-trending-track {
    display: flex; gap: 20px; overflow-x: auto;
    scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none;
    padding-bottom: 4px;
}
.tourz-trending-track::-webkit-scrollbar { display: none; }
.tourz-trending-slide { flex: 0 0 300px; scroll-snap-align: start; }

/* ── Customer Reviews ────────────────────────────── */
.tourz-reviews { background: var(--tz-bg); }
.tourz-review-wrap { max-width: 640px; margin: 0 auto; text-align: center; }
.tourz-review-avatars {
    display: flex; justify-content: center; align-items: flex-end;
    gap: 20px; margin-bottom: 32px;
}
.tourz-avatar { display: flex; flex-direction: column; align-items: center; cursor: pointer; transition: transform .2s; }
.tourz-avatar img { border-radius: 50%; object-fit: cover; border: 3px solid transparent; transition: border-color .3s; }
.tourz-avatar.active img { border-color: var(--tz-orange); }
.tourz-avatar.side { opacity: .5; }
.tourz-review-card { background: #fff; border-radius: 16px; padding: 36px 40px; box-shadow: 0 8px 32px rgba(0,0,0,.07); }
.tourz-review-stars { color: var(--tz-gold); font-size: 14px; margin-bottom: 16px; }
.tourz-review-text { font-size: 15px; color: var(--tz-muted); line-height: 1.85; font-style: italic; margin-bottom: 20px; }
.tourz-review-name { font-size: 15px; font-weight: 700; color: var(--tz-navy); }
.tourz-review-role { font-size: 12px; color: var(--tz-muted); }
.tourz-review-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.tourz-review-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--tz-border); cursor: pointer; border: none; transition: background .3s; }
.tourz-review-dot.active { background: var(--tz-navy); }
.tourz-review-arrows { display: flex; justify-content: center; gap: 14px; margin-top: 20px; }
.tourz-arrow-btn {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1.5px solid var(--tz-border); background: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--tz-navy); transition: all .2s;
}
.tourz-arrow-btn:hover { background: var(--tz-navy); color: #fff; border-color: var(--tz-navy); }

/* ── App Download ────────────────────────────────── */
.tourz-app {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 55%, #01579b 100%);
    color: #fff; padding: 80px 0; overflow: hidden;
}
.tourz-app-inner { display: flex; align-items: center; gap: 60px; }
.tourz-app-content { flex: 1; }
.tourz-app-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.15); padding: 6px 14px;
    border-radius: 20px; font-size: 13px; margin-bottom: 20px;
}
.tourz-app-title { font-size: 38px; font-weight: 800; line-height: 1.25; margin-bottom: 14px; }
.tourz-app-desc { font-size: 15px; opacity: .8; line-height: 1.7; margin-bottom: 32px; }
.tourz-app-form { display: flex; gap: 10px; max-width: 440px; }
.tourz-app-input {
    flex: 1; padding: 14px 18px; border-radius: 10px; border: none;
    font-size: 14px; font-family: inherit; outline: none; color: var(--tz-navy);
}
.tourz-app-submit {
    background: var(--tz-orange); color: #fff; padding: 14px 22px;
    border-radius: 10px; border: none; cursor: pointer; font-size: 14px;
    font-weight: 600; white-space: nowrap; transition: opacity .2s;
}
.tourz-app-submit:hover { opacity: .88; }
.tourz-store-btns { display: flex; gap: 12px; margin-top: 26px; }
.tourz-store-btn {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
    padding: 10px 18px; border-radius: 10px; color: #fff; text-decoration: none;
    transition: background .2s;
}
.tourz-store-btn:hover { background: rgba(255,255,255,.22); color: #fff; }
.tourz-store-btn i { font-size: 22px; }
.tourz-store-btn small { font-size: 10px; opacity: .7; display: block; }
.tourz-store-btn span { font-size: 14px; font-weight: 600; }
.tourz-app-phones { flex: 1; display: flex; justify-content: center; align-items: flex-end; gap: 16px; }
.tourz-phone {
    width: 175px; height: 350px; border-radius: 28px;
    background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.25);
    overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.tourz-phone img { width: 100%; height: 100%; object-fit: cover; }
.tourz-phone-1 { transform: rotate(-7deg) translateY(20px); }
.tourz-phone-2 { transform: rotate(4deg); }

/* ── Articles ────────────────────────────────────── */
.tourz-articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tourz-article-card {
    border-radius: var(--tz-radius); overflow: hidden;
    border: 1px solid var(--tz-border); background: #fff;
    transition: box-shadow .3s, transform .3s; text-decoration: none; display: block; color: inherit;
}
.tourz-article-card:hover { box-shadow: var(--tz-shadow); transform: translateY(-4px); color: inherit; }
.tourz-article-img { height: 200px; overflow: hidden; }
.tourz-article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tourz-article-card:hover .tourz-article-img img { transform: scale(1.06); }
.tourz-article-body { padding: 18px 20px; }
.tourz-article-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--tz-muted); margin-bottom: 10px; }
.tourz-article-tag { background: #fff3ed; color: var(--tz-orange); padding: 3px 10px; border-radius: 4px; font-weight: 600; font-size: 11px; }
.tourz-article-title { font-size: 15.5px; font-weight: 600; color: var(--tz-navy); line-height: 1.55; margin-bottom: 14px; }
.tourz-article-author { display: flex; align-items: center; gap: 10px; }
.tourz-author-avatar { width: 32px; height: 32px; border-radius: 50%; overflow: hidden; }
.tourz-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tourz-author-name { font-size: 12.5px; font-weight: 500; color: var(--tz-navy); }

/* ── Footer ──────────────────────────────────────── */
.tourz-footer { background: var(--tz-navy); color: #fff; padding: 80px 0 32px; }
.tourz-footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 60px;
}
.tourz-footer-logo {
    display: flex; align-items: center; gap: 8px;
    font-size: 22px; font-weight: 800; margin-bottom: 16px; color: #fff;
    text-decoration: none;
}
.tourz-footer-about { font-size: 14px; opacity: .6; line-height: 1.8; margin-bottom: 24px; }
.tourz-footer-sub-label { font-size: 13px; opacity: .7; margin-bottom: 12px; }
.tourz-footer-sub-form { display: flex; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,.15); }
.tourz-footer-sub-input {
    flex: 1; padding: 12px 14px; background: rgba(255,255,255,.08);
    border: none; outline: none; font-size: 13px; color: #fff; font-family: inherit;
}
.tourz-footer-sub-input::placeholder { color: rgba(255,255,255,.35); }
.tourz-footer-sub-btn { background: var(--tz-orange); color: #fff; padding: 12px 16px; border: none; cursor: pointer; transition: opacity .2s; }
.tourz-footer-sub-btn:hover { opacity: .88; }
.tourz-footer-col h4 { font-size: 16px; font-weight: 700; margin-bottom: 22px; }
.tourz-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.tourz-footer-col ul li a { font-size: 13.5px; opacity: .65; text-decoration: none; color: #fff; transition: opacity .2s; }
.tourz-footer-col ul li a:hover { opacity: 1; }
.tourz-social-links { display: flex; gap: 12px; margin-top: 22px; }
.tourz-social-link {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: #fff; text-decoration: none; transition: background .2s;
}
.tourz-social-link:hover { background: var(--tz-orange); }
.tourz-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; opacity: .5;
}

/* ── Animations ──────────────────────────────────── */
@keyframes tz-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.tz-reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
}
.tz-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1200px) {
    .tourz-tours-grid { grid-template-columns: repeat(3,1fr); }
    .tourz-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 992px) {
    .tourz-hero-title { font-size: 42px; }
    .tourz-why-grid  { grid-template-columns: repeat(2,1fr); }
    .tourz-tours-grid { grid-template-columns: repeat(2,1fr); }
    .tourz-articles-grid { grid-template-columns: 1fr 1fr; }
    .tourz-app-inner { flex-direction: column; }
    .tourz-app-phones { min-height: 200px; }
    .tourz-promo { grid-template-columns: 1fr; }
    .tourz-promo-right { min-height: 200px; }
}
@media (max-width: 768px) {
    .tourz-nav-links { display: none; }
    .tourz-hero-title { font-size: 32px; }
    .tourz-why-grid  { grid-template-columns: 1fr; }
    .tourz-tours-grid { grid-template-columns: 1fr; }
    .tourz-articles-grid { grid-template-columns: 1fr; }
    .tourz-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .tourz-things-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .tourz-thing-card.tall { grid-row: span 1; }
    .tourz-search-pill { padding: 6px 6px 6px 16px; }
}
