/* CzechExplorer — Map Explorer Dark Theme */
:root {
    --navy-950: #0B1120;
    --navy-900: #0F172A;
    --navy-800: #1E293B;
    --navy-700: #334155;
    --navy-600: #475569;
    --navy-500: #64748B;
    --navy-400: #94A3B8;
    --navy-300: #CBD5E1;
    --amber-500: #F59E0B;
    --amber-400: #FBBF24;
    --amber-600: #D97706;
    --white: #F8FAFC;
    --font-display: 'DM Sans', system-ui, sans-serif;
    --font-body: 'IBM Plex Sans', system-ui, sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --transition: 0.2s ease;
    --max-width: 1200px;
    --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--navy-300);
    background-color: var(--navy-900);
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%231E293B' stroke-width='0.5' opacity='0.4'%3E%3Cpath d='M0 30 Q15 20 30 30 T60 30'/%3E%3Cpath d='M0 15 Q15 25 30 15 T60 15'/%3E%3Cpath d='M0 45 Q15 35 30 45 T60 45'/%3E%3C/g%3E%3C/svg%3E");
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img { max-width: 100%; display: block; }
a { color: var(--amber-400); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber-500); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--white);
    line-height: 1.25;
    font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--amber-500);
    color: var(--navy-900);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--navy-800);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}
.logo:hover { color: var(--white); }
.logo-accent { color: var(--amber-500); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.main-nav a {
    display: block;
    padding: 0.5rem 0.85rem;
    color: var(--navy-300);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--white); background: var(--navy-800); }
.main-nav .nav-cta {
    background: var(--amber-500);
    color: var(--navy-900) !important;
    font-weight: 600;
    margin-left: 0.5rem;
}
.main-nav .nav-cta:hover { background: var(--amber-400); }

/* Main */
main { flex: 1; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background: var(--navy-950);
    border-top: 1px solid var(--navy-800);
    border-bottom: 1px solid var(--navy-800);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}
.section-header p { color: var(--navy-400); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: var(--amber-500);
    color: var(--navy-900);
    border-color: var(--amber-500);
}
.btn-primary:hover {
    background: var(--amber-400);
    border-color: var(--amber-400);
    color: var(--navy-900);
}
.btn-outline {
    background: transparent;
    color: var(--amber-400);
    border-color: var(--amber-500);
}
.btn-outline:hover {
    background: rgba(245, 158, 11, 0.1);
    color: var(--amber-400);
}
.btn-ghost {
    background: transparent;
    color: var(--navy-300);
    border-color: var(--navy-700);
}
.btn-ghost:hover { background: var(--navy-800); color: var(--white); }

/* Trust bar */
.trust-bar {
    background: var(--navy-800);
    border-bottom: 1px solid var(--navy-700);
    padding: 0.6rem 0;
    font-size: 0.85rem;
}
.trust-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    color: var(--navy-400);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.trust-item svg { color: var(--amber-500); flex-shrink: 0; }

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(15, 23, 42, 0.85) 100%);
}
.hero-topo {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q25 30 50 50 T100 50' fill='none' stroke='%23F59E0B' stroke-width='0.3'/%3E%3Cpath d='M0 70 Q25 50 50 70 T100 70' fill='none' stroke='%23F59E0B' stroke-width='0.3'/%3E%3Cpath d='M0 30 Q25 10 50 30 T100 30' fill='none' stroke='%23F59E0B' stroke-width='0.3'/%3E%3C/svg%3E");
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 1.5rem;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--amber-400);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
}
.hero h1 { max-width: 700px; }
.hero-slogan {
    font-size: 1.15rem;
    color: var(--navy-300);
    max-width: 560px;
    margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Domain callout */
.domain-callout {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.08) 0%, transparent 100%);
    border-left: 4px solid var(--amber-500);
    padding: 1.5rem 2rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 2rem 0;
}
.domain-callout strong { color: var(--amber-400); }

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}
.stat-card {
    background: var(--navy-800);
    border: 1px solid var(--navy-700);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--amber-500);
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--amber-500);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.stat-label { font-size: 0.9rem; color: var(--navy-400); }

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.card {
    background: var(--navy-800);
    border: 1px solid var(--navy-700);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition);
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.4);
}
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.25rem; }
.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-500);
    margin-bottom: 0.75rem;
}
.card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--amber-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    counter-reset: step;
}
.step-item {
    position: relative;
    padding: 1.5rem;
    background: var(--navy-800);
    border: 1px solid var(--navy-700);
    border-radius: var(--radius-lg);
}
.step-item::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--amber-500);
    color: var(--navy-900);
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* Tour preview */
.tour-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.tour-card {
    background: var(--navy-800);
    border: 1px solid var(--navy-700);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.tour-card-img { aspect-ratio: 16/9; }
.tour-card-img img { width: 100%; height: 100%; object-fit: cover; }
.tour-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--navy-400);
    margin-bottom: 0.75rem;
}
.tour-meta span { display: flex; align-items: center; gap: 0.3rem; }
.tour-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--amber-500);
    margin-top: auto;
    padding-top: 0.75rem;
}

