/*
Theme Name: Hello Elementor Child
Theme URI: https://example.com/
Description: Child theme for Hello Elementor
Author: Your Name
Author URI: https://example.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* @import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap"); */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap");

/* ── TOKENS ── */
:root {
    --bg: #fff;
    --bg-alt: #f5f4f3;
    --bg-deep: #eaeaea;
    --ink-mid: #0d3060;
    --gold-lt: #0d3060;
    --ink: #000;
    --blue: #000;
    --muted: #7f7f80;
    --border: #d1d9e6;
    --white: #fff;

    --serif: "Inter", serif;
    --sans: "Inter", sans-serif;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
section {
    scroll-margin-top: 80px;
}
body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;

    /* Keep default arrow cursor */
    /* cursor: default; */
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    cursor: pointer;
    font-family: var(--sans);
    border: none;
    background: none;
}

/* Red Circle Cursor */
.cursor-dot {
    position: fixed;
    width: 12px;
    height: 12px;
    background: #ff4d3a;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;

    transform: translate(-50%, -50%);
}

a,
button {
    display: inline-block;
}

em {
    font-style: normal;
}

/* ── SECTION BASE ── */
.section {
    padding: 96px 80px;
}
.section-sm {
    padding: 64px 80px;
}
.section-blue {
    background: var(--ink);
    color: #fff;
}
.section-alt {
    background: var(--bg-alt);
}
.section-deep {
    background: var(--bg-deep);
}
.eyebrow {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-mid);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 1.5px;
    background: var(--ink-mid);
}
.eyebrow-white {
    color: var(--white);
}
.eyebrow-white::before {
    background: rgba(255, 255, 255, 0.4);
}
.sec-title,
.legacy-hero h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -1.2px;
}
.sec-title em {
    color: var(--ink-mid);

}
.sec-title-white {
    color: #fff;
}
.sec-title-white em {
    color: var(--ink-mid);
}
.sec-body,
.legacy-hero p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--muted);
    max-width: 600px;
    letter-spacing: -0.2px;
}
.sec-body-white {
    color: rgba(255, 255, 255, 0.62);
}

.prod-card-desc,
.usp-text,
.feat-content .feat-desc,
.recycle-text,
.recycle-right p,
.recycle-right ul li,
.usage-desc,
.vm-text,
.tl-desc,
.wl-opt-text,
.contact-info-val {
    font-size: 14px;
    line-height: 1.4;
    color: var(--muted);
}

/* ── HERO ── */
.hero {
    min-height: calc(100vh - 68px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 80px 60px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    right: -10%;
    top: -20%;
    width: 60%;
    height: 140%;
    background: radial-gradient(
        ellipse 70% 80% at 60% 40%,
        rgba(10, 37, 64, 0.04) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.hero-tagline {
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    opacity: 0;
}
.hero-tagline::before {
    content: "";
    width: 30px;
    height: 1.5px;
    background: var(--ink);
}
.hero h1 {
    font-family: var(--serif);
    font-size: clamp(52px, 5.5vw, 76px);
    font-weight: 500;
    line-height: 1.02;
    margin-bottom: 24px;
    opacity: 0;
}
.hero h1 em {
    color: var(--ink);
}
.hero-sub {
    font-size: 14px;
    line-height: 1.9;
    color: var(--muted);
    max-width: 460px;
    margin-bottom: 40px;
    opacity: 0;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
}
.btn-primary {
    padding: 15px 36px;
    background: var(--ink);
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.2s;
}
.btn-primary:hover {
    background: var(--ink-mid);
}
.btn-outline {
    padding: 14px 34px;
    border: 1.5px solid var(--ink);
    color: var(--ink);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.2s;
}
.section-blue .btn-outline {
    border: 1.5px solid var(--white);
    color: var(--white);
}
.btn-outline:hover {
    background: var(--ink);
    color: var(--white);
}
.btn-gold {
    padding: 15px 36px;
    background: var(--white);
    color: var(--ink);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.2s;
}
.btn-gold:hover {
    background: var(--white);
}
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
}
.hero-jar-wrap {
    position: relative;
    width: 280px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-jar-wrap::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(
        ellipse,
        rgba(10, 37, 64, 0.06) 0%,
        transparent 70%
    );
}
.hero-jar {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(10, 37, 64, 0.18));
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* ── MARQUEE ── */
.marquee-bar {
    background: #4a6580;
    padding: 13px 0;
    overflow: hidden;
}
.marquee-inner {
    display: flex;
    white-space: nowrap;
    animation: mq 24s linear infinite;
}
.marquee-item {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 249, 251, 0.85);
    font-weight: 700;
    padding: 0 28px;
}
.marquee-sep {
    color: rgba(247, 249, 251, 0.3);
    padding: 0 4px;
}
@keyframes mq {
    to {
        transform: translateX(-50%);
    }
}

/* ── STATS ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 48px;
}
.stat-box {
    background: var(--bg);
    padding: 40px 32px;
    text-align: center;
}
.stat-n {
    font-family: var(--serif);
    font-size: 48px;
    color: var(--ink);
    line-height: 1;
    font-weight: 600;
}
.stat-l {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--ink);
    margin-top: 10px;
}

/* ── CLIENTS ── */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 48px;
}
.client-box {
    background: var(--bg);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 17px;
    color: var(--ink);
    opacity: 0.55;
    font-weight: 500;
    text-align: center;
    min-height: 90px;
    transition: opacity 0.2s;
}
.client-box:hover {
    opacity: 1;
}

