:root {
    --bg-main: #fcfcfc;
    --bg-soft: #f6f7f9;
    --bg-card: #ffffff;
    --bg-dark: #121416;
    --text-main: #1e2229;
    --text-muted: #5e6675;
    --accent: #9e8251;
    --accent-dark: #7e653a;
    --border: #eaebed;
    --success: #247a4d;
    --danger: #b64242;
    --warning: #b7791f;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 30px 60px rgba(158, 130, 81, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
section, .page-section { padding: 7rem 0; }
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--text-main); font-weight: 400; line-height: 1.15; }
.section-title { font-size: 3.5rem; margin-bottom: 1.5rem; }
.section-title strong { font-weight: 400; font-style: italic; color: var(--accent-dark); }
.lead { font-size: 1.18rem; color: var(--text-muted); max-width: 760px; margin-bottom: 2rem; font-weight: 300; }
.eyebrow, .tag-premium {
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--accent);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
}
.tag-premium:before { content: ''; width: 24px; height: 1px; background: var(--accent); display: inline-block; }

.site-nav {
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(20px);
    z-index: 10;
    border-bottom: 1px solid rgba(0,0,0,.04);
}
.nav-container, .footer-layout { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; }
.logo, .footer-logo { font-family: var(--font-serif); font-size: 1.8rem; text-decoration: none; color: var(--text-main); font-weight: 700; }
.brand-logo {
    display: inline-flex;
    align-items: center;
    width: 230px;
    max-width: 44vw;
    line-height: 0;
}
.brand-logo img {
    display: block;
    width: 100%;
    height: auto;
}
.brand-logo-tile {
    background: #fff;
    border-radius: 8px;
    padding: .6rem .8rem;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.nav-links, .footer-links { display: flex; gap: 1.4rem; align-items: center; }
.nav-links a, .footer-links a { text-decoration: none; color: var(--text-muted); font-size: .92rem; font-weight: 600; }
.nav-links a:hover, .footer-links a:hover { color: var(--accent-dark); }
.nav-toggle { display: none; }
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(18,20,22,.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 80;
}
.mobile-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(86vw, 340px);
    background: var(--bg-dark);
    color: #d7dbe4;
    padding: 1.25rem;
    transform: translateX(-102%);
    transition: transform .28s ease;
    z-index: 90;
    overflow-y: auto;
    box-shadow: 30px 0 70px rgba(0,0,0,.28);
}
.mobile-drawer-head, .admin-sidebar-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.7rem;
}
.mobile-drawer .brand-logo {
    width: 210px;
    max-width: calc(100% - 54px);
}
.drawer-close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 6px;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}
.cookie-banner {
    position: fixed;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 760px;
    margin: 0 auto;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(18,20,22,.16);
}
.cookie-banner p { margin: 0; color: var(--text-muted); }
.cookie-banner div { display: flex; gap: .75rem; align-items: center; }
.mobile-drawer-links {
    display: grid;
    gap: .45rem;
}
.mobile-drawer-links a {
    display: block;
    color: #d7dbe4 !important;
    text-decoration: none;
    padding: .9rem .35rem;
    font-size: 1.04rem;
    font-weight: 500;
}
.mobile-drawer-links a:hover {
    color: #fff !important;
}
body.public-menu-open .mobile-drawer,
body.admin-menu-open .admin-sidebar {
    transform: translateX(0);
}
body.public-menu-open .nav-backdrop,
body.admin-menu-open .admin-backdrop {
    opacity: 1;
    pointer-events: auto;
}
body.menu-open {
    overflow: hidden;
}

.btn, button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    border: 0;
    transition: all .25s ease;
}
.btn-primary { background: var(--text-main); color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.btn-primary:hover { background: var(--accent); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--text-main); border: 2px solid var(--text-main); }
.btn-outline:hover { background: var(--text-main); color: #fff; transform: translateY(-3px); }

.hero-section {
    min-height: 760px;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(252,252,252,.96) 42%, rgba(252,252,252,.65) 72%, rgba(252,252,252,.08) 100%), url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&q=80&w=1800') no-repeat center right/cover;
    padding: 4rem 0;
}
.hero-content { max-width: 800px; }
.hero-content h1 { font-size: 5rem; margin-bottom: 1.5rem; }
.hero-actions, .inline-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.search-panel {
    background: #fff;
    padding: .75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    gap: .5rem;
    max-width: 760px;
    margin: 2rem 0;
}
.search-panel input { flex: 1; border: 0; padding: 1rem 1.2rem; font: inherit; min-width: 180px; }
.search-panel input:focus { outline: none; }

