/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    background: var(--midnight-blue);
}

.hero-pin {
    position: relative;
    height: 100%;
    overflow: hidden;
}


.hero-frame {
    position: absolute;
    inset: 0;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.75) 0%,
        rgba(13, 13, 13, 0.56) 45%,
        rgba(13, 13, 13, 0.75) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.4);
    will-change: opacity;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide.fade-out {
    opacity: 0;
    z-index: 0;
}

/* Desktop slideshow images */
@media (min-width: 769px) {
    .hero-slide:nth-child(1) { background-image: url('../images/index-hero-slideshow/desktop/1.webp'); }
    .hero-slide:nth-child(2) { background-image: url('../images/index-hero-slideshow/desktop/2.webp'); }
    .hero-slide:nth-child(3) { background-image: url('../images/index-hero-slideshow/desktop/3.webp'); }
    .hero-slide:nth-child(4) { background-image: url('../images/index-hero-slideshow/desktop/4.jpg'); }
}

/* Mobile slideshow images */
@media (max-width: 768px) {
    .hero-slide:nth-child(1) { background-image: url('../images/index-hero-slideshow/mobile/1.webp'); }
    .hero-slide:nth-child(2) { background-image: url('../images/index-hero-slideshow/mobile/2.webp'); }
    .hero-slide:nth-child(3) { background-image: url('../images/index-hero-slideshow/mobile/3.webp'); }
    .hero-slide:nth-child(4) { background-image: url('../images/index-hero-slideshow/mobile/4.webp'); }
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 clamp(2rem, 7vw, 9rem);
}

.hero-content-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(1.25rem, 2vw, 1.75rem);
    max-width: 900px;
    padding-left: clamp(1.25rem, 2vw, 1.75rem);
    border-left: 3px solid var(--electric-orange);
}

.hero-subline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.85rem, 1.2vw, 1.05rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
    max-width: 42rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
    text-align: left;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 2rem;
    background: var(--electric-orange);
    border: 2px solid var(--electric-orange);
    color: var(--pure-white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.hero-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.hero-cta:hover {
    background: transparent;
    color: var(--pure-white);
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

.hero-logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    width: clamp(180px, 35vw, 500px);
    max-width: 90vw;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
    animation: logoGlow 3s ease-in-out infinite;
    transition: opacity 0.5s ease-in-out;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: clamp(0.2rem, 0.5vw, 0.5rem);
    color: var(--pure-white);
    margin-top: clamp(0.75rem, 1.5vw, 1rem);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}


.hero-tagline {
    font-family: 'Waukegan LDO Extended', 'Waukegan LDO', sans-serif;
    font-size: clamp(2.75rem, 6vw, 5.25rem);
    color: var(--pure-white);
    margin: 0;
    font-weight: 750;
    letter-spacing: clamp(1px, 0.15vw, 2px);
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
    text-align: left;
}

.hero-tagline-line {
    display: block;
}

.hero-tagline-accent {
    color: var(--electric-orange);
}

.hero-tagline-emphasis {
    font-size: clamp(2.8rem, 6vw, 5rem);
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--electric-orange);
    }
}

@keyframes hide-caret {
    to {
        border-color: transparent;
    }
}

/* ============================================
   OUR PARTNERS SECTION
   ============================================ */
.partners {
    padding: 0 0 clamp(3rem, 6vw, 4.5rem) 0;
    background: var(--midnight-blue);
}

.partners-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partners-label {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--electric-orange);
    margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 4rem);
    width: 100%;
}

.partner-logo {
    max-width: 220px;
    max-height: clamp(64px, 8vw, 110px);
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
    filter: none;
    opacity: 0;
    transform: translateX(-80px) scaleX(1.15);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.partner-logo.logo-visible {
    opacity: 1;
    transform: translateX(0) scaleX(1);
    filter: none;
}

.partner-logo:hover {
    opacity: 1;
}

@keyframes logoSlash {
    0% {
        opacity: 0;
        transform: translateX(-120px) scaleX(1.3);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scaleX(1);
    }
}

.partner-logo.logo-animate {
    animation: logoSlash 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}


/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 200;
    letter-spacing: clamp(3px, 0.3vw, 5px);
    color: var(--electric-orange);
    margin-bottom: 1rem;
}

