/* ============================================================
   Wanderly Theme — Tourism look
   ============================================================ */

:root {
    --wnd-primary: #0c6e69;
    --wnd-primary-dark: #095955;
    --wnd-accent: #ff6b35;
    --wnd-accent-dark: #e85d2a;
    --wnd-ink: #0f1d2c;
    --wnd-ink-soft: #3a4757;
    --wnd-muted: #6b7785;
    --wnd-line: #e6ebf0;
    --wnd-bg: #ffffff;
    --wnd-bg-soft: #f6f9fb;
    --wnd-bg-warm: #fff8f3;
    --wnd-radius: 14px;
    --wnd-radius-lg: 22px;
    --wnd-shadow-sm: 0 2px 6px rgba(15, 29, 44, .06);
    --wnd-shadow: 0 10px 30px rgba(15, 29, 44, .08);
    --wnd-shadow-lg: 0 20px 60px rgba(15, 29, 44, .12);
    --wnd-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --wnd-font-display: 'Playfair Display', Georgia, serif;
    --wnd-container: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--wnd-font-body);
    color: var(--wnd-ink);
    background: var(--wnd-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wnd-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--wnd-primary-dark); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--wnd-font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--wnd-ink);
    margin: 0 0 .5em;
    letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

p { margin: 0 0 1rem; }

.wnd-container {
    width: 100%;
    max-width: var(--wnd-container);
    margin: 0 auto;
    padding: 0 24px;
}

.wnd-skip-link {
    position: absolute; left: -9999px; top: 0;
    background: #fff; color: var(--wnd-ink); padding: 12px 16px;
    z-index: 9999;
}
.wnd-skip-link:focus { left: 16px; top: 16px; }

/* ===== Header ===== */
.wnd-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(230, 235, 240, .8);
}
.wnd-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}
.wnd-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--wnd-ink);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -.02em;
}
.wnd-brand:hover { color: var(--wnd-primary); }
.wnd-brand-mark {
    display: inline-grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wnd-primary), var(--wnd-accent));
    color: #fff;
}
.wnd-brand-name { font-family: var(--wnd-font-body); }

.wnd-nav { flex: 1; }
.wnd-menu {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.wnd-menu li a {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--wnd-ink-soft);
    font-weight: 500;
    font-size: .95rem;
    transition: all .2s;
}
.wnd-menu li a:hover, .wnd-menu li.current-menu-item a {
    background: var(--wnd-bg-soft);
    color: var(--wnd-ink);
}

.wnd-menu-toggle {
    display: none;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--wnd-line);
    border-radius: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.wnd-menu-toggle span {
    display: block; width: 18px; height: 2px;
    background: var(--wnd-ink); border-radius: 2px;
}

