/* =====================================================
   FILM-PAK WEBSITE
   MASTER STYLESHEET
===================================================== */


/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #242424;
    line-height: 1.58;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =====================================================
   COLORS
===================================================== */

:root {
    --green: #2f7048;
    --green-dark: #214c32;
    --green-deep: #173b27;

    --red: #b71920;

    --text: #202320;
    --body-text: #596159;

    --light-green: #dfe9e2;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    width: 100%;

    background: rgba(255, 255, 255, 0.98);

    border-bottom: 3px solid var(--red);

    position: sticky;
    top: 0;

    z-index: 1000;

    box-shadow:
        0 4px 18px
        rgba(30, 55, 40, 0.05);
}


.nav-container {
    width: 95%;
    max-width: 2000px;

    min-height: clamp(102px, 7vw, 132px);

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;
}


.logo-link {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}


.site-logo {
    display: block;

    width: clamp(340px, 25vw, 560px);

    height: auto;

    max-height: none;

    object-fit: contain;
}


.main-nav {
    display: flex;
    align-items: center;

    gap: clamp(28px, 2.1vw, 48px);
}


.main-nav a {
    color: #222222;

    font-size: clamp(20px, 1.35vw, 27px);

    font-weight: 650;

    transition:
        color 0.2s ease;
}


.main-nav a:hover {
    color: var(--green);
}


.main-nav .quote-button {
    color: #ffffff;

    background: var(--green);

    padding:
        clamp(14px, 0.9vw, 18px)
        clamp(28px, 1.8vw, 38px);

    border-radius: 9px;

    border-bottom: 4px solid var(--red);

    font-size: clamp(20px, 1.3vw, 26px);

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.main-nav .quote-button:hover {
    background: #245c3a;

    transform: translateY(-1px);
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu-button {
    display: none;

    width: 46px;
    height: 46px;

    background: transparent;
    border: 0;

    cursor: pointer;
}


.mobile-menu-button span {
    display: block;

    width: 28px;
    height: 2px;

    margin: 6px auto;

    background: #252525;
}


/* =====================================================
   SHARED SECTION SETTINGS
===================================================== */

.section {
    position: relative;

    overflow: hidden;

    padding:
        clamp(110px, 7vw, 150px)
        0;
}


.section-container {
    width: 95%;
    max-width: 1850px;

    margin: 0 auto;

    position: relative;
    z-index: 2;
}


.section-eyebrow {
    color: var(--green);

    font-size: clamp(20px, 1.3vw, 27px);

    font-weight: 750;

    text-transform: uppercase;

    letter-spacing: 1.6px;

    margin-bottom: 21px;
}


.section-heading {
    max-width: 1000px;

    margin-bottom: clamp(60px, 4.6vw, 90px);
}


.section-heading.centered {
    text-align: center;

    margin-left: auto;
    margin-right: auto;
}


.section-heading h2 {
    color: var(--text);

    font-size: clamp(54px, 4vw, 76px);

    line-height: 1.05;

    letter-spacing: -1.8px;

    margin-bottom: 24px;
}


.section-heading p {
    color: #5d655e;

    font-size: clamp(23px, 1.5vw, 30px);

    line-height: 1.66;
}


/* =====================================================
   BUTTONS
===================================================== */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: clamp(60px, 4vw, 72px);

    padding:
        0
        clamp(34px, 2vw, 46px);

    border-radius: 9px;

    font-size: clamp(20px, 1.28vw, 26px);

    font-weight: 700;

    transition:
        transform 0.2s ease;
}


.button:hover {
    transform: translateY(-2px);
}


.button-primary {
    background: var(--green);

    color: #ffffff;

    border-bottom: 4px solid var(--red);
}


.button-secondary {
    background: #ffffff;

    color: var(--green);

    border: 2px solid var(--green);
}


/* =====================================================
   LIGHT GREEN TEXTURE
===================================================== */

.hero,
.products-section,
.why-section,
.about-section {
    background-color: #dfe9e2;

    background-image:

        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.15) 0px,
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px,
            transparent 9px
        ),

        repeating-linear-gradient(
            90deg,
            rgba(47, 112, 72, 0.035) 0px,
            rgba(47, 112, 72, 0.035) 1px,
            transparent 1px,
            transparent 12px
        ),

        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.26) 0%,
            rgba(255, 255, 255, 0.04) 45%,
            rgba(47, 112, 72, 0.08) 100%
        );
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    overflow: hidden;

    padding:
        clamp(65px, 5vw, 95px)
        0
        clamp(90px, 6vw, 125px);
}


.hero-container {
    width: 95%;
    max-width: 1850px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.82fr 1.18fr;

    gap:
        clamp(65px, 6vw, 125px);

    align-items: center;

    position: relative;
    z-index: 2;
}


.hero-content {
    max-width: 820px;
}


.hero-eyebrow {
    font-size:
        clamp(23px, 1.5vw, 31px);

    margin-bottom: 24px;
}


.hero h1 {
    color: var(--text);

    font-size:
        clamp(64px, 5.2vw, 98px);

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 32px;
}


.hero-subheadline {
    color: var(--green);

    font-size:
        clamp(29px, 1.95vw, 40px);

    font-weight: 700;

    margin-bottom: 24px;
}


.hero-subheadline::after {
    display: none;
}


.hero-description {
    color: #59605a;

    font-size:
        clamp(23px, 1.48vw, 29px);

    line-height: 1.72;

    margin-bottom: 40px;
}


.hero-buttons {
    display: flex;

    gap: 18px;

    flex-wrap: wrap;

    margin-bottom: 42px;
}


.hero-details {
    display: flex;

    flex-wrap: wrap;

    gap:
        15px 34px;
}


.hero-details span {
    position: relative;

    color: #515751;

    font-size:
        clamp(18px, 1.12vw, 22px);

    font-weight: 650;
}


.hero-details span:not(:last-child)::after {
    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    background: var(--red);

    border-radius: 50%;

    right: -19px;
    top: 12px;
}


/* =====================================================
   HERO SLIDESHOW
===================================================== */

.hero-image {
    position: relative;

    width: 100%;
}


.hero-slideshow {
    position: relative;

    width: 100%;

    /*
       IMPORTANT:
       This is the same height your original
       single hero image used.
    */

    height:
        clamp(620px, 43vw, 790px);

    overflow: hidden;

    border-radius: 14px;

    background: #cbd7ce;

    box-shadow:
        0 24px 58px
        rgba(36, 70, 49, 0.16);
}


/* =====================================================
   INDIVIDUAL HERO SLIDES
===================================================== */

.hero-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 1.1s ease,
        visibility 1.1s ease;
}


.hero-slide.active {
    opacity: 1;

    visibility: visible;
}


/* =====================================================
   HERO SLIDE IMAGES
===================================================== */

.hero-slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    border-radius: 14px;

    /*
       Very subtle movement while the image
       is displayed.
    */

    transform:
        scale(1);

    transition:
        transform 6s ease;
}


.hero-slide.active img {
    transform:
        scale(1.02);
}


/* =====================================================
   MADE IN-HOUSE BADGE
===================================================== */

.hero-image-badge {
    position: absolute;

    left: 32px;
    bottom: 32px;

    z-index: 20;

    background:
        rgba(255, 255, 255, 0.96);

    padding:
        22px 28px;

    border-radius: 8px;

    border-left:
        5px solid var(--red);

    box-shadow:
        0 8px 28px
        rgba(0, 0, 0, 0.10);
}


.hero-image-badge strong {
    display: block;

    color: #255c3b;

    font-size: 22px;
}


.hero-image-badge span {
    color: #626762;

    font-size: 18px;
}


/* =====================================================
   HERO SLIDESHOW DOTS
===================================================== */

.hero-slide-dots {
    position: absolute;

    right: 28px;
    top: 28px;

    z-index: 25;

    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        9px 12px;

    background:
        rgba(23, 59, 39, 0.55);

    border:
        1px solid
        rgba(255, 255, 255, 0.20);

    border-radius: 30px;

    backdrop-filter:
        blur(4px);
}


.hero-dot {
    width: 12px;
    height: 12px;

    padding: 0;

    border:
        2px solid
        rgba(255, 255, 255, 0.95);

    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


.hero-dot:hover {
    transform:
        scale(1.18);
}


.hero-dot.active {
    background: #ffffff;

    transform:
        scale(1.12);
}


/* =====================================================
   HERO SLIDESHOW MOBILE
===================================================== */

@media (max-width: 850px) {

    .hero-slideshow {
        height:
            clamp(430px, 75vw, 650px);
    }


    .hero-image-badge {
        left: 22px;
        bottom: 22px;

        padding:
            17px 21px;
    }


    .hero-image-badge strong {
        font-size: 19px;
    }


    .hero-image-badge span {
        font-size: 16px;
    }


    .hero-slide-dots {
        right: 20px;
        top: 20px;
    }

}


@media (max-width: 600px) {

    .hero-slideshow {
        height: 420px;
    }


    .hero-image-badge {
        left: 16px;
        bottom: 16px;

        max-width:
            calc(100% - 32px);

        padding:
            14px 17px;
    }


    .hero-slide-dots {
        right: 14px;
        top: 14px;

        gap: 7px;

        padding:
            7px 9px;
    }


    .hero-dot {
        width: 10px;
        height: 10px;
    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .hero-slide,
    .hero-slide img {
        transition: none;
    }


    .hero-slide.active img {
        transform: none;
    }

}


/* =====================================================
   STATS BAND
===================================================== */

.intro-band {
    background:
        linear-gradient(
            135deg,
            #173b27 0%,
            #265c3c 52%,
            #347850 100%
        );

    border-top: 5px solid var(--red);

    color: #ffffff;
}


.intro-band-container {
    width: 95%;
    max-width: 1850px;

    margin: 0 auto;

    min-height: clamp(180px, 10vw, 220px);

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);
}


.intro-band-container > div {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 36px 52px;

    border-right:
        1px solid
        rgba(255, 255, 255, 0.16);
}


.intro-band strong {
    color: #ffffff;

    font-size: clamp(38px, 2.5vw, 52px);

    margin-bottom: 9px;
}


.intro-band span {
    color: rgba(255, 255, 255, 0.92);

    font-size: clamp(22px, 1.45vw, 29px);
}


/* =====================================================
   PRODUCTS
===================================================== */

.products-section {
    position: relative;
}


.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: clamp(24px, 1.9vw, 36px);
}


.product-card {
    overflow: hidden;

    background: rgba(255, 255, 255, 0.98);

    border: 1px solid #c3d2c6;

    border-radius: 12px;

    box-shadow:
        0 12px 30px
        rgba(30, 60, 40, 0.08);
}


.product-image {
    height: clamp(260px, 19vw, 350px);

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 28px;

    background:
        linear-gradient(
            135deg,
            #6f927a 0%,
            #a8beb0 45%,
            #668a71 100%
        );

    border-bottom: 4px solid var(--red);
}


.product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.product-content {
    position: relative;

    min-height: clamp(320px, 22vw, 390px);

    padding: clamp(34px, 2.5vw, 48px);
}


.product-card h3 {
    color: var(--text);

    font-size: clamp(31px, 2vw, 40px);

    margin-bottom: 19px;
}


.product-card p {
    color: var(--body-text);

    font-size: clamp(21px, 1.38vw, 26px);

    line-height: 1.64;

    margin-bottom: 45px;
}


.product-card a {
    position: absolute;

    left: clamp(34px, 2.5vw, 48px);

    bottom: 32px;

    color: var(--green);

    font-size: clamp(20px, 1.28vw, 24px);

    font-weight: 700;
}