.services .section-label {
    font-weight: 700;
}


.section-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    gap: 2rem;
}

.section-title-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.section-title-left .section-label {
    margin-bottom: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--pure-white);
    margin-bottom: 1rem;
    letter-spacing: clamp(2px, 0.3vw, 3px);
    text-transform: uppercase;
}


.section-title-row .section-title {
    margin-bottom: 0;
}

.see-more-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--electric-orange);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all var(--transition-medium);
    padding-bottom: 0.5rem;
}

.see-more-link:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.see-more-link svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-medium);
}

.see-more-link:hover svg {
    transform: translateX(3px);
}

.title-underline {
    display: none;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--midnight-blue);
    position: relative;
    overflow: hidden;
    min-height: 75vh;
}

.about-split {
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: clamp(3rem, 7vh, 6rem);
    padding-bottom: clamp(0.5rem, 1.5vh, 1.25rem);
    background: transparent;
}

.about-left {
    flex: 1 1 auto;
    padding: clamp(3rem, 7vh, 6rem) clamp(2rem, 5vw, 5rem) clamp(3rem, 7vh, 6rem) clamp(2rem, 7vw, 9rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.about-right {
    flex: 0 0 auto;
    padding-right: clamp(3rem, 8vw, 9rem);
    align-self: stretch;
    display: flex;
}

/* Instagram phone mockup — stage + scaler (scale set by index.js) */
.ig-stage {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ig-phone-scale {
    position: relative;
}

/* iPhone frame */
.ig-phone {
    --screen-w: 393px;
    --screen-h: 852px;
    position: relative;
    width: calc(var(--screen-w) + 28px);
    height: calc(var(--screen-h) + 28px);
    border-radius: 68px;
    background: #3a3c40;
    padding: 14px;
    box-shadow:
        0 1px 0 1px rgba(255,255,255,0.18) inset,
        0 0 0 1.5px rgba(0,0,0,0.55),
        0 40px 80px -20px rgba(0,0,0,0.45),
        0 18px 40px -16px rgba(0,0,0,0.4);
}
.ig-phone::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 60px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.10) inset;
    pointer-events: none;
}
.ig-phone .screen {
    position: relative;
    width: var(--screen-w);
    height: var(--screen-h);
    border-radius: 55px;
    overflow: hidden;
    background: #000;
}

/* Dynamic Island */
.ig-phone .island {
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    width: 124px;
    height: 36px;
    background: #000;
    border-radius: 20px;
    z-index: 60;
}
.ig-phone .island::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #1d2b3a 0%, #05070a 60%);
}

/* App UI (dark) */
.ig-phone .app {
    position: absolute;
    inset: 0;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Helvetica, Arial, sans-serif;
}

