/* HEADER */

/* SEARCH ICON */

/* HERO */

.hero {
    min-height: calc(100vh - 94px);
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    background: #09251f;
}

/* HERO BACKGROUND */

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2,30,26,.98) 0%,
            rgba(2,30,26,.93) 27%,
            rgba(2,30,26,.50) 45%,
            rgba(2,30,26,.06) 67%,
            rgba(2,30,26,.02) 100%
        ),
        url("../images/ph.jpg") center center / cover no-repeat;
    transform: scale(1.02);
}

/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 2;
    width: min(720px,65vw);
    margin-left: 4.3vw;
    padding-top: 85px;
    color: #fff;
}

.eyebrow {
    font-size: 17px;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 23px;
}

h1 {
    font-size: clamp(48px, 4vw, 68px);
    line-height: .96;
    letter-spacing: -2px;
    margin: 0 0 27px;
    font-weight: 800;
}

.intro {
    font-size: 20px;
    line-height: 1.45;
    max-width: 575px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.94);
}

.products {
    font-size: 17px;
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 31px;
    max-width: 570px;
}

/* BUTTONS */

.buttons {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.btn {
    min-width: 270px;
    height: 67px;
    padding: 0 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,.65);
    background: rgba(0,0,0,.08);
    transition: .3s;
}

.btn:hover {
    background: rgba(255,255,255,.12);
}

.btn-primary {
    background: #006e5c;
    border-color: #006e5c;
}

.btn-primary:hover {
    background: #00806c;
}

.download-icon {
    font-size: 24px;
    line-height: 0;
}

/* SCROLL INDICATOR */