/* ── PRODUCT GRID ── */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

/* ── FLIP CARD ── */
.prod-card {
    height: 420px;
    perspective: 1200px;
}

.prod-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.prod-card:hover .prod-card-inner {
    transform: rotateY(180deg);
}

/* FRONT + BACK */
.prod-card-front,
.prod-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
}

/* FRONT */
.prod-card-front {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BACK */
.prod-card-back {
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* IMAGE */
.prod-card-img {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.prod-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* padding: 20px; */
}

/* ICON BOX */
.icon-box {
    background: #f8f9fb;
    font-size: 72px;
}

/* BODY */
.prod-card-body {
    text-align: left;
}

.prod-card-num {
    font-family: var(--serif);
    font-size: 38px;
    color: var(--ink);
    line-height: 1;
    font-weight: 600;
    margin-bottom: 10px;
}

.prod-card-name {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 14px;
}

/* .prod-card-desc {
    font-size: 14px;
    line-height: 1.4;
    color: var(--muted);
} */

.prod-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}

.prod-card-link:hover {
    border-color: var(--ink);
}

/* ── USP ── */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    margin-top: 56px;
}
.usp-item {
    background: var(--bg);
    padding: 40px 32px;
}
.usp-icon {
    font-size: 28px;
    margin-bottom: 16px;
}
.usp-label {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 10px;
    font-weight: 600;
}
/* .usp-text {
    font-size: 14px;
    line-height: 1.4;
    color: var(--muted);
} */

/* ── WORLD MAP ── */
.world-wrap {
    position: relative;
    margin-top: 56px;
    overflow: hidden;
}
.world-svg-wrap {
    position: relative;
}
.world-svg-wrap svg {
    width: 100%;
    height: auto;
    opacity: 0.12;
    filter: saturate(0);
}
.world-pins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.pin {
    position: absolute;
    transform: translate(-50%, -100%);
}
.pin-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ink);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(10, 37, 64, 0.4);
    animation: ping 2s ease-out infinite;
}
.pin::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--ink);
}
.pin-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: #fff;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    white-space: nowrap;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}
.pin:hover .pin-label {
    opacity: 1;
}
@keyframes ping {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 37, 64, 0.5);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(10, 37, 64, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(10, 37, 64, 0);
    }
}
.country-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}
.chip {
    padding: 8px 18px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 600;
    transition: all 0.2s;
}
.chip:hover {
    background: var(--ink);
    color: #fff;
}