.split-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.split-image-container { box-shadow: var(--shadow); border-radius: 8px; overflow: hidden; }
.split-image-container img { width: 100%; height: 520px; object-fit: cover; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.soft-band { background: var(--bg-soft); }

.guide-card, .simple-card, .stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.guide-card a { display: block; text-decoration: none; height: 100%; }
.guide-card img { height: 260px; width: 100%; object-fit: cover; }
.guide-card div, .simple-card { padding: 1.6rem; }
.guide-card h3 { font-size: 1.7rem; margin: .3rem 0 .6rem; }
.guide-card p, .simple-card p { color: var(--text-muted); }
.guide-card:hover, .simple-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); transition: .25s ease; }
.rating-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid rgba(158,130,81,.28);
    border-radius: 999px;
    color: var(--accent-dark);
    background: rgba(158,130,81,.08);
    padding: .32rem .7rem;
    margin: .1rem 0 .75rem;
    font-size: .78rem;
    font-weight: 800;
}
.matrix-item {
    background: #fff;
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
}
.matrix-item h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; }
.matrix-item:hover { background: var(--text-main); color: #fff; }
.matrix-item:hover h3 { color: #fff; }

.page-hero { padding: 5rem 0 3rem; background: var(--bg-soft); }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 4rem; align-items: start; }
.article { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 3rem; box-shadow: var(--shadow); }
.article h1 { font-size: 3.6rem; margin-bottom: 1rem; }
.article h2 { font-size: 2rem; margin: 2rem 0 .8rem; }
.article p { color: #374151; margin-bottom: 1rem; }
.article-hero { width: 100%; max-height: 520px; object-fit: cover; border-radius: 8px; margin: 1.5rem 0; }
.meta-list { display: grid; gap: .75rem; margin: 1.5rem 0; }
.meta-list div { border-bottom: 1px solid var(--border); padding-bottom: .75rem; }
.sidebar-box { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; box-shadow: var(--shadow); margin-bottom: 1.5rem; }

.guide-hero {
    background:
        linear-gradient(135deg, rgba(158,130,81,.12), rgba(246,247,249,0) 42%),
        var(--bg-soft);
    padding: 5rem 0 4rem;
}
.guide-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
    gap: 4rem;
    align-items: center;
}
.guide-hero-copy h1 {
    font-size: 4.4rem;
    max-width: 860px;
    margin-bottom: 1.3rem;
}
.guide-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2rem;
}
.guide-meta-row a, .guide-meta-row span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--text-muted);
    text-decoration: none;
    padding: .65rem 1rem;
    font-size: .86rem;
    font-weight: 700;
}
.guide-meta-row a:hover {
    border-color: rgba(158,130,81,.35);
    color: var(--accent-dark);
}
.guide-hero-media {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-hover);
    background: #fff;
}
.guide-hero-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.guide-detail-section {
    padding: 5rem 0 7rem;
}
.guide-layout {
    grid-template-columns: minmax(0, 820px) 340px;
}
.guide-article {
    min-width: 0;
}
.guide-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.guide-fact {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: var(--shadow);
}
.guide-fact span {
    display: block;
    color: var(--accent-dark);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 800;
    margin-bottom: .45rem;
}
.guide-fact strong {
    display: block;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.45;
}
.guide-section-block {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.2rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.4rem;
}
.guide-section-label {
    display: block;
    font-family: var(--font-serif);
    color: var(--text-main);
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.guide-richtext {
    color: #374151;
    font-size: 1.02rem;
    line-height: 1.9;
}
.guide-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.guide-gallery figure {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-soft);
}
.guide-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.guide-sidebar {
    position: sticky;
    top: 96px;
}
.guide-sidebar .sidebar-box h3 {
    font-size: 1.45rem;
    margin-bottom: .6rem;
}
.guide-sidebar .sidebar-box p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.trip-help-box {
    background:
        linear-gradient(140deg, rgba(158,130,81,.14), rgba(255,255,255,0) 44%),
        #fff;
}
.guide-summary-box {
    display: grid;
    gap: .8rem;
}
.guide-summary-box a, .guide-summary-box div {
    display: grid;
    gap: .25rem;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: .8rem;
}
.guide-summary-box a:last-child, .guide-summary-box div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.guide-summary-box strong {
    color: var(--accent-dark);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
}
.guide-summary-box span {
    color: var(--text-muted);
}
.related-box {
    display: grid;
    gap: .85rem;
}
.related-box a {
    display: grid;
    gap: .25rem;
    color: var(--text-main);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1rem;
    background: #fff;
}
.related-box a:hover {
    border-color: rgba(158,130,81,.35);
    box-shadow: var(--shadow);
}
.related-box span {
    color: var(--accent-dark);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 800;
}
.rating-form {
    display: grid;
    grid-template-columns: minmax(160px, 220px) auto;
    gap: 1rem;
    align-items: center;
}