.product-card a span {
    color: var(--red);

    font-size: 26px;
}


/* =====================================================
   CAPABILITIES
===================================================== */

.capabilities-section {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f9f7 100%
        );
}


.capability-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        clamp(24px, 2vw, 36px);
}


/* =====================================================
   CAPABILITY CARDS
===================================================== */

.capability-card {
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #eaf1ec 100%
        );

    border-radius: 12px;

    border:
        1px solid #d1ddd3;

    border-bottom:
        5px solid var(--red);

    box-shadow:
        0 10px 30px
        rgba(30, 60, 40, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.capability-card:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0 16px 38px
        rgba(30, 60, 40, 0.12);
}


/* =====================================================
   CAPABILITY PHOTOS
===================================================== */

.capability-card-image {
    width: 100%;

    height:
        clamp(280px, 21vw, 390px);

    overflow: hidden;

    background: #c8d5ca;

    border-bottom:
        4px solid var(--red);
}


.capability-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.35s ease;
}


.capability-card:hover
.capability-card-image img {
    transform:
        scale(1.025);
}


/* =====================================================
   CAPABILITY CONTENT
===================================================== */

.capability-card-content {
    min-height:
        clamp(320px, 22vw, 390px);

    padding:
        clamp(34px, 2.7vw, 50px);

    display: flex;

    flex-direction: column;
}


.capability-card h3 {
    color: var(--text);

    font-size:
        clamp(37px, 2.4vw, 47px);

    line-height: 1.1;

    margin-bottom: 22px;
}


.capability-card p {
    color: #5f675f;

    font-size:
        clamp(22px, 1.45vw, 28px);

    line-height: 1.72;

    margin-bottom: 35px;
}


.capability-link {
    display: block;

    margin-top: auto;

    color: var(--green);

    font-size:
        clamp(18px, 1.12vw, 22px);

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


/* =====================================================
   CAPABILITIES RESPONSIVE
===================================================== */

@media (max-width: 1200px) {

    .capability-card-image {
        height:
            clamp(260px, 28vw, 360px);
    }

}


@media (max-width: 850px) {

    .capability-grid {
        grid-template-columns: 1fr;
    }


    .capability-card-image {
        height:
            clamp(320px, 58vw, 500px);
    }


    .capability-card-content {
        min-height: 0;
    }

}


@media (max-width: 600px) {

    .capability-card-image {
        height: 300px;
    }


    .capability-card-content {
        padding:
            30px 26px;
    }

}



/* =====================================================
   WHY FILM-PAK
===================================================== */

.why-section {
    position: relative;
}


.why-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: clamp(70px, 7vw, 135px);
}


.why-heading {
    max-width: 760px;
}


.why-heading h2 {
    font-size: clamp(54px, 4vw, 76px);

    line-height: 1.05;

    margin-bottom: 27px;
}


.why-heading > p:last-child {
    color: #606860;

    font-size: clamp(23px, 1.5vw, 30px);

    line-height: 1.7;
}


.why-item {
    display: grid;

    grid-template-columns:
        58px 1fr;

    gap: 26px;

    padding: 32px 0;

    border-bottom: 1px solid #c3d3c7;
}


.check {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: var(--green);

    border: 3px solid var(--red);

    border-radius: 50%;
}


.why-item h3 {
    font-size: clamp(27px, 1.7vw, 33px);
}


.why-item p {
    color: #606760;

    font-size: clamp(21px, 1.35vw, 26px);
}


/* =====================================================
   INDUSTRIES
===================================================== */

.industries-section {
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f3f6f4
        );
}


.industries-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: clamp(16px, 1.4vw, 24px);
}


.industries-grid div {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: clamp(120px, 8.5vw, 150px);

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e9f1eb
        );

    font-size: clamp(23px, 1.5vw, 30px);

    font-weight: 650;

    border: 1px solid #d3dfd5;

    border-bottom: 5px solid var(--red);

    border-radius: 9px;
}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    position: relative;
}


.about-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: clamp(70px, 7vw, 130px);

    align-items: center;
}


.about-year {
    padding: clamp(55px, 4.5vw, 82px);

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #dce9df
        );

    border-left: 8px solid var(--green);

    border-bottom: 8px solid var(--red);

    box-shadow:
        0 15px 38px
        rgba(40, 70, 50, 0.10);
}


.about-year span {
    font-size: clamp(25px, 1.6vw, 31px);
}


.about-year strong {
    color: var(--green);

    font-size: clamp(110px, 10.5vw, 190px);

    line-height: 1;
}


.about-content h2 {
    font-size: clamp(54px, 4vw, 76px);

    line-height: 1.05;

    margin-bottom: 29px;
}


.about-content > p:not(.section-eyebrow) {
    color: #5d655e;

    font-size: clamp(23px, 1.5vw, 30px);

    line-height: 1.72;

    margin-bottom: 24px;
}


.text-link {
    color: var(--green);

    font-size: clamp(20px, 1.25vw, 24px);

    font-weight: 700;
}


/* =====================================================
   QUOTE CTA
===================================================== */

.quote-section {
    background:
        linear-gradient(
            135deg,
            #173b27 0%,
            #2f7048 55%,
            #467e5a 100%
        );

    border-top: 5px solid var(--red);

    padding:
        clamp(95px, 6vw, 130px)
        0;
}


.quote-container {
    width: 95%;
    max-width: 1850px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    gap: clamp(60px, 6vw, 115px);

    align-items: center;
}


.quote-eyebrow {
    color: rgba(255, 255, 255, 0.82);

    font-size: clamp(20px, 1.28vw, 25px);

    font-weight: 750;

    text-transform: uppercase;

    margin-bottom: 18px;
}


.quote-section h2 {
    color: #ffffff;

    font-size: clamp(54px, 4.2vw, 80px);

    line-height: 1.05;

    margin-bottom: 24px;
}


.quote-section p {
    color: rgba(255, 255, 255, 0.90);

    font-size: clamp(23px, 1.48vw, 29px);

    line-height: 1.7;
}


.quote-actions {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 22px;
}


.quote-white-button {
    background: #ffffff;

    color: #255c3b;

    min-width: clamp(250px, 17vw, 340px);

    min-height: clamp(72px, 4.8vw, 88px);

    padding:
        0
        clamp(40px, 2.4vw, 56px);

    font-size: clamp(22px, 1.45vw, 29px);

    border-bottom: 5px solid var(--red);

    border-radius: 9px;
}


.quote-actions span {
    display: block;

    width: 100%;

    color: rgba(255, 255, 255, 0.86);

    font-size: clamp(19px, 1.2vw, 24px);

    line-height: 1.6;

    max-width: 500px;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background:
        linear-gradient(
            160deg,
            #18201a,
            #242d26
        );

    color: #ffffff;
}


.footer-red-line {
    height: 5px;

    background: var(--red);
}


.footer-container {
    width: 95%;
    max-width: 1850px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.8fr 1fr 1fr 1fr;

    gap: clamp(55px, 5vw, 100px);

    padding:
        clamp(80px, 5vw, 105px)
        0
        62px;
}


.footer-brand img {
    width: clamp(420px, 28vw, 600px);

    height: auto;

    margin-bottom: 24px;
}


.footer-description {
    color: rgba(255, 255, 255, 0.72);

    font-size: clamp(21px, 1.35vw, 26px);

    line-height: 1.65;

    max-width: 560px;

    margin-bottom: 30px;
}


/* =====================================================
   FOOTER CONTACT AREA
===================================================== */

.footer-contact {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 21px;
}


.footer-contact-item {
    display: grid;

    grid-template-columns:
        34px 1fr;

    align-items: start;

    gap: 13px;

    color: rgba(255, 255, 255, 0.88);

    font-size: clamp(19px, 1.22vw, 24px);

    line-height: 1.5;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.footer-contact-item:hover {
    color: #ffffff;

    transform: translateX(3px);
}


.footer-contact-icon {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 1px;
}


.footer-contact-icon svg {
    width: 26px;
    height: 26px;

    fill: none;

    stroke: #ffffff;

    stroke-width: 1.9;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* red accent on contact icons */

.footer-contact-item:hover
.footer-contact-icon svg {
    stroke: #e2e9e4;
}


.footer-column {
    display: flex;

    flex-direction: column;

    gap: 15px;
}


.footer-column h3 {
    color: #ffffff;

    font-size: clamp(24px, 1.45vw, 29px);

    margin-bottom: 14px;
}


.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.74);

    font-size: clamp(20px, 1.25vw, 24px);
}


.footer-column a:hover {
    color: #ffffff;
}


.footer-bottom {
    width: 95%;
    max-width: 1850px;

    margin: 0 auto;

    padding:
        26px 0
        32px;

    display: flex;

    justify-content: space-between;

    gap: 30px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.10);
}


.footer-bottom p {
    color: rgba(255, 255, 255, 0.54);

    font-size: clamp(16px, 1vw, 20px);
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1800px) {

    .nav-container,
    .hero-container,
    .intro-band-container,
    .section-container,
    .quote-container,
    .footer-container,
    .footer-bottom {
        max-width: 2000px;
    }


    .nav-container {
        min-height: 138px;
    }


    .site-logo {
        width: 600px;
    }


    .main-nav a {
        font-size: 29px;
    }


    .main-nav .quote-button {
        font-size: 28px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1200px) {

    .site-logo {
        width: 330px;
    }


    .main-nav {
        gap: 20px;
    }


    .main-nav a {
        font-size: 17px;
    }


    .hero h1 {
        font-size: 56px;
    }


    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .industries-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .footer-container {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

    .nav-container {
        min-height: 86px;
    }


    .site-logo {
        width: 270px;
    }


    .mobile-menu-button {
        display: block;
    }


    .main-nav {
        display: none;

        position: absolute;

        top: 86px;
        left: 0;

        width: 100%;

        background: #ffffff;

        flex-direction: column;

        align-items: stretch;

        padding:
            20px 5%
            28px;
    }


    .main-nav.open {
        display: flex;
    }


    .main-nav a {
        font-size: 19px;

        padding: 15px 0;
    }


    .hero-container,
    .why-grid,
    .about-grid,
    .quote-container {
        grid-template-columns:
            1fr;
    }


    .intro-band-container {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .capability-grid {
        grid-template-columns:
            1fr;
    }


    .footer-container {
        grid-template-columns:
            1fr 1fr;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 600px) {

    .site-logo {
        width: 225px;
    }


    .product-grid,
    .industries-grid,
    .intro-band-container,
    .footer-container {
        grid-template-columns:
            1fr;
    }


    .footer-contact-item {
        grid-template-columns:
            30px 1fr;
    }


    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }

}







/* =====================================================
   PRODUCTS PAGE
===================================================== */


/* =====================================================
   ACTIVE NAVIGATION
===================================================== */

.main-nav .active-nav {
    color: var(--green);
}


/* =====================================================
   PRODUCTS PAGE HERO
===================================================== */

.products-page-hero {
    background-color: #dfe9e2;

    background-image:

        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.15) 0px,
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px,
            transparent 9px
        ),

        repeating-linear-gradient(
            90deg,
            rgba(47, 112, 72, 0.035) 0px,
            rgba(47, 112, 72, 0.035) 1px,
            transparent 1px,
            transparent 12px
        ),

        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.26) 0%,
            rgba(255, 255, 255, 0.04) 45%,
            rgba(47, 112, 72, 0.08) 100%
        );

    padding:
        clamp(80px, 6vw, 120px)
        0;
}


