@charset "utf-8";
/* CSS Document */
/* =========================================================
   albitsMEDIA 2.0
========================================================= */

:root {

    --anthracite: #11151b;
    --anthracite-light: #181e26;
    --anthracite-card: #1d242d;

    --gray-accent: #b9c2cd;
    --gray-accent-light: #d9e0e8;
    --gray-accent-dark: #697582;

    --white: #ffffff;
    --text: #d9e0e8;
    --muted: #8995a3;

    --border: rgba(255,255,255,0.09);

    --shadow: 0 25px 70px rgba(0,0,0,0.35);

    --radius: 22px;

    --container: 1240px;

}


/* =========================================================
   RESET
========================================================= */

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


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--anthracite);
    color: var(--text);

    line-height: 1.7;

    overflow-x: hidden;
}


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


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


button {
    font: inherit;
}


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

    margin-inline: auto;
}


.section {
    padding: 130px 0;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    background: rgba(17,21,27,0.72);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid transparent;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}


.site-header.scrolled {

    background: rgba(17,21,27,0.94);

    border-color: var(--border);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.25);

}


.nav-container {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    display: inline-flex;

    align-items: baseline;

    font-size: 1.55rem;

    font-weight: 800;

    letter-spacing: -0.03em;

}


.main-nav {

    display: flex;

    align-items: center;

    gap: 34px;

}

.mobile-menu {
    position: relative;
    z-index: 1100;
}

.menu-checkbox {
    display: none;
}

.mobile-menu .menu-toggle {
    display: none;
}

.mobile-menu .main-nav {
    display: flex;
}


.nav-link {

    position: relative;

    color: #b9c2cd;

    font-size: 0.9rem;

    font-weight: 600;

    transition:
        color 0.25s ease;

}


.nav-link:hover,
.nav-link.active {

    color: var(--white);

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--gray-accent);

    transition:
        width 0.25s ease;

}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;

}


.nav-contact {

    padding: 10px 19px;

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 50px;

    color: var(--white);

}


.nav-contact::after {
    display: none;
}


.nav-contact:hover {

    background: var(--gray-accent);

    border-color: var(--gray-accend-dark);

}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {

    display: none;

    width: 46px;
    height: 46px;

    background: transparent;

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

    border-radius: 12px;

    cursor: pointer;

}

.menu-toggle span {

    display: block;

    width: 21px;
    height: 2px;

    margin: 5px auto;

    background: var(--white);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;

}


/* =========================================================
   HERO
========================================================= */


.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 75% 40%,
            rgba(22,136,255,0.16),
            transparent 35%
        ),

        var(--anthracite);

}


.hero-grid {

    position: absolute;

    inset: 0;

    opacity: 0.15;

    background-image:

        linear-gradient(
            rgba(255,255,255,0.06) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.06) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 80%
        );

}


.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;

}


.hero-glow-one {

    width: 500px;
    height: 500px;

    right: -200px;
    top: 100px;

    background:
        rgba(255,255,255,0.055);

}


.hero-glow-two {

    width: 300px;
    height: 300px;

    left: -150px;
    bottom: 50px;

    background:
        rgba(255,255,255,0.035);

}


.hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 80px;

    align-items: center;

    padding-top: 100px;

}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--gray-accent-light);

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 0.2em;

    margin-bottom: 24px;

}


.eyebrow::before {

    content: "";

    width: 32px;
    height: 2px;

    background: var(--gray-accent);

}


.hero h1 {

    max-width: 760px;

    font-size:
        clamp(3rem, 8vw, 7.5rem);

    line-height: 0.92;

    letter-spacing: -0.03em;

    color: var(--white);

}


.hero h1 span {

    display: block;

    color: var(--gray-accent);

}


.hero-text {

    max-width: 620px;

    margin-top: 32px;

    font-size: 1.15rem;

    color: var(--muted);

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 38px;

}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    padding: 0 24px;

    border-radius: 50px;

    font-size: 0.9rem;

    font-weight: 700;

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

}


.btn:hover {

    transform: translateY(-3px);

}


.btn-primary {

    background: var(--gray-accent);

    color: var(--white);

    box-shadow:
        0 10px 35px rgba(255,255,255,0.10);

}


.btn-primary:hover {

    background: var(--gray-accent-light);

}