/* status bar */
.ig-phone .statusbar {
    height: 54px;
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 30px 6px;
    font-size: 16px;
}
.ig-phone .statusbar .time {
    font-weight: 600;
    font-size: 16.5px;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.ig-phone .statusbar .right {
    display: flex;
    align-items: center;
    gap: 7px;
}
.ig-phone .sig svg,
.ig-phone .right svg,
.ig-phone .time svg { display: block; }

/* nav header */
.ig-phone .nav {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    padding: 4px 12px 10px;
}
.ig-phone .nav .back { display: flex; align-items: center; }
.ig-phone .nav .titles { text-align: center; line-height: 1.15; }
.ig-phone .nav .titles .t1 { font-size: 17px; font-weight: 700; }
.ig-phone .nav .titles .t2 {
    font-size: 13px;
    color: #cfcfcf;
    margin-top: 1px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    justify-content: center;
}

/* post header */
.ig-phone .post-head {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 7px 14px 11px;
}
.ig-phone .avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    background: #ec5e2a;
}
.ig-phone .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ig-phone .post-head .who { flex: 1 1 auto; display: flex; align-items: center; gap: 4px; }
.ig-phone .post-head .who .name { font-size: 15px; font-weight: 600; }
.ig-phone .verified { width: 15px; height: 15px; flex: 0 0 auto; }
.ig-phone .post-head .dots { color: #fff; padding: 4px; }

/* media / slideshow */
.ig-phone .media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #0a0a0a;
    overflow: hidden;
    flex: 0 0 auto;
    /* Own compositing layer so the carousel repaint stays inside the media
       box and doesn't re-rasterize the status bar / nav icons above it. */
    transform: translateZ(0);
}
.ig-phone .track {
    display: flex;
    height: 100%;
    width: 400%;
    transition: transform 0.7s cubic-bezier(0.6, 0.01, 0.05, 0.95);
    will-change: transform;
    backface-visibility: hidden;
}
.ig-phone .slide {
    width: 25%;
    height: 100%;
    flex: 0 0 auto;
}
.ig-phone .slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* carousel index pill */
.ig-phone .count-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.62);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    letter-spacing: 0.2px;
}

/* dots */
.ig-phone .dots-row {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 11px 0 7px;
}
.ig-phone .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #3a3a3c;
    transition: background 0.4s, transform 0.4s;
}
.ig-phone .dot.active { background: #3897f0; transform: scale(1.15); }

/* action row */
.ig-phone .actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 4px 15px 2px;
}
.ig-phone .action {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    font-weight: 600;
}
.ig-phone .action.bookmark { margin-left: auto; gap: 0; }
.ig-phone .action svg { display: block; }

/* liked by */
.ig-phone .likedby {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px 3px;
    font-size: 13.5px;
}
.ig-phone .facepile { display: flex; flex: 0 0 auto; }
.ig-phone .facepile span {
    width: 22px; height: 22px; border-radius: 50%;
    border: 2px solid #000;
    background-size: cover; background-position: center;
    margin-left: -8px;
}
.ig-phone .facepile span:first-child { margin-left: 0; }
.ig-phone .likedby .txt { color: #fff; }
.ig-phone .likedby .txt b { font-weight: 700; }

/* caption */
.ig-phone .caption {
    flex: 0 0 auto;
    padding: 4px 15px 0;
    font-size: 13.5px;
    line-height: 1.42;
    color: #fff;
}
.ig-phone .caption .name { font-weight: 700; display: inline-flex; align-items: center; gap: 3px; vertical-align: -2px; }
.ig-phone .caption .more { color: #8e8e93; }
.ig-phone .date {
    flex: 0 0 auto;
    padding: 9px 15px 0;
    font-size: 11.5px;
    color: #8e8e93;
    letter-spacing: 0.2px;
}

.about-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 58rem;
}

.about-stats {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 40rem;
}

.about-stat {
    padding: 1.25rem 0;
    text-align: center;
}

.about-stat-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.2rem, 3.4vw, 3.4rem);
    line-height: 1;
    color: var(--electric-orange);
    letter-spacing: -0.02em;
}

.about-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 10px;
}

.about-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--electric-orange);
    margin-bottom: 1.25rem;
}