.products-page-hero-container {
    width: 95%;
    max-width: 1850px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.95fr 1.05fr;

    gap:
        clamp(60px, 6vw, 120px);

    align-items: center;
}


.products-page-hero-content {
    max-width: 850px;
}


.products-page-hero h1 {
    color: var(--text);

    font-size:
        clamp(62px, 5vw, 96px);

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 30px;
}


.products-page-hero-lead {
    color: var(--green);

    font-size:
        clamp(28px, 1.85vw, 38px);

    font-weight: 700;

    line-height: 1.35;

    margin-bottom: 22px;
}


.products-page-hero-copy {
    color: #59605a;

    font-size:
        clamp(22px, 1.4vw, 28px);

    line-height: 1.72;

    max-width: 800px;

    margin-bottom: 38px;
}


/* =====================================================
   PRODUCTS HERO VISUAL
===================================================== */

.products-page-hero-visual {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        clamp(18px, 1.5vw, 28px);
}


.hero-product-tile {
    height:
        clamp(250px, 18vw, 350px);

    display: flex;

    align-items: center;
    justify-content: center;

    padding:
        clamp(24px, 2vw, 38px);

    background:
        linear-gradient(
            135deg,
            #6f927a 0%,
            #a8beb0 48%,
            #668a71 100%
        );

    border-radius: 12px;

    border-bottom:
        4px solid var(--red);

    box-shadow:
        0 14px 34px
        rgba(30, 60, 40, 0.12);
}


.hero-product-tile img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =====================================================
   PRODUCT DIRECTORY
===================================================== */

.product-directory {
    background:
        var(--green-dark);

    border-top:
        5px solid var(--red);

    padding:
        32px 0;
}


.product-directory-container {
    width: 95%;
    max-width: 1850px;

    margin: 0 auto;
}


.product-directory-container > p {
    color:
        rgba(255, 255, 255, 0.70);

    font-size: 17px;

    font-weight: 750;

    text-transform: uppercase;

    letter-spacing: 1.4px;

    margin-bottom: 16px;
}


.product-directory-links {
    display: flex;

    flex-wrap: wrap;

    gap:
        10px 12px;
}


.product-directory-links a {
    color: #ffffff;

    font-size:
        clamp(17px, 1.05vw, 21px);

    font-weight: 650;

    padding:
        10px 17px;

    border:
        1px solid
        rgba(255, 255, 255, 0.26);

    border-radius: 6px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.product-directory-links a:hover {
    background:
        rgba(255, 255, 255, 0.10);

    border-color:
        rgba(255, 255, 255, 0.50);
}


/* =====================================================
   PRODUCT DETAIL SECTIONS
===================================================== */

.product-detail {
    scroll-margin-top: 150px;

    padding:
        clamp(100px, 7vw, 150px)
        0;
}


.product-detail-light {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f9f7 100%
        );
}


.product-detail-textured {
    background-color: #dfe9e2;

    background-image:

        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.15) 0px,
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px,
            transparent 9px
        ),

        repeating-linear-gradient(
            90deg,
            rgba(47, 112, 72, 0.035) 0px,
            rgba(47, 112, 72, 0.035) 1px,
            transparent 1px,
            transparent 12px
        ),

        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.26) 0%,
            rgba(255, 255, 255, 0.04) 45%,
            rgba(47, 112, 72, 0.08) 100%
        );
}


.product-detail-container {
    width: 95%;
    max-width: 1750px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.88fr 1.12fr;

    gap:
        clamp(70px, 7vw, 140px);

    align-items: center;
}


.product-detail-reverse
.product-detail-image {
    order: 2;
}


.product-detail-reverse
.product-detail-content {
    order: 1;
}


/* =====================================================
   DETAIL PRODUCT IMAGE
===================================================== */

.product-detail-image {
    min-height:
        clamp(500px, 35vw, 670px);

    display: flex;

    align-items: center;
    justify-content: center;

    padding:
        clamp(45px, 4vw, 75px);

    background:
        linear-gradient(
            135deg,
            #6d9078,
            #aec1b3 48%,
            #688c73
        );

    border-radius: 14px;

    border-bottom:
        6px solid var(--red);

    box-shadow:
        0 18px 45px
        rgba(30, 60, 40, 0.12);
}


.product-detail-image img {
    width: 100%;
    height: 100%;

    max-height: 570px;

    object-fit: contain;
}


/* =====================================================
   PRODUCT DETAIL CONTENT
===================================================== */

.product-detail-content {
    max-width: 820px;
}


.product-detail-label {
    color: var(--green);

    font-size:
        clamp(18px, 1.15vw, 23px);

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 15px;
}


.product-detail-content h2 {
    color: var(--text);

    font-size:
        clamp(50px, 4vw, 76px);

    line-height: 1.04;

    letter-spacing: -2px;

    margin-bottom: 25px;
}


.product-detail-intro {
    color: var(--green);

    font-size:
        clamp(25px, 1.65vw, 32px);

    font-weight: 650;

    line-height: 1.48;

    margin-bottom: 20px;
}


.product-detail-content > p:not(.product-detail-label):not(.product-detail-intro) {
    color: #5b635c;

    font-size:
        clamp(21px, 1.36vw, 26px);

    line-height: 1.72;

    margin-bottom: 32px;
}


/* =====================================================
   PRODUCT SPECIFICATIONS
===================================================== */

.product-spec-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    border-top:
        1px solid #c9d6cc;

    border-left:
        1px solid #c9d6cc;

    margin:
        36px 0;
}


.product-spec-grid div {
    display: flex;

    flex-direction: column;

    padding:
        22px 24px;

    background:
        rgba(255, 255, 255, 0.55);

    border-right:
        1px solid #c9d6cc;

    border-bottom:
        1px solid #c9d6cc;
}


.product-spec-grid strong {
    color: var(--green);

    font-size:
        clamp(16px, 1vw, 19px);

    text-transform: uppercase;

    letter-spacing: 0.8px;

    margin-bottom: 5px;
}


.product-spec-grid span {
    color: #323832;

    font-size:
        clamp(18px, 1.15vw, 22px);

    line-height: 1.45;
}


/* =====================================================
   PRODUCT QUOTE LINK
===================================================== */

.product-quote-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--green);

    font-size:
        clamp(21px, 1.35vw, 26px);

    font-weight: 750;

    padding-bottom: 4px;

    border-bottom:
        2px solid var(--green);
}


.product-quote-link span {
    color: var(--red);

    font-size: 27px;
}


/* =====================================================
   SHEETING OPTIONS
===================================================== */

.sheeting-options {
    display: grid;

    gap: 14px;

    margin:
        35px 0;
}


.sheeting-options > div {
    padding:
        22px 25px;

    background:
        rgba(255, 255, 255, 0.58);

    border-left:
        4px solid var(--green);

    border-bottom:
        2px solid var(--red);

    border-radius:
        0 7px 7px 0;
}


.sheeting-options h3 {
    color: var(--text);

    font-size:
        clamp(21px, 1.35vw, 26px);

    margin-bottom: 6px;
}


.sheeting-options p {
    color: #5c645d;

    font-size:
        clamp(18px, 1.15vw, 22px);

    line-height: 1.55;
}



/* =====================================================
   MANUFACTURING BAND
===================================================== */

.products-manufacturing-band {
    background:
        linear-gradient(
            135deg,
            #173b27 0%,
            #285e3e 55%,
            #3a7952 100%
        );

    border-top:
        5px solid var(--red);

    color: #ffffff;

    padding:
        clamp(95px, 7vw, 140px)
        0;
}


.products-manufacturing-container {
    width: 94%;
    max-width: 1500px;

    margin: 0 auto;

    text-align: center;
}


.products-manufacturing-container
.section-eyebrow {
    color:
        rgba(255, 255, 255, 0.75);
}


.products-manufacturing-container h2 {
    color: #ffffff;

    font-size:
        clamp(50px, 4vw, 74px);

    line-height: 1.06;

    letter-spacing: -1.8px;

    margin-bottom: 25px;
}


.products-manufacturing-container > p:not(.section-eyebrow) {
    color:
        rgba(255, 255, 255, 0.86);

    font-size:
        clamp(21px, 1.4vw, 27px);

    line-height: 1.7;

    max-width: 980px;

    margin:
        0 auto 55px;
}


/* =====================================================
   MANUFACTURING PROCESS
===================================================== */

.manufacturing-process {
    display: flex;

    align-items: center;
    justify-content: center;

    gap:
        clamp(18px, 2vw, 34px);

    flex-wrap: nowrap;
}


/* =====================================================
   MANUFACTURING PROCESS CARDS
===================================================== */

.manufacturing-process-card {
    width:
        clamp(280px, 24vw, 380px);

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.10);

    border:
        1px solid
        rgba(255, 255, 255, 0.22);

    border-bottom:
        4px solid var(--red);

    border-radius: 10px;

    box-shadow:
        0 14px 35px
        rgba(0, 0, 0, 0.13);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.manufacturing-process-card:hover {
    transform:
        translateY(-4px);

    background:
        rgba(255, 255, 255, 0.14);
}


/* =====================================================
   MANUFACTURING PHOTOS
===================================================== */

.manufacturing-process-image {
    width: 100%;

    height:
        clamp(210px, 17vw, 290px);

    overflow: hidden;

    background: #d2ddd5;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.20);
}


.manufacturing-process-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.35s ease;
}


.manufacturing-process-card:hover
.manufacturing-process-image img {
    transform:
        scale(1.025);
}


/* =====================================================
   MANUFACTURING TITLES
===================================================== */

.manufacturing-process-card strong {
    display: block;

    color: #ffffff;

    font-size:
        clamp(24px, 1.6vw, 31px);

    padding:
        22px 20px 24px;
}


/* =====================================================
   PROCESS ARROWS
===================================================== */

.process-arrow {
    flex: 0 0 auto;

    color:
        rgba(255, 255, 255, 0.62);

    font-size:
        clamp(34px, 2.5vw, 48px);

    font-weight: 400;
}


/* =====================================================
   MANUFACTURING PROCESS TABLET
===================================================== */

@media (max-width: 1100px) {

    .manufacturing-process {
        gap: 16px;
    }


    .manufacturing-process-card {
        width:
            clamp(230px, 27vw, 310px);
    }


    .manufacturing-process-image {
        height:
            clamp(190px, 22vw, 250px);
    }

}


/* =====================================================
   MANUFACTURING PROCESS MOBILE
===================================================== */

@media (max-width: 850px) {

    .manufacturing-process {
        flex-direction: column;

        gap: 18px;
    }


    .manufacturing-process-card {
        width: 100%;

        max-width: 520px;
    }


    .manufacturing-process-image {
        height:
            clamp(280px, 60vw, 400px);
    }


    .process-arrow {
        transform:
            rotate(90deg);
    }

}


/* =====================================================
   MANUFACTURING PROCESS SMALL MOBILE
===================================================== */

@media (max-width: 600px) {

    .manufacturing-process-card {
        max-width: 100%;
    }


    .manufacturing-process-image {
        height: 280px;
    }

}



/* =====================================================
   PRODUCTS PAGE TABLET
===================================================== */

@media (max-width: 1100px) {

    .products-page-hero-container {
        grid-template-columns:
            1fr;
    }


    .products-page-hero-content {
        max-width: 100%;
    }


    .products-page-hero-visual {
        max-width: 850px;
    }


    .product-detail-container {
        gap: 55px;
    }


    .product-detail-image {
        min-height: 440px;
    }

}


/* =====================================================
   PRODUCTS PAGE MOBILE
===================================================== */