.btn-outline {

    border: 1px solid rgba(255,255,255,0.18);

    color: var(--white);

    background:
        rgba(255,255,255,0.025);

}


.btn-outline:hover {
    background: var(--gray-accent-light);
    border-color: var(--gray-accent);
    color: #11151b;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    min-height: 500px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero-card {

    width: min(470px, 90%);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.025)
        );

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius: 28px;

    box-shadow: var(--shadow);

    backdrop-filter: blur(18px);

}


.hero-card-main {

    padding: 22px;

    transform:
        perspective(900px)
        rotateY(-7deg)
        rotateX(3deg);

}


.hero-card-top {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--muted);

    font-size: 0.75rem;

    margin-bottom: 22px;

}


.status-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--gray-accent);

    box-shadow:
        0 0 14px var(--gray-accent);

}


.hero-browser {

    overflow: hidden;

    border-radius: 16px;

    background: #f4f7fa;

}


.browser-bar {

    height: 34px;

    display: flex;

    align-items: center;

    gap: 6px;

    padding: 0 13px;

    background: #dce2e8;

}


.browser-bar span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #8f9aa5;

}


.browser-content {

    min-height: 290px;

    padding: 45px 35px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #e9ecef
        );

}


.browser-line {

    width: 75%;
    height: 9px;

    margin-bottom: 14px;

    border-radius: 10px;

    background: #c8cdd2;

}


.browser-line.large {

    width: 90%;
    height: 32px;

    background:
        var(--gray-accent);

}


.browser-line.short {

    width: 55%;

}


.browser-buttons {

    display: flex;

    gap: 10px;

    margin-top: 35px;

}


.browser-buttons span {

    width: 95px;
    height: 32px;

    border-radius: 30px;

    background: var(--gray-accent);

}


.browser-buttons span:last-child {

    background: #d2dce5;

}


.floating-card {

    position: absolute;

    padding: 16px 20px;

    display: flex;

    flex-direction: column;

    gap: 2px;

    background:
        rgba(25,31,39,0.92);

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius: 16px;

    box-shadow: var(--shadow);

    backdrop-filter: blur(15px);

}


.floating-card strong {

    color: var(--white);

    font-size: 0.85rem;

}


.floating-card span {

    color: var(--gray-accent-light);

    font-size: 0.7rem;

}


.floating-card-one {

    left: 0;
    bottom: 80px;

}


.floating-card-two {

    right: 0;
    top: 90px;

}

/* =========================================================
   SCROLL HINT
========================================================= */

.scroll-hint {

    position: absolute;

    bottom: 30px;
    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color: var(--muted);

    font-size: 0.65rem;

    letter-spacing: 0.15em;

    text-transform: uppercase;

}


/* Animierter Scroll-Strich */

.scroll-hint span {

    width: 1px;
    height: 34px;

    background:
        linear-gradient(
            to bottom,
            var(--gray-accent),
            transparent
        );

    animation:
        scrollLine 1.8s ease-in-out infinite;

}


/* Sanftes Wandern des Strichs */

@keyframes scrollLine {

    0% {
        opacity: 0.35;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(8px);
    }

    100% {
        opacity: 0.35;
        transform: translateY(0);
    }

}

/* =========================================================
   SECTION LABEL
========================================================= */

.section-label {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--gray-accent-light);

    font-size: 0.72rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.16em;

}


.section-label span {

    color: var(--muted);

}


/* =========================================================
   INTRO
========================================================= */

.intro {

    background: #151a21;

}


.intro-grid {

    display: grid;

    grid-template-columns: 0.35fr 1fr;

    gap: 80px;

}


.intro-content {

    max-width: 820px;

}


.intro h2,
.section-heading h2,
.about h2,
.cta h2 {

    font-size:
        clamp(2.7rem, 5vw, 5rem);

    line-height: 1.02;

    letter-spacing: -0.03em;

    color: var(--white);

}


.intro h2 strong,
.section-heading h2 strong,
.about h2 strong,
.cta h2 strong {

    color: var(--gray-accent);

    font-weight: 800;

}


.lead {

    margin-top: 30px;

    font-size: 1.25rem;

    color: #cbd3dc;

}