.scroll {
    position: absolute;
    left: 4.3vw;
    bottom: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 21px;
    color: rgba(255,255,255,.86);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.scroll-circle {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

/* WATCH OUR STORY */

.watch {
    position: absolute;
    right: 27%;
    top: 78%;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(255,255,255,.92);
    font-weight: 700;
    font-size: 17px;
}

.play {
    width: 66px;
    height: 66px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00715e;
    font-size: 25px;
    padding-left: 4px;
}

/* RIGHT SIDE TEXT */

.side-wordmark {
    position: absolute;
    right: 4.2vw;
    bottom: 60px;
    z-index: 3;
    color: rgba(255,255,255,.9);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.85;
    letter-spacing: .5px;
    text-align: right;
}

/* =========================================
   PRODUCT LISTING SECTION
========================================= */

.products-section {
    width: 100%;
    padding: 18px 4.3vw 45px;
    background: #ffffff;
}

.products-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* =========================================
   CATEGORY FILTER
========================================= */

.product-filter {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}

.filter-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-btn {
    height: 42px;

    padding: 0 24px;

    border: 1px solid #e3e9e7;
    border-radius: 3px;

    background: #ffffff;

    color: #253633;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;

    cursor: pointer;

    transition: .25s ease;
}

.filter-btn:hover {
    border-color: #7DBF83;
    color: #7DBF83;
}

.filter-btn.active {
    background: #7DBF83;
    border-color: #7DBF83;
    color: #ffffff;
}

/* =========================================
   FILTER ARROWS
========================================= */

.filter-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-arrow {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #e3e9e7;
    border-radius: 3px;

    color: #17322e;

    font-family: Arial, sans-serif;

    font-size: 20px;
    line-height: 1;

    cursor: pointer;

    transition: .25s ease;
}

.filter-arrow:hover {
    background: #006e5c;
    border-color: #006e5c;
    color: #ffffff;
}

/* =========================================
   PRODUCT GRID
========================================= */

.product-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}

/* =========================================
   PRODUCT CARD
========================================= */

.product-card {
    min-width: 0;

    border: 1px solid #e0e6e4;

    border-radius: 4px;

    overflow: hidden;

    background: #ffffff;

    display: flex;
    flex-direction: column;

    transition: .25s ease;
}

.product-card:hover {
    border-color: #c8d5d1;
    transform: translateY(-2px);
}

/* =========================================
   PRODUCT IMAGE
========================================= */

.product-image {
    width: 100%;
    height: 142px;

    overflow: hidden;

    background: #f4f6f5;
}

.product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

/* =========================================
   PRODUCT CONTENT
========================================= */

.product-content {
    padding: 16px 13px 0;

    display: flex;
    flex-direction: column;

    flex: 1;
}

/* PRODUCT TITLE */

.product-content h3 {
    margin: 0 0 7px;

    color: #172522;

    font-size: 14px;
    line-height: 1.3;

    font-weight: 700;
}

/* TAGLINE */

.product-tagline {
    margin: 0 0 13px;

    color: #71807c;

    font-size: 14px;
    line-height: 1.45;

    font-weight: 500;
}

/* =========================================
   PRODUCT INFORMATION
========================================= */

.product-info {
    margin-bottom: 5px;
}

.product-info h4 {
    margin: 0 0 3px;

    color: #7DBF83;

    font-size: 15px;
    line-height: 1.3;

    font-weight: 700;
}

.product-info p {
    margin: 0;

    color: #333333;

    font-size: 14px;
    line-height: 1.48;

    font-weight: 400;
}

/* =========================================
   VIEW DETAILS
========================================= */

.product-details {
    margin-top: auto;

    min-height: 43px;

    border-top: 1px solid #e5eae8;

    display: flex;
    align-items: center;

    gap: 9px;

    color: #17322e;

    font-size: 11px;
    font-weight: 700;

    transition: .25s ease;
}

.product-details:hover {
    color: #7DBF83;
}

.product-arrow {
    font-size: 18px;
    line-height: 0;

    transition: transform .25s ease;
}

.product-details:hover .product-arrow {
    transform: translateX(4px);
}

/* =========================================
   PRODUCT RANGE
========================================= */

.product-range {
    width: 100%;
    padding: 10px 4.3vw 10px;
    background: #ffffff;
}

.product-range-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* =========================================
   SECTION HEADER
========================================= */

.product-range-header {
    max-width: 760px;
    margin-bottom: 15px;
}

.product-range-eyebrow {
    margin-bottom: 0px;

    color: #7DBF83;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-range-header h2 {

    color: #172522;

    font-size: clamp(40px, 4vw, 60px);
    line-height: 1.04;

    letter-spacing: -1.5px;

    font-weight: 700;
}

.product-range-header p {
    max-width: 650px;

    margin: 0;

    color: #333333;

    font-size: 16px;
    line-height: 1.65;

    font-weight: 400;
}

/* =========================================
   PRODUCT RANGE GRID
========================================= */

.product-range-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 12px;
}

/* =========================================
   RANGE CARD
========================================= */

.range-card {
    position: relative;

    min-width: 0;
    min-height: 100px;

    padding: 10px 20px 25px;

    background: #ffffff;

    border: 1px solid #dfe5e3;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.range-card:hover {
    transform: translateY(-4px);

    border-color: #b9ccc5;

    box-shadow: 0 10px 25px rgba(23,37,34,.06);
}

/* =========================================
   NUMBER
========================================= */

.range-number {
    margin-bottom: 38px;

    color: #7DBF83;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}

/* =========================================
   CARD CONTENT
========================================= */

.range-card-content {
    display: flex;

    flex-direction: column;

    flex: 1;
}

/* =========================================
   PRODUCT NAME
========================================= */

.range-card h3 {
    margin: 0 0 13px;

    color: #172522;

    font-size: 16px;

    line-height: 1.35;

    font-weight: 700;
}

/* =========================================
   DESCRIPTION
========================================= */

.range-description {
    margin: 0 0 1px;

    color: #333333;

    font-size: 14px;

    line-height: 1.6;

    font-weight: 400;
}

/* =========================================
   RANGE DETAILS
========================================= */

.range-details {
    margin-top: auto;
}

.range-details h4 {
    margin: 0 0 8px;

    color: #7DBF83;

    font-size: 11px;

    line-height: 1.3;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .5px;
}

.range-details p {
    margin: 0;

    color: #586864;

    font-size: 11px;

    line-height: 1.65;

    font-weight: 400;
}

/* =========================================
   BOTTOM ACCENT
========================================= */

.range-line {
    width: 40px;

    height: 2px;

    margin-top: 23px;

    background: #7DBF83;

    transition: width .3s ease;
}

.range-card:hover .range-line {
    width: 70px;
}

/* =========================================
   APPLICATIONS SECTION
========================================= */

.applications-section {
    width: 100%;
    padding: 45px 4.3vw;
    background: #ffffff;
}

.applications-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 270px 1fr;
    align-items: stretch;
    gap: 17px;
}