@media (max-width: 850px) {

    .products-page-hero h1 {
        font-size: 54px;
    }


    .product-detail-container {
        grid-template-columns:
            1fr;

        gap: 45px;
    }


    .product-detail-reverse
    .product-detail-image {
        order: 1;
    }


    .product-detail-reverse
    .product-detail-content {
        order: 2;
    }


    .product-detail-image {
        min-height: 430px;
    }


    .product-detail-content {
        max-width: 100%;
    }


    .manufacturing-process {
        flex-direction: column;
    }


    .process-arrow {
        transform:
            rotate(90deg);
    }

}


/* =====================================================
   PRODUCTS PAGE SMALL MOBILE
===================================================== */

@media (max-width: 600px) {

    .products-page-hero {
        padding:
            65px 0;
    }


    .products-page-hero h1 {
        font-size: 44px;

        letter-spacing: -1.5px;
    }


    .products-page-hero-visual {
        grid-template-columns:
            1fr 1fr;

        gap: 12px;
    }


    .hero-product-tile {
        height: 190px;

        padding: 18px;
    }


    .product-directory-links {
        display: grid;

        grid-template-columns:
            1fr 1fr;
    }


    .product-directory-links a {
        font-size: 15px;

        padding: 9px 10px;
    }


    .product-detail {
        padding:
            75px 0;
    }


    .product-detail-image {
        min-height: 330px;

        padding: 35px;
    }


    .product-detail-content h2 {
        font-size: 43px;
    }


    .product-detail-intro {
        font-size: 22px;
    }


    .product-spec-grid {
        grid-template-columns:
            1fr;
    }

}



/* =====================================================
   CAPABILITIES PAGE
   COMPLETE CLEAN VERSION
===================================================== */


/* =====================================================
   CAPABILITIES HERO
===================================================== */

.capabilities-page-hero {
    background-color: #dfe9e2;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.15) 0px,
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px,
            transparent 9px
        ),

        repeating-linear-gradient(
            90deg,
            rgba(47, 112, 72, 0.035) 0px,
            rgba(47, 112, 72, 0.035) 1px,
            transparent 1px,
            transparent 12px
        ),

        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.26) 0%,
            rgba(255, 255, 255, 0.04) 45%,
            rgba(47, 112, 72, 0.08) 100%
        );

    padding:
        clamp(75px, 6vw, 120px)
        0;
}


.capabilities-page-hero-container {
    width: 95%;
    max-width: 1850px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.88fr 1.12fr;

    gap:
        clamp(60px, 6vw, 120px);

    align-items: center;
}


.capabilities-page-hero-content {
    max-width: 850px;
}


.capabilities-page-hero h1 {
    color: var(--text);

    font-size:
        clamp(62px, 5vw, 96px);

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 30px;
}


.capabilities-page-hero-lead {
    color: var(--green);

    font-size:
        clamp(28px, 1.85vw, 38px);

    font-weight: 700;

    line-height: 1.35;

    margin-bottom: 22px;
}


.capabilities-page-hero-copy {
    color: #59605a;

    font-size:
        clamp(22px, 1.4vw, 28px);

    line-height: 1.72;

    margin-bottom: 38px;
}


/* =====================================================
   HERO PHOTO
===================================================== */

.capabilities-page-hero-image {
    position: relative;
}


.capabilities-page-hero-image img {
    width: 100%;

    height:
        clamp(560px, 40vw, 740px);

    object-fit: cover;

    display: block;

    border-radius: 14px;

    box-shadow:
        0 22px 55px
        rgba(30, 60, 40, 0.16);
}


.capability-hero-badge {
    position: absolute;

    left: 30px;
    bottom: 30px;

    padding:
        20px 26px;

    background:
        rgba(255, 255, 255, 0.96);

    border-left:
        5px solid var(--red);

    border-radius: 8px;
}


.capability-hero-badge strong {
    display: block;

    color: var(--green);

    font-size:
        clamp(18px, 1.15vw, 22px);

    margin-bottom: 4px;
}


.capability-hero-badge span {
    color: #5b625c;

    font-size:
        clamp(15px, 1vw, 19px);
}


/* =====================================================
   PROCESS BAR
===================================================== */

.capabilities-process-bar {
    background:
        linear-gradient(
            135deg,
            #173b27,
            #2f7048
        );

    border-top:
        5px solid var(--red);

    padding:
        clamp(38px, 3vw, 52px)
        0;
}


.capabilities-process-container {
    width: 95%;
    max-width: 1650px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    gap:
        clamp(18px, 2vw, 38px);
}


.capabilities-process-step {
    text-align: center;

    min-width:
        clamp(135px, 11vw, 195px);
}


.capabilities-process-step strong {
    color: #ffffff;

    font-size:
        clamp(21px, 1.4vw, 28px);

    font-weight: 700;
}


.capabilities-process-arrow {
    color:
        rgba(255, 255, 255, 0.48);

    font-size:
        clamp(25px, 1.8vw, 36px);
}


/* =====================================================
   CAPABILITIES INTRO
===================================================== */

.capabilities-intro-section {
    background: #ffffff;

    padding:
        clamp(95px, 7vw, 135px)
        0;
}


.capabilities-intro-container {
    width: 92%;
    max-width: 1450px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap:
        clamp(60px, 7vw, 120px);
}


.capabilities-intro-container h2 {
    color: var(--text);

    font-size:
        clamp(48px, 3.8vw, 70px);

    line-height: 1.06;

    letter-spacing: -1.8px;
}


.capabilities-intro-container > div:last-child p {
    color: #5b635c;

    font-size:
        clamp(21px, 1.4vw, 27px);

    line-height: 1.72;

    margin-bottom: 20px;
}


/* =====================================================
   CAPABILITY DETAIL SECTIONS
===================================================== */

.capability-detail-section {
    scroll-margin-top: 150px;

    padding:
        clamp(100px, 7vw, 150px)
        0;
}


.capability-detail-light {
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f6f8f6
        );
}


.capability-detail-textured {
    background-color: #dfe9e2;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.15) 0px,
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px,
            transparent 9px
        ),

        repeating-linear-gradient(
            90deg,
            rgba(47, 112, 72, 0.035) 0px,
            rgba(47, 112, 72, 0.035) 1px,
            transparent 1px,
            transparent 12px
        ),

        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.15),
            transparent 65%
        );
}


.capability-detail-container {
    width: 95%;
    max-width: 1750px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.90fr 1.10fr;

    gap:
        clamp(70px, 7vw, 140px);

    align-items: center;
}


.capability-detail-reverse
.capability-detail-photo {
    order: 2;
}


.capability-detail-reverse
.capability-detail-content {
    order: 1;
}


/* =====================================================
   REAL EQUIPMENT PHOTOS
===================================================== */

.capability-detail-photo {
    position: relative;

    min-height:
        clamp(500px, 36vw, 680px);

    overflow: hidden;

    border-radius: 14px;

    border-bottom:
        6px solid var(--red);

    background: #c7d4ca;

    box-shadow:
        0 18px 45px
        rgba(30, 60, 40, 0.13);
}


.capability-detail-photo img {
    width: 100%;
    height: 100%;

    min-height:
        clamp(500px, 36vw, 680px);

    display: block;

    object-fit: cover;
    object-position: center;
}


.capability-photo-label {
    position: absolute;

    left: 28px;
    bottom: 28px;

    max-width: calc(100% - 56px);

    padding:
        18px 23px;

    background:
        rgba(255, 255, 255, 0.94);

    border-left:
        5px solid var(--green);

    border-radius: 7px;

    box-shadow:
        0 8px 22px
        rgba(20, 40, 28, 0.12);
}


.capability-photo-label strong {
    display: block;

    color: var(--text);

    font-size:
        clamp(21px, 1.4vw, 27px);

    margin-bottom: 3px;
}


.capability-photo-label span {
    color: var(--green);

    font-size:
        clamp(16px, 1vw, 20px);

    font-weight: 650;
}


/* =====================================================
   CAPABILITY TEXT
===================================================== */

.capability-detail-content {
    max-width: 830px;
}


.capability-detail-label {
    color: var(--green);

    font-size:
        clamp(18px, 1.15vw, 23px);

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 15px;
}


.capability-detail-content h2 {
    color: var(--text);

    font-size:
        clamp(52px, 4vw, 76px);

    line-height: 1.04;

    letter-spacing: -2px;

    margin-bottom: 24px;
}


.capability-detail-intro {
    color: var(--green);

    font-size:
        clamp(25px, 1.65vw, 32px);

    font-weight: 650;

    line-height: 1.48;

    margin-bottom: 20px;
}


.capability-detail-content > p:not(.capability-detail-label):not(.capability-detail-intro) {
    color: #5b635c;

    font-size:
        clamp(21px, 1.36vw, 26px);

    line-height: 1.72;

    margin-bottom: 32px;
}


/* =====================================================
   CAPABILITY FACT GRID
===================================================== */

.capability-fact-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin:
        35px 0;
}


.capability-fact-grid div {
    padding:
        22px 24px;

    background:
        rgba(255, 255, 255, 0.68);

    border:
        1px solid #c8d5cb;

    border-bottom:
        3px solid var(--red);

    border-radius: 4px;
}


.capability-fact-grid strong {
    display: block;

    color: var(--green);

    font-size:
        clamp(25px, 1.7vw, 33px);

    margin-bottom: 3px;
}


.capability-fact-grid span {
    color: #4f5750;

    font-size:
        clamp(16px, 1.05vw, 20px);
}


/* =====================================================
   FEATURE LIST
===================================================== */

.capability-feature-list {
    display: grid;

    gap: 11px;

    margin:
        30px 0 38px;
}


.capability-feature-list div {
    color: #343a35;

    font-size:
        clamp(19px, 1.25vw, 24px);
}


.capability-feature-list span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    margin-right: 10px;

    color: #ffffff;

    background: var(--green);

    border:
        2px solid var(--red);

    border-radius: 50%;

    font-size: 13px;
}

/* =====================================================
   MATERIAL OPTIONS
===================================================== */

.material-options-section {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f8f6 100%
        );

    padding:
        clamp(95px, 7vw, 140px)
        0;
}


.material-options-container {
    width: 95%;
    max-width: 1750px;

    margin: 0 auto;
}


/* =====================================================
   MATERIAL OPTIONS HEADING
===================================================== */

.material-options-heading {
    max-width: 1050px;

    margin:
        0 auto
        clamp(50px, 4vw, 70px);

    text-align: center;
}


.material-options-heading h2 {
    color: var(--text);

    font-size:
        clamp(50px, 4vw, 74px);

    line-height: 1.06;

    letter-spacing: -2px;

    margin-bottom: 22px;
}


.material-options-heading > p:not(.section-eyebrow) {
    color: #5b635c;

    font-size:
        clamp(21px, 1.4vw, 27px);

    line-height: 1.7;
}


/* =====================================================
   MATERIAL CARDS
===================================================== */

.material-options-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        clamp(22px, 2vw, 34px);
}


.material-option-card {
    position: relative;

    min-height: 430px;

    padding:
        clamp(38px, 3vw, 52px);

    background:
        linear-gradient(
            145deg,
            #f7faf8,
            #e7efe9
        );

    border:
        1px solid #ccd9cf;

    border-top:
        5px solid var(--red);

    border-radius: 10px;

    box-shadow:
        0 12px 32px
        rgba(30, 60, 40, 0.07);
}


.material-option-abbreviation {
    color: var(--green);

    font-size:
        clamp(43px, 3vw, 58px);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -1px;

    margin-bottom: 18px;
}