.intro-content p:not(.lead) {

    max-width: 720px;

    margin-top: 22px;

    color: var(--muted);

}


/* =========================================================
   DARK SECTION
========================================================= */

.section-dark {

    background: var(--anthracite);

}


.section-heading {

    max-width: 850px;

    margin-bottom: 65px;

}


.section-heading h2 {

    margin-top: 20px;

}


.section-heading > p {

    max-width: 680px;

    margin-top: 24px;

    color: var(--muted);

}


/* =========================================================
   SERVICES
========================================================= */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


.service-card {

    position: relative;

    min-height: 330px;

    padding: 32px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #1c232c,
            #171d24
        );

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

    border-radius: var(--radius);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}


.service-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -90px;
    right: -90px;

    border-radius: 50%;

    background:
        rgba(22,136,255,0.1);

    filter: blur(30px);

}


.service-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(22,136,255,0.45);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.25);

}


.service-number {

    color: var(--muted);

    font-size: 0.7rem;

    font-weight: 700;

}


.service-icon {

    margin-top: 35px;

    color: var(--gray-accent);

    font-size: 2rem;

}


.service-card h3 {

    margin-top: 20px;

    color: var(--white);

    font-size: 1.25rem;

}


.service-card p {

    margin-top: 12px;

    color: var(--muted);

    font-size: 0.92rem;

}


.service-card a {

    position: absolute;

    left: 32px;
    bottom: 28px;

    color: var(--gray-accent-light);

    font-size: 0.8rem;

    font-weight: 700;

}


/* =========================================================
   PROJECTS
========================================================= */

.projects {

    background:
        #f0f4f7;

    color: #1b242e;

}


.projects .section-label {

    color: var(--gray-accent-dark);

}


.projects .section-label span {

    color: #7f8b96;

}


.projects h2 {

    color: #17202a;

}


.projects-heading {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 40px;

}


.text-link {

    color: var(--gray-accent-dark);

    font-weight: 800;

    font-size: 0.85rem;

}


.project-grid {

    display: grid;

    grid-template-columns:
        1.35fr 1fr;

    gap: 20px;

}


.project-card {

    display: block;

    overflow: hidden;

    background: var(--white);

    border-radius: 22px;

    box-shadow:
        0 15px 45px rgba(20,35,50,0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.project-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(20,35,50,0.15);

}


.project-large {

    grid-row:
        span 2;

}


.project-image {

    min-height: 290px;

    position: relative;

    overflow: hidden;

}


.project-large .project-image {

    min-height: 500px;

}


.project-placeholder {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,0.85);

    font-size: 1.5rem;

    font-weight: 800;

    letter-spacing: -0.03em;

    background:

        radial-gradient(
            circle at 50% 30%,
            rgba(22,136,255,0.65),
            transparent 40%
        ),

        linear-gradient(
            135deg,
            #111820,
            #243a51
        );

}


.project-placeholder span {

    font-size: 0.65rem;

    letter-spacing: 0.02em;

    color: #7dc1ff;

}


.project-pflughaupt .project-placeholder {

    background:
        linear-gradient(
            135deg,
            #17202a,
            #36566d
        );

}


.project-podologie .project-placeholder {

    background:
        linear-gradient(
            135deg,
            #1b2630,
            #3b657f
        );

}


.project-info {

    padding: 23px 25px 27px;

}


.project-info span {

    color: #7b8792;

    font-size: 0.7rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.03em;

}


.project-info h3 {

    margin-top: 7px;

    color: #18212a;

    font-size: 1.25rem;

}


.project-list {

    display: grid;

    grid-template-columns:
        180px 1fr;

    gap: 30px;

    margin-top: 55px;

    padding-top: 25px;

    border-top:
        1px solid rgba(23,32,42,0.12);

    color: #68737e;

    font-size: 0.85rem;

}


.project-list span {

    color: var(--gray-accent-dark);

    font-weight: 800;

}


/* =========================================================
   ABOUT
========================================================= */

.section-blue {

    background:

        radial-gradient(
            circle at 15% 50%,
            rgba(73,167,255,0.13),
            transparent 30%
        ),

        #121a23;

}


.about-grid {

    display: grid;

    grid-template-columns:
        0.8fr 1fr;

    gap: 110px;

    align-items: center;

}


