*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --stone: #3b3228;
    --stone-mid: #5a4a3a;
    --stone-light: #8a7060;
    --ivory: #f4f0e8;
    --ivory-dark: #e8e0d0;
    --gold: #b8963e;
    --gold-light: #d4b06a;
    --green: #4a6741;
    --text-dark: #1e1812;
    --text-mid: #4a3f33;
    --text-light: #7a6e62;
    --white: #ffffff;
    --shadow: 0 4px 28px rgba(30,20,12,0.14);
    --radius: 8px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Crimson Pro', serif;
    background-color: var(--ivory);
    color: var(--text-dark);
    line-height: 1.75;
    font-size: 17px;
}

a { color: var(--stone-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }

/* PAGE LOADER */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--stone);
    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: 46px;
    height: 46px;
    border: 3px solid rgba(255,255,255,0.12);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.85s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--stone);
    color: var(--ivory);
    z-index: 1000;
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-content p { flex: 1; font-size: 0.93rem; min-width: 220px; font-family: 'Source Sans 3', sans-serif; }
.cookie-content a { color: var(--gold-light); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; }
.btn-cookie {
    padding: 9px 22px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.83rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all var(--transition);
}
.btn-accept { background: var(--gold); color: var(--stone); }
.btn-accept:hover { background: var(--gold-light); }
.btn-reject { background: transparent; color: var(--ivory); border: 1px solid rgba(255,255,255,0.28); }
.btn-reject:hover { border-color: var(--gold); color: var(--gold-light); }

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--stone);
    box-shadow: 0 2px 18px rgba(0,0,0,0.28);
}
.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(184,150,62,0.4);
}
.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.28rem;
    color: var(--ivory);
    letter-spacing: 0.06em;
}
.logo-text em { color: var(--gold); font-style: normal; }

.main-nav ul { list-style: none; display: flex; gap: 2px; align-items: center; }
.main-nav a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(244,240,232,0.78);
    padding: 8px 13px;
    border-radius: 5px;
    transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); background: rgba(184,150,62,0.1); }

.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--stone);
    border: 1px solid rgba(184,150,62,0.2);
    border-radius: var(--radius);
    min-width: 230px;
    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 18px;
    font-size: 0.8rem;
    color: rgba(244,240,232,0.72);
    letter-spacing: 0.04em;
}
.dropdown li a:hover { color: var(--gold); background: rgba(184,150,62,0.08); }

/* BURGER */
.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(--ivory);
    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 */
.mobile-menu {
    position: fixed;
    top: 74px;
    right: -100%;
    width: min(320px, 92vw);
    height: calc(100vh - 74px);
    background: var(--stone);
    z-index: 850;
    padding: 20px 0;
    transition: right var(--transition);
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-overlay {
    position: fixed;
    inset: 0;
    top: 74px;
    background: rgba(0,0,0,0.52);
    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: 'Josefin Sans', sans-serif;
    font-size: 0.86rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(244,240,232,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color var(--transition);
}
.mobile-menu li a:hover { color: var(--gold); }
.mobile-group-label {
    padding: 10px 28px 4px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.65;
}

/* HERO */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--stone);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/4/47/Chambord_Castle_Northwest_facade.jpg');
    background-size: cover;
    background-position: center top;
    opacity: 0.38;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 90px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--gold);
}
.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: var(--ivory);
    line-height: 1.18;
    margin-bottom: 22px;
    font-weight: 400;
}
.hero h1 em { color: var(--gold); font-style: italic; font-family: 'Crimson Pro', serif; }
.hero-desc { color: rgba(244,240,232,0.75); font-size: 1.08rem; max-width: 440px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
    background: var(--gold);
    color: var(--stone);
    padding: 13px 30px;
    border-radius: var(--radius);
    font-family: 'Josefin Sans', 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(--gold-light); color: var(--stone); }
.btn-outline {
    background: transparent;
    color: var(--ivory);
    padding: 12px 30px;
    border-radius: var(--radius);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(244,240,232,0.32);
    transition: all var(--transition);
    display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 380px;
}
.hero-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid rgba(184,150,62,0.2);
}
.hero-images img:first-child {
    grid-column: span 2;
    height: 220px;
}
.hero-images img:not(:first-child) { height: 148px; }