/* ===== CTA buttons ===== */
.wnd-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--wnd-accent);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .01em;
    border: none;
    transition: all .2s;
    box-shadow: 0 6px 18px rgba(255, 107, 53, .35);
}
.wnd-cta-btn:hover {
    background: var(--wnd-accent-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(255, 107, 53, .45);
}
.wnd-cta-btn--small {
    padding: 10px 20px; font-size: .9rem;
}
.wnd-cta-btn--ghost {
    background: transparent;
    color: var(--wnd-ink);
    border: 1.5px solid var(--wnd-line);
    box-shadow: none;
}
.wnd-cta-btn--ghost:hover {
    background: var(--wnd-bg-soft);
    color: var(--wnd-ink);
    border-color: var(--wnd-ink-soft);
    box-shadow: none;
}
.wnd-cta-btn--white {
    background: #fff; color: var(--wnd-ink);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
}
.wnd-cta-btn--white:hover { background: #fff; color: var(--wnd-primary); }

.wnd-link-arrow {
    color: var(--wnd-primary);
    font-weight: 600;
    font-size: .95rem;
}
.wnd-link-arrow:hover { color: var(--wnd-primary-dark); }

/* ===== Hero ===== */
.wnd-hero {
    position: relative;
    min-height: clamp(520px, 75vh, 760px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}
.wnd-hero-bg { position: absolute; inset: 0; z-index: 0; }
.wnd-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}
.wnd-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(12, 110, 105, .72) 0%, rgba(15, 29, 44, .55) 60%, rgba(255, 107, 53, .35) 100%);
}
.wnd-hero-inner {
    position: relative;
    z-index: 1;
    padding: 96px 24px 80px;
}
.wnd-hero-text { max-width: 720px; }
.wnd-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
    font-size: .78rem;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .9);
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
}
.wnd-eyebrow--dark {
    color: var(--wnd-primary);
    background: rgba(12, 110, 105, .08);
    border-color: rgba(12, 110, 105, .2);
}
.wnd-hero-title {
    color: #fff;
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    line-height: 1.05;
    margin: 0 0 18px;
}
.wnd-hero-title em {
    font-style: italic;
    color: #ffd5c2;
}
.wnd-hero-sub {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: rgba(255, 255, 255, .92);
    max-width: 580px;
    margin: 0 0 32px;
}
.wnd-hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}
.wnd-hero-stats > div {
    display: flex; flex-direction: column;
}
.wnd-hero-stats strong {
    font-family: var(--wnd-font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.wnd-hero-stats span {
    font-size: .85rem;
    color: rgba(255, 255, 255, .8);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: 4px;
}

/* ===== Search section ===== */
.wnd-search-section {
    margin-top: -60px;
    position: relative;
    z-index: 5;
    padding-bottom: 40px;
}
.wnd-search-card {
    background: #fff;
    border-radius: var(--wnd-radius-lg);
    padding: 28px;
    box-shadow: var(--wnd-shadow-lg);
    border: 1px solid var(--wnd-line);
}
.wnd-search-card--inline {
    margin-top: 0;
    box-shadow: var(--wnd-shadow);
}
.wnd-search-card-head {
    text-align: center;
    margin-bottom: 18px;
}
.wnd-search-card-head h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    margin: 0 0 6px;
}
.wnd-search-card-head p {
    color: var(--wnd-muted);
    margin: 0;
    font-size: .95rem;
}
.wnd-search-widget-wrap {
    min-height: 130px;
}
.wnd-affiliate-widget {
    width: 100%;
}

/* ===== Section base ===== */
.wnd-section {
    padding: 80px 0;
}
.wnd-section-head {
    margin-bottom: 40px;
}
.wnd-section-head--center {
    text-align: center;
    max-width: 720px;
    margin-left: auto; margin-right: auto;
    margin-bottom: 50px;
}
.wnd-section-head--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.wnd-section-head h2 {
    margin: 8px 0 6px;
}
.wnd-section-head p {
    color: var(--wnd-muted);
    margin: 0;
    font-size: 1.05rem;
}
.wnd-section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== Destinations grid ===== */
.wnd-dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.wnd-dest-grid--all {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.wnd-dest-card {
    position: relative;
    border-radius: var(--wnd-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1.15;
    color: #fff;
    background: #d3d8de;
    box-shadow: var(--wnd-shadow-sm);
    transition: transform .35s ease, box-shadow .35s ease;
}
.wnd-dest-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wnd-shadow);
    color: #fff;
}
.wnd-dest-card--wide {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1 / 1;
}
.wnd-dest-img {
    position: absolute; inset: 0;
}
.wnd-dest-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.wnd-dest-card:hover .wnd-dest-img img { transform: scale(1.05); }
.wnd-dest-overlay {
    position: absolute;
    inset: 0;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(15, 29, 44, .85) 0%, rgba(15, 29, 44, .25) 50%, transparent 100%);
}
.wnd-dest-country {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    opacity: .9;
    font-weight: 600;
}
.wnd-dest-name {
    color: #fff;
    margin: 6px 0 4px;
    font-size: 1.4rem;
}
.wnd-dest-card--wide .wnd-dest-name { font-size: 2rem; }
.wnd-dest-tag {
    margin: 0;
    font-size: .9rem;
    opacity: .9;
    line-height: 1.4;
}
.wnd-dest-price {
    display: inline-block;
    margin-top: 12px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, .2);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
    align-self: flex-start;
}

/* ===== Inspiration ===== */
.wnd-inspiration { background: var(--wnd-bg-soft); }
.wnd-insp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.wnd-insp-grid--wide {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.wnd-insp-card {
    background: #fff;
    border-radius: var(--wnd-radius);
    overflow: hidden;
    box-shadow: var(--wnd-shadow-sm);
    transition: transform .3s, box-shadow .3s;
}
.wnd-insp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wnd-shadow);
}
.wnd-insp-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.wnd-insp-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s;
}
.wnd-insp-card:hover .wnd-insp-img img { transform: scale(1.05); }
.wnd-insp-body { padding: 20px 22px 24px; }
.wnd-insp-tag {
    display: inline-block;
    background: var(--wnd-bg-warm);
    color: var(--wnd-accent);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}
.wnd-insp-body h3 { margin: 0 0 6px; font-size: 1.15rem; }
.wnd-insp-body p { margin: 0; color: var(--wnd-muted); font-size: .92rem; }