.about-visual {

    min-height: 470px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.about-box {

    width: min(390px, 90%);

    aspect-ratio: 1;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 50px;

    border:
        1px solid rgba(73,167,255,0.3);

    border-radius: 35px;

    background:

        linear-gradient(
            145deg,
            rgba(73,167,255,0.12),
            rgba(255,255,255,0.02)
        );

    box-shadow:
        0 40px 90px rgba(0,0,0,0.35);

}


.about-small {

    color: var(--white);

    font-size: 2.7rem;

    font-weight: 800;

    letter-spacing: -0.03em;

}


.about-box strong {

    color: var(--gray-accent);

    font-size: 3.5rem;

    letter-spacing: -0.03em;

}


.about-line {

    width: 55px;
    height: 2px;

    margin: 35px 0 20px;

    background: var(--gray-accent);

}


.about-box p {

    color: var(--muted);

}


.about-content > p {

    max-width: 680px;

    margin-top: 25px;

    color: var(--muted);

}


.about-points {

    display: grid;

    gap: 12px;

    margin-top: 35px;

}


.about-points div {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 15px 0;

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

    color: #c8d0d9;

    font-size: 0.9rem;

}


.about-points strong {

    color: var(--gray-accent);

    font-size: 0.7rem;

}


/* =========================================================
   CTA
========================================================= */

.cta {

    background: #eef3f7;

}


.cta-box {

    position: relative;

    overflow: hidden;

    padding:
        90px 80px;

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            #121920,
            #1b2c3c
        );

    box-shadow:
        0 35px 90px rgba(16,32,48,0.18);

}


.cta-glow {

    position: absolute;

    width: 450px;
    height: 450px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background:
        rgba(22,136,255,0.22);

    filter: blur(60px);

}


.cta h2 {

    position: relative;

    max-width: 760px;

    margin-top: 20px;

}


.cta > .container > .cta-box > p {

    position: relative;

    max-width: 620px;

    margin-top: 25px;

    color: #aab7c4;

}


.cta-actions {

    position: relative;

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;

}


