:root {
    /* ============================================ */
    /* BRUTALIST COLOR SCHEME - CHANGE THESE ONLY */
    /* ============================================ */
/* 
    --brutal-dark: #000000;
    --brutal-light: #ffffff;
    --brutal-accent: #ff0000; */

    --brutal-dark: #574D45;
    --brutal-light: #FFF7E4;
    --brutal-accent: #98D2EB;

    /* Jack-o-lantern */  
    /* --brutal-dark: #F7B801;
    --brutal-light: #1C5253; 
    --brutal-accent: #20BF55; */


    /* 4. DODO SLATE - Cool Grey & Warm Accent */
    /* --brutal-dark: #4a4a52;
    --brutal-light: #ffffff;
    --brutal-accent: #ff9a3c; */


    /* ============================================ */
    /* DERIVED COLORS - AUTO-CALCULATED */
    /* ============================================ */

    --primary-color: var(--brutal-dark);
    --accent-color: var(--brutal-accent);
    --secondary-accent: color-mix(in srgb, var(--brutal-accent) 80%, black);
    --text-color: var(--brutal-dark);
    --light-bg: var(--brutal-light);
    --white: var(--brutal-light);
    --card-bg: color-mix(in srgb, var(--brutal-light) 95%, var(--brutal-dark));
    --border-color: var(--brutal-dark);
    --border-width: 4px;
    --border: var(--border-width) solid var(--border-color);
}

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

body {
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    line-height: 1.4;
    color: var(--text-color);
    background: var(--light-bg);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Full Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.3s ease;
}

.loader-footprints {
    position: relative;
    width: 150px;
    height: 120px;
}

.loader-footprint {
    position: absolute;
    width: 50px;
    height: 75px;
    color: var(--accent-color);
    opacity: 1;
}

/* Footprint animation */
.loader-footprint-1 {
    animation: footprintStep 1.8s linear 0s infinite;
}

.loader-footprint-2 {
    animation: footprintStep 1.8s linear 0.6s infinite;
}

.loader-footprint-3 {
    animation: footprintStep 1.8s linear 1.2s infinite;
}