/* =========================================
   LEFT CONTENT
========================================= */

.applications-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 8px 0 0 0;
}

.applications-eyebrow {
    margin-bottom: 10px;

    color: #7DBF83;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.applications-intro h2 {
    margin: 0;

    color: #062f2a;

    font-size: 32px;
    line-height: 1.12;

    letter-spacing: -0.8px;

    font-weight: 700;
}

/* =========================================
   ENQUIRE BUTTON
========================================= */

.applications-btn {
    min-width: 248px;
    height: 40px;

    margin-top: 22px;
    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    background: #7DBF83;
    border: 1px solid #7DBF83;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;

    transition: all .3s ease;
}

.applications-btn:hover {
    background: #7DBF83;
    border-color: #7DBF83;
}

.applications-btn-arrow {
    font-size: 19px;
    line-height: 0;

    transition: transform .3s ease;
}

.applications-btn:hover .applications-btn-arrow {
    transform: translateX(4px);
}

/* =========================================
   APPLICATION GRID
========================================= */

.applications-grid {
    min-width: 0;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 14px;
}

/* =========================================
   APPLICATION CARD
========================================= */

.application-card {
    min-width: 0;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e1e7e5;

    overflow: hidden;

    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.application-card:hover {
    transform: translateY(-4px);

    border-color: #c7d5d1;

    box-shadow: 0 8px 22px rgba(23, 37, 34, .08);
}

/* =========================================
   APPLICATION IMAGE
========================================= */

.application-image {
    width: 100%;
    height: 155px;

    overflow: hidden;

    background: #e9eeec;
}

.application-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .45s ease;
}

.application-card:hover .application-image img {
    transform: scale(1.04);
}

/* =========================================
   APPLICATION TITLE
========================================= */

.application-title {
    min-height: 54px;

    padding: 15px 13px;

    display: flex;
    align-items: center;

    color: #253633;

    font-size: 12px;
    line-height: 1.35;

    font-weight: 700;
}

/* =====================================================
   FOOTER
===================================================== */

/* =====================================================
   FOOTER CTA
===================================================== */

.footer-cta {
    width: 100%;
    min-height: 220px;

    position: relative;
    overflow: hidden;

    background-image: url("../images/yarn.png");
    background-size: cover;
    background-position: center 48%;

    color: #fff;
}

.footer-cta-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 45, 39, .94) 0%,
            rgba(0, 45, 39, .88) 45%,
            rgba(0, 45, 39, .55) 100%
        );
}

