/* =========================================================================
   Geerts Dienstverlening — stylesheet
   Palet en typografische opzet volgen de huisstijl: groen, licht- en
   donkerblauw op wit.
   ========================================================================= */

/* --- Fonts ------------------------------------------------------------- */

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/poppins-300-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/poppins-300-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/poppins-600-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/poppins-600-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/poppins-800-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/poppins-800-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Tokens ------------------------------------------------------------ */

:root {
    --blue-light: #7bb9dd;
    --blue-dark: #1f6188;
    --blue-darker: #174a68;
    --green: #0d9c3a;
    --green-light: #2db157;
    --ink: #1f2226;
    --ink-soft: #4a5057;
    --line: #e2e6ea;
    --surface: #f5f8fa;
    --white: #ffffff;

    --radius: 6px;
    --radius-lg: 14px;
    --container: 1200px;
    --gutter: 24px;
    --nav-height: 76px;
    --shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 12px 40px rgba(31, 97, 136, 0.16);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset ------------------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px;
    color: var(--blue-dark);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.25rem, 7vw, 4rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
}

h3 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
}

h4 {
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
}

p {
    margin: 0 0 20px;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--blue-dark);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

strong {
    font-weight: 600;
}

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

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

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

.skip-link {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 200;
    padding: 12px 20px;
    background: var(--blue-dark);
    color: var(--white);
    border-radius: var(--radius);
    text-decoration: none;
    transform: translateY(-200%);
}

.skip-link:focus {
    transform: translateY(0);
}

/* --- Layout ------------------------------------------------------------ */

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

section {
    padding: clamp(56px, 9vw, 104px) 0;
}

.section--surface {
    background: var(--surface);
}

.section__intro {
    max-width: 720px;
    margin-bottom: clamp(32px, 5vw, 56px);
}

.split {
    display: grid;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

@media (min-width: 900px) {
    .split {
        grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    }

    /* Beeld rechts: de tekstkolom moet dan de brede van de twee zijn. */
    .split--reverse {
        grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    }

    .split--reverse .split__media {
        order: 2;
    }
}

.split__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

/* --- Buttons ----------------------------------------------------------- */

.button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
        border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.button:hover {
    transform: translateY(-2px);
}

.button::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    flex: none;
}

.button--blue {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
}

.button--blue:hover {
    background: var(--blue-darker);
    border-color: var(--blue-darker);
}

.button--green {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.button--green:hover {
    background: var(--green-light);
    border-color: var(--green-light);
}

.button--light {
    background: var(--white);
    border-color: var(--white);
    color: var(--blue-dark);
}

.button--light:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
}

.button--outline {
    background: transparent;
    border-color: var(--blue-dark);
    color: var(--blue-dark);
}

.button--outline:hover {
    background: var(--blue-dark);
    color: var(--white);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

/* --- Site header / navigatie ------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--nav-height);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--blue-dark);
    flex: none;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.logo__text {
    display: flex;
    flex-direction: column;
}

.logo__name {
    color: var(--green);
}

.logo__suffix {
    color: var(--blue-dark);
}

.logo__suffix span {
    color: var(--blue-light);
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    padding: 0 11px;
    background: none;
    border: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--blue-dark);
    border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--blue-dark);
    transition: color 0.2s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
    color: var(--green);
}

.site-nav .nav-cta {
    padding: 10px 22px;
    border-radius: 999px;
    background: var(--green);
    color: var(--white);
}

.site-nav .nav-cta:hover {
    background: var(--green-light);
    color: var(--white);
}

@media (max-width: 979px) {
    .site-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        padding: 12px var(--gutter) 24px;
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav li + li {
        border-top: 1px solid var(--line);
    }

    .site-nav a {
        padding: 14px 0;
    }

    .site-nav .nav-cta {
        margin-top: 16px;
        text-align: center;
    }
}

@media (min-width: 980px) {
    .nav-toggle {
        display: none;
    }

    .site-nav ul {
        display: flex;
        align-items: center;
        gap: 28px;
    }
}

/* --- Hero -------------------------------------------------------------- */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: min(88vh, 760px);
    padding: clamp(64px, 10vw, 120px) 0;
    background-color: var(--white);
    background-image: url('../images/foam-left-top.png'), url('../images/hero-mobile.jpg');
    background-repeat: no-repeat, no-repeat;
    background-position: left -60px top -20px, right -120px bottom;
    background-size: 200px auto, cover;
    overflow: hidden;
}