/* ===== Deals band ===== */
.wnd-deals-band {
    background: linear-gradient(135deg, var(--wnd-bg-soft) 0%, var(--wnd-bg-warm) 100%);
}
.wnd-deals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.wnd-deals-grid--reverse {
    direction: rtl;
}
.wnd-deals-grid--reverse > * { direction: ltr; }
.wnd-deals-text h2 { margin: 8px 0 14px; }
.wnd-deals-text p {
    font-size: 1.05rem;
    color: var(--wnd-ink-soft);
    margin: 0 0 20px;
}
.wnd-deals-list {
    list-style: none; padding: 0; margin: 0 0 28px;
}
.wnd-deals-list li {
    padding: 8px 0;
    color: var(--wnd-ink);
    font-weight: 500;
}
.wnd-deals-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: var(--wnd-radius);
    padding: 20px;
    box-shadow: var(--wnd-shadow);
    min-height: 320px;
}
.wnd-banner-widget-wrap {
    display: flex;
    justify-content: center;
}

/* ===== Features ===== */
.wnd-features {
    background: var(--wnd-bg);
}
.wnd-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.wnd-feature {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--wnd-radius);
    background: var(--wnd-bg-soft);
    transition: transform .25s, box-shadow .25s;
}
.wnd-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--wnd-shadow);
    background: #fff;
}
.wnd-feature-icon {
    display: grid;
    place-items: center;
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(12, 110, 105, .12), rgba(255, 107, 53, .12));
    color: var(--wnd-primary);
    border-radius: 50%;
}
.wnd-feature h3 { margin: 0 0 8px; font-size: 1.1rem; }
.wnd-feature p { margin: 0; color: var(--wnd-muted); font-size: .92rem; }

/* ===== CTA band ===== */
.wnd-cta-band { padding: 60px 0; }
.wnd-cta-card {
    background: linear-gradient(135deg, var(--wnd-primary) 0%, var(--wnd-primary-dark) 100%);
    color: #fff;
    border-radius: var(--wnd-radius-lg);
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: var(--wnd-shadow-lg);
    position: relative;
    overflow: hidden;
}
.wnd-cta-card::before {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 300px; height: 300px;
    background: rgba(255, 107, 53, .25);
    border-radius: 50%;
    filter: blur(60px);
}
.wnd-cta-card > div { position: relative; z-index: 1; }
.wnd-cta-card h2 { color: #fff; margin: 0 0 8px; }
.wnd-cta-card p { margin: 0; color: rgba(255, 255, 255, .85); font-size: 1.05rem; }

/* ===== Page hero ===== */
.wnd-page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--wnd-bg-soft) 0%, var(--wnd-bg-warm) 100%);
    position: relative;
}
.wnd-page-hero h1 { margin-top: 12px; }
.wnd-page-hero p {
    color: var(--wnd-ink-soft);
    font-size: 1.1rem;
    max-width: 660px;
    margin-top: 8px;
}
.wnd-page-hero--image {
    color: #fff;
    overflow: hidden;
    padding: 120px 0 80px;
}
.wnd-page-hero--image::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(15, 29, 44, .75), rgba(12, 110, 105, .55));
    z-index: 1;
}
.wnd-page-hero--image .wnd-container { position: relative; z-index: 2; }
.wnd-page-hero--image h1 { color: #fff; }
.wnd-page-hero--image p { color: rgba(255, 255, 255, .9); }
.wnd-page-hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.wnd-page-hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}

.wnd-post-meta-light { color: rgba(255, 255, 255, .8); margin-top: 4px; }

/* ===== Prose ===== */
.wnd-prose {
    max-width: 760px;
    font-size: 1.05rem;
    color: var(--wnd-ink-soft);
}
.wnd-prose h2 {
    margin-top: 2em;
    margin-bottom: .6em;
    color: var(--wnd-ink);
}
.wnd-prose h3 { margin-top: 1.6em; }
.wnd-prose ul, .wnd-prose ol { padding-left: 1.4em; margin: 0 0 1.5em; }
.wnd-prose li { margin-bottom: .5em; }

/* ===== Contact ===== */
.wnd-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}
.wnd-contact-info h2 { margin-top: 0; }
.wnd-contact-item {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--wnd-line);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.wnd-contact-item strong {
    color: var(--wnd-ink);
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.wnd-contact-item a, .wnd-contact-item span {
    color: var(--wnd-ink-soft);
    font-size: 1.05rem;
}
.wnd-contact-form {
    display: grid;
    gap: 18px;
    background: var(--wnd-bg-soft);
    padding: 32px;
    border-radius: var(--wnd-radius);
}
.wnd-contact-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.wnd-contact-form span {
    font-size: .85rem;
    font-weight: 600;
    color: var(--wnd-ink);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.wnd-contact-form input,
.wnd-contact-form textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--wnd-line);
    background: #fff;
    color: var(--wnd-ink);
}
.wnd-contact-form input:focus,
.wnd-contact-form textarea:focus {
    outline: none;
    border-color: var(--wnd-primary);
    box-shadow: 0 0 0 3px rgba(12, 110, 105, .12);
}
.wnd-contact-form button { justify-self: start; }