.material-option-card h3 {
    color: var(--text);

    font-size:
        clamp(27px, 1.8vw, 35px);

    line-height: 1.15;

    margin-bottom: 20px;
}


.material-option-card > p {
    color: #5b635c;

    font-size:
        clamp(19px, 1.25vw, 23px);

    line-height: 1.68;

    margin-bottom: 30px;
}


/* =====================================================
   MATERIAL USE TAGS
===================================================== */

.material-option-uses {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: auto;
}


.material-option-uses span {
    display: inline-block;

    padding:
        8px 13px;

    color: var(--green);

    background:
        rgba(47, 112, 72, 0.08);

    border:
        1px solid
        rgba(47, 112, 72, 0.18);

    border-radius: 4px;

    font-size:
        clamp(15px, 0.95vw, 18px);

    font-weight: 700;
}


/* =====================================================
   PCR LABEL
===================================================== */

.material-option-pcr {
    padding-top:
        clamp(68px, 5vw, 82px);
}


.material-option-badge {
    position: absolute;

    top: 22px;
    right: 22px;

    padding:
        7px 11px;

    color: #ffffff;

    background: var(--green);

    border-radius: 4px;

    font-size:
        clamp(13px, 0.85vw, 16px);

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


/* =====================================================
   MATERIAL NOTE
===================================================== */

.material-options-note {
    max-width: 1150px;

    margin:
        clamp(45px, 4vw, 65px)
        auto 0;

    padding:
        clamp(28px, 2.5vw, 38px)
        clamp(30px, 3vw, 48px);

    background: #ffffff;

    border-left:
        5px solid var(--red);

    box-shadow:
        0 8px 25px
        rgba(30, 60, 40, 0.07);
}


.material-options-note strong {
    display: block;

    color: var(--text);

    font-size:
        clamp(22px, 1.45vw, 28px);

    margin-bottom: 8px;
}


.material-options-note p {
    color: #5b635c;

    font-size:
        clamp(18px, 1.2vw, 23px);

    line-height: 1.6;
}


/* =====================================================
   MATERIAL OPTIONS TABLET
===================================================== */

@media (max-width: 1100px) {

    .material-options-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* =====================================================
   MATERIAL OPTIONS MOBILE
===================================================== */

@media (max-width: 850px) {

    .material-options-grid {
        grid-template-columns: 1fr;
    }


    .material-option-card {
        min-height: 0;
    }

}


/* =====================================================
   MATERIAL OPTIONS SMALL MOBILE
===================================================== */

@media (max-width: 650px) {

    .material-options-section {
        padding:
            75px 0;
    }


    .material-options-heading h2 {
        font-size: 44px;

        letter-spacing: -1.5px;
    }


    .material-option-card {
        padding:
            34px 28px;
    }


    .material-option-pcr {
        padding-top: 72px;
    }

}

/* =====================================================
   IN-LINE MANUFACTURING
===================================================== */

.inline-capabilities-section {
    background: #ffffff;

    padding:
        clamp(100px, 7vw, 145px)
        0;
}


.inline-capabilities-container {
    width: 95%;
    max-width: 1750px;

    margin: 0 auto;
}


.inline-capability-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        clamp(22px, 2vw, 34px);
}


.inline-capability-grid article {
    min-height: 310px;

    padding:
        clamp(38px, 3vw, 55px);

    background:
        linear-gradient(
            145deg,
            #f7faf8,
            #e9f0eb
        );

    border:
        1px solid #d2ddd4;

    border-top:
        5px solid var(--red);

    border-radius: 10px;

    box-shadow:
        0 10px 28px
        rgba(30, 60, 40, 0.06);
}


.inline-capability-grid h3 {
    color: var(--text);

    font-size:
        clamp(29px, 1.9vw, 37px);

    line-height: 1.15;

    margin-bottom: 18px;
}


.inline-capability-grid p {
    color: #5d655e;

    font-size:
        clamp(19px, 1.25vw, 23px);

    line-height: 1.66;
}


/* =====================================================
   WHY IN-HOUSE MATTERS
===================================================== */

.inhouse-benefits-section {
    background-color: #dfe9e2;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.15) 0px,
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px,
            transparent 9px
        ),

        repeating-linear-gradient(
            90deg,
            rgba(47, 112, 72, 0.035) 0px,
            rgba(47, 112, 72, 0.035) 1px,
            transparent 1px,
            transparent 12px
        );

    padding:
        clamp(100px, 7vw, 145px)
        0;
}


.inhouse-benefits-container {
    width: 95%;
    max-width: 1750px;

    margin: 0 auto;
}


.inhouse-benefits-heading {
    max-width: 900px;

    margin-bottom: 60px;
}


.inhouse-benefits-heading h2 {
    color: var(--text);

    font-size:
        clamp(52px, 4vw, 76px);

    line-height: 1.05;

    margin-bottom: 22px;
}


.inhouse-benefits-heading > p:last-child {
    color: #5d655e;

    font-size:
        clamp(22px, 1.4vw, 27px);

    line-height: 1.7;
}


.inhouse-benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        clamp(18px, 1.5vw, 26px);
}


.inhouse-benefits-grid > div {
    min-height: 255px;

    padding:
        clamp(30px, 2.5vw, 42px);

    background:
        rgba(255, 255, 255, 0.74);

    border:
        1px solid #c6d4c9;

    border-bottom:
        4px solid var(--red);

    border-radius: 9px;

    box-shadow:
        0 8px 25px
        rgba(30, 60, 40, 0.05);
}


.inhouse-benefits-grid h3 {
    color: var(--text);

    font-size:
        clamp(25px, 1.65vw, 32px);

    margin-bottom: 14px;
}


.inhouse-benefits-grid p {
    color: #5c645d;

    font-size:
        clamp(18px, 1.15vw, 22px);

    line-height: 1.62;
}


/* =====================================================
   PRODUCTS CTA
===================================================== */

.capabilities-products-cta {
    background: #ffffff;

    padding:
        clamp(80px, 6vw, 115px)
        0;
}


.capabilities-products-cta-container {
    width: 92%;
    max-width: 1500px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 60px;
}


.capabilities-products-cta-container > div {
    max-width: 900px;
}


.capabilities-products-cta h2 {
    color: var(--text);

    font-size:
        clamp(45px, 3.5vw, 64px);

    margin-bottom: 17px;
}


.capabilities-products-cta p:not(.section-eyebrow) {
    color: #5d655e;

    font-size:
        clamp(20px, 1.3vw, 25px);

    line-height: 1.66;
}


.capability-products-button {
    flex-shrink: 0;

    background: var(--green);

    color: #ffffff;

    border-bottom:
        4px solid var(--red);

    min-width: 220px;
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1800px) {

    .capabilities-page-hero-container,
    .capabilities-process-container,
    .capability-detail-container,
    .inline-capabilities-container,
    .inhouse-benefits-container {
        max-width: 1900px;
    }


    .capability-detail-photo,
    .capability-detail-photo img {
        min-height: 730px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .capabilities-page-hero-container {
        grid-template-columns: 1fr;
    }


    .capabilities-intro-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .capability-detail-container {
        gap: 55px;
    }


    .inline-capability-grid {
        grid-template-columns:
            1fr 1fr;
    }


    .inhouse-benefits-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

    .capabilities-page-hero h1 {
        font-size: 54px;
    }


    .capabilities-process-container {
        flex-wrap: wrap;
    }


    .capabilities-process-arrow {
        display: none;
    }


    .capability-detail-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .capability-detail-reverse
    .capability-detail-photo {
        order: 1;
    }


    .capability-detail-reverse
    .capability-detail-content {
        order: 2;
    }


    .capability-detail-photo,
    .capability-detail-photo img {
        min-height: 480px;
    }


    .capabilities-products-cta-container {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 650px) {

    .capabilities-page-hero {
        padding:
            65px 0;
    }


    .capabilities-page-hero h1 {
        font-size: 44px;

        letter-spacing: -1.5px;
    }


    .capabilities-page-hero-image img {
        height: 390px;
    }


    .capabilities-process-container {
        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 18px;
    }


    .capabilities-process-step {
        min-width: 0;

        padding: 8px;
    }


    .capability-detail-section {
        padding:
            75px 0;
    }


    .capability-detail-photo,
    .capability-detail-photo img {
        min-height: 360px;
    }


    .capability-photo-label {
        left: 18px;
        bottom: 18px;

        max-width:
            calc(100% - 36px);

        padding:
            14px 17px;
    }


    .capability-detail-content h2 {
        font-size: 44px;
    }


    .capability-fact-grid {
        grid-template-columns: 1fr;
    }


    .inline-capability-grid,
    .inhouse-benefits-grid {
        grid-template-columns: 1fr;
    }


    .inline-capability-grid article,
    .inhouse-benefits-grid > div {
        min-height: 0;
    }

}









/* =====================================================
   ABOUT PAGE
   COMPLETE CLEAN VERSION
===================================================== */


/* =====================================================
   ABOUT HERO
===================================================== */

.about-page-hero {
    background-color: #dfe9e2;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.15) 0px,
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px,
            transparent 9px
        ),

        repeating-linear-gradient(
            90deg,
            rgba(47, 112, 72, 0.035) 0px,
            rgba(47, 112, 72, 0.035) 1px,
            transparent 1px,
            transparent 12px
        ),

        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.26) 0%,
            rgba(255, 255, 255, 0.04) 45%,
            rgba(47, 112, 72, 0.08) 100%
        );

    padding:
        clamp(80px, 6vw, 120px)
        0;
}


.about-page-hero-container {
    width: 95%;
    max-width: 1750px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.08fr 0.92fr;

    gap:
        clamp(70px, 7vw, 140px);

    align-items: center;
}


.about-page-hero-content {
    max-width: 900px;
}


.about-page-hero h1 {
    color: var(--text);

    font-size:
        clamp(66px, 5.2vw, 100px);

    line-height: 0.98;

    letter-spacing: -3px;

    margin-bottom: 30px;
}


.about-page-hero-lead {
    color: var(--green);

    font-size:
        clamp(28px, 1.85vw, 38px);

    font-weight: 700;

    line-height: 1.35;

    margin-bottom: 22px;
}


.about-page-hero-copy {
    color: #59605a;

    font-size:
        clamp(22px, 1.4vw, 28px);

    line-height: 1.72;

    margin-bottom: 38px;
}


/* =====================================================
   YEAR CARD
===================================================== */

.about-page-year-card {
    padding:
        clamp(50px, 4.5vw, 80px);

    background:
        rgba(255, 255, 255, 0.82);

    border-left:
        8px solid var(--green);

    border-bottom:
        8px solid var(--red);

    border-radius:
        0 12px 12px 0;

    box-shadow:
        0 18px 45px
        rgba(30, 60, 40, 0.10);
}


.about-page-year-card > span {
    display: block;

    color: #5d655e;

    font-size:
        clamp(20px, 1.3vw, 25px);

    margin-bottom: 6px;
}


.about-page-year-card strong {
    display: block;

    color: var(--green);

    font-size:
        clamp(110px, 10vw, 180px);

    line-height: 0.95;

    letter-spacing: -6px;

    margin-bottom: 20px;
}


.about-page-year-card p {
    color: #555d56;

    font-size:
        clamp(19px, 1.2vw, 24px);

    line-height: 1.6;
}


/* =====================================================
   ABOUT STATS BAND
===================================================== */

.about-stats-band {
    background:
        linear-gradient(
            135deg,
            #173b27,
            #2f7048
        );

    border-top:
        5px solid var(--red);
}