.about-heading {
    font-family: var(--font-display);
    font-weight: 750;
    text-transform: uppercase;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.about-heading-plain {
    font-size: clamp(2.2rem, 4.5vw, 4.4rem);
    font-family: 'Waukegan LDO Extended', 'Waukegan LDO', sans-serif;
    color: var(--pure-white);
    display: inline-block;
    letter-spacing: 0.04em;
}

.about-heading-highlight {
    font-size: clamp(2.2rem, 4.5vw, 4.4rem);
    color: #0d0d0d;
    background: var(--pure-white);
    font-style: italic;
    padding: 0.05em 0.35em;
    display: inline-block;
    letter-spacing: 0.04em;
    white-space: nowrap;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.75s cubic-bezier(0.25, 0, 0.1, 1);
}

.about-heading-highlight.revealed {
    clip-path: inset(0 0% 0 0);
}


.about-tagline {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 600;
    color: var(--electric-orange);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
}

.about-body {
    font-family: Arial, sans-serif;
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    line-height: 1.85;
    color: var(--text-gray);
    max-width: 36rem;
}

.about-body em {
    white-space: nowrap;
}

.about-us-btn {
    display: inline-block;
    margin-top: 1.75rem;
    padding: 1.1em 2em;
    background: var(--electric-orange);
    color: var(--pure-white);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    width: fit-content;
}


@media (max-width: 900px) {
    .about-split {
        flex-direction: column;
        padding-bottom: 0;
    }

    .about-left {
        display: contents;
    }

    .about-heading {
        order: 1;
        padding: clamp(3rem, 8vh, 6rem) clamp(1.5rem, 5vw, 3rem) 0;
        align-items: center;
        text-align: center;
    }

    /* Smaller floor so "culture because" stays on one line on phones */
    .about-heading-plain,
    .about-heading-highlight {
        font-size: clamp(1.7rem, 4.5vw, 3.8rem);
    }

    .about-right {
        order: 2;
        padding: 0 clamp(1.5rem, 5vw, 3rem);
        margin-top: clamp(1.5rem, 4vw, 2.5rem);
    }

    .about-intro {
        order: 3;
        padding: 0 clamp(1.5rem, 5vw, 3rem);
        margin-top: clamp(1.5rem, 4vw, 2.5rem);
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .about-stats {
        order: 4;
        grid-template-columns: 1fr;
        max-width: none;
        padding: 0 clamp(1.5rem, 5vw, 3rem);
        margin-top: clamp(1.5rem, 4vw, 2.5rem);
    }

    .about-stat {
        padding: clamp(1rem, 4vw, 1.75rem) 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        text-align: left;
    }

    .about-stat-num {
        font-size: clamp(3rem, 13vw, 4.5rem);
        flex: 1 1 0;
        text-align: center;
    }

    .about-stat-label {
        font-size: 12px;
        margin-top: 0;
        text-align: center;
        flex: 1 1 0;
        max-width: none;
    }
}

/* ============================================
   INDUSTRIES WE SERVE SECTION
   ============================================ */
.industries-section {
    --ind-frame-top: clamp(1.25rem, 2vw, 2.25rem);
    --ind-frame-x: clamp(0.75rem, 1.25vw, 1.5rem);
    --ind-frame-bottom: clamp(1.25rem, 2vw, 2.25rem);
    --ind-frame-radius: clamp(20px, 2.2vw, 32px);
    position: relative;
    background: var(--midnight-blue);
    height: 300vh;
}

.industries-inner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.industries-frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--midnight-blue);
    display: flex;
    flex-direction: column;
}

/* Body holds the canvas + text */
.industries-window-body {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

/* Video fills the full panel */
.industries-right {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.industries-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Dark gradient over the video so left-side text is legible */
.industries-window-body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13, 13, 13, 0.78) 0%,
        rgba(13, 13, 13, 0.55) 38%,
        rgba(13, 13, 13, 0.15) 65%,
        rgba(13, 13, 13, 0.0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Text panel sits above gradient */
.industries-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    min-height: 0;
    padding: clamp(1.25rem, min(5vw, 5vh), 5rem) clamp(2rem, 5vw, 5rem) clamp(1rem, 3vh, 3rem) clamp(2.5rem, 7vw, 9rem);
    max-width: 55%;
    overflow: hidden;
}

.industries-heading-title {
    font-family: 'Waukegan LDO Extended', 'Waukegan LDO', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, min(5.5vw, 9vh), 5.5rem);
    line-height: 0.92;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--pure-white);
    margin-bottom: clamp(0.75rem, min(2.5vw, 2.5vh), 2.25rem);
}

