/* HEADER */

/* SEARCH ICON */

/* ENQUIRE BUTTON */

/* 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/Poly%20Spun%20Spiro%20Yarn.png") center center / cover no-repeat;
    transform: scale(1.02);
}

/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 2;
    width: min(610px,45vw);
    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(56px,5vw,82px);
    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;
    margin-bottom: 90px;
}

.btn {
    min-width: 220px;
    height: 54px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    font-size: 15px;
    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: #7DBF83;
    border-color: #7DBF83;
}

.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;
}

/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    width: 100%;
    padding: 45px 4.3vw 10px;
    background: #ffffff;
}

.contact-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 55% 45%;
}

/* =========================================
   LEFT CONTACT FORM
========================================= */

.contact-form-area {
    padding-right: 4vw;
    border-right: 1px solid #dfe5e3;
}

.contact-eyebrow {
    color: #7DBF83;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 10px;
}

.contact-title {
    color: #000;

    font-size: 38px;
    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.5px;

    margin: 0 0 12px;
}

.contact-subtitle {
    color: #333333;

    font-size: 16px;
    line-height: 1.5;

    font-weight: 500;

    margin: 0 0 30px;
}

/* =========================================
   FORM
========================================= */

.contact-form {
    width: 100%;
}

.form-row {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {

    width: 100%;

    border: 1px solid #dce4e2;

    background: #ffffff;

    color: #263b37;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 14px;

    font-weight: 500;

    outline: none;

    transition: .25s ease;
}

.contact-form input {
    height: 53px;

    padding: 0 19px;
}

.contact-form textarea {
    height: 138px;

    padding: 18px 19px;

    resize: vertical;

    margin-top: 18px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #65736f;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #006e5c;
}

/* =========================================
   SELECT
========================================= */

.form-select {
    width: 100%;

    height: 53px;

    position: relative;
}

.form-select select {
    height: 100%;

    appearance: none;

    padding: 0 45px 0 19px;

    cursor: pointer;
}

.select-arrow {
    position: absolute;

    right: 18px;
    top: 50%;

    transform: translateY(-55%);

    color: #17322e;

    font-size: 20px;

    pointer-events: none;
}

/* =========================================
   SEND BUTTON
========================================= */

.contact-submit {
    width: 238px;
    height: 55px;

    margin-top: 28px;

    padding: 0 24px;

    border: 1px solid #006e5c;

    background: #006e5c;

    color: #ffffff;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s ease;
}

.contact-submit:hover {
    background: #004c40;
    border-color: #004c40;
}

.contact-submit-arrow {
    font-size: 20px;

    line-height: 0;

    transition: transform .3s ease;
}

.contact-submit:hover .contact-submit-arrow {
    transform: translateX(4px);
}

/* =========================================
   PRIVACY TEXT
========================================= */

.privacy-text {
    margin-top: 30px;

    color: #333333;

    font-size: 12px;

    line-height: 1.5;

    font-weight: 500;
}

.privacy-text a {
    color: #333333;

    text-decoration: underline;
}

/* =========================================
   RIGHT CONTACT DETAILS
========================================= */

.contact-details {
    padding-left: 4vw;
}

.contact-details .contact-subtitle {
    margin-bottom: 38px;
}

/* =========================================
   CONTACT DETAIL
========================================= */

.contact-detail {
    display: flex;

    align-items: flex-start;

    gap: 25px;

    margin-bottom: 27px;
}

.contact-small {
    align-items: center;

    margin-bottom: 25px;
}

/* =========================================
   CONTACT ICON
========================================= */

.contact-icon {
    width: 61px;
    min-width: 61px;

    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #006e5c;

    font-size: 38px;

    line-height: 1;
}

.contact-small .contact-icon {
    height: 38px;

    font-size: 32px;
}

/* =========================================
   DETAIL TEXT
========================================= */

.contact-detail-text {
    padding-top: 2px;
}

.contact-detail-text h3 {
    color: #172522;

    font-size: 16px;

    font-weight: 800;

    margin: 0 0 5px;
}

.contact-detail-text p {
    color: #586864;

    font-size: 16px;

    line-height: 1.5;

    font-weight: 500;

    margin: 0;
}

/* =========================================
   DIVIDER
========================================= */

.contact-divider {
    width: 100%;

    height: 1px;

    background: #dfe5e3;

    margin: 35px 0 30px;
}

/* =========================================
   OUR LOCATIONS
========================================= */

.locations-section {
    width: 100%;
    padding: 0 2.5vw 45px;
    background: #ffffff;
}

.locations-container {
    width: 100%;
    min-height: 375px;

    display: grid;
    grid-template-columns: 55% 45%;

    border-top: 2px solid #eef1f0;
    border-bottom: 2px solid #eef1f0;
}

/* =========================================
   MAP
========================================= */

.locations-map {
    position: relative;

    height: 375px;

    overflow: hidden;

    border-radius: 0 5px 5px 0;
}

.locations-map > img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

/* =========================================
   MAP CONTROLS
========================================= */

.map-controls {
    position: absolute;

    top: 20px;
    left: 16px;

    width: 35px;

    background: #ffffff;

    border-radius: 4px;

    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);

    overflow: hidden;

    z-index: 5;
}

