/*
 * "Spätschicht" — Designsystem der Rezept- & Koch-Abstimmungs-App.
 * Warmes Aubergine-Dunkel, Safran-Gold-Akzent, weiche Glas-Panels.
 * Bewusst EIN committeter dunkler Look (kein Light/Dark-Toggle) - alle
 * Farben werden hier explizit gesetzt, nichts wird von Bootstrap geerbt
 * (Bootstrap-CSS ist absichtlich nicht mehr eingebunden, siehe layout.php;
 * nur Bootstraps JS wird für die Modal-Logik weiterverwendet).
 */

:root {
    --ground: #241B26;
    --surface: #2E2331;
    --surface-2: #382C3C;
    --surface-3: #43354A;
    --ink: #F1E9E3;
    --ink-dim: #B8A8AE;
    --accent: #E8A33D;
    --accent-ink: #241B26;
    --accent-2: #7A5C6E;
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --radius-pill: 999px;
    color-scheme: dark;
}

/* Muss vor allen anderen Regeln stehen und !important nutzen, da sonst
   Klassen mit eigenem "display" (z.B. .grid) das Verstecken per
   hidden-Attribut/-Property unterlaufen (gleiche Spezifität, Autoren-CSS
   gewinnt sonst gegen die Browser-Standardregel für [hidden]). */
[hidden] {
    display: none !important;
}

* {
    box-sizing: border-box;
}

/* Bewusst kein `html { scroll-behavior: smooth }`: die App nutzt nirgends
   In-Page-Anchor-Links (`href="#..."`), sondern erreicht Fragmente wie
   `#available-recipes` ausschließlich über volle Seiten-Redirects nach
   Formular-Submits. Smooth-Scroll beim initialen Laden mit Hash in der URL
   ist auf iOS Safari unzuverlässig und sorgte dort dafür, dass die Seite
   nie an der richtigen Stelle landete. */

body {
    margin: 0;
    background: var(--ground);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-optical-sizing: auto;
    color: var(--ink);
    margin: 0 0 0.35em;
    text-wrap: balance;
    letter-spacing: -0.01em;
}

h1 { font-weight: 700; font-size: clamp(1.9rem, 1.4rem + 2vw, 2.6rem); }
h2 { font-weight: 600; font-size: clamp(1.3rem, 1.1rem + 1vw, 1.6rem); }
h3 { font-weight: 600; font-size: 1.05rem; }

p {
    color: var(--ink-dim);
    margin: 0 0 1em;
    max-width: 65ch;
}

a {
    color: inherit;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 6px;
}

::selection {
    background: var(--accent);
    color: var(--accent-ink);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
    }
}

/* ---------- Ambient glow blooms hinter den Panels ---------- */
.ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.ambient::before, .ambient::after {
    /* Statt eines live berechneten filter: blur(90px) (auf iOS Safari bei
       einem fixierten, bildschirmgroßen Element ein massiver
       Performance-Killer - jede Interaktion wirkt dadurch träge) übernimmt
       der Farbverlauf selbst das weiche Auslaufen in mehreren Stufen. */
    content: "";
    position: absolute;
    border-radius: 50%;
}
.ambient::before {
    width: 56vmax; height: 56vmax; top: -18vmax; right: -14vmax;
    background: radial-gradient(circle, rgba(232, 163, 61, 0.22) 0%, rgba(232, 163, 61, 0.10) 35%, transparent 65%);
}
.ambient::after {
    width: 60vmax; height: 60vmax; bottom: -24vmax; left: -18vmax;
    background: radial-gradient(circle, rgba(122, 92, 110, 0.30) 0%, rgba(122, 92, 110, 0.14) 35%, transparent 65%);
}

/* =========================================================
   Utilities (kleines, gezieltes Set - ersetzt Bootstraps
   Layout-Utility-Klassen, die weiterhin in den Views verwendet
   werden; siehe Abschnitt "Politur" des Umsetzungsplans)
   ========================================================= */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 clamp(18px, 4vw, 48px); }
.container-fluid { width: 100%; padding: 0 8px; }