.industries-heading-title em {
    font-family: 'Waukegan LDO', sans-serif;
    font-style: italic;
    font-weight: 900;
    color: var(--electric-orange);
}

.industries-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.industry-item {
    font-family: 'Waukegan LDO Extended', 'Waukegan LDO', sans-serif;
    font-size: clamp(0.95rem, min(2vw, 2.6vh), 2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1;
    color: var(--pure-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: clamp(0.45rem, min(1.4vw, 1.4vh), 1.2rem) 0;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    cursor: default;
    opacity: 0;
    transform: translateY(22px);
    transition: padding-left 0.3s ease, color 0.25s ease, opacity 0.45s ease, transform 0.45s ease;
}

.industry-item::before {
    content: '—';
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.7em;
    color: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
    transition: color 0.25s ease;
}

.industry-item:hover {
    padding-left: 10px;
    color: var(--electric-orange);
}

.industry-item:hover::before {
    color: var(--electric-orange);
}

.industry-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.industry-item--more {
    font-family: 'Waukegan LDO', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1rem, 1.4vw, 1.3rem);
    text-transform: none;
    letter-spacing: normal;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
    .industries-inner {
        height: 100vh;
    }

    .industries-left {
        max-width: 100%;
        padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 5vw, 2.5rem);
        justify-content: center;
        align-items: flex-start;
        text-align: left;
    }

    .industries-heading-title {
        text-align: center;
        align-self: center;
    }

    .industries-window-body::before {
        background: rgba(13, 13, 13, 0.45);
    }
}

@media (max-width: 480px) {
    .industry-item {
        font-size: 1rem;
        letter-spacing: 0.04em;
    }

    .industries-list {
        gap: 0;
    }

    .industries-left {
        padding-bottom: clamp(2rem, 5vw, 3rem);
    }
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio {
    padding: clamp(3rem, 5vw, 5rem) 0 var(--spacing-xl) 0;
    background: var(--midnight-blue);
    position: relative;
    overflow: hidden;
}

.portfolio .container {
    position: relative;
    z-index: 2;
    max-width: none;
    padding: 0 clamp(2.5rem, 7vw, 9rem);
}

.portfolio .section-header {
    margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.portfolio .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: clamp(2px, 0.3vw, 4px);
    color: var(--pure-white);
    text-transform: uppercase;
}


.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: 0;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.portfolio-card::before {
    content: none;
}

.portfolio-card:hover {
    transform: none;
    box-shadow: none;
}

.portfolio-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: var(--midnight-blue);
}

.portfolio-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transition: none;
}

.portfolio-card:hover .portfolio-card-image {
    filter: none;
    transform: none;
}

.portfolio-card-content {
    padding: 1.25rem 0 0.5rem;
}

.portfolio-card-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: clamp(2.5px, 0.25vw, 4px);
    text-transform: uppercase;
    color: var(--electric-orange);
    margin-bottom: 0.5rem;
}

.portfolio-card-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--pure-white);
    text-transform: uppercase;
    letter-spacing: clamp(2px, 0.3vw, 3px);
}

/* Navigation Arrows */
.portfolio-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13, 13, 13, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    z-index: 10;
}

.portfolio-nav:hover {
    background: linear-gradient(135deg, var(--electric-orange), var(--accent-gold));
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

.portfolio-nav.prev {
    left: 2rem;
}

.portfolio-nav.next {
    right: 2rem;
}

.portfolio-nav svg {
    width: 24px;
    height: 24px;
}

/* Indicators */
.portfolio-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all var(--transition-medium);
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: linear-gradient(135deg, var(--electric-orange), var(--accent-gold));
    border-color: var(--electric-orange);
    width: 40px;
    border-radius: 6px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-head {
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
    text-align: center;
}

.services-head-title {
    font-family: 'Waukegan LDO Extended', 'Waukegan LDO', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--pure-white);
}

/* "That Matters" reuses the about highlight wipe; match the title scale */
.services-head-title .about-heading-highlight {
    font-size: inherit;
}

