*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #1a2340;
    --navy-mid: #2c3a5e;
    --navy-light: #4a5a80;
    --cream: #f5f2ec;
    --cream-dark: #ece8de;
    --rose: #c0392b;
    --rose-light: #e05d4e;
    --blue-accent: #3d6b9e;
    --blue-light: #6a99c8;
    --text-dark: #111827;
    --text-mid: #374151;
    --text-light: #6b7280;
    --white: #ffffff;
    --shadow: 0 4px 32px rgba(20,30,60,0.13);
    --radius: 10px;
    --transition: 0.28s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Lora', serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.78;
    font-size: 17px;
}

a { color: var(--navy-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose); }
img { max-width: 100%; height: auto; display: block; }

#page-loader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.45s ease;
}
#page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-inner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--rose-light);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy);
    color: var(--cream);
    z-index: 1000;
    padding: 22px 28px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.32);
}
.cookie-content {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.cookie-content p { flex: 1; font-size: 0.9rem; min-width: 200px; font-family: 'Nunito Sans', sans-serif; line-height: 1.6; }
.cookie-content a { color: var(--blue-light); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie {
    padding: 9px 24px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: all var(--transition);
}
.btn-accept { background: var(--rose); color: #fff; }
.btn-accept:hover { background: var(--rose-light); }
.btn-reject { background: transparent; color: var(--cream); border: 1px solid rgba(255,255,255,0.25); }
.btn-reject:hover { border-color: var(--blue-light); color: var(--blue-light); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--navy);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(192,57,43,0.5);
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--cream);
    letter-spacing: 0.03em;
}
.logo-text em { color: #e8c080; font-style: normal; }

.main-nav ul { list-style: none; display: flex; gap: 2px; align-items: center; }
.main-nav a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.79rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,242,236,0.78);
    padding: 8px 14px;
    border-radius: 6px;
    transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: #e8c080; background: rgba(232,192,128,0.08); }

.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--navy);
    border: 1px solid rgba(232,192,128,0.18);
    border-radius: var(--radius);
    min-width: 240px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown li a {
    display: block;
    padding: 9px 20px;
    font-size: 0.82rem;
    color: rgba(245,242,236,0.7);
    letter-spacing: 0.04em;
}
.dropdown li a:hover { color: #e8c080; background: rgba(232,192,128,0.07); }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 76px;
    right: -100%;
    width: min(320px, 92vw);
    height: calc(100vh - 76px);
    background: var(--navy);
    z-index: 850;
    padding: 18px 0;
    transition: right var(--transition);
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-overlay {
    position: fixed;
    inset: 0;
    top: 76px;
    background: rgba(0,0,0,0.5);
    z-index: 840;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; }
.mobile-menu li a {
    display: block;
    padding: 13px 28px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.87rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245,242,236,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color var(--transition);
}
.mobile-menu li a:hover { color: #e8c080; }
.mobile-group-label {
    padding: 12px 28px 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e8c080;
    opacity: 0.65;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/85/Tour_Eiffel_Wikimedia_Commons_%28cropped%29.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.32;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 100px 32px;
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 60px;
    align-items: center;
}
.hero-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #e8c080;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: #e8c080;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.1rem, 4.2vw, 3.6rem);
    color: var(--cream);
    line-height: 1.16;
    margin-bottom: 24px;
    font-weight: 700;
}
.hero h1 em { color: #e8c080; font-style: italic; }
.hero-desc { color: rgba(245,242,236,0.72); font-size: 1.07rem; max-width: 480px; margin-bottom: 38px; font-family: 'Nunito Sans', sans-serif; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
    background: var(--rose);
    color: #fff;
    padding: 13px 30px;
    border-radius: var(--radius);
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all var(--transition);
    display: inline-block;
}
.btn-primary:hover { background: var(--rose-light); color: #fff; }
.btn-outline {
    background: transparent;
    color: var(--cream);
    padding: 12px 30px;
    border-radius: var(--radius);
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(245,242,236,0.3);
    transition: all var(--transition);
    display: inline-block;
}
.btn-outline:hover { border-color: #e8c080; color: #e8c080; }

.hero-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 160px;
    gap: 10px;
}
.hero-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid rgba(232,192,128,0.2);
}
.hero-mosaic img:first-child { grid-column: span 2; height: 200px; }
.hero-mosaic img:not(:first-child) { height: 160px; }

.stats-band {
    background: var(--navy-mid);
    padding: 56px 32px;
}
.stats-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.9rem;
    color: #e8c080;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-lbl {
    font-family: 'Raleway', sans-serif;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,242,236,0.58);
}

