/* GL Total Works: wachtpagina
   Kleuren afgeleid van het logo: navy achtergrond, zilver huis,
   blauwe vlam (dakwerken) en groene bladblazer (tuin). */

:root {
    --navy-deep: #060d1a;
    --navy: #0a1628;
    --navy-light: #13284a;
    --silver: #c9cdd3;
    --text: #e8ebef;
    --muted: #a3afc0;
    --blue: #2f7fe0;
    --blue-bright: #5a9cf0;
    --green: #6db33f;
    --green-bright: #8ccf5c;
    --focus: #ffd24a;

    --font: "Segoe UI", "Fira Sans", ubuntu, roboto, "Helvetica Neue", arial, sans-serif;
    --measure: 38rem;
    --space: clamp(1.25rem, 4vw, 2.5rem);

    box-sizing: border-box;
    padding-top: env(safe-area-inset-top, 0);
    padding-bottom: env(safe-area-inset-bottom, 0);
    color-scheme: dark;
}

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

html {
    min-height: 100%;
    background-color: var(--navy-deep);
    background-image:
        radial-gradient(ellipse 80% 50% at 30% 0%, var(--navy-light) 0%, transparent 70%),
        linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    scroll-padding-top: env(safe-area-inset-top, 0);
    text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    line-height: 1.55;
    color: var(--text);
    background: transparent;
}

/* Grote, zwakke dakrand op de achtergrond: het ene decoratieve element. */
body::before {
    content: "";
    position: fixed;
    inset: auto -10vw -18vw auto;
    width: min(80vw, 60rem);
    aspect-ratio: 2 / 1;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100'%3E%3Cpath d='M4 98 100 6l96 92' fill='none' stroke='%23c9cdd3' stroke-width='3' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

a {
    color: var(--blue-bright);
    text-underline-offset: 0.2em;
}

a:hover {
    color: var(--text);
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -3rem;
    left: 1rem;
    z-index: 10;
    padding: 0.5rem 1rem;
    color: var(--navy);
    background: var(--focus);
    font-weight: 600;
}

.skip-link:focus {
    top: calc(env(safe-area-inset-top, 0) + 1rem);
}

/* Layout */

.page {
    position: relative;
    z-index: 1;
    display: grid;
    gap: calc(var(--space) * 1.25);
    max-width: 68rem;
    margin: 0 auto;
    padding: calc(var(--space) * 1.5) var(--space) var(--space);
}

/* Merk */

.brand {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.75rem;
}

.brand__mark {
    flex: none;
    width: clamp(6rem, 18vw, 9.5rem);
    height: auto;
}

.mark-house {
    fill: none;
    stroke: var(--silver);
    stroke-width: 8;
    stroke-linejoin: round;
    stroke-linecap: square;
}

.mark-window rect {
    fill: #eef0f3;
}

.mark-flame {
    fill: var(--blue);
}

.mark-blower {
    fill: var(--green);
    stroke: var(--green);
    stroke-width: 5;
    stroke-linecap: round;
}

.mark-blower__handle {
    fill: none;
}

.mark-blower__tube {
    stroke-width: 8;
}

.brand__name {
    margin: 0;
    font-size: clamp(2.25rem, 1.4rem + 4vw, 4.25rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--silver);
}

.brand__tagline {
    display: grid;
    margin: 0.5rem 0 0;
    font-size: clamp(1.1rem, 0.95rem + 0.8vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
}

.brand__roof {
    color: var(--blue-bright);
}

.brand__garden {
    color: var(--green-bright);
}

/* De blauwe lijn uit het logo, die bij het laden eenmalig openschuift. */
.ridge {
    height: 4px;
    background: linear-gradient(90deg, var(--silver) 0 3rem, var(--blue) 3rem, transparent 100%);
    border-radius: 2px;
    transform-origin: left center;
    animation: ridge-draw 900ms cubic-bezier(0.2, 0.7, 0.2, 1) 150ms both;
}

@keyframes ridge-draw {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* Melding en acties */

.notice {
    max-width: var(--measure);
}

.notice__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
}

.notice__lead {
    margin: 0 0 1.5rem;
    color: var(--muted);
}

.notice__social {
    margin: 1.25rem 0 0;
    color: var(--muted);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.button {
    display: inline-flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.7rem 1.25rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 0.375rem;
    overflow-wrap: anywhere;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.button--primary {
    color: #fff;
    background: #1f6fd0;
}

.button--primary:hover {
    color: #fff;
    background: var(--blue);
}

.button--secondary {
    color: var(--text);
    border-color: rgb(201 205 211 / 45%);
}

.button--secondary:hover {
    color: var(--text);
    border-color: var(--silver);
}

/* Diensten: de kleur van de linkerrand volgt het logo
   (blauw = dak, zilver = huis, groen = tuin). */

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1.5rem var(--space);
}

.service {
    padding-left: 1rem;
    border-left: 3px solid var(--silver);
}

.service--roof {
    border-left-color: var(--blue);
}

.service--garden {
    border-left-color: var(--green);
}

.service__title {
    margin: 0 0 0.35rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.service p {
    margin: 0;
    color: var(--muted);
}

/* Contact */

.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
    gap: 1rem var(--space);
    padding-top: var(--space);
    border-top: 1px solid rgb(201 205 211 / 18%);
    font-size: 0.95rem;
    color: var(--muted);
}

.contact__address {
    font-style: normal;
}

.contact__address strong {
    color: var(--text);
}

.contact__links,
.contact__legal {
    margin: 0;
}

.contact__links a {
    display: inline-block;
    padding: 0.2rem 0;
}

@media (prefers-reduced-motion: reduce) {
    .ridge {
        animation: none;
    }

    .button {
        transition: none;
    }
}

@media print {
    body {
        color: #000;
        background: #fff;
    }

    body::before,
    .ridge,
    .actions,
    .skip-link {
        display: none;
    }

    .brand__name,
    .notice__lead,
    .service p,
    .contact {
        color: #000;
    }
}