.about-stats-container {
    width: 95%;
    max-width: 1750px;

    margin: 0 auto;

    min-height:
        clamp(170px, 10vw, 215px);

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}


.about-stats-container > div {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        30px 45px;

    border-right:
        1px solid
        rgba(255, 255, 255, 0.16);
}


.about-stats-container > div:last-child {
    border-right: none;
}


.about-stats-container strong {
    color: #ffffff;

    font-size:
        clamp(31px, 2.2vw, 43px);

    margin-bottom: 7px;
}


.about-stats-container span {
    color:
        rgba(255, 255, 255, 0.76);

    font-size:
        clamp(18px, 1.2vw, 23px);
}


/* =====================================================
   HISTORY SECTION
===================================================== */

.film-pak-history-section {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfcfb 100%
        );

    padding:
        clamp(95px, 7vw, 140px)
        0;
}


.film-pak-history-container {
    width: 94%;
    max-width: 1750px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(360px, 0.36fr)
        minmax(0, 0.64fr);

    gap:
        clamp(60px, 5vw, 100px);

    align-items: start;
}


/* =====================================================
   HISTORY LEFT COLUMN
===================================================== */

.history-left-column {
    min-width: 0;

    display: flex;

    flex-direction: column;
}


.history-heading {
    position: static !important;

    top: auto !important;

    margin-top:
        clamp(135px, 10vw, 190px);

    margin-bottom: 0;
}


.history-heading .section-eyebrow {
    margin-bottom: 12px;
}


.history-heading h2 {
    color: var(--text);

    font-size:
        clamp(58px, 4.8vw, 88px);

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 14px;
}


.history-year {
    color:
        rgba(47, 112, 72, 0.13);

    font-size:
        clamp(82px, 6.5vw, 125px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -6px;
}


/* =====================================================
   EARLY HISTORY PHOTO STACK
===================================================== */

.history-photo-stack {
    display: grid;

    grid-template-columns: 1fr;

    gap:
        clamp(32px, 2.6vw, 44px);

    /*
       Brought noticeably higher than the last version.
    */

    margin-top:
        clamp(280px, 21vw, 410px);
}


.history-photo {
    margin: 0;
}


.history-photo img {
    width: 100%;

    height: auto;

    display: block;

    border-radius: 10px;

    border:
        1px solid #c6d2c8;

    box-shadow:
        0 15px 34px
        rgba(30, 60, 40, 0.12);

    filter:
        saturate(0.90)
        contrast(1.03);
}


.history-photo figcaption {
    color: #687069;

    font-size:
        clamp(15px, 0.95vw, 18px);

    font-style: italic;

    line-height: 1.4;

    margin-top: 9px;
}


.history-photo::after {
    content: "";

    display: block;

    width: 55px;
    height: 3px;

    background: var(--red);

    margin-top: 12px;
}


/* =====================================================
   HISTORY RIGHT COLUMN
===================================================== */

.history-right-column {
    min-width: 0;
}


/* =====================================================
   BASIL & GEORGE PHOTO
===================================================== */

.founders-photo {
    width: 100%;

    margin:
        0 0
        clamp(38px, 3vw, 50px);
}


.founders-photo img {
    width: 100%;

    max-height: 700px;

    height: auto;

    display: block;

    object-fit: contain;

    object-position: center;

    background: #edf2ee;

    padding: 10px;

    border:
        2px solid #bccabd;

    border-radius: 12px;

    box-shadow:
        0 20px 46px
        rgba(30, 60, 40, 0.15);
}


.founders-photo figcaption {
    color: var(--green);

    font-size:
        clamp(18px, 1.15vw, 22px);

    font-weight: 700;

    line-height: 1.4;

    margin-top: 11px;
}


.founders-photo::after {
    content: "";

    display: block;

    width: 85px;
    height: 4px;

    background: var(--red);

    margin-top: 13px;
}


/* =====================================================
   HISTORY TEXT
===================================================== */

.history-copy {
    width: 100%;
}


.history-copy p {
    color: #4f5751 !important;

    font-size:
        clamp(19px, 1.24vw, 24px) !important;

    font-weight: 400 !important;

    line-height: 1.75 !important;

    margin-bottom:
        clamp(22px, 1.7vw, 28px);
}


.history-copy p:first-child {
    color: #4f5751 !important;

    font-size:
        clamp(19px, 1.24vw, 24px) !important;

    font-weight: 400 !important;

    line-height: 1.75 !important;
}


/* =====================================================
   HISTORY CLOSING STATEMENT
===================================================== */

.history-copy p.history-closing {
    color: #303a32 !important;

    font-size:
        clamp(19px, 1.24vw, 24px) !important;

    font-weight: 650 !important;

    line-height: 1.75 !important;

    margin:
        40px 0 0;

    padding:
        clamp(26px, 2.3vw, 36px);

    background: #e5eee7;

    border-left:
        5px solid var(--green);

    border-bottom:
        4px solid var(--red);

    border-radius:
        0 8px 8px 0;

    box-shadow:
        0 8px 25px
        rgba(30, 60, 40, 0.05);
}


/* =====================================================
   FILM-PAK TODAY
===================================================== */

.film-pak-today-section {
    background-color: #dfe9e2;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.15) 0px,
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px,
            transparent 9px
        ),

        repeating-linear-gradient(
            90deg,
            rgba(47, 112, 72, 0.035) 0px,
            rgba(47, 112, 72, 0.035) 1px,
            transparent 1px,
            transparent 12px
        ),

        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.16),
            transparent 65%
        );

    padding:
        clamp(95px, 7vw, 140px)
        0;
}


.film-pak-today-container {
    width: 95%;
    max-width: 1650px;

    margin: 0 auto;
}


.film-pak-today-heading {
    max-width: 1000px;

    margin-bottom:
        clamp(50px, 4vw, 70px);
}


.film-pak-today-heading h2 {
    color: var(--text);

    font-size:
        clamp(50px, 4vw, 74px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 22px;
}


.film-pak-today-heading > p:last-child {
    color: #5b635c;

    font-size:
        clamp(21px, 1.38vw, 27px);

    line-height: 1.7;
}


/* =====================================================
   TODAY PHOTO CARDS
===================================================== */

.film-pak-today-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        clamp(22px, 2vw, 34px);
}


.today-photo-card {
    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.88);

    border:
        1px solid #c6d4c9;

    border-radius: 12px;

    box-shadow:
        0 14px 35px
        rgba(30, 60, 40, 0.09);
}


.today-photo {
    width: 100%;

    height:
        clamp(280px, 20vw, 390px);

    overflow: hidden;

    background: #c8d6cb;

    border-bottom:
        5px solid var(--red);
}


.today-photo img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.35s ease;
}


.today-photo-card:hover
.today-photo img {
    transform:
        scale(1.025);
}


.today-photo-content {
    min-height:
        clamp(230px, 15vw, 290px);

    padding:
        clamp(30px, 2.5vw, 44px);
}


.today-photo-content h3 {
    color: var(--text);

    font-size:
        clamp(30px, 2vw, 39px);

    margin-bottom: 15px;
}


.today-photo-content p {
    color: #5b635c;

    font-size:
        clamp(18px, 1.16vw, 22px);

    line-height: 1.65;
}


.film-pak-today-link {
    margin-top:
        clamp(40px, 3.5vw, 55px);
}


/* =====================================================
   FAMILY / TEXAS BAND
===================================================== */

.about-family-band {
    background:
        linear-gradient(
            135deg,
            #173b27,
            #2f7048
        );

    border-top:
        5px solid var(--red);

    padding:
        clamp(50px, 4vw, 70px)
        0;
}


.about-family-container {
    width: 92%;
    max-width: 1400px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-around;

    gap: 35px;

    text-align: center;
}


.about-family-container p {
    color:
        rgba(255, 255, 255, 0.62);

    font-size:
        clamp(15px, 0.95vw, 18px);

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 5px;
}


.about-family-container strong {
    color: #ffffff;

    font-size:
        clamp(25px, 1.8vw, 34px);
}


.about-family-divider {
    width: 1px;

    height: 65px;

    background:
        rgba(255, 255, 255, 0.18);
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1800px) {

    .about-page-hero-container,
    .about-stats-container,
    .film-pak-history-container,
    .film-pak-today-container {
        max-width: 1900px;
    }


    .film-pak-history-container {
        grid-template-columns:
            minmax(430px, 0.35fr)
            minmax(0, 0.65fr);
    }


    .history-heading {
        margin-top: 205px;
    }


    .history-photo-stack {
        margin-top: 440px;
    }


    .founders-photo img {
        max-height: 760px;
    }


    .today-photo {
        height: 420px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .about-page-hero-container {
        grid-template-columns: 1fr;
    }


    .about-page-year-card {
        max-width: 800px;
    }


    .film-pak-history-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .history-left-column {
        display: contents;
    }


    .history-heading {
        order: 1;

        margin-top: 0;
    }


    .history-right-column {
        order: 2;
    }


    .history-photo-stack {
        order: 3;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 20px;

        margin-top: 15px;
    }


    .founders-photo {
        max-width: 850px;
    }


    .film-pak-today-grid {
        grid-template-columns: 1fr;
    }


    .today-photo-card {
        display: grid;

        grid-template-columns:
            0.9fr 1.1fr;

        align-items: stretch;
    }


    .today-photo {
        height: 100%;

        min-height: 320px;

        border-bottom: none;

        border-right:
            5px solid var(--red);
    }


    .today-photo-content {
        min-height: 320px;

        display: flex;

        flex-direction: column;

        justify-content: center;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

    .about-page-hero h1 {
        font-size: 55px;
    }


    .about-stats-container {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .about-family-container {
        flex-direction: column;
    }


    .about-family-divider {
        width: 100px;

        height: 1px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 650px) {

    .about-page-hero {
        padding:
            65px 0;
    }


    .about-page-hero h1 {
        font-size: 45px;

        letter-spacing: -1.5px;
    }


    .about-page-year-card strong {
        font-size: 100px;

        letter-spacing: -4px;
    }


    .about-stats-container {
        grid-template-columns: 1fr;
    }


    .film-pak-history-section,
    .film-pak-today-section {
        padding:
            75px 0;
    }


    .history-heading {
        margin-top: 0;
    }


    .history-heading h2 {
        font-size: 52px;
    }


    .history-year {
        font-size: 85px;

        letter-spacing: -3px;
    }


    .history-photo-stack {
        grid-template-columns: 1fr;

        gap: 32px;

        margin-top: 10px;
    }


    .founders-photo img {
        max-height: none;
    }


    .history-copy p,
    .history-copy p:first-child,
    .history-copy p.history-closing {
        font-size: 18px !important;
    }


    .history-copy p.history-closing {
        padding:
            23px 24px;
    }


    .today-photo-card {
        display: block;
    }


    .today-photo {
        height: 280px;

        min-height: 0;

        border-right: none;

        border-bottom:
            5px solid var(--red);
    }


    .today-photo-content {
        min-height: 0;

        padding:
            28px 25px 34px;
    }

}
/* =====================================================
   INDUSTRIES PAGE
===================================================== */


/* =====================================================
   INDUSTRIES HERO
===================================================== */

.industries-page-hero {
    background-color: #dfe9e2;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.15) 0px,
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px,
            transparent 9px
        ),

        repeating-linear-gradient(
            90deg,
            rgba(47, 112, 72, 0.035) 0px,
            rgba(47, 112, 72, 0.035) 1px,
            transparent 1px,
            transparent 12px
        ),

        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.26),
            rgba(47, 112, 72, 0.07)
        );

    padding:
        clamp(80px, 6vw, 120px)
        0;
}


.industries-page-hero-container {
    width: 95%;
    max-width: 1750px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap:
        clamp(70px, 7vw, 140px);

    align-items: center;
}


.industries-page-hero-content {
    max-width: 950px;
}


.industries-page-hero h1 {
    color: var(--text);

    font-size:
        clamp(62px, 5vw, 96px);

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 30px;
}


.industries-page-hero-lead {
    color: var(--green);

    font-size:
        clamp(28px, 1.85vw, 38px);

    font-weight: 700;

    line-height: 1.35;

    margin-bottom: 22px;
}


.industries-page-hero-copy {
    color: #59605a;

    font-size:
        clamp(22px, 1.4vw, 28px);

    line-height: 1.72;

    margin-bottom: 38px;
}


/* =====================================================
   HERO APPLICATION PANEL
===================================================== */

.industries-hero-panel {
    padding:
        clamp(45px, 4vw, 70px);

    background:
        linear-gradient(
            135deg,
            #1c472e,
            #347650
        );

    border-bottom:
        7px solid var(--red);

    border-radius: 12px;

    box-shadow:
        0 18px 45px
        rgba(30, 60, 40, 0.14);
}


.industries-hero-panel > p {
    color:
        rgba(255, 255, 255, 0.65);

    font-size:
        clamp(17px, 1.1vw, 21px);

    font-weight: 750;

    text-transform: uppercase;

    letter-spacing: 1.2px;

    margin-bottom: 24px;
}


.industries-hero-panel ul {
    list-style: none;

    margin: 0;

    padding: 0;
}


.industries-hero-panel li {
    color: #ffffff;

    font-size:
        clamp(22px, 1.5vw, 29px);

    font-weight: 650;

    padding:
        14px 0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.16);
}