/* SECTION */
.section { padding: 84px 28px; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.section-label::before, .section-label::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1px;
    background: var(--gold);
}
.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    color: var(--stone);
    font-weight: 400;
    line-height: 1.22;
    margin-bottom: 14px;
}
.section-sub { color: var(--text-light); max-width: 580px; margin: 0 auto; font-size: 1rem; }

/* CASTLES GRID */
.castles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}
.castle-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.castle-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(30,20,12,0.2); }
.castle-card.wide {
    grid-column: span 2;
}
.card-img {
    width: 100%;
    object-fit: cover;
}
.castle-card.wide .card-img { height: 300px; }
.castle-card:not(.wide) .card-img { height: 200px; }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-tag {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.12rem;
    color: var(--stone);
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.3;
}
.castle-card.wide .card-title { font-size: 1.5rem; }
.card-excerpt { color: var(--text-mid); font-size: 0.96rem; flex: 1; margin-bottom: 18px; line-height: 1.65; }
.card-link {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone-mid);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    align-self: flex-start;
    transition: all var(--transition);
}
.card-link::after { content: '→'; transition: transform var(--transition); }
.card-link:hover { color: var(--gold); }
.card-link:hover::after { transform: translateX(4px); }

/* STATS STRIP */
.stats-strip {
    background: var(--stone-mid);
    padding: 60px 28px;
}
.stats-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(244,240,232,0.65);
}

/* INTRO SECTION */
.intro-bg { background: var(--ivory-dark); }
.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.intro-text h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    color: var(--stone);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.25;
}
.intro-text p { color: var(--text-mid); margin-bottom: 16px; }
.intro-img-wrap { position: relative; }
.intro-img-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
}
.intro-badge {
    position: absolute;
    bottom: -22px;
    left: -22px;
    background: var(--stone);
    color: var(--ivory);
    padding: 18px 22px;
    border-radius: 10px;
    border: 2px solid rgba(184,150,62,0.3);
    text-align: center;
    min-width: 130px;
}
.intro-badge strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
}
.intro-badge span {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(244,240,232,0.6);
}

/* TIPS GRID */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.tip-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px 26px;
    box-shadow: 0 2px 14px rgba(30,20,12,0.08);
    border-top: 3px solid var(--gold);
    transition: transform var(--transition);
}
.tip-card:hover { transform: translateY(-3px); }
.tip-number {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: rgba(184,150,62,0.2);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 12px;
}
.tip-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: var(--stone);
    font-weight: 400;
    margin-bottom: 10px;
}
.tip-card p { color: var(--text-mid); font-size: 0.94rem; line-height: 1.65; }

/* PAGE HERO */
.page-hero {
    background: var(--stone);
    padding: 76px 28px 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-inner { max-width: 860px; margin: 0 auto; }
.breadcrumb {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.73rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(244,240,232,0.42);
    margin-bottom: 18px;
}
.breadcrumb a { color: rgba(244,240,232,0.52); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.7rem, 3.2vw, 2.7rem);
    color: var(--ivory);
    font-weight: 400;
    line-height: 1.22;
    margin-bottom: 16px;
}
.page-meta {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(244,240,232,0.42);
}
.page-meta span { color: var(--gold-light); }

/* ARTICLE */
.article-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 68px 28px;
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 60px;
    align-items: start;
}
.article-main h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.65rem;
    color: var(--stone);
    font-weight: 400;
    margin: 38px 0 16px;
}
.article-main h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    color: var(--stone-mid);
    font-weight: 400;
    margin: 26px 0 10px;
}
.article-main p { color: var(--text-mid); margin-bottom: 16px; }
.article-main ul, .article-main ol { padding-left: 22px; margin-bottom: 16px; }
.article-main li { color: var(--text-mid); margin-bottom: 7px; }
.article-img {
    width: 100%;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: var(--shadow);
}
.article-quote {
    border-left: 3px solid var(--gold);
    margin: 30px 0;
    padding: 18px 26px;
    background: var(--ivory-dark);
    border-radius: 0 8px 8px 0;
}
.article-quote p {
    font-family: 'Crimson Pro', serif;
    font-size: 1.2rem;
    color: var(--stone-mid);
    font-style: italic;
    margin: 0;
}
.article-updated {
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid var(--ivory-dark);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.73rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}
.article-sources { margin-top: 30px; }
.article-sources h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone-light);
    margin-bottom: 10px;
}
.article-sources li { font-size: 0.9rem; }
.article-sources a { color: var(--stone-mid); }
.article-sources a:hover { color: var(--gold); }