.d-flex { display: flex; }
.d-inline { display: inline; }
.d-block { display: block; }
.d-none { display: none; }
@media (min-width: 768px) {
    .d-md-flex { display: flex; }
    .d-md-none { display: none; }
}
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.justify-content-around { justify-content: space-around; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }

.m-0 { margin: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ms-1 { margin-left: 0.25rem; }
.me-1 { margin-right: 0.25rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }
.ps-0 { padding-left: 0; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.text-center { text-align: center; }
.text-muted { color: var(--ink-dim); }
.text-primary { color: var(--accent); }
.text-danger { color: var(--accent-2); }
.text-success { color: var(--accent); }
.text-decoration-none { text-decoration: none; }
.text-body { color: var(--ink); }
.small { font-size: 0.875em; }
.fw-semibold { font-weight: 600; }

.rounded-pill { border-radius: var(--radius-pill); }
.rounded-4 { border-radius: var(--radius-lg); }
.border-0 { border: none !important; }
.border-top { border-top: 1px solid var(--surface-2); }
.border-bottom { border-bottom: 1px solid var(--surface-2); }

.visually-hidden {
    position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.list-unstyled { list-style: none; padding-left: 0; margin: 0; }

.h3, .h5, .h6 { font-family: var(--font-display); font-weight: 600; }
.h3 { font-size: 1.4rem; }
.h5 { font-size: 1.15rem; }
.h6 { font-size: 1rem; }
.display-4 { font-size: 3rem; line-height: 1; }

main.app-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px clamp(18px, 4vw, 48px) 40px;
    position: relative;
    z-index: 1;
}
/* =========================================================
   Buttons & Chips
   ========================================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
    border: 1px solid transparent; cursor: pointer; text-decoration: none;
    font-weight: 700; font-size: 0.95rem; padding: 12px 22px; border-radius: var(--radius-pill);
    transition: transform 0.1s ease, border-color 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.97); }
/* Keine Schatten mehr - Hover hebt sich stattdessen über eine sichtbare
   Rahmenfarbe ab (gilt einheitlich für alle Button-Varianten). */
.btn:hover { border-color: var(--accent); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-ghost, .btn-outline-secondary { background: var(--surface-2); color: var(--ink); }
.btn-outline, .btn-outline-danger, .btn-outline-primary {
    background: transparent; color: var(--ink-dim); border-color: var(--surface-3);
}
.btn-outline:hover, .btn-outline-danger:hover, .btn-outline-primary:hover { color: var(--ink); }
.btn-danger { background: var(--accent-2); color: var(--ink); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-link {
    background: none; border: none; color: var(--ink-dim); font-weight: 600; padding: 6px 0;
    cursor: pointer; text-decoration: none; border-radius: 0;
}
.btn-link:hover { color: var(--accent); }
.btn[disabled] { opacity: 0.5; cursor: default; }

.chip {
    display: inline-flex; align-items: center; gap: 0.4em;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.03em;
    padding: 5px 12px; border-radius: var(--radius-pill);
}
.chip-owner, .chip-open { background: rgba(232, 163, 61, 0.16); color: var(--accent); }
.chip-shared, .chip-closed { background: var(--surface-2); color: var(--ink-dim); }
/* =========================================================
   Modal (Bootstrap-JS steuert .show/.fade - Aussehen hier neu definiert)
   ========================================================= */
.modal {
    position: fixed; inset: 0; z-index: 1055; display: none;
    outline: 0; overflow-x: hidden; overflow-y: auto;
}
.modal.show { display: block; }
.modal-backdrop {
    position: fixed; inset: 0; z-index: 1050; background: rgba(15, 10, 16, 0.6);
}
.modal-backdrop.show { opacity: 1; }
.modal-dialog {
    position: relative; width: auto; margin: 1.75rem auto; max-width: 480px;
    display: flex; align-items: center; min-height: calc(100% - 3.5rem);
    transform: translateY(-20px); transition: transform 0.2s ease-out;
}
.modal.show .modal-dialog { transform: none; }
.modal-content {
    width: 100%; background: var(--surface); border: 1px solid var(--surface-2);
    border-radius: var(--radius-lg); padding: 8px;
}
.modal-header, .modal-footer { display: flex; align-items: center; padding: 14px 18px; gap: 10px; }
.modal-header { justify-content: space-between; }
.modal-footer { justify-content: flex-end; }
.modal-title { margin: 0; }
.modal-body { padding: 6px 18px 14px; color: var(--ink-dim); }
.btn-close {
    width: 32px; height: 32px; border-radius: 50%; border: none; background: var(--surface-2);
    color: var(--ink-dim); font-size: 1.1rem; line-height: 1; cursor: pointer;
}
.btn-close:hover { background: var(--surface-3); color: var(--ink); }
.btn-close::before { content: "\00d7"; }

@media (max-width: 575.98px) {
    .modal-dialog { margin: 0; align-items: flex-end; min-height: 100%; max-width: 100%; }
    .modal-content { border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding-bottom: calc(8px + env(safe-area-inset-bottom)); }
    .modal-dialog { transform: translateY(100%); }
    .modal.show .modal-dialog { transform: translateY(0); }
}
/* =========================================================
   Marketing-Landingpage ("/" und "/about")
   siehe ai/plan/06-marketing-website-plan.md
   ========================================================= */
.marketing { display: flex; flex-direction: column; gap: 0; }

/* ---------- In-Page-Anchor-Nav ---------- */
.m-subnav {
    display: flex; gap: 8px; overflow-x: auto; padding: 4px 2px 18px;
    scrollbar-width: none;
}
.m-subnav::-webkit-scrollbar { display: none; }
.m-subnav a {
    flex-shrink: 0; text-decoration: none; color: var(--ink-dim); font-weight: 600;
    font-size: 0.85rem; padding: 8px 16px; border-radius: var(--radius-pill);
    background: var(--surface); border: 1px solid var(--surface-2);
    transition: color 0.15s ease, border-color 0.15s ease;
}
.m-subnav a:hover { color: var(--ink); border-color: var(--accent); }

/* ---------- Hero ---------- */
.m-hero { padding: 12px 0 8px; }
.m-hero-inner {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: center;
}
.m-eyebrow {
    color: var(--accent); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.05em;
    text-transform: uppercase; margin-bottom: 0.6em;
}
.m-lead { font-size: 1.05rem; max-width: 52ch; }
.m-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.2em 0 0.8em; }
.m-hero-note { color: var(--ink-dim); font-size: 0.85rem; margin: 0; }

.m-mosaic {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px; aspect-ratio: 1 / 1;
}
.m-tile {
    border-radius: var(--radius-lg); background: var(--surface-2);
}
.m-tile-1 { background: radial-gradient(circle at 30% 25%, rgba(232, 163, 61, 0.45), var(--surface-2) 70%); }
.m-tile-2 { background: radial-gradient(circle at 70% 30%, rgba(122, 92, 110, 0.55), var(--surface-3) 70%); margin-top: 22px; }
.m-tile-3 { background: radial-gradient(circle at 35% 70%, rgba(122, 92, 110, 0.5), var(--surface-3) 70%); margin-bottom: 22px; }
.m-tile-4 { background: radial-gradient(circle at 65% 75%, rgba(232, 163, 61, 0.4), var(--surface-2) 70%); }

@media (max-width: 767.98px) {
    .m-hero-inner { grid-template-columns: 1fr; gap: 26px; }
    .m-mosaic { max-width: 320px; margin: 0 auto; }
}

/* ---------- Generische Sektion ---------- */
.m-section { padding: 48px 0; border-top: 1px solid var(--surface-2); }
.m-section-head { max-width: 62ch; margin-bottom: 28px; }
.m-section-head p:last-child { margin-bottom: 0; }

/* ---------- Nutzenversprechen (Warum) ---------- */
.m-promise-grid {
    display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.m-promise-card {
    background: var(--surface); border: 1px solid var(--surface-2); border-radius: var(--radius-md);
    padding: 22px 20px;
}
.m-promise-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%; background: var(--accent); color: var(--accent-ink);
    font-weight: 800; margin-bottom: 12px;
}
.m-promise-card p:last-child { margin-bottom: 0; }

/* ---------- Tutorial-Schritte ---------- */
.m-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 40px; }
.m-step {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: center;
}
.m-step:nth-child(even) .m-step-visual { order: -1; }
.m-step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--accent);
    color: var(--accent); font-weight: 800; font-size: 0.85rem; margin-bottom: 10px;
}
.m-step-text p:last-of-type { margin-bottom: 0; }
.m-step-tip { color: var(--accent); font-size: 0.85rem; font-weight: 600; }