.footer-cta-content {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 220px;

    padding: 32px 4.3vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

/* CTA TEXT */

.footer-eyebrow {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;

    margin-bottom: 14px;

    color: rgba(255,255,255,.85);
}

.footer-cta-text h2 {
    margin: 0;

    color: #fff;

    font-size: 34px;
    line-height: 1.25;
    letter-spacing: -1px;

    font-weight: 700;
}

/* CTA BUTTONS */

.footer-cta-buttons {
    width: 300px;

    display: flex;
    flex-direction: column;

    gap: 25px;

    flex-shrink: 0;
}

.footer-btn {
    width: 100%;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    font-size: 15px;
    font-weight: 700;

    border-radius: 4px;

    transition: .3s;
}

.footer-btn span {
    font-size: 22px;
    line-height: 0;
}

/* WHITE BUTTON */

.footer-btn-light {
    background: #fff;
    color: #17322e;

    border: 1px solid #fff;
}

.footer-btn-light:hover {
    background: #7DBF83;
    border-color: #7DBF83;
    color: #fff;
}

/* WHATSAPP BUTTON */

.footer-btn-whatsapp {
    color: #fff;

    background: rgba(0, 75, 62, .65);

    border: 1px solid rgba(255,255,255,.55);
}

.footer-btn-whatsapp:hover {
    background: #7DBF83;
    border-color: #7DBF83;
}

.whatsapp-icon {
    width: 25px;
    height: 25px;

    border: 2px solid #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px !important;
}

/* =====================================================
   FOOTER MAIN
===================================================== */

/* COLUMNS */

/* BRAND */

/* FOOTER COLUMN */

/* QUICK LINKS */

/* LOCATIONS */

/* SOCIAL */

/* BROCHURE */

/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-legal {
    display: flex;
    align-items: center;

    gap: 15px;
}

.footer-legal a {
    color: #333333;

    font-size: 12px;
    font-weight: 500;

    transition: .2s;
}

.footer-legal a:hover {
    color: #17322e;
}

.footer-legal span {
    color: #c4ccca;
}

/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {
    position: absolute;

    right: 2vw;
    bottom: 78px;

    width: 56px;
    height: 56px;

    border-radius: 50%;

    background: #006e5c;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;

    z-index: 5;

    transition: .3s;
    border: none;
    cursor: pointer ;
}

.back-to-top:hover {
    background: #7DBF83;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {
.footer-cta-content {
        padding: 35px 3vw;
    }
.footer-cta-text h2 {
        font-size: 30px;
    }
.footer-cta-buttons {
        width: 270px;
    }
.back-to-top {
        right: 20px;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {
.footer-cta {
        min-height: auto;
    }
.footer-cta-content {
        min-height: auto;

        padding: 45px 22px;

        flex-direction: column;
        align-items: flex-start;

        gap: 30px;
    }
.footer-cta-text h2 {
        font-size: 29px;
        line-height: 1.2;
    }
.footer-cta-buttons {
        width: 100%;
    }
.footer-legal {
        gap: 10px;
    }
.back-to-top {
        width: 48px;
        height: 48px;

        right: 20px;
        bottom: 130px;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
.locations-section {
        padding: 0 3vw 40px;
    }
.locations-container {
        grid-template-columns: 60% 40%;
    }
.locations-map {
        height: 350px;
    }
.locations-content {
        padding: 45px 35px;
    }
.locations-title {
        font-size: 38px;
    }
.locations-description {
        font-size: 15px;

        margin-bottom: 35px;
    }
.head-office-pin {
        left: 32%;
    }
.factory-pin {
        left: 62%;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {
.locations-section {
        padding: 0 22px 55px;
    }
.locations-container {
        grid-template-columns: 1fr;

        border-top: none;
        border-bottom: none;
    }
.locations-map {
        height: 330px;

        border-radius: 5px 5px 0 0;
    }
.locations-content {
        padding: 40px 25px 45px;

        border: 1px solid #eef1f0;

        border-top: none;
    }
.locations-eyebrow {
        font-size: 13px;

        letter-spacing: 2px;
    }
.locations-title {
        font-size: 36px;
    }
.locations-description {
        font-size: 15px;

        margin-bottom: 30px;
    }
.head-office-pin {
        top: 65px;
        left: 25%;
    }
.factory-pin {
        top: 185px;
        left: 58%;
    }
}

/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1250px) {
.applications-container {
        grid-template-columns: 230px 1fr;
    }
.applications-intro h2 {
        font-size: 28px;
    }
.applications-btn {
        min-width: 220px;
    }
.application-image {
        height: 135px;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {
.applications-section {
        padding: 40px 5vw;
    }
.applications-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
.applications-intro {
        padding: 0;
    }
.applications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
.application-image {
        height: 170px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {
.applications-section {
        padding: 55px 25px;
    }
.applications-container {
        gap: 30px;
    }
.applications-intro h2 {
        font-size: 38px;
        line-height: 1.08;
    }
.applications-btn {
        width: 100%;
        max-width: 280px;
    }
.applications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
.application-image {
        height: 150px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
.applications-section {
        padding: 50px 20px;
    }
.applications-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
.application-image {
        height: 190px;
    }
}

/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1200px) {
.product-range-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
.product-range {
        padding: 75px 5vw 80px;
    }
.product-range-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
.range-card {
        min-height: 340px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
.product-range {
        padding: 65px 25px 70px;
    }
.product-range-header {
        margin-bottom: 38px;
    }
.product-range-eyebrow {
        font-size: 12px;
        margin-bottom: 13px;
    }
.product-range-header h2 {
        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -1px;
    }
.product-range-header p {
        font-size: 14px;
        line-height: 1.6;
    }
.product-range-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
.range-card {
        min-height: 320px;
        padding: 25px 22px 27px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
.product-range {
        padding-left: 20px;
        padding-right: 20px;
    }
.product-range-header h2 {
        font-size: 34px;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
.products-section {
        padding: 18px 5vw 60px;
    }
.filter-buttons {
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 3px;
    }
.filter-btn {
        padding: 0 17px;
        flex-shrink: 0;
    }
.product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
.product-image {
        height: 190px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {
.products-section {
        padding: 15px 25px 55px;
    }
.product-filter {
        align-items: flex-start;
        gap: 15px;
    }
.filter-buttons {
        width: 100%;

        overflow-x: auto;

        scrollbar-width: none;
    }
.filter-buttons::-webkit-scrollbar {
        display: none;
    }
.filter-arrows {
        display: none;
    }
.product-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
.product-image {
        height: 220px;
    }
.product-content {
        padding: 18px 16px 0;
    }
.product-content h3 {
        font-size: 15px;
    }
.product-tagline {
        font-size: 12px;
    }
.product-info h4 {
        font-size: 13px;
    }
.product-info p {
        font-size: 12px;
    }
.product-details {
        min-height: 48px;
        font-size: 12px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
.products-section {
        padding-left: 20px;
        padding-right: 20px;
    }
.filter-btn {
        height: 40px;
        padding: 0 16px;
        font-size: 11px;
    }
.product-image {
        height: 200px;
    }
}

/* TABLET */

/* MOBILE */

@media (max-width:800px) {
.hero {
        min-height: calc(100vh - 76px);
    }
.hero-content {
        width: auto;
        margin: 0;
        padding: 55px 25px 120px;
    }
.hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(2,30,26,.97),
                rgba(2,30,26,.67)
            ),
            url("../images/ph.jpg") center / cover no-repeat;
    }
.eyebrow {
        font-size: 13px;
    }
h1 {
        font-size: 56px;
    }
.intro {
        font-size: 17px;
    }
.products {
        font-size: 14px;
    }
.btn {
        width: 100%;
        min-width: 0;
        height: 58px;
    }
.watch {
        display: none;
    }
.side-wordmark {
        right: 25px;
        bottom: 35px;
        font-size: 14px;
    }
.scroll {
        display: none;
    }
}

/* =====================================================
   FINAL RESPONSIVE SYSTEM — MATCH HOME / ABOUT / MANUFACTURING
   Desktop design/content preserved
===================================================== */





@media (min-width:801px) and (max-width:1100px) {
.hero-content {width:min(610px,52vw);margin-left:3vw;padding-top:65px;}
.hero h1 {font-size:clamp(48px,5.2vw,62px);}
.hero .intro {font-size:17px;max-width:520px;}
.side-wordmark {right:3vw;font-size:15px;bottom:45px;}
.products-section {padding-left:3vw;padding-right:3vw;}
.product-range {padding-left:3vw;padding-right:3vw;}
.product-range-grid {grid-template-columns:repeat(5,minmax(0,1fr));gap:9px;}
.range-card {padding:10px 12px 20px;}
.range-card h3 {font-size:14px;}
.range-description {font-size:10px;}
.applications-section {padding-left:3vw;padding-right:3vw;}
.applications-container {grid-template-columns:230px 1fr;gap:14px;}
.applications-grid {grid-template-columns:repeat(5,minmax(0,1fr));gap:10px;}
.application-image {height:135px;}
.application-title {font-size:11px;padding:12px 10px;}
.footer-cta-content {padding:35px 3vw;}
.footer-cta-text h2 {font-size:30px;}
.footer-cta-buttons {width:270px;}
.back-to-top {right:20px;}
}

@media (max-width:800px) {
body {overflow-x:hidden;}

.hero {
        min-height:calc(100vh - 76px);
    }
.hero::before {
        background:
            linear-gradient(90deg,rgba(2,30,26,.93) 0%,rgba(2,30,26,.82) 55%,rgba(2,30,26,.70) 100%),
            url("../images/ph.jpg") center center / cover no-repeat;
    }
.hero-content {
        width:auto;
        margin:0;
        padding:48px 22px 105px;
    }
.eyebrow {font-size:12px;letter-spacing:1.7px;margin-bottom:16px;}
.hero h1 {
        font-size:clamp(42px,8.5vw,56px);
        line-height:.98;
        letter-spacing:-1.5px;
        margin-bottom:20px;
    }
.hero .intro {
        max-width:620px;
        font-size:15px;
        line-height:1.55;
        margin-bottom:0;
    }
.side-wordmark {
        right:22px;
        bottom:28px;
        font-size:11px;
        line-height:1.7;
    }
.scroll,
.watch {display:none;}
.products-section {padding:18px 22px 45px;}
.product-filter {margin-bottom:22px;}
.filter-buttons {gap:8px;overflow-x:auto;scrollbar-width:none;}
.filter-buttons::-webkit-scrollbar {display:none;}
.filter-btn {height:40px;padding:0 16px;font-size:11px;flex-shrink:0;}
.filter-arrows {display:none;}
.product-grid {grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;}
.product-image {height:190px;}
.product-content {padding:16px 13px 0;}
.product-content h3 {font-size:14px;}
.product-tagline {font-size:14px;}
.product-info h4 {font-size:12px;}
.product-info p {font-size:11px;}
.product-details {min-height:46px;font-size:11px;}
.product-range {padding:35px 22px 42px;}
.product-range-header {margin-bottom:20px;}
.product-range-eyebrow {font-size:11px;letter-spacing:1.8px;}
.product-range-grid {grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
.range-card {min-height:250px;padding:16px 15px 20px;}
.range-number {margin-bottom:24px;font-size:11px;}
.range-card h3 {font-size:15px;margin-bottom:10px;}
.range-description {font-size:10.5px;line-height:1.55;}
.range-line {margin-top:18px;}
.applications-section {padding:42px 22px 48px;}
.applications-container {grid-template-columns:1fr;gap:28px;}
.applications-intro {padding:0;}
.applications-intro h2 {font-size:32px;line-height:1.12;}
.applications-btn {width:100%;max-width:300px;min-width:0;height:44px;margin-top:20px;font-size:11px;}
.applications-grid {grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
.application-image {height:145px;}
.application-title {min-height:50px;padding:13px 11px;font-size:11px;}
.footer-cta {min-height:auto;}
.footer-cta-content {min-height:auto;padding:40px 22px;flex-direction:column;align-items:flex-start;gap:28px;}
.footer-cta-text h2 {font-size:25px;line-height:1.2;}
.footer-cta-buttons {width:100%;max-width:310px;}
.footer-btn {height:46px;font-size:12px;}
.footer-legal {gap:10px;}
.back-to-top {width:48px;height:48px;right:20px;bottom:130px;}









}

@media (max-width:480px) {
.hero-content {padding:35px 20px 88px;}
.hero::before {
        background:
            linear-gradient(90deg,rgba(2,30,26,.94) 0%,rgba(2,30,26,.84) 60%,rgba(2,30,26,.74) 100%),
            url("../images/ph.jpg") center center / cover no-repeat;
    }
.eyebrow {font-size:10px;margin-bottom:13px;}
.hero h1 {font-size:clamp(34px,10.5vw,44px);margin-bottom:17px;}
.hero .intro {font-size:13.5px;line-height:1.52;}
.side-wordmark {right:20px;bottom:20px;font-size:9px;}
.products-section {padding:15px 20px 40px;}
.product-grid {grid-template-columns:1fr;gap:16px;}
.product-image {height:200px;}
.product-content {padding:16px 14px 0;}
.product-content h3 {font-size:14px;}
.product-tagline {font-size:11px;}
.product-info h4 {font-size:12px;}
.product-info p {font-size:11px;}
.product-details {min-height:45px;}
.product-range {padding:32px 20px 38px;}
.product-range-grid {grid-template-columns:1fr;gap:12px;}
.range-card {min-height:0;padding:16px 16px 20px;}
.range-number {margin-bottom:20px;}
.range-card h3 {font-size:15px;}
.range-description {font-size:10.5px;}
.applications-section {padding:36px 20px 42px;}
.applications-intro h2 {font-size:27px;}
.applications-grid {grid-template-columns:1fr;gap:14px;}
.application-image {height:190px;}
.application-title {font-size:12px;}
.footer-cta-content {padding:32px 20px;}
.footer-cta-text h2 {font-size:23px;}
.footer-cta-buttons {max-width:280px;}
.footer-btn {height:44px;font-size:11px;}
}

@media (max-width:360px) {
.hero-content {padding:30px 18px 80px;}
.hero h1 {font-size:34px;}
.hero .intro {font-size:13px;}
.products-section,
.product-range,
.applications-section {padding-left:18px;padding-right:18px;}
.applications-intro h2 {font-size:25px;}
}

@media (min-width:801px) and (max-width:1100px) {
.product-grid {grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
.product-range-grid {grid-template-columns:repeat(5,minmax(0,1fr)) !important;}
.applications-grid {grid-template-columns:repeat(5,minmax(0,1fr)) !important;}
}

@media (max-width:800px) {
body {overflow-x:hidden;}
}

/* =====================================================
   MOBILE MENU ONLY
   Does not change product/hero/card typography or sizing.
===================================================== */









html { scroll-behavior: smooth; }

@keyframes headerStickyIn {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}





.back-to-top {
  position: fixed !important; right: 28px !important; bottom: 28px !important;
  width: 52px !important; height: 52px !important; border-radius: 50% !important;
  z-index: 9998 !important; opacity: 0 !important; visibility: hidden !important;
  pointer-events: none !important; transform: translateY(14px) scale(.92);
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease, background-color .28s ease !important;
}

.back-to-top.is-visible { opacity:1 !important; visibility:visible !important; pointer-events:auto !important; transform:translateY(0) scale(1); }

@media (max-width:767px) {
.back-to-top {right:16px !important;bottom:18px !important;width:46px !important;height:46px !important;}
}

@media (prefers-reduced-motion:reduce) {
html {scroll-behavior:auto;}
}

/* Sticky header after 200px - externalized */

html { scroll-behavior:smooth; }

@keyframes stickyHeaderFadeIn { from {opacity:0; transform:translateY(-22px);} to {opacity:1; transform:translateY(0);} }





.back-to-top {position:fixed !important;right:28px !important;bottom:28px !important;z-index:9998 !important;opacity:0 !important;visibility:hidden !important;pointer-events:none !important;transform:translateY(14px) scale(.92);transition:opacity .28s ease,visibility .28s ease,transform .28s ease !important;}

.back-to-top.is-visible {opacity:1 !important;visibility:visible !important;pointer-events:auto !important;transform:translateY(0) scale(1);}

@media (max-width:767px) {
.back-to-top {right:16px !important;bottom:18px !important;}
}

@media (prefers-reduced-motion:reduce) {
html {scroll-behavior:auto}
}