.section { padding: 88px 32px; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 58px; }
.section-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.section-label::before, .section-label::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--rose);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-sub { color: var(--text-light); max-width: 580px; margin: 0 auto; font-size: 1rem; font-family: 'Nunito Sans', sans-serif; }

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 26px;
}
.dest-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.dest-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(20,30,60,0.18); }
.dest-card.featured { grid-column: span 2; }
.dest-img {
    width: 100%;
    object-fit: cover;
}
.dest-card.featured .dest-img { height: 300px; }
.dest-card:not(.featured) .dest-img { height: 210px; }
.dest-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.dest-tag {
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 8px;
}
.dest-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}
.dest-card.featured .dest-title { font-size: 1.55rem; }
.dest-excerpt { color: var(--text-mid); font-size: 0.95rem; flex: 1; margin-bottom: 18px; line-height: 1.68; font-family: 'Nunito Sans', sans-serif; }
.dest-link {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy-mid);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    transition: all var(--transition);
}
.dest-link::after { content: '→'; transition: transform var(--transition); }
.dest-link:hover { color: var(--rose); }
.dest-link:hover::after { transform: translateX(4px); }

.section-alt { background: var(--cream-dark); }

.intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 76px;
    align-items: center;
}
.intro-text .section-label { justify-content: flex-start; }
.intro-text .section-label::before { display: none; }
.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.24;
}
.intro-text p { color: var(--text-mid); margin-bottom: 16px; font-family: 'Nunito Sans', sans-serif; }
.img-frame { position: relative; }
.img-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.img-badge {
    position: absolute;
    bottom: -22px;
    right: -22px;
    background: var(--rose);
    color: #fff;
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    min-width: 130px;
}
.img-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.img-badge span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.82;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.tip-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(20,30,60,0.08);
    border-left: 4px solid var(--rose);
    transition: transform var(--transition);
}
.tip-card:hover { transform: translateY(-3px); }
.tip-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: rgba(192,57,43,0.14);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
}
.tip-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 10px;
}
.tip-card p { color: var(--text-mid); font-size: 0.94rem; line-height: 1.68; font-family: 'Nunito Sans', sans-serif; }

.page-hero {
    background: var(--navy);
    padding: 78px 32px 64px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--rose), transparent);
}
.page-hero-inner { max-width: 880px; margin: 0 auto; }
.breadcrumb {
    font-family: 'Raleway', sans-serif;
    font-size: 0.73rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,242,236,0.4);
    margin-bottom: 18px;
}
.breadcrumb a { color: rgba(245,242,236,0.5); }
.breadcrumb a:hover { color: #e8c080; }
.breadcrumb span { color: #e8c080; }
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.9rem);
    color: var(--cream);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}
.page-meta {
    font-family: 'Raleway', sans-serif;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245,242,236,0.4);
}
.page-meta span { color: #e8c080; }

.article-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 72px 32px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
}
.article-main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--navy);
    font-weight: 700;
    margin: 40px 0 16px;
}
.article-main h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.18rem;
    color: var(--navy-mid);
    font-weight: 700;
    margin: 26px 0 10px;
}
.article-main p { color: var(--text-mid); margin-bottom: 16px; font-family: 'Nunito Sans', sans-serif; }
.article-main ul, .article-main ol { padding-left: 22px; margin-bottom: 16px; }
.article-main li { color: var(--text-mid); margin-bottom: 7px; font-family: 'Nunito Sans', sans-serif; }
.article-img {
    width: 100%;
    border-radius: 12px;
    margin: 32px 0;
    box-shadow: var(--shadow);
}
.article-quote {
    border-left: 4px solid var(--rose);
    margin: 32px 0;
    padding: 18px 28px;
    background: var(--cream-dark);
    border-radius: 0 10px 10px 0;
}
.article-quote p {
    font-family: 'Lora', serif;
    font-size: 1.22rem;
    color: var(--navy-mid);
    font-style: italic;
    margin: 0;
}
.article-updated {
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid var(--cream-dark);
    font-family: 'Raleway', sans-serif;
    font-size: 0.73rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}
.article-sources { margin-top: 32px; }
.article-sources h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy-light);
    margin-bottom: 10px;
}
.article-sources li { font-size: 0.9rem; font-family: 'Nunito Sans', sans-serif; }
.article-sources a { color: var(--navy-mid); }
.article-sources a:hover { color: var(--rose); }