/* ── FEATURES ── */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 56px;
}
.feat-item {
    background: var(--bg);
    padding: 36px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.feat-num {
    font-family: var(--serif);
    font-size: 42px;
    color: var(--ink);
    line-height: 1;
    font-weight: 600;
    flex-shrink: 0;
}
.feat-content .feat-name {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 8px;
    font-weight: 600;
}
/* .feat-content .feat-desc {
    font-size: 14px;
    line-height: 1.4;
    color: var(--muted);
} */

/* ── RECYCLE ── */
.recycle-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.recycle-left {
    background: var(--ink);
    padding: 80px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.recycle-right {
    background: var(--bg-alt);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.recycle-icon {
    font-size: 48px;
    margin-bottom: 20px;
}
.recycle-title,
.recycle-right h3 p {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 16px;
}
.recycle-right h3 p {
    color: var(--ink);
}

.recycle-btn {
    margin-top: 32px;
}

.recycle-btn a {
    border-color: var(--white);
    color: var(--white);
    font-size: 15px;
}

.recycle-right ul {
    margin-top: 24px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recycle-right li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--muted);
    align-items: baseline;
}

/* ── PHOTO GRID ── */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.photo-cell {
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-cell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

/* ── USAGE ── */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.usage-item {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.usage-ico {
    font-size: 36px;
    margin-bottom: 14px;
}
.usage-name {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 8px;
    font-weight: 600;
}
/* .usage-desc {
    font-size: 14px;
    line-height: 1.3;
    color: var(--muted);
} */

/* ── SOCIAL ── */
.social-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border: 1.5px solid var(--ink);
    color: var(--ink);
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.2s;
}
.social-btn:hover {
    background: var(--ink);
    color: #fff;
}
.social-btn svg {
    width: 16px;
    height: 16px;
}

/* ── CONTACT PAGE ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 48px;
}
/* .contact-info-block {
    margin-bottom: 32px;
} */
.contact-info-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 8px;
}
/* .contact-info-val {
    font-family: var(--serif);
    font-size: 14px;
    color: var(--ink);
    line-height: 1.5;
} */
.contact-info-sub {
    font-size: 12.5px;
    line-height: 1.8;
    color: var(--muted);
    margin-top: 4px;
}

/* ── FORM ── */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-field.full {
    grid-column: 1/-1;
}
.form-field label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink);
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--ink);
}
.form-field textarea {
    min-height: 120px;
    resize: vertical;
}
.form-submit {
    margin-top: 8px;
    padding: 15px 40px;
    background: var(--ink);
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.form-submit:hover {
    background: var(--ink-mid);
}

/* ── MAP EMBED ── */
.map-wrap {
    height: 360px;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    margin-top: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-placeholder {
    text-align: center;
    color: var(--muted);
}
.map-placeholder svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    opacity: 0.35;
}

/* ── LEGACY PAGE ── */
.legacy-hero {
    background: var(--ink);
    color: var(--white);
    padding: 120px 80px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.legacy-hero h1 {
    color: var(--white);
}
.legacy-hero p {
    color: var(--white);
    margin-top: 20px;
}
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    background: var(--border);
}
.vm-box {
    background: var(--bg);
    padding: 56px 40px;
}
.vm-ico {
    font-size: 32px;
    margin-bottom: 20px;
}
.vm-title {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--ink);
    margin-bottom: 14px;
    font-weight: 500;
}
/* .vm-text {
    font-size: 13px;
    line-height: 1.9;
    color: var(--muted);
} */

/* Timeline */
.timeline {
    position: relative;
    padding-left: 48px;
    margin-top: 56px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 1.5px;
    background: var(--ink);
}
.tl-item {
    position: relative;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateX(-20px);
}
.tl-item {
    opacity: 1;
    transform: none;
    transition: 0.5s ease;
}
.tl-dot {
    position: absolute;
    left: -45px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ink);
    border: 2.5px solid var(--bg);
}
.tl-year {
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 6px;
}
.tl-event {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 6px;
}
/* .tl-desc {
    font-size: 12px;
    line-height: 1.8;
    color: var(--muted);
} */

/* ── PRODUCTS PAGE ── */
.products-hero {
    background: var(--ink);
    padding: 100px 80px 60px;
    color: #fff;
}
.products-hero h1 {
    font-family: var(--serif);
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.05;
}
.products-hero p {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    line-height: 1.8;
}
.prod-cat {
    padding: 80px;
    border-bottom: 1px solid var(--border);
}
.prod-cat:nth-child(even) {
    background: var(--bg-alt);
}
.prod-cat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 40px;
}
.prod-cat-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.prod-cat-img {
    background: #fff;
    border: 1px solid var(--border);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.prod-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}