/* Op smalle schermen ligt de foto onder de tekst, dus dekt de sluier verticaal
   af. Vanaf 900px staat de foto rechts en loopt de sluier diagonaal. */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(255, 255, 255, 0.94) 60%,
        rgba(255, 255, 255, 0.62) 100%
    );
}

.hero .container {
    position: relative;
}

.hero__content {
    max-width: 640px;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero h1 .line {
    display: block;
    overflow: hidden;
}

.hero h1 .line > span {
    display: block;
    animation: rise 0.7s var(--ease) both;
}

.hero h1 .line:nth-child(2) > span {
    animation-delay: 0.1s;
    color: var(--green);
}

.hero h1 .line:nth-child(1) > span {
    color: var(--blue-dark);
}

.hero__lead {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--ink-soft);
    max-width: 34em;
}

.hero__pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--blue-dark);
}

.hero__pillars li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--green);
    vertical-align: 1px;
}

@keyframes rise {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (min-width: 900px) {
    .hero {
        background-image: url('../images/foam-left-top.png'),
            url('../images/foam-right-middle.png'), url('../images/hero.jpg');
        background-position: left -40px top -20px, right 0 center, right center;
        background-size: 240px auto, 116px auto, contain;
    }

    .hero::before {
        background: linear-gradient(
            100deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.96) 38%,
            rgba(255, 255, 255, 0) 72%
        );
    }
}

/* --- Pijlers (Future / Female / Flexible) ------------------------------ */