.industries-hero-panel li:last-child {
    border-bottom: none;
}


/* =====================================================
   INDUSTRIES INTRO
===================================================== */

.industries-intro-section {
    background: #ffffff;

    padding:
        clamp(100px, 7vw, 140px)
        0;
}


.industries-intro-container {
    width: 92%;
    max-width: 1450px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap:
        clamp(70px, 7vw, 125px);
}


.industries-intro-container h2 {
    color: var(--text);

    font-size:
        clamp(50px, 4vw, 72px);

    line-height: 1.05;

    letter-spacing: -2px;
}


.industries-intro-container > div:last-child p {
    color: #5b635c;

    font-size:
        clamp(21px, 1.4vw, 27px);

    line-height: 1.72;

    margin-bottom: 22px;
}


/* =====================================================
   INDUSTRY GRID
===================================================== */

.industries-grid-section {
    background-color: #dfe9e2;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.15) 0px,
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px,
            transparent 9px
        ),

        repeating-linear-gradient(
            90deg,
            rgba(47, 112, 72, 0.035) 0px,
            rgba(47, 112, 72, 0.035) 1px,
            transparent 1px,
            transparent 12px
        );

    padding:
        clamp(100px, 7vw, 150px)
        0;
}


.industries-grid-container {
    width: 95%;
    max-width: 1750px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        clamp(24px, 2vw, 36px);
}


/* =====================================================
   INDUSTRY CARDS
===================================================== */

.industry-card {
    min-height: 430px;

    display: flex;

    flex-direction: column;

    padding:
        clamp(38px, 3vw, 55px);

    background:
        rgba(255, 255, 255, 0.82);

    border:
        1px solid #c6d4c9;

    border-top:
        5px solid var(--red);

    border-radius: 11px;

    box-shadow:
        0 12px 30px
        rgba(30, 60, 40, 0.07);
}


.industry-card-top span {
    display: block;

    color: var(--green);

    font-size:
        clamp(16px, 1vw, 20px);

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.2px;

    margin-bottom: 12px;
}


.industry-card h2 {
    color: var(--text);

    font-size:
        clamp(34px, 2.4vw, 46px);

    line-height: 1.08;

    margin-bottom: 22px;
}


.industry-card > p {
    color: #5b635c;

    font-size:
        clamp(20px, 1.3vw, 25px);

    line-height: 1.68;

    margin-bottom: 35px;
}


.industry-applications {
    margin-top: auto;

    padding-top: 25px;

    border-top:
        1px solid #ccd7ce;
}


.industry-applications strong {
    display: block;

    color: var(--green);

    font-size:
        clamp(16px, 1vw, 20px);

    text-transform: uppercase;

    letter-spacing: 0.8px;

    margin-bottom: 7px;
}


.industry-applications p {
    color: #4f5751;

    font-size:
        clamp(18px, 1.15vw, 22px);

    line-height: 1.55;
}


/* =====================================================
   FEATURED CUSTOM CARD
===================================================== */

.industry-card-featured {
    background:
        linear-gradient(
            135deg,
            #1d472f,
            #347650
        );

    border:
        none;

    border-top:
        5px solid var(--red);
}


.industry-card-featured
.industry-card-top span {
    color:
        rgba(255, 255, 255, 0.66);
}


.industry-card-featured h2 {
    color: #ffffff;
}


.industry-card-featured > p,
.industry-card-featured
.industry-applications p {
    color:
        rgba(255, 255, 255, 0.82);
}


.industry-card-featured
.industry-applications {
    border-top:
        1px solid
        rgba(255, 255, 255, 0.18);
}


.industry-card-featured
.industry-applications strong {
    color: #ffffff;
}


/* =====================================================
   APPLICATION BAND
===================================================== */

.industry-application-band {
    background:
        linear-gradient(
            135deg,
            #173b27,
            #2e7048
        );

    border-top:
        5px solid var(--red);

    padding:
        clamp(95px, 7vw, 140px)
        0;
}


.industry-application-container {
    width: 92%;
    max-width: 1550px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        clamp(70px, 7vw, 130px);

    align-items: center;
}


.industry-application-container
.section-eyebrow {
    color:
        rgba(255, 255, 255, 0.65);
}


.industry-application-container h2 {
    color: #ffffff;

    font-size:
        clamp(50px, 4vw, 72px);

    line-height: 1.05;

    margin-bottom: 24px;
}


.industry-application-container
> div:first-child
> p:last-child {
    color:
        rgba(255, 255, 255, 0.82);

    font-size:
        clamp(21px, 1.4vw, 27px);

    line-height: 1.7;
}


.industry-application-list {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;
}


.industry-application-list div {
    padding:
        20px 22px;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid
        rgba(255, 255, 255, 0.17);

    border-left:
        4px solid var(--red);

    border-radius:
        0 7px 7px 0;

    font-size:
        clamp(18px, 1.2vw, 23px);

    font-weight: 650;
}


/* =====================================================
   CAPABILITIES CTA
===================================================== */

.industries-capabilities-cta {
    background: #ffffff;

    padding:
        clamp(85px, 6vw, 120px)
        0;
}


.industries-capabilities-container {
    width: 92%;
    max-width: 1500px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}


.industries-capabilities-container > div {
    max-width: 900px;
}


.industries-capabilities-container h2 {
    color: var(--text);

    font-size:
        clamp(45px, 3.5vw, 64px);

    margin-bottom: 18px;
}


.industries-capabilities-container
p:not(.section-eyebrow) {
    color: #5d655e;

    font-size:
        clamp(20px, 1.3vw, 25px);

    line-height: 1.66;
}


.industries-capabilities-button {
    flex-shrink: 0;

    min-width: 235px;

    color: #ffffff;

    background: var(--green);

    border-bottom:
        4px solid var(--red);
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1800px) {

    .industries-page-hero-container,
    .industries-grid-container {
        max-width: 1900px;
    }


    .industry-card {
        min-height: 460px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .industries-page-hero-container,
    .industries-intro-container,
    .industry-application-container {
        grid-template-columns: 1fr;
    }


    .industries-hero-panel {
        max-width: 850px;
    }


    .industries-intro-container,
    .industry-application-container {
        gap: 45px;
    }


    .industries-capabilities-container {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

    .industries-page-hero h1 {
        font-size: 54px;
    }


    .industries-grid-container {
        grid-template-columns: 1fr;
    }


    .industry-card {
        min-height: 0;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 650px) {

    .industries-page-hero {
        padding:
            65px 0;
    }


    .industries-page-hero h1 {
        font-size: 44px;

        letter-spacing: -1.5px;
    }


    .industries-hero-panel {
        padding:
            35px 28px;
    }


    .industries-intro-section,
    .industries-grid-section,
    .industry-application-band {
        padding:
            75px 0;
    }


    .industry-card {
        padding:
            32px 27px;
    }


    .industry-application-list {
        grid-template-columns: 1fr;
    }

}





/* =====================================================
   CONTACT / GET A QUOTE PAGE
===================================================== */


/* =====================================================
   CONTACT HERO
===================================================== */

.contact-page-hero {
    background-color: #dfe9e2;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.15) 0px,
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px,
            transparent 9px
        ),

        repeating-linear-gradient(
            90deg,
            rgba(47, 112, 72, 0.035) 0px,
            rgba(47, 112, 72, 0.035) 1px,
            transparent 1px,
            transparent 12px
        ),

        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.25),
            rgba(47, 112, 72, 0.07)
        );

    padding:
        clamp(80px, 6vw, 115px)
        0;

    border-bottom:
        5px solid var(--red);
}


.contact-page-hero-container {
    width: 92%;
    max-width: 1350px;

    margin: 0 auto;

    text-align: center;
}


.contact-page-hero h1 {
    color: var(--text);

    font-size:
        clamp(68px, 5.5vw, 105px);

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 24px;
}


.contact-page-hero-container > p:last-child {
    max-width: 850px;

    margin:
        0 auto;

    color: #5b635c;

    font-size:
        clamp(22px, 1.45vw, 28px);

    line-height: 1.65;
}


/* =====================================================
   FORM SECTION
===================================================== */

.contact-form-section {
    background: #ffffff;

    padding:
        clamp(90px, 6vw, 125px)
        0;
}


.contact-form-container {
    width: 92%;
    max-width: 1250px;

    margin: 0 auto;
}


/* =====================================================
   QUOTE FORM
===================================================== */

.film-pak-quote-form {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        clamp(28px, 2.2vw, 38px)
        clamp(28px, 2.5vw, 45px);

    padding:
        clamp(42px, 4vw, 65px);

    background:
        #f6f9f7;

    border:
        1px solid #d0dbd2;

    border-top:
        6px solid var(--green);

    border-bottom:
        6px solid var(--red);

    border-radius: 12px;

    box-shadow:
        0 18px 45px
        rgba(30, 60, 40, 0.08);
}


.quote-form-group {
    display: flex;

    flex-direction: column;
}


.quote-form-full {
    grid-column:
        1 / -1;
}


/* =====================================================
   LABELS
===================================================== */

.quote-form-group label {
    color: var(--text);

    font-size:
        clamp(18px, 1.2vw, 23px);

    font-weight: 700;

    margin-bottom: 10px;
}


.quote-form-group label span {
    color: var(--red);
}


/* =====================================================
   INPUTS
===================================================== */

.quote-form-group input,
.quote-form-group textarea {
    width: 100%;

    border:
        2px solid #c9d5cb;

    border-radius: 7px;

    background: #ffffff;

    color: #303631;

    font-family: inherit;

    font-size:
        clamp(18px, 1.15vw, 22px);

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}


.quote-form-group input {
    min-height: 62px;

    padding:
        14px 17px;
}


