/* ============================================================
   Mielke Steuerberatung — Stylesheet
   Klassisch-seriös trifft modern-klar
   ============================================================ */

/* -------- Reset & Basis -------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

:root {
    /* Farbsystem — abgestimmt auf das Mielke-Logo (#004D7C) */
    --color-navy: #004D7C;          /* Logo-Farbe */
    --color-navy-dark: #003758;     /* dunklere Variante für Footer/Hover */
    --color-navy-light: #1A6494;    /* hellere Variante für aktive Zustände */
    --color-accent: #C9A66B;        /* dezenter Goldton, komplementär zu Petrolblau */
    --color-accent-dark: #A88646;
    --color-bg: #FFFFFF;
    --color-bg-soft: #F4F8FB;       /* leichter Petrol-Hauch im Hintergrund */
    --color-bg-muted: #E6EFF5;
    --color-text: #1F2937;
    --color-text-muted: #5B6471;
    --color-border: #D9E4EC;

    /* Typografie */
    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* Layout */
    --container: 1180px;
    --radius: 6px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 2px rgba(14, 42, 71, 0.06);
    --shadow: 0 4px 18px rgba(14, 42, 71, 0.08);
    --shadow-lg: 0 12px 40px rgba(14, 42, 71, 0.12);
    --transition: 200ms ease;
}

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-navy);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-accent-dark);
}

/* -------- Typografie -------- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--color-navy);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.18rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 60ch;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    color: var(--color-accent-dark);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

/* -------- Layout-Container -------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    section { padding: 3.5rem 0; }
}

/* -------- Navigation -------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--color-border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    transition: opacity var(--transition);
    padding: 4px 0;
}

.brand:hover {
    opacity: 0.85;
}

.brand picture {
    display: block;
    line-height: 0;
}

.brand img {
    display: block;
    height: 88px;
    width: auto;
}

@media (max-width: 600px) {
    .container { padding: 0 1.75rem; }
    .brand img {
        height: 64px;
    }
    .nav { padding-top: 1.1rem; padding-bottom: 1.1rem; }
}

/* Footer-Logo (heller Hintergrund-Hover) */
.footer-brand {
    display: inline-block;
    margin-bottom: 1.2rem;
}

.footer-brand img {
    height: 64px;
    width: auto;
    /* Logo ist dunkelblau – für dunklen Footer-Hintergrund leicht aufhellen */
    filter: brightness(0) invert(1) brightness(0.92);
    opacity: 0.85;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-navy);
    margin: 5px 0;
    transition: var(--transition);
}

@media (max-width: 880px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--color-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 300ms ease;
    }
    .nav-links.open {
        max-height: 500px;
    }
    .nav-links li {
        border-top: 1px solid var(--color-border);
    }
    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
    }
}

/* -------- Buttons -------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.97rem;
    border: 0;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--color-navy);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-navy-light);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--color-navy);
    border: 1.5px solid var(--color-navy);
}

.btn-outline:hover {
    background: var(--color-navy);
    color: #fff;
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-navy-dark);
}

.btn-accent:hover {
    background: var(--color-accent-dark);
    color: #fff;
}

/* -------- Hero -------- */
.hero {
    padding: 6rem 0 5rem;
    background:
        radial-gradient(circle at 80% 10%, rgba(201, 166, 107, 0.08), transparent 60%),
        linear-gradient(180deg, var(--color-bg-soft) 0%, #fff 100%);
}

/* Redaktionelle Hero-Variante (linksbündig, einspaltig) */
.hero-editorial .hero-text {
    max-width: 780px;
}

.hero-editorial h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    line-height: 1.12;
    margin-bottom: 0;
}

.hero-editorial .lead {
    font-size: 1.22rem;
    line-height: 1.65;
    max-width: 64ch;
    color: var(--color-text);
}

.divider-large {
    width: 80px;
    height: 2px;
    background: var(--color-accent);
    margin: 1.8rem 0;
    border: 0;
}

@media (max-width: 880px) {
    .hero { padding: 4rem 0 3.5rem; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.hero h1 span {
    color: var(--color-accent-dark);
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 1.5rem;
    right: 1.5rem;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-navy));
    border-radius: 2px;
}

.hero-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.hero-card ul {
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

.hero-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.96rem;
    color: var(--color-text);
}

