:root {
    --ink: #16232f;
    --muted: #667481;
    --line: #e4eaee;
    --brand: #0a9f9a;
    --brand-dark: #076b68;
    --accent: #f4bd3f;
    --coral: #f36f56;
    --paper: #ffffff;
    --soft: #f5f8fa;
    --danger-soft: #fff4e5;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: #fbfcfd;
    line-height: 1.6;
}

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

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

.wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.topbar__inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    font-size: 20px;
    white-space: nowrap;
}

.brand > span:last-child {
    display: none;
}

.brand__logo {
    width: 108px;
    height: 40px;
    display: flex;
    align-items: center;
}

.brand__logo img {
    width: 108px;
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

.desktop-nav,
.topbar__actions {
    display: flex;
    align-items: center;
}

.desktop-nav {
    gap: 20px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.desktop-nav a:hover,
.login-link:hover {
    color: var(--brand-dark);
}

.topbar__actions {
    gap: 10px;
}

.login-link {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.login-link--admin {
    color: #9a5d00;
}

.menu-btn {
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    font-size: 22px;
}

.nav {
    display: none;
    border-top: 1px solid var(--line);
}

.nav__inner {
    display: flex;
    gap: 26px;
    min-height: 48px;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
}

.hero {
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero--market::after,
.hero--slider::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 28, 35, .88), rgba(8, 28, 35, .36)),
        linear-gradient(0deg, rgba(8, 28, 35, .48), rgba(8, 28, 35, .08));
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-position: center;
    background-size: cover;
    animation: heroFade 18s infinite;
}

.hero-slide--one {
    background-image: url("/assets/img/hero.webp");
}

.hero-slide--two {
    background-image: url("/assets/img/fethiye-tour.webp");
    animation-delay: 6s;
}

.hero-slide--three {
    background-image: url("/assets/img/oludeniz-tour.webp");
    animation-delay: 12s;
}

@keyframes heroFade {
    0%, 100% { opacity: 0; transform: scale(1.03); }
    8%, 31% { opacity: 1; transform: scale(1); }
    39% { opacity: 0; transform: scale(1.02); }
}

.hero__image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 42, 50, .72), rgba(10, 42, 50, .18)),
        url("/assets/img/hero.webp") center/cover;
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 54px;
    align-items: center;
    padding: 64px 0;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero__kicker {
    display: inline-flex;
    margin: 0 0 18px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, .12);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 800px;
    margin: 0 0 18px;
    font-size: clamp(48px, 7vw, 86px);
    line-height: .96;
}

.hero p {
    margin: 0 0 28px;
    max-width: 650px;
    color: rgba(255, 255, 255, .9);
    font-size: 24px;
    font-weight: 800;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(7, 107, 104, .18);
}

.button--small {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 13px;
}

.button--hero {
    min-height: 52px;
    padding-inline: 26px;
    background: var(--accent);
    color: #19222b;
}

.button--light {
    background: #fff;
    color: var(--brand-dark);
}

.button--wide {
    width: 100%;
}