.services-head-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--electric-orange);
    margin: 1.1rem 0 0;
}

.services {
    padding: var(--spacing-xl) 0;
    background: var(--midnight-blue);
    position: relative;
    overflow: hidden;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding: 0 clamp(1rem, 4vw, 4rem);
}

a.service-card {
    text-decoration: none;
    color: inherit;
}

.service-card {
    padding: 3rem 2rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Corner accent — orange triangle notch bottom-right */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 32px 32px;
    border-color: transparent transparent var(--electric-orange) transparent;
    opacity: 0.45;
    transition: opacity 0.4s ease, border-width 0.4s ease;
}

.service-card:hover {
    background: rgba(255, 107, 53, 0.08) !important;
    border-color: var(--electric-orange) !important;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    color: var(--electric-orange);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: 50% 50%;
    will-change: transform;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    color: var(--accent-gold);
}

.service-icon svg {
    width: 52px;
    height: 52px;
    display: block;
}

.service-card h3 {
    font-family: 'Waukegan LDO Extended', 'Waukegan LDO', sans-serif;
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--pure-white);
    letter-spacing: clamp(1.5px, 0.2vw, 2px);
    margin: 0 0 1rem 0;
}

.service-card p {
    font-family: Arial, sans-serif;
    font-size: clamp(0.82rem, 1.25vw, 0.9rem);
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}


/* Services Desktop — Zigzag Stagger */
@media (min-width: 901px) {
    .services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(1.5rem, 2.5vw, 2.5rem);
        align-items: stretch;
        /* Break out of container to touch viewport edges */
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        width: 100vw;
    }

    .service-card {
        aspect-ratio: unset;
        min-height: 280px;
        padding: 2.5rem 3rem;
        text-align: left;
        /* Grid: text cols | icon col */
        display: grid;
        grid-template-columns: 1fr 90px;
        grid-template-rows: auto auto;
        gap: 0 2.5rem;
        align-items: center;
    }

    /* Odd cards (left column) — icon on LEFT */
    .service-card:nth-child(odd) {
        grid-template-columns: 90px 1fr;
    }
    .service-card:nth-child(odd) .service-icon {
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: center;
        justify-self: center;
    }
    .service-card:nth-child(odd) h3 { grid-column: 2; grid-row: 1; align-self: end; padding-bottom: 0.75rem; }
    .service-card:nth-child(odd) p  { grid-column: 2; grid-row: 2; align-self: start; }

    /* Even cards (right column) — icon on RIGHT */
    .service-card:nth-child(even) .service-icon {
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: center;
        justify-self: center;
    }
    .service-card:nth-child(even) h3 { grid-column: 1; grid-row: 1; align-self: end; padding-bottom: 0.75rem; }
    .service-card:nth-child(even) p  { grid-column: 1; grid-row: 2; align-self: start; }


    .service-card:hover {
        transform: translateY(-10px) skewX(-1deg);
    }

    .service-icon {
        margin: 0;
        width: 90px;
        height: 90px;
        align-self: center;
    }

    .service-icon svg {
        width: 58px;
        height: 58px;
    }

    .service-card h3 {
        text-align: left;
        margin: 0 0 1rem 0;
        font-size: clamp(1.3rem, 2vw, 1.85rem);
    }

    .service-card p {
        text-align: left;
        font-size: clamp(0.95rem, 1.2vw, 1.1rem);
        line-height: 1.7;
    }

    /* Orange triangle notch grows on hover */
    .service-card:hover::after {
        opacity: 1;
        border-width: 0 0 56px 56px;
        width: 0;
        height: 0;
    }
}

/* Services Responsive Design */
@media (max-width: 1024px) and (min-width: 901px) {
    .services-grid {
        gap: clamp(1rem, 2vw, 2rem);
    }
}