.hero-card li::before {
    content: '✓';
    color: var(--color-accent-dark);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* -------- Section helpers -------- */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.section-head .lead {
    margin: 0 auto;
}

/* Linksbündige Variante für redaktionelle Abschnitte */
.section-head-left {
    text-align: left;
    margin: 0 0 3.5rem;
    max-width: 720px;
}

.section-head-left .divider { margin: 1.2rem 0; }
.section-head-left .lead { margin: 0; }

.alt-bg {
    background: var(--color-bg-soft);
}

.dark-bg {
    background: var(--color-navy);
    color: #E6EAF0;
}

.dark-bg h2,
.dark-bg h3 {
    color: #fff;
}

.dark-bg .lead { color: #B6C2D2; }

/* -------- Grid Cards (Leistungen) -------- */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 880px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.card .icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--color-bg-muted);
    border-radius: var(--radius);
    color: var(--color-navy);
    margin-bottom: 1.2rem;
}

.card h3 {
    color: var(--color-navy);
}

.card p {
    color: var(--color-text-muted);
    font-size: 0.97rem;
    margin: 0;
}

.card ul {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    gap: 0.4rem;
    font-size: 0.93rem;
    color: var(--color-text-muted);
}

.card ul li::before {
    content: '–';
    color: var(--color-accent);
    margin-right: 0.5rem;
}

/* -------- Values-Grid (Was Mandanten schätzen) -------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 3.5rem;
}

@media (max-width: 560px) {
    .values-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.value-item {
    position: relative;
    padding-left: 0;
}

.value-number {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--color-accent-dark);
    margin-bottom: 0.6rem;
    letter-spacing: 0.04em;
    line-height: 1;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--color-navy);
}

.value-item p {
    color: var(--color-text-muted);
    font-size: 0.97rem;
    line-height: 1.6;
    margin: 0;
}

/* -------- USP-Strip -------- */
.usp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

@media (max-width: 880px) {
    .usp { grid-template-columns: 1fr; }
}

