
/* ==========================================
   FLOW BALANCE — WEBSITE STYLES
========================================== */


/* ==========================================
   01. GLOBAL & DESIGN SYSTEM
========================================== */

/* 01.1 — Design variables */

:root {
    /* Colors */
    --white: #FFFFFF;
    --background: #FBFCF8;
    --mint: #EDF5E5;
    --sage: #C4DEB3;
    --olive: #91AA7C;
    --green: #354D39;
    --text-light: #657565;
    --border: #DDE7D8;

    /* Additional colors */
    --green-hover: #4C6850;
    --green-accent: #7A966C;
    --green-muted: #78936B;

    /* Typography */
    --heading: "Cormorant Garamond", Georgia, serif;
    --body: "Source Sans 3", Arial, sans-serif;

    /* Layout */
    --container: 1200px;
    --spacing: 120px;
    --radius: 18px;

    /* Shared arrow SVG */
    --arrow-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 17 17 7M8 7h9v9' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}


/* 01.2 — Reset */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* 01.3 — Document */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    background: var(--background);
    color: var(--green);
    font: 17px/1.7 var(--body);

    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}


/* 01.4 — Basic elements */

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

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

p {
    max-width: 70ch;
}


/* 01.5 — Typography */

h1,
h2,
h3 {
    font-family: var(--heading);
    font-weight: 500;
    line-height: 1.05;
}

h1 em,
h2 em {
    display: block;
    color: var(--green-accent);
    font-weight: 400;
}


/* 01.6 — Layout helpers */

.container {
    width: min(calc(100% - 64px), var(--container));
    margin-inline: auto;
}

.section {
    padding-block: var(--spacing);
}

.section h2 {
    font-size: clamp(46px, 5vw, 76px);
}


/* 01.7 — Section typography */

.eyebrow {
    margin-bottom: 22px;
    color: var(--green-muted);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.section-intro {
    max-width: 470px;
    color: var(--text-light);
    font-size: 17px;
}


/* ==========================================
   02. SHARED COMPONENTS
========================================== */

/* 02.1 — Buttons */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 24px;
    min-height: 52px;
    padding: 12px 27px;

    border-radius: 100px;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

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


/* Primary button */

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

.button-primary:hover {
    background: var(--green-hover);
}


/* Outline button */

.button-outline {
    border: 1px solid var(--green);
    color: var(--green);
}

.button-outline:hover {
    background: var(--mint);
}


/* 02.2 — Text links */

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 12px;
    width: fit-content;
    padding-bottom: 4px;

    border-bottom: 1px solid var(--olive);

    font-size: 15px;
    font-weight: 600;

    transition: gap 0.25s ease;
}

.text-link:hover {
    gap: 20px;
}


/* 02.3 — Shared arrow icon */

/*
   All links with the .has-arrow class
   use this same icon.

   To replace the arrow everywhere,
   change --arrow-icon in :root.
*/

.has-arrow::after {
    content: "";
    display: block;

    width: 18px;
    height: 18px;
    flex-shrink: 0;

    background-color: currentColor;

    -webkit-mask: var(--arrow-icon) center / contain no-repeat;
    mask: var(--arrow-icon) center / contain no-repeat;
}


/* 02.4 — Section headings */

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 50px;
    margin-bottom: 60px;
}

.section-heading.centered {
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 0;
    text-align: center;
}

.section-heading.centered .section-intro {
    margin-top: 25px;
}


/* ==========================================
   03. HEADER & NAVIGATION
========================================== */

/* 03.1 — Header layout */

.site-header {
    position: relative;
    z-index: 100;

    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 32px;
    min-height: 110px;
}


/* 03.2 — Brand & logo */

.brand {
    display: flex;
    align-items: center;

    gap: 14px;
    flex-shrink: 0;
}