.m-mock {
    aspect-ratio: 4 / 3; border-radius: var(--radius-lg); background: var(--surface);
    border: 1px solid var(--surface-2); display: flex; align-items: flex-end; padding: 16px;
    background-image: linear-gradient(155deg, var(--surface-2), var(--surface) 60%);
}
.m-mock-label {
    color: var(--ink-dim); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em;
    padding: 6px 12px; border-radius: var(--radius-pill); background: var(--surface-2);
}

/* Rahmen mit festem Seitenverhältnis für den echten, automatisiert
   erzeugten App-Screenshot (siehe bin/generate-marketing-screenshots.php).
   Zeigt bewusst nur den oberen Ausschnitt (object-position: top) statt der
   vollen Screenshot-Höhe, mit sanftem Fade-out statt hartem Schnitt - das
   volle Bild bleibt per Klick über die Lightbox erreichbar (siehe unten). */
.m-shot-frame {
    position: relative; display: block; width: 100%; max-width: 280px; margin: 0 auto;
    aspect-ratio: 3 / 4; overflow: hidden; cursor: zoom-in;
    border-radius: var(--radius-lg); border: 1px solid var(--surface-2);
    background: var(--surface); padding: 0;
}
.m-shot-frame::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 28%;
    background: linear-gradient(to bottom, transparent, var(--surface));
    pointer-events: none;
}
.m-shot {
    display: block; width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
}
/* Permanent sichtbares "Vergrößern"-Icon (zwei Eck-Klammern per Border-
   Segmente, kein Icon-Font) - bewusst nicht erst bei :hover, da die
   Haupt-Zielgruppe laut 02-project_plan.md mobil/Touch ist. */
