@font-face {
    font-family: "Source Sans 3";
    src: url("assets/fonts/SourceSans3-VariableFont_wght.ttf") format("truetype");
    font-weight: 200 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("assets/fonts/CormorantGaramond-VariableFont_wght.ttf") format("truetype");
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

/* Farbwelt aus dem Style Guide */
:root {
    --color-text: #474747;
    --color-accent: #43A2C4;
    --color-bg: #FFFFFF;
    --color-surface: #F2F2F2;

    --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

.page {
    margin: 0;
    padding: 48px 20px;
    background: var(--color-bg);
    color: var(--color-text);

    /* horizontal + vertikal zentriert */
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    text-align: left; /* Style Guide: linksbündig */
}

.maintenance {
    width: 100%;
    max-width: 760px;

    display: flex;
    flex-direction: column;
    align-items: center; /* Logo/Text als Block zentriert im Layout */
    justify-content: center;
    gap: 16px;
}

.maintenance__logo {
    width: min(680px, 92vw);
    max-width: 680px;
    min-width: 250px; /* Mindestbreite laut Guide */
    height: auto;
    display: block;
    margin-bottom: 44px;
}

.maintenance__title {
    margin: 0;
    width: 100%;

    font-family: var(--font-head);
    font-weight: 600;
    font-size: clamp(42px, 4.2vw, 48px);
    line-height: 1.1;
    letter-spacing: 0.2px;

    color: var(--color-text);
}

.maintenance__text {
    margin: 0;
    width: 100%;
    max-width: 60ch;

    font-weight: 400;
    color: var(--color-text);
}

/* Ruhiger Akzent (kein Verlauf, keine Schatten) */
.maintenance__text::after {
    content: "";
    display: block;
    width: 72px;
    height: 2px;
    background: var(--color-accent);
    margin-top: 12px;
}

.maintenance__brand {
    font-weight: 600;
}

.maintenance__contact {
    width: 100%;
    margin-top: 8px;
}

.contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
}

.contact:focus,
.contact:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    text-decoration-color: var(--color-accent);
}

.contact__icon {
    flex: 0 0 auto;
    color: var(--color-accent);
    fill: currentColor;
}

.contact__label {
    font-weight: 600;
}

/* Barrierefreiheit: respektiert Systemeinstellung */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}