.quote-form-group textarea {
    min-height: 260px;

    padding:
        17px 18px;

    line-height: 1.6;

    resize: vertical;
}


.quote-form-group textarea::placeholder {
    color: #89918b;
}


/* =====================================================
   INPUT FOCUS
===================================================== */

.quote-form-group input:focus,
.quote-form-group textarea:focus {
    border-color: var(--green);

    background: #ffffff;

    box-shadow:
        0 0 0 4px
        rgba(47, 112, 72, 0.10);
}


/* =====================================================
   SUBMIT
===================================================== */

.quote-form-submit {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 13px;

    margin-top: 5px;
}


.contact-submit-button {
    min-width:
        clamp(260px, 20vw, 340px);

    min-height: 64px;

    padding:
        17px 30px;

    border: none;

    border-bottom:
        5px solid var(--red);

    border-radius: 7px;

    background: var(--green);

    color: #ffffff;

    font-family: inherit;

    font-size:
        clamp(19px, 1.25vw, 24px);

    font-weight: 750;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}


.contact-submit-button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 10px 24px
        rgba(30, 60, 40, 0.16);
}


.quote-form-submit p {
    color: #737b75;

    font-size:
        clamp(15px, 0.95vw, 18px);
}


/* =====================================================
   DIRECT CONTACT
===================================================== */

.contact-direct-section {
    background-color: #dfe9e2;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.15) 0px,
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px,
            transparent 9px
        ),

        repeating-linear-gradient(
            90deg,
            rgba(47, 112, 72, 0.035) 0px,
            rgba(47, 112, 72, 0.035) 1px,
            transparent 1px,
            transparent 12px
        );

    padding:
        clamp(90px, 6vw, 125px)
        0;
}


.contact-direct-container {
    width: 95%;
    max-width: 1600px;

    margin: 0 auto;
}


.contact-direct-heading {
    text-align: center;

    margin-bottom:
        clamp(45px, 4vw, 65px);
}


.contact-direct-heading h2 {
    color: var(--text);

    font-size:
        clamp(48px, 3.8vw, 70px);

    line-height: 1.05;
}


/* =====================================================
   DIRECT CONTACT CARDS
===================================================== */

.contact-direct-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        clamp(20px, 2vw, 32px);
}


.contact-direct-card {
    min-height: 180px;

    display: flex;

    align-items: center;

    gap:
        clamp(20px, 2vw, 30px);

    padding:
        clamp(30px, 2.7vw, 44px);

    background:
        rgba(255, 255, 255, 0.82);

    border:
        1px solid #c7d4c9;

    border-bottom:
        4px solid var(--red);

    border-radius: 10px;

    text-decoration: none;

    box-shadow:
        0 10px 28px
        rgba(30, 60, 40, 0.06);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.contact-direct-card:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 15px 34px
        rgba(30, 60, 40, 0.11);
}


/* =====================================================
   DIRECT CONTACT ICONS
===================================================== */

.contact-direct-icon {
    flex:
        0 0 auto;

    width:
        clamp(56px, 4vw, 72px);

    height:
        clamp(56px, 4vw, 72px);

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--green);

    border:
        3px solid var(--red);

    border-radius: 50%;
}


.contact-direct-icon svg {
    width: 53%;
    height: 53%;

    fill: none;

    stroke: #ffffff;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.contact-direct-card div > span {
    display: block;

    color: var(--green);

    font-size:
        clamp(15px, 0.95vw, 18px);

    font-weight: 750;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 5px;
}


.contact-direct-card strong {
    color: var(--text);

    font-size:
        clamp(20px, 1.35vw, 26px);

    line-height: 1.35;

    word-break: break-word;
}


/* =====================================================
   CONTACT INFO BAND
===================================================== */

.contact-info-band {
    background:
        linear-gradient(
            135deg,
            #173b27,
            #2f7048
        );

    border-top:
        5px solid var(--red);

    padding:
        clamp(50px, 4vw, 65px)
        0;
}


.contact-info-band-container {
    width: 92%;
    max-width: 1450px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-around;

    gap: 35px;

    text-align: center;
}


.contact-info-band-container strong {
    display: block;

    color: #ffffff;

    font-size:
        clamp(23px, 1.55vw, 30px);

    margin-bottom: 5px;
}


.contact-info-band-container span {
    color:
        rgba(255, 255, 255, 0.65);

    font-size:
        clamp(16px, 1vw, 20px);
}


.contact-info-divider {
    width: 1px;
    height: 65px;

    background:
        rgba(255, 255, 255, 0.18);
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1800px) {

    .contact-page-hero-container,
    .contact-direct-container {
        max-width: 1800px;
    }


    .contact-form-container {
        max-width: 1400px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .contact-direct-grid {
        grid-template-columns: 1fr;
    }


    .contact-direct-card {
        min-height: 140px;
    }


    .contact-info-band-container {
        flex-direction: column;
    }


    .contact-info-divider {
        width: 100px;
        height: 1px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 750px) {

    .contact-page-hero h1 {
        font-size: 55px;
    }


    .film-pak-quote-form {
        grid-template-columns: 1fr;

        padding:
            35px 28px;
    }


    .quote-form-full {
        grid-column: auto;
    }


    .contact-submit-button {
        width: 100%;

        min-width: 0;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 550px) {

    .contact-page-hero {
        padding:
            65px 0;
    }


    .contact-page-hero h1 {
        font-size: 46px;
    }


    .contact-form-section,
    .contact-direct-section {
        padding:
            70px 0;
    }


    .film-pak-quote-form {
        padding:
            28px 22px;

        gap: 25px;
    }


    .quote-form-group input {
        min-height: 58px;
    }


    .quote-form-group textarea {
        min-height: 230px;
    }


    .contact-direct-card {
        padding:
            27px 23px;
    }

}


/* =====================================================
   QUOTE FORM SUCCESS MESSAGE
===================================================== */

.quote-success-message {
    max-width: 1000px;

    margin: 0 auto;

    padding:
        clamp(55px, 5vw, 80px)
        clamp(35px, 5vw, 75px);

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #eef4ef 100%
        );

    border:
        1px solid #cedbd0;

    border-top:
        6px solid var(--red);

    border-radius: 10px;

    box-shadow:
        0 16px 40px
        rgba(30, 60, 40, 0.09);
}


.quote-success-message[hidden] {
    display: none;
}


.quote-success-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 82px;
    height: 82px;

    margin:
        0 auto 28px;

    border-radius: 50%;

    background: var(--green);

    color: #ffffff;

    font-size: 42px;

    font-weight: 700;
}


.quote-success-message h2 {
    color: var(--text);

    font-size:
        clamp(45px, 4vw, 70px);

    margin-bottom: 20px;
}


.quote-success-message > p:not(.section-eyebrow) {
    max-width: 760px;

    margin:
        0 auto 32px;

    color: #5b635c;

    font-size:
        clamp(20px, 1.35vw, 26px);

    line-height: 1.7;
}


.quote-success-contact {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;

    color: #5b635c;

    font-size:
        clamp(17px, 1.1vw, 21px);
}


.quote-success-contact a {
    color: var(--green);

    font-weight: 700;

    text-decoration: none;
}


.quote-success-contact a:hover {
    text-decoration: underline;
}


/* =====================================================
   FORM ERROR
===================================================== */

.quote-error-message {
    max-width: 900px;

    margin:
        30px auto 0;

    padding:
        24px 30px;

    background: #fff5f5;

    border-left:
        5px solid var(--red);

    color: var(--text);
}


.quote-error-message[hidden] {
    display: none;
}


.quote-error-message strong {
    display: block;

    margin-bottom: 7px;

    font-size: 21px;
}


.quote-error-message p {
    font-size: 18px;

    line-height: 1.5;
}


.quote-error-message a {
    color: var(--green);

    font-weight: 700;
}


/* =====================================================
   HONEYPOT
===================================================== */

.quote-honeypot {
    position: absolute;

    left: -9999px;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}


/* =====================================================
   SUBMITTING BUTTON
===================================================== */

.contact-submit-button:disabled {
    opacity: 0.7;

    cursor: wait;
}



/* =========================================================
   MOBILE SIZE / SPACING REFINEMENTS
========================================================= */

@media (max-width: 700px) {

    /* HEADER */
    .site-header {
        min-height: 82px;
    }

    .nav-container {
        min-height: 82px;
        padding: 0 18px;
    }

    .site-logo {
        max-width: 215px;
        height: auto;
    }

    .mobile-menu-button {
        width: 42px;
        height: 42px;
    }


    /* HERO */
    .hero {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .hero-container {
        gap: 28px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-eyebrow {
        font-size: 0.98rem;
        line-height: 1.45;
        margin-bottom: 18px;
        letter-spacing: 0.08em;
    }

    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 3.35rem);
        line-height: 0.98;
        margin-bottom: 22px;
    }

    .hero-subheadline {
        font-size: 1.25rem;
        line-height: 1.45;
        margin-bottom: 18px;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .hero-buttons {
        gap: 12px;
        margin-bottom: 22px;
    }

    .hero-buttons .button {
        padding: 13px 18px;
        font-size: 0.95rem;
    }

    .hero-details {
        gap: 8px 14px;
        font-size: 0.9rem;
    }


    /* HERO IMAGE */
    .hero-image {
        min-height: 300px;
    }

    .hero-image-badge {
        left: 16px;
        bottom: 16px;
        padding: 12px 16px;
    }

    .hero-image-badge strong {
        font-size: 1rem;
    }

    .hero-image-badge span {
        font-size: 0.8rem;
    }


    /* STATS BAND */
    .intro-band {
        padding: 0;
    }

    .intro-band-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .intro-band-container > div {
        min-height: 145px;
        padding: 28px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .intro-band-container > div:last-child {
        grid-column: 1 / -1;
        min-height: 120px;
    }

    .intro-band-container strong {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 8px;
    }

    .intro-band-container span {
        font-size: 0.95rem;
        line-height: 1.4;
    }


    /* GENERAL SECTIONS */
    .section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .section-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2,
    .why-heading h2,
    .about-content h2 {
        font-size: 2rem;
        line-height: 1.08;
    }

    .section-heading p,
    .why-heading p,
    .about-content p {
        font-size: 1rem;
        line-height: 1.65;
    }


    /* PRODUCT CARDS */
    .product-grid {
        gap: 22px;
    }

    .product-card {
        margin-bottom: 0;
    }

    .product-content {
        padding: 22px;
    }

    .product-content h3 {
        font-size: 1.3rem;
    }


    /* CAPABILITY CARDS */
    .capability-grid {
        gap: 22px;
    }

    .capability-card-content {
        padding: 22px;
    }

    .capability-card-content h3 {
        font-size: 1.35rem;
    }


    /* WHY FILM-PAK */
    .why-grid {
        gap: 34px;
    }

    .why-list {
        gap: 20px;
    }

    .why-item {
        padding: 20px 0;
    }


    /* INDUSTRIES */
    .industries-grid {
        gap: 12px;
    }

    .industries-grid > div {
        padding: 18px 14px;
        font-size: 0.95rem;
    }


    /* ABOUT */
    .about-grid {
        gap: 28px;
    }

    .about-year strong {
        font-size: 4rem;
    }


    /* QUOTE SECTION */
    .quote-section {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .quote-container {
        gap: 28px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .quote-container h2 {
        font-size: 2rem;
        line-height: 1.08;
    }


    /* FOOTER */
    .footer-container {
        gap: 32px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-description,
    .footer-contact-item,
    .footer-column a,
    .footer-column p {
        font-size: 0.95rem;
    }

}