.usp-item h4 {
    font-family: var(--font-serif);
    color: var(--color-navy);
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.usp-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* -------- CTA Banner -------- */
.cta-banner {
    background: var(--color-navy);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.cta-banner h2 { color: #fff; }
.cta-banner p { color: #B6C2D2; max-width: 580px; margin: 0 auto 1.8rem; }

.cta-banner .btn-accent { margin: 0 auto; }

/* -------- Page Head (für Unterseiten) -------- */
.page-head {
    padding: 5rem 0 3rem;
    background: linear-gradient(180deg, var(--color-bg-soft) 0%, #fff 100%);
    border-bottom: 1px solid var(--color-border);
}

.page-head .container { max-width: 820px; }

.breadcrumb {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.breadcrumb a { color: var(--color-text-muted); }

/* -------- Article (Über mich, Impressum etc.) -------- */
.article {
    max-width: 760px;
    margin: 0 auto;
}

.article h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.article h3 {
    margin-top: 1.8rem;
    font-size: 1.2rem;
}

.article p { margin-bottom: 1rem; }

.article ul {
    list-style: none;
    margin-bottom: 1.2rem;
}

.article ul li {
    padding-left: 1.3rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.article ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* -------- Kontakt -------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 880px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-info dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0.8rem 1.5rem;
    font-size: 0.97rem;
}

.contact-info dt {
    color: var(--color-text-muted);
    font-weight: 500;
}

.contact-info dd {
    color: var(--color-text);
}

.contact-form {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.form-row {
    margin-bottom: 1.2rem;
}

.form-row label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.97rem;
    background: #fff;
    transition: var(--transition);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    outline: 0;
    border-color: var(--color-navy);
    box-shadow: 0 0 0 3px rgba(14, 42, 71, 0.1);
}

.form-row textarea {
    min-height: 130px;
    resize: vertical;
}

.form-consent {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.2rem;
}

.form-consent input { margin-top: 4px; }

/* Honeypot-Feld für Spam-Schutz: für Menschen unsichtbar */
.hp-trap {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Statusmeldungen nach Formular-Submit */
.form-message {
    padding: 1rem 1.2rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.55;
}

.form-success {
    background: rgba(0, 100, 0, 0.06);
    border-left: 4px solid #2e7d32;
    color: #1f5223;
}

.form-error {
    background: rgba(180, 0, 0, 0.05);
    border-left: 4px solid #c62828;
    color: #7d1f1f;
}

/* -------- Footer -------- */
.site-footer {
    background: var(--color-navy-dark);
    color: #B6C2D2;
    padding: 3.5rem 0 1.5rem;
    font-size: 0.92rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.7fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.site-footer .footer-heading {
    color: #fff;
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.05rem;
    margin: 0 0 1rem;
}

.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer a { color: #B6C2D2; }
.site-footer a:hover { color: var(--color-accent); }

/* E-Mail-Adresse im Footer: kleinere Schrift + Zeilenumbruch unterbinden */
.site-footer a[href^="mailto:"] {
    font-size: 0.84rem;
    white-space: nowrap;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: #8E9AAE;
}

/* -------- Utilities -------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; gap: 1rem; flex-wrap: wrap; }

/* -------- Schmuckelement -------- */
.divider {
    width: 60px;
    height: 2px;
    background: var(--color-accent);
    margin: 1.5rem 0;
    border: 0;
}

.section-head .divider { margin: 1.2rem auto; }

/* -------- Hero-Banner (Startseite, breites Foto) -------- */
.hero-banner {
    padding: 0;
    width: 100%;
    height: clamp(260px, 36vw, 460px);
    overflow: hidden;
    position: relative;
    background: var(--color-navy-dark);
    margin: 0;
}

.hero-banner picture,
.hero-banner img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-banner img {
    object-fit: cover;
    object-position: center 65%;
}

/* Sehr dezenter Verlauf am oberen Rand für sauberen Übergang aus dem hellen Hero */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(180deg, rgba(247, 249, 252, 0.55), transparent);
    pointer-events: none;
    z-index: 1;
}

/* -------- Portrait (Über-mich) -------- */
.portrait-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 880px) {
    .portrait-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.portrait {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
    background: var(--color-bg-muted);
}

.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.portrait-frame {
    position: relative;
}

.portrait-frame::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: -1.5rem;
    right: 1.5rem;
    bottom: -1.5rem;
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-lg);
    z-index: 0;
    opacity: 0.55;
}

.portrait-frame--mirror::before {
    left: 1.5rem;
    right: -1.5rem;
}

.portrait-frame .portrait {
    position: relative;
    z-index: 1;
}

@media (max-width: 880px) {
    .portrait-frame::before {
        top: 1rem;
        left: -0.8rem;
        right: 0.8rem;
        bottom: -1rem;
    }
    .portrait-frame--mirror::before {
        left: 0.8rem;
        right: -0.8rem;
    }
}

/* Portrait-Grid in umgekehrter Reihenfolge (Text zuerst, Bild rechts) */
.portrait-grid--text-first {
    grid-template-columns: 1fr 0.85fr;
}

@media (max-width: 880px) {
    .portrait-grid--text-first { grid-template-columns: 1fr; }
}

/* Profil-Liste (Eckdaten inline statt im Kasten) */
.profile-list {
    list-style: none;
    margin-top: 1.6rem;
    display: grid;
    gap: 0.6rem;
}

.profile-list li {
    padding-left: 1.4rem;
    position: relative;
    font-size: 0.98rem;
    color: var(--color-text);
    line-height: 1.5;
}

.profile-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent-dark);
    font-weight: 600;
}

/* Über-mich-Teaser auf der Startseite (einspaltig, redaktionell) */
.ueber-teaser {
    max-width: 760px;
}

.ueber-teaser p { font-size: 1.05rem; }

/* Zielgruppen-Statement (Eyebrow + H2 ohne Karten) */
.zielgruppen-statement {
    padding: 4.5rem 0;
}

.zielgruppen-statement .section-head { margin: 0 auto; }
.zielgruppen-statement h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.25;
}

/* Kontakt-Hero-Layout (Bild + Textspalte über der Kontakt-Grid) */
.contact-hero {
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 880px) {
    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.contact-hero-text .lead { margin-top: 0; }

.portrait-caption {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    font-style: italic;
}

/* ===== Anfahrtskarte: Zwei-Klick-Lösung (OpenStreetMap / Leaflet) ===== */
.map-container {
    margin-top: 1.5rem;
    border: 1px solid #e3e1da;
    border-radius: 6px;
    overflow: hidden;
    background: #f6f4ee;
}
.map-placeholder {
    padding: 2.25rem 1.5rem;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.55)),
        repeating-linear-gradient(45deg, #ece9df 0 12px, #f3f0e6 12px 24px);
}
.map-placeholder-inner {
    max-width: 460px;
    text-align: center;
}
.map-placeholder-title {
    margin: 0 0 0.75rem 0;
    font-family: var(--font-heading, "Lora", serif);
    font-size: 1.15rem;
    color: var(--color-navy);
}
.map-consent-text {
    margin: 0 0 1.25rem 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--color-text-muted);
}
.map-consent-text a {
    color: var(--color-accent-dark);
    text-decoration: underline;
}
.map-frame {
    height: 420px;
    width: 100%;
    background: #ddd;
}
.map-frame[hidden] {
    display: none;
}
.leaflet-container .leaflet-popup-content strong {
    color: var(--color-navy);
}
@media (max-width: 600px) {
    .map-frame { height: 340px; }
    .map-placeholder { min-height: 220px; padding: 1.75rem 1rem; }
}