.brand-logo {
    width: 78px;
    height: 78px;
    flex-shrink: 0;

    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 50%;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.brand-name {
    font: 500 35px/0.95 var(--heading);
}

.brand-subtitle {
    color: var(--text-light);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
}


/* 03.3 — Desktop navigation */

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

.main-nav a {
    font-size: 15px;
    font-weight: 500;

    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--green-accent);
}


/* Contact button in navigation */

.main-nav .nav-contact {
    padding: 10px 23px;

    border-radius: 100px;
    background: var(--green);
    color: var(--white);
}

.main-nav .nav-contact:hover {
    background: var(--green-hover);
    color: var(--white);
}


/* 03.4 — Mobile menu toggle */

/*
   Hidden on desktop.
   Mobile styles are defined in section 07.
*/

.menu-toggle {
    display: none;
}


/* ==========================================
   04. HOMEPAGE
========================================== */


/* ------------------------------------------
   04.1 — HERO
------------------------------------------ */

/* Main hero layout */

.hero {
    position: relative;
    overflow: hidden;

    padding-top: 100px;
    background: var(--background);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;

    gap: 60px;
    min-height: 560px;
    padding-bottom: 100px;
}


/* Hero text */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    max-width: 650px;
    margin-bottom: 30px;

    font-size: clamp(64px, 6.3vw, 100px);
    letter-spacing: -0.035em;
}

.hero-description {
    max-width: 520px;
    margin-bottom: 38px;

    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}


/* Hero visual container */

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    height: 540px;
}

.hero-visual-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
}


/* Decorative background circles */

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-two {
    right: 0;
    bottom: 30px;

    width: 260px;
    height: 260px;

    background: var(--sage);
    opacity: 0.65;
}

.hero-shape-three {
    bottom: 25px;
    left: 0;

    width: 160px;
    height: 160px;

    background: var(--olive);
    opacity: 0.12;
}


/* Hero logo */

.hero-logo {
    width: min(100%, 520px);
    max-width: none;
    height: auto;

    object-fit: contain;
    transform: scale(1.2);

    filter: drop-shadow(
        0 16px 24px rgba(53, 77, 57, 0.06)
    );
}


/* Rust, Vertrouwen, Verbinding */

.hero-visual-line {
    position: absolute;
    right: 18%;
    bottom: 24%;
    z-index: 3;

    width: 64px;
    height: 1px;

    background: var(--olive);
}

.hero-visual-content p {
    position: absolute;
    right: 6%;
    bottom: 9%;
    z-index: 3;

    font: italic 32px/1.1 var(--heading);
    text-align: left;
}


/* Hero bottom label */

.hero-bottom {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 35px;
    padding-bottom: 35px;
}

.hero-bottom > span {
    width: 85px;
    height: 1px;
    background: var(--border);
}

.hero-bottom p {
    color: var(--green-accent);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
}

.hero-bottom p span {
    margin-inline: 12px;
}


/* ------------------------------------------
   04.2 — BEHANDELINGEN
------------------------------------------ */

/* Section background */

.treatments-section {
    background: var(--white);
}


/* Treatment cards layout */

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}


/* Individual treatment card */

.treatment-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-height: 350px;
    padding: 38px;

    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.treatment-card:hover {
    background: var(--mint);
    border-color: var(--sage);
    transform: translateY(-5px);
}


/* Custom treatment icons */

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 68px;
    height: 68px;
    flex-shrink: 0;
    margin-bottom: 35px;

    border-radius: 50%;
    background: var(--mint);
}

.card-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}


/* Treatment text */

.treatment-card h3 {
    margin-bottom: 16px;
    font-size: 34px;
}

.treatment-card p {
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 16px;
}

.treatment-card .text-link {
    margin-top: auto;
}


/* ------------------------------------------
   04.3 — TEAM INTRODUCTION
------------------------------------------ */

.team-section {
    background: var(--mint);
}

.team-section .section-heading {
    max-width: 650px;
    margin: 0 auto;
}

.team-section .section-intro {
    margin: 25px auto 35px;
}