@keyframes footprintStep {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    33.33% {
        opacity: 1;
        transform: scale(1);
    }
    33.34% {
        opacity: 0;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Header & Navigation */
header {
    background: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: var(--border);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

header.header-visible {
    transform: translateY(0);
}

/* Add padding to body to prevent content jump */
body {
    padding-top: 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.logo-text {
    font-family: 'Arial Black', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.cta-button {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.1s ease;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0;
    border: var(--border);
    border-color: var(--primary-color);
    cursor: pointer;
    font-family: inherit;
    text-transform: inherit;
}

.cta-button:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--primary-color);
    transform: translate(4px, -4px);
    box-shadow: -4px 4px 0 var(--accent-color);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

/* Hero Section - Default (Centered) */
.hero {
    text-align: center;
    padding: 6rem 0 7rem;
    background: var(--accent-color);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
    /* border-bottom: var(--border); */
}

.hero::after {
    display: none;
}

.hero-logo {
    width: 333px;
    height: auto;
    filter: none;
    padding: 1rem;
    background: var(--white);
}

.hero h1 {
    font-family: 'Arial Black', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 6px 6px 0 var(--primary-color);
}

.tagline {
    font-size: 1.15rem;
    color: var(--white);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 700;
    line-height: 1.5;
    background: var(--primary-color);
    padding: 1.25rem 2rem;
    border: var(--border);
    border-color: var(--white);
    text-transform: none;
}

/* ========================================== */
/* ALTERNATIVE LAYOUTS - Add class to .hero */
/* ========================================== */

/* Layout 2: Split Screen (Logo Left, Text Right) */
.hero.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
    padding: 6rem 2rem;
}

.hero.hero-split .hero-logo {
    margin: 0;
    width: 100%;
    max-width: 300px;
    justify-self: end;
}

.hero.hero-split h1,
.hero.hero-split .tagline {
    margin: 0;
}

.hero.hero-split .tagline {
    margin-top: 2rem;
}

/* Layout 3: Minimal (Small Logo, Big Typography) */
.hero.hero-minimal {
    padding: 8rem 2rem;
}

.hero.hero-minimal .hero-logo {
    width: 120px;
    margin-bottom: 3rem;
}

.hero.hero-minimal h1 {
    font-size: 5rem;
    line-height: 0.95;
    margin-bottom: 2rem;
}

.hero.hero-minimal .tagline {
    font-size: 1.4rem;
    max-width: 800px;
    padding: 1.5rem 2.5rem;
}

.hero-header-logo-container {
    margin-top: -12rem;
    margin-left: 2rem;
}

/* Layout 4: Asymmetric (Logo Top-Left, Content Offset) */
.hero.hero-asymmetric {
    text-align: left;
    margin-top: 2rem;
    /* border-top: var(--border); */
    padding: 0rem 2rem 3rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.hero.hero-asymmetric .hero-logo {
    margin: 0 0 3rem 0;
    width: 400px;
    top: 20.4rem;
    left: 8rem;
    position: relative;
    z-index: 2;
    border: none;
    background: none;
}

.hero.hero-asymmetric h1 {
    margin-bottom: 2rem;
    max-width: 435px;
    position: relative;
    z-index: 2;
}

.hero.hero-asymmetric .tagline {
    margin: 0;
    max-width: 600px;
    align-self: flex-end;
    margin-right: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

/* Giant Footprint Decoration */
.hero-footprint-decoration {
    position: absolute;
    top: -513px;
    right: 137px;
    width: 572px;
    height: auto;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    transform: rotate(-20deg);
    color: var(--brutal-dark);
}

/* Layout 5: Stacked (Logo Huge, Text Below) */
.hero.hero-stacked {
    padding: 4rem 2rem 6rem;
}

.hero.hero-stacked .hero-logo {
    width: 300px;
    margin-bottom: 3rem;
}

.hero.hero-stacked h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.hero.hero-stacked .tagline {
    font-size: 1.1rem;
    max-width: 700px;
}

/* Layout 6: Side-by-Side Compact */
.hero.hero-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 5rem 2rem;
    text-align: left;
}

.hero.hero-compact .hero-logo {
    width: 180px;
    margin: 0;
    flex-shrink: 0;
}

.hero.hero-compact h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero.hero-compact .tagline {
    margin: 0;
    max-width: 500px;
}

/* Responsive adjustments for alternative layouts */
@media (max-width: 768px) {
    .hero.hero-split,
    .hero.hero-compact {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero.hero-asymmetric {
        align-items: center;
        text-align: center;
        padding: 3rem 1.5rem;
        margin-top: 0;
    }

    .hero.hero-asymmetric .hero-logo {
        position: static;
        width: 265px;
        margin-top: 9rem;
        margin-bottom: -13rem;
        margin-left: 15rem;
    }

    .hero.hero-asymmetric h1 {
        font-size: 3.5rem;
        max-width: 400px;
        margin-bottom: 1.5rem;
        left: -3rem;
    }

    .hero.hero-asymmetric .tagline {
        align-self: center;
        margin-right: 0;
        margin-top: 0;
        max-width: 100%;
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .hero-footprint-decoration {
        display: none;
    }

    .hero.hero-minimal h1 {
        font-size: 3rem;
    }

    .hero.hero-stacked .hero-logo {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hero.hero-asymmetric .hero-logo {
        width: 219px;
        margin-top: 10rem;
        margin-left: 6rem;
        margin-bottom: -15rem;
    }

    .hero.hero-asymmetric h1 {
        font-size: 3rem;
        margin-left: 2.5rem;
        margin-top: 4rem;
        max-width: 332px;
        text-align: left;
    }

    .hero.hero-asymmetric .tagline {
        font-size: 0.9rem;
        padding: 0.875rem 1.25rem;
    }

    body{
        overflow-x: hidden;
    }

    .service-card{
        max-width: 100%;
    }
}

/* Services Section */
.services {
    background: var(--light-bg);
    margin: 0 -2rem;
    padding: 5rem 2rem;
}

.services h2 {
    font-family: 'Arial Black', sans-serif;
    text-align: center;
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -2px;
    transform: rotate(-2deg);
    z-index: 10;
}

.services h2::after {
    display: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 1.5rem 1.75rem 1.75rem;
    border-radius: 0;
    box-shadow: none;
    border: var(--border);
    transition: all 0.1s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    transform: translate(8px, -8px);
    box-shadow: -8px 8px 0 var(--primary-color);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    display: none;
}

.service-card h3 {
    font-family: 'Arial Black', sans-serif;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.2;
}

.service-card p {
    color: var(--primary-color);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
}

/* Process Section */
.process {
    background: var(--white);
    margin: 0 -2rem;
    padding: 5rem 2rem;
    border-top: var(--border);
    border-top-style: dotted;
    border-bottom: none;
}

.process h2 {
    font-family: 'Arial Black', sans-serif;
    text-align: center;
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 3rem;
    letter-spacing: -2px;
    z-index: 10;
    position: relative;
}

.process-flow {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    background: var(--light-bg);
    border: var(--border);
    padding: 1.5rem 1.5rem 1.75rem;
    position: relative;
    transition: all 0.1s ease;
    display: flex;
    flex-direction: column;
}

.process-step:hover {
    transform: translate(4px, -4px);
    box-shadow: -4px 4px 0 var(--primary-color);
}

.step-number {
    font-family: 'Arial Black', sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.4rem;
    letter-spacing: -2px;
}

.process-step h3 {
    font-family: 'Arial Black', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    letter-spacing: -1px;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--primary-color);
    font-weight: 400;
    text-transform: none;
}

.process-arrow {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    line-height: 1;
}

/* About Section */
.about {
    text-align: left;
    background: var(--primary-color);
    margin: 0 -2rem;
    padding: 5rem 2rem;
    border-top: var(--border);
    border-bottom: var(--border);
    border-color: var(--accent-color);
}

.about h2 {
    font-family: 'Arial Black', sans-serif;
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -2px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.about h2::after {
    display: none;
}

.about p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--white);
    font-weight: 400;
    text-transform: none;
}

.about a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 900;
    border-bottom: 3px solid var(--accent-color);
    transition: all 0.1s ease;
}

.about a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    text-align: center;
    background: var(--white);
    color: var(--primary-color);
    margin: 0 -2rem;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.contact::before {
    display: none;
}

.contact h2 {
    font-family: 'Arial Black', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -2px;
    transform: rotate(2deg);
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-transform: none;
}

.email-link {
    display: inline-block;
    font-size: 1.3rem;
    color: var(--white);
    text-decoration: none;
    padding: 1.5rem 3rem;
    border: var(--border);
    background: var(--accent-color);
    border-radius: 0;
    transition: all 0.1s ease;
    font-weight: 900;
    position: relative;
    letter-spacing: -1px;
    cursor: pointer;
    font-family: inherit;
    text-transform: inherit;
}

.email-link:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--primary-color);
    transform: translate(6px, -6px);
    box-shadow: -6px 6px 0 var(--accent-color);
}

.copy-notification {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(-200px);
    background: var(--accent-color);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border: var(--border);
    font-weight: 900;
    font-size: 1.1rem;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    box-shadow: none;
}

.copy-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.copy-notification span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
footer {
    background: var(--primary-color);
    text-align: center;
    padding: 2.5rem;
    color: var(--white);
    font-size: 0.75rem;
    border-top: var(--border);
    border-color: var(--accent-color);
    font-weight: 900;
}

/* Hover Footprints */
.footprint-container {
    position: absolute;
    top: -204px;
    left: -110px;
    width: 150px;
    /* height: 120px; */
    pointer-events: none;
    z-index: 5;
}

.footprint {
    position: absolute;
    width: 40px;
    height: auto;
    color: var(--accent-color);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Stagger footprints to look like walking steps
/* Reversed order - walking FROM top-left TOWARDS the card */
/* .footprint:nth-child(1) {
    top: 10px;
    left: 10px;
}

.footprint:nth-child(2) {
    top: 25px;
    left: 25px;
}

.footprint:nth-child(3) {
    top: 40px;
    left: 40px;
} */

/* Rotate footprints to point towards bottom-right (towards card) */
.footprint-left {
    transform: rotate(145deg) scale(0.5);
}

.footprint-left.animate {
    transform: rotate(145deg) scale(1);
}

.footprint-right {
    transform: rotate(125deg) scale(0.5);
}

.footprint-right.animate {
    transform: rotate(125deg) scale(1);
}

.footprint-icon {
    width: 100%;
    height: 100%;
}

/* Position containers relatively for footprints */
.service-card,
.process-step {
    position: relative;
}

.service-card > *,
.process-step > * {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    /* Hide arrows on tablet sizes to prevent wrapping issues */
    .process-arrow {
        display: none;
    }

    .process-flow {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* .hero h1 {
        font-size: 2.2rem;
        text-shadow: 4px 4px 0 var(--primary-color);
    } */

    .hero-logo {
        width: 140px;
    }

    .tagline {
        font-size: 1.1rem;
    }

    section {
        padding: 3.5rem 0;
    }

    .services h2,
    .about h2,
    .contact h2,
    .process h2 {
        font-size: 2rem;
    }

    nav {
        flex-direction: row;
        gap: 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        width: auto;
        white-space: normal;
        text-align: center;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .email-link {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        white-space: normal;
        word-break: break-word;
        max-width: 100%;
    }

    .process-flow {
        flex-direction: column;
    }

    .process-step {
        min-width: 100%;
    }
}