.m-shot-expand-icon {
    position: absolute; top: 10px; right: 10px; z-index: 1;
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(36, 27, 38, 0.72); backdrop-filter: blur(6px);
    border: 1px solid var(--surface-2);
}
.m-shot-expand-icon::before, .m-shot-expand-icon::after {
    content: ""; position: absolute; width: 7px; height: 7px;
    border: 2px solid var(--ink);
}
.m-shot-expand-icon::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.m-shot-expand-icon::after { bottom: 8px; right: 8px; border-left: none; border-top: none; }

@media (max-width: 767.98px) {
    .m-step { grid-template-columns: 1fr; gap: 16px; }
    .m-step:nth-child(even) .m-step-visual { order: 0; }
    .m-mock { aspect-ratio: 16 / 9; }
}

/* ---------- Screenshot-Lightbox (Marketing-Landingpage) ---------- */
.modal-body-image { padding: 0; }
/* Bewusst KEIN width:100% - die Screenshots sind hochkant (390x844) und
   würden bei voller Dialogbreite weit über die Bildschirmhöhe hinausragen
   (Dialog wird höher als der Viewport, .modal scrollt dann als Ganzes -
   Schließen-Button und Backdrop-Klickfläche sind dadurch nicht mehr
   erreichbar). Stattdessen per max-height begrenzen und die Breite daraus
   proportional ableiten lassen - garantiert Platz ober- und unterhalb des
   Bildes. */
.modal-body-image img {
    display: block; max-width: 100%; max-height: min(72vh, 640px);
    width: auto; height: auto; margin: 0 auto; border-radius: var(--radius-lg);
}
/* Für diese Lightbox bewusst IMMER zentriert statt des Bottom-Sheet-
   Verhaltens aus dem allgemeinen .modal-dialog (siehe Abschnitt "Modal"
   weiter oben) - ein Foto-Viewer soll oben UND unten Luft haben, nicht am
   unteren Rand kleben. Muss nach der allgemeinen .modal-dialog-Regel und
   ihrer @media-Override stehen, um sie an gleicher Spezifität per
   Reihenfolge zu schlagen. */