.team-section .button {
    margin-top: 10px;
}


/* ------------------------------------------
   04.4 — ONZE VISIE
------------------------------------------ */

/* Section layout */

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

.vision-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 110px;
}


/* Vision illustration */

.vision-visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 510px;
}

.vision-circle {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 430px;
    height: 430px;
    max-width: 100%;

    border-radius: 50%;
    background: transparent;
}

.vision-circle img {
    width: 100%;
    max-width: none;
    height: auto;

    object-fit: contain;
    transform: scale(1.25);
}

.vision-decoration {
    position: absolute;
    right: 0;
    bottom: 0;

    width: 260px;
    height: 260px;

    border-radius: 50%;
    background: var(--sage);
    opacity: 0.55;
}


/* Vision text */

.vision-content h2 {
    margin-bottom: 30px;
}

.vision-content > p:not(.eyebrow) {
    margin-bottom: 22px;
    color: var(--text-light);
    font-size: 17px;
}

.vision-content .button {
    margin-top: 15px;
}


/* ------------------------------------------
   04.5 — RUIMTE HUREN
------------------------------------------ */

/* Section background */

.rental-section {
    background: var(--white);
}


/* Rental panel */

.rental-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;
    min-height: 480px;

    background: var(--mint);
    border-radius: 26px;
}


/* Rental text */

.rental-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    padding: 65px;
}

.rental-content h2 {
    margin-bottom: 22px;
}

.rental-content > p:not(.eyebrow) {
    max-width: 440px;
    margin-bottom: 30px;
    color: var(--text-light);
}


/* Rental image placeholder */

.rental-visual {
    padding: 25px;
}

.rental-visual-inner {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
    min-height: 350px;

    border-radius: var(--radius);

    background: linear-gradient(
        135deg,
        #D9E8CE,
        #B2CCA3
    );
}

.rental-visual-inner span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
}


/* ------------------------------------------
   04.6 — CONTACT
------------------------------------------ */

/* Section layout */

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;

    gap: 100px;
}


/* Contact text */

.contact-content h2 {
    margin-bottom: 25px;
}