.button--ghost {
    min-height: 52px;
    padding-inline: 24px;
    border: 1px solid rgba(255, 255, 255, .62);
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-stats span {
    display: grid;
    min-width: 130px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 800;
}

.hero-stats strong {
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

.hero-panel {
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 80px rgba(8, 28, 35, .32);
    color: var(--ink);
}

.hero-panel__head,
.hero-panel__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hero-panel__head {
    margin-bottom: 16px;
    font-weight: 900;
}

.hero-panel__head a,
.hero-panel__foot a {
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
}

.hero-search-form {
    display: grid;
    gap: 12px;
}

.hero-panel__foot {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.hero-search {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 3;
    transform: translateX(-50%);
}

.hero-search form {
    display: grid;
    grid-template-columns: 1.4fr 1fr .8fr auto;
    gap: 12px;
    align-items: end;
    border-radius: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 55px rgba(5, 31, 38, .22);
}

.hero-search label {
    margin: 0;
}

.section {
    padding: 58px 0;
}

.section--tight {
    padding-top: 48px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.section-head h2 {
    margin-bottom: 0;
}

.text-link {
    color: var(--brand-dark);
    font-weight: 800;
}

h1,
h2,
h3 {
    line-height: 1.18;
}

h2 {
    margin: 0 0 24px;
    font-size: clamp(30px, 4vw, 42px);
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
}

.city-tile {
    min-height: 132px;
    border-radius: 8px;
    display: flex;
    align-items: end;
    padding: 18px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(160deg, var(--brand), #263a54);
}

.city-grid--photo .city-tile {
    min-height: 190px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(0deg, rgba(5, 31, 38, .76), rgba(5, 31, 38, .05)),
        var(--city-image) center/cover;
    transition: transform .2s ease, box-shadow .2s ease;
}

.city-grid--photo .city-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(20, 40, 50, .16);
}

.city-grid--photo .city-tile span {
    position: relative;
    z-index: 1;
    font-size: 18px;
}

.marketplace-strip {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 28px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(22, 35, 47, .08);
}

.marketplace-strip h2 {
    margin: 0;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.feature-row span {
    min-height: 92px;
    border-radius: 8px;
    padding: 16px;
    background: var(--soft);
    color: var(--ink);
    font-weight: 900;
}

.text-section {
    max-width: 960px;
    font-size: 18px;
}

.story-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 44px;
    align-items: start;
}

.story-section p {
    font-size: 18px;
}

.story-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(20, 40, 50, .08);
}

.story-card img {
    width: 180px;
    margin-bottom: 18px;
}

.trust {
    padding: 58px 0;
    background: var(--soft);
}

.trust__grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 44px;
    align-items: start;
}

.checks {
    padding-left: 0;
    list-style: none;
}

.checks li::before {
    content: "✓";
    color: var(--brand);
    font-weight: 900;
    margin-right: 8px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.checks li::before {
    content: "\2713";
}

.why-grid span {
    min-height: 104px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    display: grid;
    place-items: center;
    padding: 14px;
    text-align: center;
    font-weight: 800;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.tour-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform .18s ease, box-shadow .18s ease;
}

.tour-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(22, 35, 47, .13);
}

.tour-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    background:
        linear-gradient(160deg, rgba(0, 156, 156, .18), rgba(18, 52, 61, .72)),
        linear-gradient(35deg, #66d0d2 0 30%, #f7d27a 30% 42%, #275f76 42% 62%, #0c9b91 62% 100%);
}

.tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-card:nth-child(2n) .tour-card__image {
    background:
        linear-gradient(160deg, rgba(0, 156, 156, .12), rgba(18, 52, 61, .62)),
        linear-gradient(30deg, #214c62 0 28%, #93d8d4 28% 46%, #f1c067 46% 56%, #2b8a7f 56% 100%);
}

.tour-card:nth-child(3n) .tour-card__image {
    background:
        linear-gradient(160deg, rgba(0, 156, 156, .16), rgba(18, 52, 61, .66)),
        linear-gradient(25deg, #0d6977 0 34%, #77cbd5 34% 52%, #f5dc9c 52% 60%, #426f4f 60% 100%);
}

.tour-card__body {
    padding: 18px;
}

.tour-card__topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.vendor-chip {
    max-width: 48%;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 3px 8px;
    color: var(--muted);
    background: var(--soft);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    text-align: right;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.tour-card h3 {
    min-height: 60px;
    margin: 0 0 14px;
    font-size: 20px;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

.tour-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
}

.price {
    font-size: 26px;
    font-weight: 900;
    color: var(--brand-dark);
}

.price sup {
    font-size: .58em;
}

.page-hero {
    padding: 74px 0;
    color: #fff;
    background: linear-gradient(135deg, #12343d, var(--brand-dark));
}

.page-hero h1 {
    margin: 0;
    font-size: 48px;
}

.catalog {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    padding: 42px 0 70px;
}

.filters,
.booking {
    align-self: start;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(20, 40, 50, .08);
}

.booking {
    position: sticky;
    top: 142px;
    padding: 0;
    overflow: hidden;
}

.booking__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

.booking__header span {
    font-size: 20px;
    font-weight: 900;
}

.booking__header strong {
    font-size: 28px;
}

.booking__sub {
    margin: 0;
    padding: 16px 20px 0;
    color: var(--muted);
    font-size: 14px;
}

.booking form {
    padding: 18px 20px 20px;
}

label {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

input,
select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 9px 11px;
    font: inherit;
    color: var(--ink);
    background: #fff;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-height: 18px;
    margin: 0;
    padding: 0;
    border-radius: 4px;
    accent-color: var(--brand);
}

.checkline {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    margin: 8px 0;
    color: var(--ink);
    cursor: pointer;
}

.checkline span {
    line-height: 1.2;
}

input:focus,
select:focus {
    outline: 2px solid rgba(0, 156, 156, .16);
    border-color: var(--brand);
}

.filter-title {
    font-weight: 900;
}

.filter-link {
    display: block;
    margin: 8px 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    background: var(--soft);
    color: var(--brand-dark);
    font-weight: 900;
}

.empty-state {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(20, 40, 50, .08);
}

.tour-hero {
    min-height: 520px;
    position: relative;
    display: flex;
    align-items: end;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(0deg, rgba(8, 28, 35, .78), rgba(8, 28, 35, .12)),
        linear-gradient(30deg, #12343d 0 30%, #43bbc0 30% 48%, #f3c96c 48% 58%, #0a807a 58% 100%);
}

.tour-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 28, 35, .78), rgba(8, 28, 35, .12));
}

.tour-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notice {
    margin: 18px 0 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 16px;
    background: var(--soft);
    color: var(--brand-dark);
    font-weight: 700;
}

.tour-hero__content {
    position: relative;
    z-index: 1;
    padding: 0 0 58px;
}

.tour-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(36px, 6vw, 68px);
}

.price--large {
    color: #fff;
}

.tour-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 14px;
}

.tour-hero__facts span {
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, .12);
    font-weight: 800;
}

.tour-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    padding: 46px 0 74px;
}