/* SIDEBAR */
.article-sidebar { position: sticky; top: 92px; }
.sidebar-block {
    background: var(--white);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 14px rgba(30,20,12,0.08);
}
.sidebar-block h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ivory-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: 8px;
    transition: color var(--transition);
    font-family: 'Source Sans 3', sans-serif;
}
.sidebar-links a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.sidebar-links a:hover { color: var(--stone); }
.sidebar-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 12px;
}
.sidebar-note {
    background: var(--stone);
    color: var(--ivory);
    border-radius: 10px;
    padding: 20px 22px;
    font-size: 0.91rem;
    line-height: 1.65;
    font-family: 'Source Sans 3', sans-serif;
}
.sidebar-note strong { color: var(--gold-light); }

/* TEXT PAGES */
.text-page { max-width: 840px; margin: 0 auto; padding: 68px 28px; }
.text-page h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--stone);
    font-weight: 400;
    margin: 38px 0 14px;
}
.text-page h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--stone-mid);
    font-weight: 400;
    margin: 24px 0 10px;
}
.text-page p { color: var(--text-mid); margin-bottom: 14px; }
.text-page ul { padding-left: 20px; margin-bottom: 14px; }
.text-page li { color: var(--text-mid); margin-bottom: 6px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 28px;
}
.contact-card {
    background: var(--white);
    border-radius: 10px;
    padding: 28px 24px;
    box-shadow: 0 2px 14px rgba(30,20,12,0.08);
    border-top: 3px solid var(--gold);
}
.contact-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--stone);
    font-weight: 400;
    margin-bottom: 12px;
}
.contact-card p { color: var(--text-mid); font-size: 0.93rem; margin-bottom: 8px; }
.contact-card a { color: var(--stone-mid); font-weight: 700; }
.contact-card a:hover { color: var(--gold); }

/* FOOTER */
.site-footer {
    background: var(--stone);
    color: var(--ivory);
    padding: 64px 28px 0;
}
.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--ivory);
    display: inline-block;
    margin-bottom: 14px;
    font-weight: 400;
}
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-brand p { color: rgba(244,240,232,0.48); font-size: 0.9rem; line-height: 1.65; font-family: 'Source Sans 3', sans-serif; }
.footer-nav h4, .footer-resources h4, .footer-contact h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    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(244,240,232,0.52);
    font-size: 0.9rem;
    transition: color var(--transition);
    font-family: 'Source Sans 3', sans-serif;
}
.footer-nav a:hover, .footer-resources a:hover { color: var(--gold-light); }
.footer-contact p { color: rgba(244,240,232,0.52); font-size: 0.9rem; margin-bottom: 8px; font-family: 'Source Sans 3', sans-serif; }
.footer-contact a { color: rgba(244,240,232,0.72); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px 0;
    text-align: center;
    font-size: 0.83rem;
    color: rgba(244,240,232,0.28);
    font-family: 'Source Sans 3', sans-serif;
}
.footer-bottom a { color: rgba(244,240,232,0.42); }
.footer-bottom a:hover { color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .castles-grid { grid-template-columns: 1fr 1fr; }
    .castle-card.wide { grid-column: span 2; }
    .article-wrap { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .burger { display: flex; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-images { display: none; }
    .hero { min-height: 72vh; }
    .intro-layout { grid-template-columns: 1fr; }
    .intro-badge { display: none; }
    .tips-grid { grid-template-columns: 1fr; }
    .castles-grid { grid-template-columns: 1fr; }
    .castle-card.wide { grid-column: auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
    .section { padding: 56px 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; }
}