/* ===== Posts (index/single) ===== */
.wnd-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.wnd-post-card {
    background: #fff;
    border-radius: var(--wnd-radius);
    overflow: hidden;
    box-shadow: var(--wnd-shadow-sm);
    transition: transform .25s, box-shadow .25s;
}
.wnd-post-card:hover { transform: translateY(-3px); box-shadow: var(--wnd-shadow); }
.wnd-post-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.wnd-post-body { padding: 22px; }
.wnd-post-body h2 { font-size: 1.2rem; margin: 0 0 6px; }
.wnd-post-body h2 a { color: var(--wnd-ink); }
.wnd-post-body h2 a:hover { color: var(--wnd-primary); }
.wnd-post-meta { color: var(--wnd-muted); font-size: .85rem; margin-bottom: 10px; }
.wnd-single-feat {
    max-width: var(--wnd-container);
    margin: 0 auto;
    padding: 0 24px;
}
.wnd-single-feat img {
    border-radius: var(--wnd-radius-lg);
    aspect-ratio: 16/9;
    object-fit: cover;
    box-shadow: var(--wnd-shadow);
}

/* ===== Footer ===== */
.wnd-site-footer {
    background: #0f1d2c;
    color: rgba(255, 255, 255, .75);
    padding: 70px 0 30px;
    margin-top: 60px;
}
.wnd-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.wnd-brand--footer { color: #fff; font-size: 1.4rem; margin-bottom: 16px; }
.wnd-brand--footer:hover { color: #fff; }
.wnd-footer-tagline {
    color: rgba(255, 255, 255, .65);
    font-size: .95rem;
    margin: 12px 0 0;
    max-width: 320px;
}
.wnd-footer-col h4 {
    color: #fff;
    font-family: var(--wnd-font-body);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 0 18px;
    font-weight: 700;
}
.wnd-footer-col ul {
    list-style: none; padding: 0; margin: 0;
}
.wnd-footer-col li { margin-bottom: 10px; }
.wnd-footer-col a {
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
}
.wnd-footer-col a:hover { color: #fff; }
.wnd-footer-small {
    font-size: .9rem;
    color: rgba(255, 255, 255, .65);
    margin: 0 0 14px;
}
.wnd-newsletter {
    display: flex;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
}
.wnd-newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 18px;
    color: #fff;
    font-size: .9rem;
    font-family: inherit;
}
.wnd-newsletter input::placeholder { color: rgba(255, 255, 255, .5); }
.wnd-newsletter input:focus { outline: none; }
.wnd-newsletter button {
    background: var(--wnd-accent);
    color: #fff;
    border: none;
    padding: 0 22px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}
.wnd-newsletter button:hover { background: var(--wnd-accent-dark); }
.wnd-footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
}
.wnd-footer-bottom p { margin: 0; }
.wnd-footer-disclosure { font-size: .8rem; max-width: 540px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .wnd-nav { display: none; }
    .wnd-nav.is-open {
        display: block;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        padding: 20px 24px;
        border-bottom: 1px solid var(--wnd-line);
        box-shadow: var(--wnd-shadow);
    }
    .wnd-nav.is-open .wnd-menu {
        flex-direction: column;
        gap: 4px;
    }
    .wnd-menu-toggle { display: flex; }
    .wnd-cta-btn--small { display: none; }

    .wnd-dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wnd-dest-card--wide {
        grid-column: span 2;
        grid-row: auto;
        aspect-ratio: 16/10;
    }

    .wnd-insp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wnd-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wnd-deals-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .wnd-deals-grid--reverse { direction: ltr; }
    .wnd-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .wnd-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .wnd-cta-card {
        padding: 36px 28px;
        text-align: center;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .wnd-section { padding: 56px 0; }
    .wnd-hero { min-height: 600px; }
    .wnd-hero-inner { padding: 70px 24px 60px; }
    .wnd-hero-stats { gap: 22px; }
    .wnd-hero-stats strong { font-size: 1.4rem; }
    .wnd-search-card { padding: 18px; }
    .wnd-dest-grid {
        grid-template-columns: 1fr;
    }
    .wnd-dest-card { aspect-ratio: 16/11; }
    .wnd-insp-grid {
        grid-template-columns: 1fr;
    }
    .wnd-features-grid {
        grid-template-columns: 1fr;
    }
    .wnd-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .wnd-footer-bottom {
        flex-direction: column;
    }
    .wnd-section-head--row {
        flex-direction: column;
        align-items: flex-start;
    }
}