.map-controls button {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    background: #ffffff;

    color: #17322e;

    font-size: 24px;
    font-weight: 500;

    cursor: pointer;
}

.map-controls button + button {
    border-top: 1px solid #e5e9e8;
}

.map-controls button:hover {
    background: #f5f7f6;
}

/* =========================================
   MAP LOCATION PINS
========================================= */

.map-pin {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 10px;

    z-index: 4;
}

/* PIN ICON */

.pin-icon {
    width: 30px;
    height: 40px;

    border-radius: 50% 50% 50% 0;

    background: #005f50;

    transform: rotate(-45deg);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 10px;

    box-shadow: 0 2px 5px rgba(0, 0, 0, .18);
}

.pin-icon::after {
    content: "";

    width: 10px;
    height: 10px;

    background: #ffffff;

    border-radius: 50%;
}

/* LABEL */

.pin-label {
    display: flex;
    flex-direction: column;

    color: #172522;

    font-size: 14px;

    line-height: 1.4;

    white-space: nowrap;
}

.pin-label strong {
    font-weight: 700;
}

.pin-label span {
    font-weight: 500;
    color: #333333;
}

/* HEAD OFFICE POSITION */

.head-office-pin {
    top: 80px;
    left: 36%;
}

/* FACTORY POSITION */

.factory-pin {
    top: 205px;
    left: 66%;
}

/* =========================================
   RIGHT CONTENT
========================================= */

.locations-content {
    padding: 55px 5vw 50px;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;

    background: #ffffff;
}

/* =========================================
   EYEBROW
========================================= */

.locations-eyebrow {
    color: #6fae77;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 10px;
}

/* =========================================
   TITLE
========================================= */

.locations-title {
    margin: 0 0 16px;

    color: #062f2a;

    font-size: 42px;

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.5px;
}

/* =========================================
   DESCRIPTION
========================================= */

.locations-description {
    max-width: 420px;

    margin: 0 0 48px;

    color: #333333;

    font-size: 16px;

    line-height: 1.6;

    font-weight: 500;
}

/* =========================================
   GET DIRECTIONS BUTTON
========================================= */

.locations-btn {
    width: fit-content;

    min-width: 185px;

    height: 44px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 17px;

    background: #006e5c;

    border: 1px solid #006e5c;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;
}

.locations-btn:hover {
    background: #7DBF83;

    border-color: #7DBF83;
}

.locations-arrow {
    font-size: 20px;

    line-height: 0;

    transition: transform .3s ease;
}

.locations-btn:hover .locations-arrow {
    transform: translateX(4px);
}