/* Services Mobile — icon beside title, description underneath */
@media (max-width: 900px) {
    .services-head-title {
        font-size: clamp(1.7rem, 4.5vw, 3.8rem);
    }

    .services-grid {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        /* Every row track equal height = tallest card */
        grid-auto-rows: 1fr;
    }

    .service-card {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        align-items: center;
        column-gap: 1rem;
        row-gap: 0.85rem;
        justify-content: start;
        text-align: left;
        min-height: 0;
        padding: 1.75rem 1.5rem;
    }

    .service-card .service-icon {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
        width: 60px;
        height: 60px;
    }

    .service-card .service-icon svg {
        width: 36px;
        height: 36px;
    }

    .service-card h3 {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        text-align: left;
    }

    .service-card p {
        grid-column: 1 / -1;
        grid-row: 2;
        margin: 0;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .about {
        background: var(--midnight-blue);
    }
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    .service-card {
        -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
    }

    .service-card:active {
        transform: scale(0.98);
    }
}

/* ============================================
   CONTACT CTA SECTION
   ============================================ */
.contact-cta .container {
    margin-left: clamp(1.5rem, 4vw, 5rem);
    margin-right: 0;
    max-width: none;
    padding-right: clamp(1.5rem, 4vw, 5rem);
}

.contact-cta {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            rgba(13, 13, 13, 0.45),
            rgba(13, 13, 13, 0.45)
        ),
        url('../images/additional-index-images/pictures/contact.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.cta-background {
    display: none;
}

.cta-content {
    text-align: left;
    position: relative;
    z-index: 10;
    padding: var(--spacing-xl) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
}

.cta-kicker {
    font-family: var(--font-display);
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--electric-orange);
    margin-bottom: clamp(1rem, 2vw, 1.75rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.cta-kicker::before,
.cta-kicker::after {
    content: '';
    display: block;
    width: clamp(24px, 3vw, 40px);
    height: 1.5px;
    background: var(--electric-orange);
    opacity: 0.7;
}

.cta-content h2 {
    font-family: 'Waukegan LDO Extended', 'Waukegan LDO', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 5.5rem);
    font-weight: 900;
    color: var(--pure-white);
    margin-bottom: 0;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    line-height: 0.92;
}

.cta-line {
    display: block;
}

.cta-accent {
    color: var(--electric-orange);
    font-family: 'Waukegan LDO', sans-serif;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.1rem 2.25rem;
    background: transparent;
    border: 2px solid var(--pure-white);
    color: var(--pure-white);
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 0;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.cta-button-large:hover {
    background: var(--electric-orange);
    border-color: var(--electric-orange);
    color: var(--pure-white);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
    }
    50% {
        filter: drop-shadow(0 10px 40px rgba(255, 107, 53, 0.6));
    }
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

/* Tablet & Below */
@media (max-width: 1024px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        height: 350px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-card-logo img {
        height: 32px;
    }

    .portfolio-card-title {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 3.5rem;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        height: 100svh;
    }

    .hero-pin {
        height: 100%;
    }

    .hero-content {
        padding: 0 1.5rem;
        margin-top: 0;
    }

    .hero-content-inner {
        padding-left: 1rem;
        border-left-width: 2px;
        gap: 1rem;
    }

    .hero-logo {
        width: clamp(180px, 50vw, 350px);
    }

    .hero-subtitle {
        letter-spacing: 0.3rem;
        font-size: clamp(1.2rem, 3.5vw, 2rem);
        margin-top: 0.75rem;
    }

    .hero-tagline {
        font-size: clamp(1.9rem, 7vw, 2.4rem);
        margin: 0;
        letter-spacing: 1px;
    }

    .hero-subline {
        font-size: 0.78rem;
        letter-spacing: 0.15em;
    }

    .hero-cta {
        padding: 0.85rem 1.6rem;
        font-size: 0.75rem;
        letter-spacing: 0.18em;
    }

    .hero-cta svg {
        width: 16px;
        height: 16px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: var(--spacing-md);
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .section-label {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .section-title-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .section-title-left {
        align-items: center;
    }

    .see-more-link {
        font-size: 1rem;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 300px;
    }

    .about-description {
        font-size: 1rem;
        line-height: 1.8;
    }

    /* Portfolio Section */
    .portfolio-caption {
        padding: 1.5rem;
    }

    .portfolio-caption h3 {
        font-size: 1.3rem;
    }

    /* Partners logos — force single row on mobile */
    .partners-logos {
        flex-wrap: nowrap;
        justify-content: space-evenly;
        gap: 0;
    }

    .partner-logo {
        max-width: 100px;
        max-height: 60px;
    }

    /* Contact CTA */
    .contact-cta {
        min-height: 0;
        background-attachment: scroll;
    }

    .cta-content {
        padding: 3rem 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: clamp(2.25rem, 7vw, 4rem);
    }

    .cta-button-large {
        padding: 0.65rem 1.5rem;
        font-size: 0.75rem;
    }

    
}

/* Mobile Medium */
@media (max-width: 480px) {
    :root {
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    /* Hero Section */
    .hero-logo {
        width: clamp(150px, 60vw, 280px);
    }

    .hero-subtitle {
        letter-spacing: 0.2rem;
        font-size: clamp(1rem, 4vw, 1.5rem);
    }

    .hero-tagline {
        font-size: clamp(1.7rem, 5.5vw, 2.2rem);
        letter-spacing: 0.5px;
        margin: 1rem 0;
    }

    /* Section Headers */
    .section-label {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.75rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        letter-spacing: 1px;
    }

    .section-title-row {
        gap: 1rem;
    }

    .see-more-link {
        font-size: 0.95rem;
    }

    .title-underline {
        width: 60px;
        height: 3px;
    }

    .about-content {
        gap: var(--spacing-md);
    }

    .about-main {
        gap: 1.5rem;
    }

    .about-image {
        height: 250px;
    }

    .about-description {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    /* Portfolio Section */
    .portfolio-slideshow {
        border-radius: 15px;
    }

    .portfolio-caption {
        padding: 1.5rem 1rem;
    }

    .portfolio-caption h3 {
        font-size: 1.2rem;
    }

    /* Contact CTA */
    .cta-content h2 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 0.75rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .cta-button-large {
        padding: 0.65rem 1.5rem;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

}

/* Mobile Small */
@media (max-width: 375px) {

    .hero-logo {
        width: clamp(130px, 65vw, 250px);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 5vw, 1.3rem);
        letter-spacing: 0.15rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 9vw, 2rem);
    }

    .about-image {
        height: 220px;
    }

    .portfolio-slideshow {
        border-radius: 12px;
    }

    .portfolio-caption h3 {
        font-size: 1.1rem;
    }

    .cta-button-large {
        padding: 0.65rem 1.5rem;
        font-size: 0.75rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        height: 100svh;
        min-height: unset;
        padding: 0;
    }

    .hero-pin {
        height: 100%;
    }

    .hero-content {
        margin-top: 0;
    }

    .hero-logo {
        width: clamp(150px, 35vw, 300px);
    }

}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    .cta-button,
    .cta-button-large,
    .service-card,
    .stat-card {
        -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
    }

    .service-card:active {
        transform: scale(0.98);
    }

    .cta-button:active,
    .cta-button-large:active {
        transform: scale(0.97);
    }
}

/* Portfolio Grid Responsive Overrides */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .portfolio-card-logo {
        top: 1rem;
        left: 1rem;
        padding: 0.5rem 0.75rem;
    }
    .portfolio-card-logo img {
        height: 28px;
    }
    .portfolio-card-overlay {
        padding: 1.5rem 1rem;
    }
    .portfolio-card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .portfolio-card-logo {
        top: 0.75rem;
        left: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    .portfolio-card-logo img {
        height: 24px;
    }
    .portfolio-card-overlay {
        padding: 1.25rem 0.75rem;
    }
    .portfolio-card-label {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    .portfolio-card-title {
        font-size: 1.05rem;
    }
}