.contact-content > p:not(.eyebrow) {
    max-width: 500px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-content .contact-note {
    color: var(--green);
    font-weight: 600;
}


/* Contact information card */

.contact-card {
    padding: 45px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.contact-item {
    padding-block: 22px;
    border-bottom: 1px solid var(--border);
}

.contact-item:first-child {
    padding-top: 0;
}

.contact-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.contact-label {
    display: block;
    margin-bottom: 8px;

    color: var(--green-muted);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.contact-item p {
    font: 28px/1.2 var(--heading);
}


/* ==========================================
   05. FOOTER
========================================== */

/* 05.1 — Footer layout */

.site-footer {
    padding-block: 45px;
    background: var(--green);
    color: var(--white);
}

.footer-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* 05.2 — Footer brand */

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    width: 85px;
    height: 85px;
    flex-shrink: 0;
    object-fit: contain;
}

.footer-brand span {
    font: 34px var(--heading);
}


/* 05.3 — Footer text */

.footer-layout > p {
    color: #DFE9D9;
    font-size: 14px;
}

.footer-credit {
    color: #DFE9D9;
    font-size: 12px;
}


/* ==========================================
   06. TEAM PAGE
========================================== */

/* 06.1 — Page introduction */

.team-page-hero {
    padding: 110px 0 100px;
    background: var(--mint);
    text-align: center;
}

.team-page-hero .container,
.team-page-contact .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-page-hero h1 {
    margin-bottom: 25px;
    font-size: clamp(60px, 7vw, 100px);
}

.team-page-hero > .container > p:last-child {
    max-width: 550px;
    color: var(--text-light);
}


/* 06.2 — Team members layout */

.team-page-members {
    padding: 100px 0;
    background: var(--white);
}

.member-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 100px;
    padding: 60px 0;
}

.member-profile + .member-profile {
    border-top: 1px solid var(--border);
}


/* Alternate image and text positions */

.member-profile.reverse .member-image {
    order: 2;
}


/* 06.3 — Member images */

.member-image {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 480px;

    border-radius: 24px;

    background: linear-gradient(
        135deg,
        var(--mint),
        var(--sage)
    );
}

.member-image span {
    color: var(--green);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
}


/* 06.4 — Member information */

.member-content h2 {
    margin-bottom: 30px;

    font: 500 clamp(55px, 5vw, 76px)/1.05 var(--heading);
}

.member-content > p:not(.eyebrow) {
    max-width: 500px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.member-content .button {
    margin-top: 20px;
}


/* 06.5 — Team page contact */

.team-page-contact {
    padding: 100px 0;
    background: var(--mint);
    text-align: center;
}

.team-page-contact h2 {
    margin-bottom: 25px;
    font-size: clamp(50px, 5vw, 76px);
}

.team-page-contact p:not(.eyebrow) {
    margin-bottom: 30px;
    color: var(--text-light);
}


/* ==========================================
   07. RESPONSIVE DESIGN
========================================== */

/*
   Breakpoints:

   1100px — Tablet adjustments
    950px — Mobile layout and navigation
    800px — Smaller logo adjustments
    420px — Small phone adjustments

   All responsive overrides are kept here.
*/


/* ------------------------------------------
   07.1 — TABLET (1100px)
------------------------------------------ */

@media (max-width: 1100px) {

    /* Header */

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .brand-name {
        font-size: 30px;
    }

    .brand-logo {
        width: 64px;
        height: 64px;
    }


    /* Hero */

    .hero-layout {
        gap: 30px;
    }

    .hero-visual {
        height: 450px;
    }

    .hero-logo {
        width: 290px;
    }


    /* Vision */

    .vision-layout {
        gap: 50px;
    }

}


/* ------------------------------------------
   07.2 — MOBILE LAYOUT (950px)
------------------------------------------ */

@media (max-width: 950px) {

    /* Global layout */

    :root {
        --spacing: 80px;
    }

    .container {
        width: min(calc(100% - 40px), var(--container));
    }


    /* --------------------------------------
       Header & mobile navigation
    -------------------------------------- */

    .header-inner {
        min-height: 85px;
    }

    .brand-logo {
        width: 60px;
        height: 60px;
    }

    .brand-name {
        font-size: 30px;
    }


    /* Mobile menu button */

    .menu-toggle {
        position: relative;
        z-index: 102;

        display: flex;
        flex-direction: column;
        justify-content: center;

        gap: 6px;

        width: 44px;
        height: 44px;
        padding: 10px;

        border: none;
        background: transparent;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;

        width: 100%;
        height: 2px;

        background: var(--green);

        transition:
            transform 0.25s ease,
            opacity 0.25s ease;
    }


    /* Menu button — open state */

    .menu-toggle.active span:first-child {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:last-child {
        transform: translateY(-8px) rotate(-45deg);
    }


    /* Mobile navigation panel */

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;
        max-height: calc(100dvh - 85px);
        overflow-y: auto;
        padding: 20px;

        background: var(--background);
        border-bottom: 1px solid var(--border);

        box-shadow: 0 20px 35px rgba(53, 77, 57, 0.07);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }


    /* Mobile navigation — open state */

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 16px;
        font-size: 17px;
    }

    .main-nav .nav-contact {
        margin-top: 12px;
        text-align: center;
    }


    /* --------------------------------------
       Hero — Mobile layout
    -------------------------------------- */

    .hero {
        padding-top: 65px;
    }

    .hero-layout {
        grid-template-columns: 1fr;

        gap: 40px;
        padding-bottom: 35px;
    }

    .hero h1 {
        max-width: 650px;
        font-size: clamp(60px, 11vw, 84px);
    }

    .hero-description {
        font-size: 17px;
    }


    /* Hero visual — Logo above text */

    .hero-visual {
        height: auto;
        min-height: 0;
        flex-direction: column;
    }

    .hero-visual-content {
        width: 100%;
        flex-direction: column;
    }

    .hero-logo {
        width: min(75vw, 300px);
        max-width: 100%;
        height: auto;
        transform: none;
    }


    /* Hero visual — Text below logo */

    .hero-visual-line {
        position: static;

        width: 45px;
        margin: 25px auto 15px;
    }

    .hero-visual-content p {
        position: static;

        margin: 0;

        font-size: 30px;
        line-height: 1.15;
        text-align: center;
    }


    /* Hide decorative circles on mobile */

    .hero-shape-two,
    .hero-shape-three {
        display: none;
    }


    /* Hero bottom label */

    .hero-bottom {
        gap: 15px;
        padding: 20px 20px 35px;
    }

    .hero-bottom > span {
        width: 25px;
        flex-shrink: 0;
    }

    .hero-bottom p {
        font-size: 9px;
        letter-spacing: 0.1em;
        text-align: center;
    }


    /* --------------------------------------
       Homepage — Shared sections
    -------------------------------------- */

    .section-heading {
        flex-direction: column;
        align-items: flex-start;

        gap: 25px;
        margin-bottom: 40px;
    }

    .section-heading.centered {
        align-items: center;
        gap: 0;
    }

    .section h2 {
        font-size: clamp(48px, 9vw, 68px);
    }


    /* --------------------------------------
       Homepage — Treatments
    -------------------------------------- */

    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .treatment-card {
        min-height: 280px;
        padding: 32px;
    }

    .card-icon {
        margin-bottom: 20px;
    }


    /* --------------------------------------
       Homepage — Vision
    -------------------------------------- */

    .vision-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vision-visual {
        min-height: 350px;
    }

    .vision-circle {
        width: 320px;
        height: 320px;
    }

    .vision-circle img {
        transform: scale(1.15);
    }

    .vision-decoration {
        width: 180px;
        height: 180px;
    }


    /* --------------------------------------
       Homepage — Rental
    -------------------------------------- */

    .rental-panel {
        grid-template-columns: 1fr;
    }

    .rental-content {
        padding: 45px 30px;
    }

    .rental-visual {
        padding: 0 20px 20px;
    }

    .rental-visual-inner {
        min-height: 300px;
    }


    /* --------------------------------------
       Homepage — Contact
    -------------------------------------- */

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-card {
        padding: 32px;
    }


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

    .footer-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }


    /* --------------------------------------
       Team page
    -------------------------------------- */

    .team-page-hero {
        padding: 80px 0;
    }

    .team-page-members {
        padding: 40px 0;
    }

    .member-profile {
        grid-template-columns: 1fr;

        gap: 35px;
        padding: 50px 0;
    }

    .member-profile.reverse .member-image {
        order: 0;
    }

    .member-image {
        min-height: 350px;
    }

    .team-page-contact {
        padding: 80px 0;
    }

}


/* ------------------------------------------
   07.3 — SMALLER LOGOS (800px)
------------------------------------------ */

@media (max-width: 800px) {

    /* Vision */

    .vision-circle img {
        transform: scale(1.15);
    }


    /* Footer */

    .footer-brand img {
        width: 70px;
        height: 70px;
    }

}


/* ------------------------------------------
   07.4 — SMALL PHONES (420px)
------------------------------------------ */

@media (max-width: 420px) {

    /* Header */

    .brand-name {
        font-size: 27px;
    }

    .brand-logo {
        width: 52px;
        height: 52px;
    }


    /* Hero heading */

    .hero h1 {
        font-size: 55px;
    }


    /* Hero buttons */

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .button {
        width: 100%;
    }

}


/* ==========================================
   08. ACCESSIBILITY
========================================== */

/* Keyboard focus */

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--olive);
    outline-offset: 4px;
}


/* Reduced motion preference */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

}