/* =====================================================
   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 20px;
    }
.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 25px;
    }
.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%;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
.locations-section {
        padding: 0 18px 20px;
    }
.locations-map {
        height: 290px;
    }
.locations-content {
        padding: 35px 22px 40px;
    }
.locations-title {
        font-size: 32px;
    }
.locations-description {
        font-size: 14px;
    }
.head-office-pin {
        left: 20%;
    }
.factory-pin {
        left: 52%;
    }
.pin-label {
        font-size: 12px;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
.contact-section {
        padding: 65px 5vw 70px;
    }
.contact-container {
        grid-template-columns: 52% 48%;
    }
.contact-form-area {
        padding-right: 35px;
    }
.contact-details {
        padding-left: 35px;
    }
.contact-title {
        font-size: 34px;
    }
.contact-subtitle {
        font-size: 15px;
    }
.contact-detail-text p {
        font-size: 14px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {
.contact-section {
        padding: 60px 25px 65px;
    }
.contact-container {
        grid-template-columns: 1fr;
    }
.contact-form-area {
        padding-right: 0;

        padding-bottom: 55px;

        border-right: none;

        border-bottom: 1px solid #dfe5e3;
    }
.contact-details {
        padding-left: 0;

        padding-top: 55px;
    }
.contact-title {
        font-size: 34px;
    }
.contact-subtitle {
        font-size: 15px;
    }
.form-row {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-bottom: 15px;
    }
.contact-form textarea {
        margin-top: 15px;
    }
.contact-submit {
        width: 100%;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
.contact-section {
        padding: 50px 22px 55px;
    }
.contact-eyebrow {
        font-size: 12px;
    }
.contact-title {
        font-size: 30px;
    }
.contact-detail {
        gap: 16px;
    }
.contact-icon {
        width: 50px;
        min-width: 50px;
    }
.contact-detail-text p {
        font-size: 14px;
    }
}

/* 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/hero-bg.html") 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;
    }
}

/* =====================================================
   CONTACT PAGE — RESPONSIVE SYSTEM
   Matches Home + About Us sizing
===================================================== */

/* MOBILE MENU */

















/* CONTACT FORM STATUS */

.form-status {
    min-height: 20px;
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
}

.form-status.success {
    color: #006e5c;
}

.form-status.error {
    color: #b42318;
}

/* TABLET — keep the desktop composition as much as possible */

@media (min-width: 801px) and (max-width: 1100px) {
.hero-content {
        width: min(610px, 54vw);
        margin-left: 4.3vw;
        padding-top: 65px;
    }
h1 {
        font-size: clamp(48px, 5.5vw, 64px);
    }
.intro {
        font-size: 16px;
    }
.products {
        font-size: 14px;
    }
.buttons {
        margin-bottom: 55px;
    }
.contact-section {
        padding: 55px 4.3vw 55px;
    }
.contact-container {
        grid-template-columns: 52% 48%;
    }
.contact-form-area {
        padding-right: 30px;
    }
.contact-details {
        padding-left: 30px;
    }
.contact-title {
        font-size: 32px;
    }
.contact-subtitle {
        font-size: 14px;
    }
.contact-detail-text h3 {
        font-size: 14px;
    }
.contact-detail-text p {
        font-size: 14px;
    }
.locations-section {
        padding: 0 3vw 20px;
    }
.locations-container {
        grid-template-columns: 60% 40%;
    }
.locations-map {
        height: 350px;
    }
.locations-content {
        padding: 45px 35px;
    }
.locations-title {
        font-size: 36px;
    }
.locations-description {
        font-size: 14px;
        margin-bottom: 32px;
    }
/* Footer = Home / About tablet sizing */
.footer-cta-content {
        padding: 35px 3vw !important;
    }
.footer-cta-text h2 {
        font-size: 30px !important;
    }
.footer-cta-buttons {
        width: 270px !important;
    }
.footer-btn {
        height: 58px !important;
        font-size: 15px !important;
    }
}

/* MOBILE — matches Home / About */

@media (max-width: 800px) {
body {
        overflow-x: hidden;
    }
.hero {
        min-height: calc(100vh - 76px);
    }
.hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(2,30,26,.91) 0%,
                rgba(2,30,26,.84) 55%,
                rgba(2,30,26,.72) 100%
            ),
            url("../images/Poly%20Spun%20Spiro%20Yarn.png") center / cover no-repeat;
    }
.hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 45px 22px 90px;
    }
.eyebrow {
        font-size: 11px;
        letter-spacing: 1.8px;
        margin-bottom: 14px;
    }
h1 {
        font-size: clamp(38px, 10vw, 52px);
        line-height: .98;
        letter-spacing: -1.5px;
        margin-bottom: 18px;
    }
.intro {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 20px;
    }
.products {
        font-size: 11.5px;
        line-height: 1.6;
        margin-bottom: 22px;
    }
.buttons {
        gap: 9px;
        margin-bottom: 35px;
    }
.btn {
        width: 100%;
        min-width: 0;
        height: 50px;
        font-size: 13px;
    }