.breadcrumbs {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 18px;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.badge-row--card {
    margin: 0 0 12px;
}

.badge-row--card span {
    padding: 4px 7px;
    font-size: 11px;
}

.badge-row span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 11px;
    color: var(--brand-dark);
    background: var(--soft);
    font-size: 12px;
    font-weight: 900;
}

.lead {
    font-size: 20px;
    font-weight: 700;
}

.tour-info-grid {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.tour-info-grid section {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    background: #fff;
}

.reviews-block {
    margin-top: 38px;
}

.faq-block {
    margin-top: 38px;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 16px;
    background: #fff;
}

.faq-item summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 900;
}

.faq-item p {
    margin-bottom: 0;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.review-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    background: #fff;
}

.review-card strong,
.review-card span {
    display: block;
}

.review-card span {
    color: #d69618;
    font-weight: 900;
}

.tour-info-grid h2 {
    font-size: 24px;
}

.counter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.total {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.total--booking {
    margin: 18px 0;
    border-radius: 8px;
    border: 1px solid var(--line);
    padding: 14px;
    background: var(--soft);
}

.total dt {
    color: var(--muted);
}

.total dd {
    margin: 0;
    font-weight: 900;
}

.small {
    color: var(--muted);
    font-size: 13px;
}

.booking__submit {
    min-height: 50px;
    font-size: 16px;
}

.pay-note {
    margin: 12px 0 0;
    border-radius: 8px;
    padding: 10px 12px;
    color: #7a4d00;
    background: var(--danger-soft);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.thanks-screen {
    min-height: 68vh;
    display: grid;
    align-items: center;
    padding: 70px 0;
    background:
        linear-gradient(135deg, rgba(10, 159, 154, .12), rgba(244, 189, 63, .12)),
        #fbfcfd;
}

.thanks-card {
    max-width: 720px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 34px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(22, 35, 47, .12);
}

.thanks-card__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    margin-bottom: 18px;
    background: var(--brand);
    color: #fff;
    font-size: 30px;
    font-weight: 900;
}

.thanks-card h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 54px);
}

.thanks-summary {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px 18px;
    margin: 24px 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    background: var(--soft);
}

.thanks-summary dt {
    color: var(--muted);
    font-weight: 800;
}

.thanks-summary dd {
    margin: 0;
    font-weight: 900;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer {
    padding: 42px 0 0;
    color: #fff;
    background: #11272f;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 34px;
}

.footer a {
    display: block;
    margin: 7px 0;
}

.cta-band {
    padding: 52px 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(5, 31, 38, .88), rgba(5, 31, 38, .62)),
        url("/assets/img/hero.webp") center/cover;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cta-band h2 {
    margin-bottom: 10px;
}

.cta-band p {
    margin: 0;
}

.seller-band {
    padding: 58px 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(12, 41, 48, .92), rgba(7, 107, 104, .74)),
        url("/assets/img/hero.webp") center/cover;
}

.seller-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.seller-band h2 {
    margin-bottom: 10px;
}

.seller-band p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, .86);
}

.seller-band__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.seller-band .eyebrow {
    color: #fff;
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 16px;
}

.social-row a {
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: 6px 10px;
}

.vendor-register {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 44px;
    align-items: start;
}

.vendor-register__intro p {
    font-size: 18px;
}

.vendor-register__form {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(20, 40, 50, .08);
}

textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 9px 11px;
    font: inherit;
    color: var(--ink);
}

.form-errors {
    margin-bottom: 14px;
    border-radius: 8px;
    padding: 10px 12px;
    color: #8a1f11;
    background: #fff0ee;
    font-weight: 700;
}

.copyright {
    margin-top: 34px;
    padding: 18px;
    text-align: center;
    color: rgba(255, 255, 255, .68);
    border-top: 1px solid rgba(255, 255, 255, .12);
}

@media (max-width: 900px) {
    .desktop-nav,
    .topbar__actions {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .nav.is-open {
        display: block;
    }

    .nav__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 0;
    }

    .city-grid,
    .tour-grid,
    .why-grid,
    .feature-row,
    .trust__grid,
    .story-section,
    .marketplace-strip,
    .vendor-register,
    .catalog,
    .tour-layout,
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 48px 0 34px;
    }

    .hero-search {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        z-index: 4;
        margin: -84px auto 32px;
    }

    .hero-search form {
        grid-template-columns: 1fr;
    }

    .booking {
        position: static;
    }

    .seller-band__inner,
    .cta-band__inner,
    .section-head {
        align-items: start;
        flex-direction: column;
    }

    .hero {
        min-height: 620px;
    }

    .hero p {
        font-size: 21px;
    }
}

@media (max-width: 560px) {
    .wrap {
        width: min(100% - 22px, 1180px);
    }

    .hero h1,
    .page-hero h1 {
        font-size: 40px;
    }

    .hero-panel {
        padding: 14px;
    }

    .tour-card__bottom,
    .counter-row {
        grid-template-columns: 1fr;
        display: grid;
        align-items: stretch;
    }
}