.prod-cat-img.tall {
    aspect-ratio: 3/4;
}
.spec-list {
    list-style: none;
    margin-top: 20px;
}
.spec-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
    align-items: baseline;
}
.spec-list li strong {
    color: var(--ink);
    font-weight: 600;
    min-width: 140px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── WHITE LABEL PAGE ── */
.wl-hero {
    background: var(--ink);
    padding: 100px 80px 60px;
    color: #fff;
}
.wl-hero h1 {
    font-family: var(--serif);
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 500;
}
.wl-hero p {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    line-height: 1.8;
}
.wl-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    margin-top: 56px;
}
.wl-opt {
    background: var(--bg);
    padding: 48px 36px;
}
.wl-opt-num {
    font-family: var(--serif);
    font-size: 48px;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 16px;
}
.wl-opt-title {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 12px;
}
/* .wl-opt-text {
    font-size: 12.5px;
    line-height: 1.85;
    color: var(--muted);
} */
.color-swatches {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border);
}


/* ── FOOTER ── */
footer {
    background: var(--ink);
    color: #fff;
    padding: 60px 80px 32px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.footer-logo img {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
}
.footer-desc {
    font-size: 12.5px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.5);
    max-width: 300px;
}
.footer-col-title {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--ink);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s;
}
.footer-bottom a:hover {
    color: var(--ink);
}

/* ── SIMPLE SECTION DISPLAY ── */
.reveal {
    opacity: 1;
    transform: none;
}

.home_page_title .legacy-hero {
    background: var(--bg);
    color: var(--muted);
    padding: 64px 80px 20px;
}
.home_page_title .legacy-hero .eyebrow {
    color: var(--ink);
}
.home_page_title .legacy-hero .eyebrow:before {
    background: var(--ink);
}
.home_page_title .legacy-hero h1 {
    color: var(--ink);
}
.home_page_title .legacy-hero em {
    color: var(--ink-mid);
}
.home_page_title .legacy-hero p {
    color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    nav {
        padding: 0 24px;
    }
    .nav-links,
    .nav-cta {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .hero,
    .legacy-hero,
    .products-hero,
    .wl-hero {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        min-height: auto;
    }
    .hero-visual {
        display: none;
    }
    .section {
        padding: 60px 24px;
    }
    .section-sm {
        padding: 40px 24px;
    }
    .stats-grid,
    .clients-grid,
    .prod-grid,
    .usp-grid,
    .feat-grid,
    .vm-grid,
    .wl-options,
    .footer-top {
        grid-template-columns: 1fr;
    }
    .recycle-split,
    .contact-grid,
    .prod-cat-grid {
        grid-template-columns: 1fr;
    }
    .recycle-left,
    .recycle-right {
        padding: 48px 24px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    footer {
        padding: 48px 24px 24px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wl-options {
        margin-top: 30px;
    }
    .wl-opt {
        padding: 20px;
    }
}

@media (max-width: 767px) {

    .prod-grid {
        grid-template-columns: 1fr;
    }

    .prod-card {
        height: 380px;
    }
    .social-strip {
        flex-direction: column;
    }
    .usage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prod-cat {
        padding: 20px;
    }
    .prod-cat-grid {
        margin-top: 10px;
    }
    .section {
        padding: 20px 20px;
    }
    .wl-options {
        margin-top: 20px;
    }
}

/* ── SIMPLE HERO ANIMATION ── */
.hero-tagline,
.hero h1,
.hero-sub,
.hero-btns,
.hero-visual {
    opacity: 1;
    transform: none;
    animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* Parrallax Section  */
.parallax-item-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
}

.parallax-item-1 {
    background-image: url("https://darkgoldenrod-crane-286747.hostingersite.com/wp-content/uploads/2026/05/download.gif");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.contact-right {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-sec-title {
    font-size: 32px;
}
.usp-item, .feat-item, .usage-item {
    box-shadow: 2px 2px 2px 2px lightgrey !important;
}