.article-sidebar { position: sticky; top: 94px; }
.sidebar-block {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 16px rgba(20,30,60,0.08);
}
.sidebar-block h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--cream-dark);
}
.sidebar-links { list-style: none; }
.sidebar-links li { margin-bottom: 9px; }
.sidebar-links a {
    font-size: 0.9rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 9px;
    transition: color var(--transition);
    font-family: 'Nunito Sans', sans-serif;
}
.sidebar-links a::before { content: '›'; color: var(--rose); font-size: 1.1rem; }
.sidebar-links a:hover { color: var(--navy); }
.sidebar-img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 12px;
}
.sidebar-note {
    background: var(--navy);
    color: var(--cream);
    border-radius: 12px;
    padding: 20px 22px;
    font-size: 0.9rem;
    line-height: 1.65;
    font-family: 'Nunito Sans', sans-serif;
}
.sidebar-note strong { color: #e8c080; }

.text-page { max-width: 860px; margin: 0 auto; padding: 72px 32px; }
.text-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    color: var(--navy);
    font-weight: 700;
    margin: 40px 0 14px;
}
.text-page h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.12rem;
    color: var(--navy-mid);
    font-weight: 700;
    margin: 24px 0 10px;
}
.text-page p { color: var(--text-mid); margin-bottom: 14px; font-family: 'Nunito Sans', sans-serif; }
.text-page ul { padding-left: 20px; margin-bottom: 14px; }
.text-page li { color: var(--text-mid); margin-bottom: 6px; font-family: 'Nunito Sans', sans-serif; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}
.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 14px rgba(20,30,60,0.08);
    border-top: 4px solid var(--rose);
}
.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.04rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 12px;
}
.contact-card p { color: var(--text-mid); font-size: 0.93rem; margin-bottom: 8px; font-family: 'Nunito Sans', sans-serif; }
.contact-card a { color: var(--navy-mid); font-weight: 700; }
.contact-card a:hover { color: var(--rose); }

.site-footer {
    background: var(--navy);
    color: var(--cream);
    padding: 68px 32px 0;
}
.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--cream);
    display: inline-block;
    margin-bottom: 14px;
    font-weight: 700;
}
.footer-logo em { color: #e8c080; font-style: normal; }
.footer-brand p { color: rgba(245,242,236,0.46); font-size: 0.9rem; line-height: 1.65; font-family: 'Nunito Sans', sans-serif; }
.footer-nav h4, .footer-resources h4, .footer-contact h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e8c080;
    margin-bottom: 16px;
}
.footer-nav ul, .footer-resources ul { list-style: none; }
.footer-nav li, .footer-resources li { margin-bottom: 8px; }
.footer-nav a, .footer-resources a {
    color: rgba(245,242,236,0.5);
    font-size: 0.9rem;
    transition: color var(--transition);
    font-family: 'Nunito Sans', sans-serif;
}
.footer-nav a:hover, .footer-resources a:hover { color: #e8c080; }
.footer-contact p { color: rgba(245,242,236,0.5); font-size: 0.9rem; margin-bottom: 8px; font-family: 'Nunito Sans', sans-serif; }
.footer-contact a { color: rgba(245,242,236,0.7); }
.footer-contact a:hover { color: #e8c080; }
.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px 0;
    text-align: center;
    font-size: 0.83rem;
    color: rgba(245,242,236,0.26);
    font-family: 'Nunito Sans', sans-serif;
}
.footer-bottom a { color: rgba(245,242,236,0.4); }
.footer-bottom a:hover { color: #e8c080; }

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .destinations-grid { grid-template-columns: 1fr 1fr; }
    .dest-card.featured { grid-column: span 2; }
    .article-wrap { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .intro-split { gap: 48px; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .burger { display: flex; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 72px 20px; }
    .hero-mosaic { display: none; }
    .hero { min-height: 74vh; }
    .intro-split { grid-template-columns: 1fr; }
    .img-badge { display: none; }
    .tips-grid { grid-template-columns: 1fr; }
    .destinations-grid { grid-template-columns: 1fr; }
    .dest-card.featured { grid-column: auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .section { padding: 64px 20px; }
    .stats-band { padding: 44px 20px; }
}

@media (max-width: 480px) {
    .section { padding: 52px 16px; }
    .hero-content { padding: 60px 16px; }
    .article-wrap { padding: 44px 16px; }
    .text-page { padding: 44px 16px; }
    .stats-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-num { font-size: 2.2rem; }
}