/* FAQ accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--navy-700);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    background: var(--navy-800);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition);
}
.faq-question:hover { background: var(--navy-700); }
.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--amber-500);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
    padding: 0 1.25rem 1.25rem;
    color: var(--navy-300);
}

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-950) 100%);
    border: 1px solid var(--navy-700);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='%23F59E0B' stroke-width='0.2' opacity='0.3'/%3E%3Ccircle cx='40' cy='40' r='20' fill='none' stroke='%23F59E0B' stroke-width='0.2' opacity='0.2'/%3E%3C/svg%3E");
    opacity: 0.5;
}
.cta-band > * { position: relative; z-index: 1; }

/* Disclaimer box */
.disclaimer-box {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--navy-700);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    font-size: 0.875rem;
    color: var(--navy-400);
    font-style: italic;
}

/* Page hero (inner pages) */
.page-hero {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--navy-800);
    background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
}
.page-hero .breadcrumb {
    font-size: 0.85rem;
    color: var(--navy-500);
    margin-bottom: 0.75rem;
}
.page-hero .breadcrumb a { color: var(--navy-400); }
.page-hero .breadcrumb a:hover { color: var(--amber-400); }

/* Content prose */
.prose { max-width: 780px; }
.prose-wide { max-width: 900px; }
.prose h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
.prose h3 { margin-top: 1.5rem; }
.prose ul, .prose ol { margin-bottom: 1rem; }

/* Two column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}
.two-col img { border-radius: var(--radius-lg); border: 1px solid var(--navy-700); width: 100%; height: 100%; min-height: 240px; object-fit: cover; }

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--navy-800);
    border: 1px solid var(--navy-700);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--amber-500);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
}
.form-check input { margin-top: 0.25rem; accent-color: var(--amber-500); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.alert-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86EFAC;
}
.alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #FCA5A5;
}

.contact-info-block {
    background: var(--navy-800);
    border: 1px solid var(--navy-700);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.contact-info-block address { font-style: normal; line-height: 1.8; }

/* Tour detail blocks */
.tour-detail {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--navy-800);
}
.tour-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.tour-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--navy-700);
    min-height: 240px;
    display: flex;
}
.tour-detail-img img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }
.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}
.tour-highlight {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: var(--amber-400);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Legal pages */
.legal-toc {
    background: var(--navy-800);
    border: 1px solid var(--navy-700);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.legal-toc ol { margin-bottom: 0; }
.legal-toc a { color: var(--navy-300); }
.legal-toc a:hover { color: var(--amber-400); }

/* 404 */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
}
.error-code {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    color: var(--amber-500);
    line-height: 1;
    opacity: 0.3;
}
.error-map {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    opacity: 0.6;
}

/* Footer */
.site-footer {
    background: var(--navy-950);
    border-top: 1px solid var(--navy-800);
    margin-top: auto;
    position: relative;
}
.footer-topo {
    height: 4px;
    background: linear-gradient(90deg, var(--amber-600), var(--amber-500), var(--amber-600));
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 0.75rem;
}
.footer-slogan { font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer-domain-note { font-size: 0.8rem; color: var(--navy-500); }
.footer-col h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--amber-500);
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--navy-400); font-size: 0.9rem; }
.footer-col a:hover { color: var(--amber-400); }
.footer-contact address { font-style: normal; font-size: 0.9rem; line-height: 1.7; }
.footer-ids { font-size: 0.8rem; color: var(--navy-500); margin-top: 0.75rem; }
.footer-disclaimer {
    border-top: 1px solid var(--navy-800);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.footer-disclaimer p { font-size: 0.8rem; color: var(--navy-500); font-style: italic; }
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--navy-500);
}
.cookie-settings-link {
    background: none;
    border: none;
    color: var(--navy-400);
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: underline;
    font-family: var(--font-body);
}
.cookie-settings-link:hover { color: var(--amber-400); }

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--navy-800);
    border-top: 1px solid var(--navy-700);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform 0.35s ease;
    padding: 1.5rem;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner { max-width: var(--max-width); margin: 0 auto; }
.cookie-banner h2 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.cookie-banner p { font-size: 0.9rem; color: var(--navy-400); margin-bottom: 1rem; }
.cookie-banner-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }
.cookie-settings-panel {
    border-top: 1px solid var(--navy-700);
    padding-top: 1rem;
    margin-top: 0.5rem;
}
.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
}
.cookie-toggle input { accent-color: var(--amber-500); width: 18px; height: 18px; }
.cookie-toggle em { color: var(--navy-500); font-style: normal; font-size: 0.8rem; }

/* Responsive */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .two-col, .contact-grid, .tour-detail { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--navy-900);
        border-bottom: 1px solid var(--navy-800);
        padding: 1rem;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .main-nav ul { flex-direction: column; align-items: stretch; }
    .main-nav .nav-cta { margin-left: 0; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero { min-height: 70vh; }
}

.contact-grid img,
.faq-list img,
.content-img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
    border-radius: var(--radius-lg); border: 1px solid var(--navy-700);
}
.faq-list img { max-width: 600px; margin: 1.5rem auto 0; aspect-ratio: 16/10; }
.contact-grid img { margin-bottom: 1.5rem; }

/* Image harmonization */
.contact-grid > div > img,
.contact-info-block + img,
main img[loading="lazy"] {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}
.contact-grid img,
.contact-info-block img {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
}
.service-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