.modal-dialog-photo {
    align-items: center; margin: 1.75rem auto; max-width: 480px;
    transform: translateY(-20px);
}
.modal.show .modal-dialog-photo { transform: none; }
@media (max-width: 575.98px) {
    .modal-dialog-photo { align-items: center; margin: 1.75rem auto; max-width: calc(100% - 32px); }
    .modal-dialog-photo .modal-content { border-radius: var(--radius-lg); }
}

/* ---------- Feature-Vertiefung ---------- */
.m-features { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.m-feature-card {
    background: var(--surface); border: 1px solid var(--surface-2); border-radius: var(--radius-md);
    padding: 22px 20px;
}
.m-feature-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.m-feature-card li {
    padding-left: 18px; position: relative; color: var(--ink-dim); font-size: 0.92rem;
}
.m-feature-card li::before {
    content: ""; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px;
    border-radius: 50%; background: var(--accent);
}

/* ---------- Vertrauen ---------- */
.m-trust-list { list-style: none; margin: 0; padding: 0; max-width: 62ch; display: flex; flex-direction: column; gap: 12px; }
.m-trust-list li {
    padding-left: 22px; position: relative; color: var(--ink-dim);
}
.m-trust-list li::before {
    content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800;
}

/* ---------- FAQ ---------- */
.m-faq { display: flex; flex-direction: column; gap: 10px; max-width: 68ch; }
.m-faq-item {
    background: var(--surface); border: 1px solid var(--surface-2); border-radius: var(--radius-md);
    padding: 4px 18px;
}
.m-faq-item summary {
    cursor: pointer; padding: 14px 0; font-weight: 600; list-style: none;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.m-faq-item summary::-webkit-details-marker { display: none; }
.m-faq-item summary::after {
    content: "+"; color: var(--accent); font-size: 1.3rem; font-weight: 400; flex-shrink: 0;
}
.m-faq-item[open] summary::after { content: "–"; }
.m-faq-item p { padding-bottom: 14px; margin: 0; }

/* ---------- Abschließender CTA-Block ---------- */
.m-cta {
    text-align: center; padding: 52px 24px; border-radius: var(--radius-lg); margin: 8px 0;
    background: linear-gradient(155deg, var(--surface-2), var(--surface) 70%);
    border: 1px solid var(--surface-2);
}
.m-cta h2 { max-width: 32ch; margin-inline: auto; }
.m-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 18px; }

/* ---------- App-Installation (Segmented-Tabs, wie .vote-checkbox) ---------- */
.m-install-hint { color: var(--ink-dim); font-size: 0.85rem; }
.m-tab-radio { position: absolute; opacity: 0; width: 1px; height: 1px; overflow: hidden; }
.m-tab-labels { display: inline-flex; gap: 6px; margin-bottom: 22px; }
.m-tab-label {
    cursor: pointer; padding: 10px 20px; border-radius: var(--radius-pill);
    border: 1px solid var(--surface-3); color: var(--ink-dim); font-weight: 700; font-size: 0.9rem;
    transition: color 0.15s ease, border-color 0.15s ease;
}
.m-tab-radio:focus-visible + .m-tab-labels label { outline: 3px solid var(--accent); outline-offset: 3px; }
.m-tab-panel { display: none; }
#install-ios:checked ~ .m-tab-labels label[for="install-ios"],
#install-android:checked ~ .m-tab-labels label[for="install-android"] {
    color: var(--accent-ink); background: var(--accent); border-color: var(--accent);
}
#install-ios:checked ~ #panel-ios,
#install-android:checked ~ #panel-android { display: block; }
.m-install-steps { max-width: 60ch; padding-left: 1.2em; display: flex; flex-direction: column; gap: 10px; }
.m-install-steps li { color: var(--ink-dim); }

/* ---------- Footer ---------- */
.m-footer {
    padding: 40px 0 20px; border-top: 1px solid var(--surface-2); text-align: center; color: var(--ink-dim);
}
.m-footer-brand { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.m-footer p { margin: 0.6em auto; max-width: 42ch; }
.m-footer-links { display: flex; justify-content: center; gap: 18px; }
.m-footer-links a { color: var(--ink-dim); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.m-footer-links a:hover { color: var(--accent); }