.side-wordmark {
        right: 20px;
        bottom: 18px;
        font-size: 9px;
        line-height: 1.7;
    }
.contact-section {
        padding: 45px 22px 50px;
    }
.contact-container {
        grid-template-columns: 1fr;
    }
.contact-form-area {
        padding-right: 0;
        padding-bottom: 45px;
        border-right: none;
        border-bottom: 1px solid #dfe5e3;
    }
.contact-details {
        padding-left: 0;
        padding-top: 45px;
    }
.contact-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
.contact-title {
        font-size: 28px;
        line-height: 1.1;
        letter-spacing: -1px;
        margin-bottom: 12px;
    }
.contact-subtitle {
        font-size: 13px;
        line-height: 1.55;
        margin-bottom: 25px;
    }
.form-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }
.contact-form input,
.contact-form textarea,
.contact-form select {
        font-size: 13px;
    }
.contact-form input {
        height: 50px;
        padding: 0 15px;
    }
.contact-form textarea {
        height: 125px;
        padding: 15px;
        margin-top: 12px;
    }
.contact-submit {
        width: 100%;
        height: 50px;
        margin-top: 22px;
        font-size: 13px;
    }
.privacy-text {
        margin-top: 20px;
        font-size: 10px;
    }
.contact-detail {
        gap: 15px;
        margin-bottom: 22px;
    }
.contact-icon {
        width: 45px;
        min-width: 45px;
        height: 42px;
        font-size: 31px;
    }
.contact-small .contact-icon {
        height: 34px;
        font-size: 28px;
    }
.contact-detail-text h3 {
        font-size: 13px;
        margin-bottom: 5px;
    }
.contact-detail-text p {
        font-size: 13px;
        line-height: 1.55;
    }
.contact-divider {
        margin: 25px 0;
    }
.locations-section {
        padding: 0 22px 20px;
    }
.locations-container {
        grid-template-columns: 1fr;
        border-top: none;
        border-bottom: none;
    }
.locations-map {
        height: 300px;
        border-radius: 5px 5px 0 0;
    }
.locations-content {
        padding: 35px 22px 40px;
        border: 1px solid #eef1f0;
        border-top: none;
    }
.locations-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 9px;
    }
.locations-title {
        font-size: 28px;
        letter-spacing: -1px;
        margin-bottom: 14px;
    }
.locations-description {
        font-size: 13px;
        line-height: 1.55;
        margin-bottom: 28px;
    }
.locations-btn {
        min-width: 175px;
        height: 46px;
        font-size: 12px;
    }
/* Footer = Home / About mobile sizing */
.footer-cta-content {
        min-height: auto !important;
        padding: 32px 22px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 28px !important;
    }
.footer-cta-text h2 {
        font-size: 23px !important;
        line-height: 1.25 !important;
    }
.footer-cta-buttons {
        width: 100% !important;
        max-width: 280px !important;
    }
.footer-btn {
        height: 44px !important;
        font-size: 11px !important;
    }
.footer-btn span {
        font-size: 19px !important;
    }
.footer-legal {
        gap: 10px !important;
    }
.back-to-top {
        width: 48px !important;
        height: 48px !important;
        right: 20px !important;
        bottom: 130px !important;
    }
}

/* SMALL MOBILE — prevents 320px overflow */

@media (max-width: 480px) {
.hero-content {
        padding: 35px 18px 80px;
    }
.eyebrow {
        font-size: 10px;
        margin-bottom: 13px;
    }
h1 {
        font-size: clamp(34px, 10.5vw, 44px);
        margin-bottom: 17px;
    }
.intro {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
.products {
        font-size: 11.5px;
        margin-bottom: 22px;
    }
.contact-section {
        padding: 40px 18px 45px;
    }
.contact-title {
        font-size: 27px;
    }
.contact-subtitle {
        font-size: 12px;
    }
.locations-section {
        padding: 0 18px 20px;
    }
.locations-map {
        height: 280px;
    }
.locations-content {
        padding: 32px 20px 36px;
    }
.locations-title {
        font-size: 27px;
    }
}

@media (max-width: 340px) {
.hero-content {
        padding-left: 16px;
        padding-right: 16px;
    }
.contact-section,
.locations-section {
        padding-left: 16px;
        padding-right: 16px;
    }
.locations-content {
        padding-left: 17px;
        padding-right: 17px;
    }
}

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}
}