.form-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 2rem; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.field { display: grid; gap: .45rem; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 700; color: var(--text-main); font-size: .9rem; }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 6px;
    padding: .9rem 1rem;
    font: inherit;
    color: var(--text-main);
}
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(158,130,81,.18); border-color: var(--accent); }
.alert { padding: 1rem 1.2rem; border-radius: 6px; margin-bottom: 1rem; }
.alert-success { background: #edf8f2; color: var(--success); border: 1px solid #caead8; }
.alert-error { background: #fff1f1; color: var(--danger); border: 1px solid #ffd3d3; }
.badge { display: inline-flex; padding: .25rem .6rem; border-radius: 999px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.badge-pending, .badge-draft { background: #fff7e6; color: var(--warning); }
.badge-approved, .badge-published { background: #edf8f2; color: var(--success); }
.badge-rejected { background: #fff1f1; color: var(--danger); }

.newsletter-wrapper { background: var(--bg-dark); color: #fff; border-radius: 12px; padding: 4rem; }
.newsletter-wrapper h2 { color: #fff; }
.site-footer {
    background:
        linear-gradient(135deg, rgba(158,130,81,.18), rgba(18,20,22,0) 40%),
        radial-gradient(circle at 85% 15%, rgba(255,255,255,.08), rgba(255,255,255,0) 28%),
        var(--bg-dark);
    color: #aab2c0;
    padding: 0;
    overflow: hidden;
}
.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-kicker {
    display: inline-flex;
    color: var(--accent);
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 1rem;
}
.footer-cta h2 {
    color: #fff;
    font-size: 2.7rem;
    max-width: 760px;
}
.footer-cta-btn {
    background: #fff;
    color: var(--bg-dark);
    white-space: nowrap;
}
.footer-cta-btn:hover {
    background: var(--accent);
    color: #fff;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    padding: 4rem 0;
}
.footer-brand-block p {
    max-width: 360px;
    margin-top: 1.2rem;
    color: #c2c8d3;
}
.footer-logo { width: 260px; max-width: 100%; }
.footer-grid h3 {
    color: #fff;
    font-family: var(--font-sans);
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer-grid a {
    display: block;
    color: #aab2c0;
    text-decoration: none;
    margin-bottom: .72rem;
    font-weight: 600;
}
.footer-grid a:hover {
    color: var(--accent);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #7f8795;
    font-size: .9rem;
}
.footer-bottom a {
    color: #aab2c0;
    text-decoration: none;
    font-weight: 700;
}
.footer-bottom a:hover {
    color: var(--accent);
}

.blog-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.blog-featured-image {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.admin-body { background: #f5f6f8; }
.admin-shell { display: grid; grid-template-columns: 260px minmax(0, 1fr); min-height: 100vh; }
.admin-mobile-bar { display: none; }
.admin-sidebar { background: var(--bg-dark); color: #d7dbe4; padding: 1.5rem; position: sticky; top: 0; height: 100vh; }
.admin-sidebar .logo { color: #fff; display: inline-flex; width: 210px; max-width: 100%; }
.admin-sidebar > .logo { margin-bottom: 2rem; }
.admin-drawer-close { display: none; }
.admin-sidebar a { display: block; color: #d7dbe4; text-decoration: none; padding: .75rem .9rem; border-radius: 6px; margin-bottom: .25rem; }
.admin-sidebar-head .brand-logo {
    display: inline-flex;
    margin-bottom: 0;
    padding: .6rem .8rem;
}
.admin-sidebar a:hover { background: rgba(255,255,255,.08); color: #fff; }
.admin-main { padding: 2rem; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; gap: 1rem; }
.admin-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; box-shadow: var(--shadow); }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.admin-table th, .admin-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.admin-table th { background: #fafafa; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.table-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.mini-btn { border: 1px solid var(--border); border-radius: 4px; padding: .35rem .6rem; background: #fff; text-decoration: none; font: inherit; cursor: pointer; }
.mini-btn.danger { color: var(--danger); }
.image-preview { width: 120px; height: 80px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border); }
.status-badge { display: inline-flex; align-items: center; border-radius: 999px; padding: .28rem .62rem; font-size: .78rem; font-weight: 700; background: #eef1f5; color: var(--text-muted); margin-bottom: .35rem; }
.status-active, .status-approved, .status-published { background: rgba(40, 167, 69, .12); color: #20733a; }
.status-pending, .status-draft { background: rgba(158, 130, 81, .14); color: #8a6934; }
.status-blocked, .status-rejected { background: rgba(220, 53, 69, .12); color: #a32635; }
.admin-row-form { display: grid; grid-template-columns: minmax(120px, .8fr) minmax(90px, auto) minmax(180px, 1fr) auto; gap: .75rem; align-items: end; min-width: 560px; }
.admin-row-form label { color: var(--text-muted); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.admin-row-form input[type="password"], .admin-row-form select { width: 100%; margin-top: .35rem; border: 1px solid var(--border); border-radius: 6px; padding: .72rem .8rem; font: inherit; background: #fff; color: var(--text-dark); }
.admin-row-form .checkbox-row { display: inline-flex; align-items: center; gap: .45rem; min-height: 44px; color: var(--text-dark); text-transform: none; letter-spacing: 0; font-size: .9rem; }

@media (max-width: 980px) {
    .grid-3, .grid-4, .content-layout, .split-grid { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .hero-content h1, .article h1, .guide-hero-copy h1 { font-size: 3.2rem; }
    .section-title { font-size: 2.7rem; }
    .guide-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .guide-sidebar { position: static; }
    .admin-shell { grid-template-columns: 1fr; }
    .admin-mobile-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 1rem 1.25rem;
        position: sticky;
        top: 0;
        z-index: 70;
        box-shadow: 0 10px 28px rgba(0,0,0,.05);
    }
    .admin-mobile-bar .brand-logo {
        width: 230px;
        max-width: calc(100vw - 130px);
    }
    .admin-nav-toggle {
        display: inline-flex;
        width: fit-content;
        border: 1px solid var(--border);
        background: #fff;
        padding: .55rem .8rem;
        border-radius: 4px;
        font: inherit;
        color: var(--text-main);
    }
    .admin-sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        width: min(86vw, 340px);
        height: 100vh;
        transform: translateX(-102%);
        transition: transform .28s ease;
        z-index: 90;
        overflow-y: auto;
        box-shadow: 30px 0 70px rgba(0,0,0,.28);
    }
    .admin-sidebar-head {
        margin-bottom: 1.5rem;
    }
    .admin-drawer-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }
    .admin-sidebar a {
        font-size: 1.02rem;
        padding: .82rem .9rem;
        margin-bottom: .2rem;
    }
    .admin-main { overflow-x: auto; }
    .footer-cta, .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .rating-form { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .container { padding: 0 1.25rem; }
    section, .page-section { padding: 4.5rem 0; }
    .hero-section { min-height: 640px; background-position: center; }
    .hero-content h1, .guide-hero-copy h1 { font-size: 2.8rem; }
    .search-panel, .form-grid { flex-direction: column; display: flex; align-items: stretch; }
    .nav-container { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 1rem; }
    .site-nav .nav-links { display: none; }
    .site-nav .nav-toggle { display: inline-flex; width: fit-content; border: 1px solid var(--border); background: #fff; padding: .55rem .8rem; border-radius: 4px; font: inherit; color: var(--text-main); }
    .article, .form-card, .newsletter-wrapper { padding: 1.3rem; }
    .guide-hero { padding: 3.5rem 0 3rem; }
    .guide-detail-section { padding: 3rem 0 5rem; }
    .guide-facts, .guide-gallery { grid-template-columns: 1fr; }
    .guide-section-block { padding: 1.4rem; }
    .guide-section-label { font-size: 1.6rem; }
    .guide-gallery img { height: 220px; }
    .brand-logo { width: 190px; max-width: 68vw; }
    .footer-cta { padding: 3rem 0; }
    .footer-cta h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
}