/* FOOTER */
.site-footer{padding-top:70px;background:#11151b;}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:60px;padding-bottom:60px;}
.footer-brand p{margin-top:15px;color:#aab4bf;font-size:.8rem;}
.footer-column{display:flex;flex-direction:column;gap:9px;}
.footer-column h4{margin-bottom:10px;color:#fff;font-size:.8rem;}
.footer-column a,.footer-column span{color:#d9e0e8;font-size:.78rem;transition:color .25s ease;}
.footer-column a:hover{color:#fff;}
.footer-bottom{min-height:70px;display:flex;align-items:center;justify-content:space-between;gap:20px;border-top:1px solid rgba(255,255,255,.12);color:#aab4bf;font-size:.7rem;}
.footer-bottom div{display:flex;gap:20px;}
.footer-bottom a:hover{color:#fff;}
/* =========================================================
   COOKIE BANNER
========================================================= */

.cookie-banner {

    position: fixed;

    z-index: 2000;

    left: 20px;
    right: 20px;
    bottom: 20px;

    display: none;

}


.cookie-banner.show {

    display: block;

}


.cookie-content {

    width: min(100%, 950px);

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 20px;

    padding: 18px 22px;

    background:
        rgba(18,23,30,0.97);

    border:
        1px solid rgba(255,255,255,0.13);

    border-radius: 18px;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.4);

    backdrop-filter: blur(15px);

}


.cookie-icon {

    width: 40px;
    height: 40px;

    display: flex;

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

    border-radius: 50%;

    color: var(--white);

    background:
        rgba(255,255,255,0.08);

    border:
        1px solid rgba(22,136,255,0.4);

}


.cookie-content strong {

    color: var(--white);

    font-size: 0.82rem;

}


.cookie-content p {

    margin-top: 3px;

    color: #9da8b3;

    font-size: 0.72rem;

    line-height: 1.5;

}


.cookie-content a {

    color: var(--gray-accent-light);

    font-size: 0.7rem;

}


.cookie-button {

    padding: 10px 20px;

    border: 0;

    border-radius: 50px;

    background: var(--gray-accent);

    color: var(--white);

    font-size: 0.75rem;

    font-weight: 700;

    cursor: pointer;

}


.cookie-button:hover {

    background: var(--gray-accent-light);

}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .hero-container {

        grid-template-columns:
            1fr;

        gap: 50px;

    }


    .hero-content {

        max-width: 800px;

    }


    .hero-visual {

        min-height: 420px;

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .about-grid {

        gap: 60px;

    }

}


@media (max-width: 800px) {

    .mobile-menu {
        display: block;
        position: relative;
    }

    .container {

        width:
            min(
                calc(100% - 32px),
                var(--container)
            );

    }

    .section {

        padding: 90px 0;

    }

    .menu-checkbox {
        display: none;
    }

    .mobile-menu .menu-toggle {

        display: block;
        width: 46px;
        height: 46px;
        padding: 1px 0 0;
        background: transparent;
        border: 1px solid var(--border);
        border-radius: 12px;
        cursor: pointer;
        user-select: none;

    }

    .main-nav {

        position: absolute;

        top: calc(100% + 10px);
        right: 0;
        left: auto;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        width: min(280px, calc(100vw - 32px));

        padding: 10px;

        background:
            rgba(17,21,27,0.98);

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

        border-radius: 18px;

        box-shadow:
            0 25px 60px rgba(0,0,0,0.4);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform:
            translateY(-10px);

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

    }

    .menu-checkbox:checked ~ .main-nav {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform:
            translateY(0);

    }

    .menu-checkbox:checked + .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .menu-checkbox:checked + .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-link {

        display: block;
        padding: 14px;
        color: var(--gray-accent-light);

    }

    .nav-link:hover,
    .nav-link.active {

        color: var(--white);

    }

    .nav-link::after {

        display: none;

    }

    .nav-contact {

        text-align: center;

        margin-top: 6px;

    }



    .hero {

        min-height: auto;

        padding-bottom: 100px;

    }


    .hero-container {

        padding-top: 150px;

    }


    .hero h1 {

        font-size:
            clamp(3.5rem, 17vw, 6rem);

    }


    .hero-text {

        font-size: 1rem;

    }


    .hero-visual {

        min-height: 350px;

    }


    .hero-card-main {

        transform: none;

    }


    .floating-card-one {

        left: -5px;
        bottom: 20px;

    }


    .floating-card-two {

        right: -5px;
        top: 25px;

    }


    .intro-grid,
    .about-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .services-grid {

        grid-template-columns: 1fr;

    }


    .projects-heading {

        align-items: start;

        flex-direction: column;

    }


    .project-grid {

        grid-template-columns: 1fr;

    }


    .project-large {

        grid-row: auto;

    }


    .project-large .project-image,
    .project-image {

        min-height: 300px;

    }


    .project-list {

        grid-template-columns: 1fr;

        gap: 10px;

    }


    .about-visual {

        min-height: 350px;

    }


    .cta-box {

        padding:
            55px 28px;

    }


    .footer-grid {

        grid-template-columns: 1fr 1fr;

        gap: 40px;

    }


    .footer-brand {

        grid-column:
            1 / -1;

    }

}


@media (max-width: 520px) {

    .hero-buttons,
    .cta-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .btn {

        width: 100%;

    }


    .hero-visual {

        min-height: 300px;

    }


    .hero-card {

        width: 100%;

    }


    .floating-card {

        padding: 11px 14px;

    }


    .floating-card-one {

        left: -5px;

    }


    .floating-card-two {

        right: -5px;

    }


    .cookie-banner {

        left: 10px;
        right: 10px;
        bottom: 10px;

    }


    .cookie-content {

        grid-template-columns:
            auto 1fr;

        gap: 12px;

    }


    .cookie-button {

        grid-column:
            1 / -1;

        width: 100%;

    }


    .footer-grid {

        grid-template-columns: 1fr;

    }


    .footer-brand {

        grid-column: auto;

    }


    .footer-bottom {

        align-items: flex-start;

        flex-direction: column;

        justify-content: center;

        padding: 20px 0;

    }

}


/* =========================================================
   REDUCED 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;

    }

}

/* =========================================================
   CONTENT VISIBILITY SAFETY
   ========================================================= */

/* Never leave content invisible if the animation script fails. */
.no-js .reveal {
    opacity: 1 !important;
    transform: none !important;
}

.js .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