.pillars {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Zelfde kaartraster, maar met bredere kolommen: zes klusdiensten vallen zo
   netjes uiteen in twee rijen van drie. */
.cards-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.pillar {
    display: flex;
    flex-direction: column;
    padding: 36px 32px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.pillar h3 {
    color: var(--green);
    margin-bottom: 10px;
}

.pillar__headline {
    font-weight: 600;
    color: var(--blue-dark);
}

.pillar__body {
    color: var(--ink-soft);
}

.pillar__body[hidden] {
    display: none;
}

.pillar__toggle {
    align-self: flex-start;
    margin-top: auto;
    padding: 10px 22px;
    background: none;
    border: 2px solid var(--blue-light);
    border-radius: 999px;
    color: var(--blue-dark);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.pillar__toggle:hover {
    background: var(--blue-light);
    color: var(--white);
}

.pillar__toggle .label-less,
.pillar__toggle[aria-expanded='true'] .label-more {
    display: none;
}

.pillar__toggle[aria-expanded='true'] .label-less {
    display: inline;
}

.pillar--cta {
    background: linear-gradient(145deg, var(--blue-dark), var(--blue-darker));
    border-color: transparent;
    color: var(--white);
}

.pillar--cta h3 {
    color: var(--white);
}

.pillar--cta p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 28px;
}

/* --- Dienstenkaarten (carousel) ---------------------------------------- */

.carousel {
    position: relative;
}

.carousel__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

/* Vaste kolombreedte: flex-basis met flex-shrink 0, anders knijpt de browser
   de kaarten samen in plaats van horizontaal te laten scrollen. */
.carousel__track > * {
    flex: 0 0 min(320px, 82%);
}

@media (min-width: 700px) {
    .carousel__track > * {
        flex-basis: calc(50% - 12px);
    }
}

@media (min-width: 1024px) {
    .carousel__track > * {
        flex-basis: calc(33.333% - 16px);
    }
}

.service-card {
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.service-card h3 {
    font-size: 1.3rem;
}

.service-card p,
.service-card ul {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.service-card ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding: 4px 0 4px 24px;
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue-light);
}

.service-card .button {
    align-self: flex-start;
    margin-top: auto;
}

.carousel__controls {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.carousel__button {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--white);
    border: 2px solid var(--blue-light);
    border-radius: 50%;
    color: var(--blue-dark);
    cursor: pointer;
    transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
        opacity 0.2s var(--ease);
}

.carousel__button:hover:not(:disabled) {
    background: var(--blue-light);
    color: var(--white);
}

.carousel__button:disabled {
    opacity: 0.35;
    cursor: default;
}

.carousel__button svg {
    width: 18px;
    height: 18px;
}

/* --- Glasbewassing ----------------------------------------------------- */

.two-col {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.info-card {
    padding: clamp(32px, 5vw, 48px);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
}

.info-card--accent {
    background: linear-gradient(145deg, var(--blue-light), #a9d3ea);
    border-color: transparent;
}

.info-card--accent h2,
.info-card--accent p {
    color: var(--blue-darker);
}

/* --- Galerij ----------------------------------------------------------- */

.gallery {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery__item {
    display: block;
    padding: 0;
    border: 0;
    background: none;
    cursor: zoom-in;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery__item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

/* --- Lightbox ---------------------------------------------------------- */

.lightbox {
    width: min(96vw, 1100px);
    max-width: none;
    max-height: 92vh;
    padding: 0;
    border: 0;
    border-radius: var(--radius-lg);
    background: #0d1216;
    overflow: hidden;
}

.lightbox::backdrop {
    background: rgba(9, 14, 18, 0.86);
}

.lightbox img {
    width: 100%;
    max-height: 92vh;
    object-fit: contain;
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--blue-dark);
    font-size: 1.2rem;
    cursor: pointer;
}

.lightbox__close {
    top: 16px;
    right: 16px;
}

.lightbox__nav--prev {
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
}

.lightbox__nav--next {
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}

.lightbox__nav svg {
    width: 18px;
    height: 18px;
}

/* --- Werken bij -------------------------------------------------------- */

.cta-band {
    background: linear-gradient(120deg, var(--green), var(--green-light));
    color: var(--white);
    text-align: center;
}

.cta-band h2 {
    color: var(--white);
}

.cta-band p {
    max-width: 46em;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.92);
}

.cta-band .button-row {
    justify-content: center;
}

/* --- Vacatures --------------------------------------------------------- */

.vacature-card {
    padding: clamp(32px, 5vw, 48px);
    margin-bottom: 32px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.vacature-card:last-child {
    margin-bottom: 0;
}

.vacature-card h4 {
    margin: 28px 0 10px;
    font-size: 1.05rem;
}

.vacature-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 5px 14px;
    border-radius: 999px;
    background: #e5f5eb;
    color: #0b7a2e;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checklist {
    margin: 0 0 8px;
    padding: 0;
    list-style: none;
}

.checklist li {
    position: relative;
    padding: 4px 0 4px 28px;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 600;
}

.vacature-cta {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

/* --- Tekstpagina (privacybeleid) --------------------------------------- */

.prose {
    max-width: 760px;
}

.prose h2 {
    margin-top: 48px;
    font-size: clamp(1.4rem, 3vw, 1.75rem);
}

.prose ul {
    padding-left: 22px;
}

.prose li {
    margin-bottom: 8px;
}

/* --- Footer / contact -------------------------------------------------- */

.site-footer {
    background: var(--blue-dark);
    color: rgba(255, 255, 255, 0.86);
    padding: clamp(56px, 8vw, 96px) 0 32px;
    /* De footer is het doel van #contact. Is hij korter dan het scherm minus de
       sticky nav, dan clampt de browser de sprong en verdwijnt de kop achter de
       header — deze min-height voorkomt dat. */
    min-height: calc(100vh - var(--nav-height));
}

.site-footer h2 {
    color: var(--white);
}

.site-footer a {
    color: var(--white);
}

.footer-grid {
    display: grid;
    gap: clamp(40px, 6vw, 72px);
}

@media (min-width: 900px) {
    .footer-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    }
}

.contact-intro {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.contact-intro img {
    width: 44px;
    height: 44px;
    flex: none;
}

.contact-form {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.field label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.field input,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--radius);
}

.field textarea {
    min-height: 140px;
    resize: vertical;
}

.field input:invalid:not(:placeholder-shown),
.field.has-error input,
.field.has-error textarea {
    border-color: #d64545;
}

.field__error {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: #ffd0d0;
}

.field__error:empty {
    display: none;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    margin: 0;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 0.95rem;
}

.form-status:empty {
    display: none;
}

.form-status--ok {
    background: rgba(45, 177, 87, 0.2);
    color: #d8f7e3;
}

.form-status--error {
    background: rgba(214, 69, 69, 0.22);
    color: #ffd9d9;
}

.contact-details {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.contact-details li {
    margin-bottom: 4px;
}

.contact-details__label {
    display: block;
    margin: 24px 0 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-light);
}

.contact-details__label:first-child {
    margin-top: 0;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 32px;
    justify-content: space-between;
    align-items: center;
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

/* --- Motion ------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
