*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #080808;
    --char: #111111;
    --dark: #1a1a1a;
    --emerald: #00503c;
    --em-mid: #006a4f;
    --em-light: #00876a;
    --gold: #c8a256;
    --gold-l: #e0c080;
    --cream: #f8f4ed;
    --off: #f0ebe0;
    --muted: #888880;
    --border: rgba(255, 255, 255, 0.07);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Prevent unexpected horizontal overflow.
   overflow-x: clip (not hidden) — hidden turns html/body into a scroll
   container, which breaks position: sticky on descendants (used by the
   hero scroll-scrub animation). clip blocks horizontal overflow without
   creating that scroll container. */
html,
body {
    max-width: 100%;
    overflow-x: clip;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--cream);
    overflow-x: clip;
    cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}

.cursor-ring.expand {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 255, 255, 0.8);
}

/* PRELOADER */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transition: opacity 0.8s ease, visibility 0.8s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo img {
    height: 58px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.preloader-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: white;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.preloader-track {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.preloader-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--gold);
    transition: width 1.4s ease;
}

.preloader-tag {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 60px;
    height: 112px;
    background: rgba(8, 8, 8, 0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    height: 80px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
}

/* ensure grid placement regardless of DOM order */
.nav-left {
    grid-column: 1;
    justify-content: flex-start;
}

.nav-center {
    grid-column: 2;
    justify-self: center;
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
    padding: 0 40px;
}

.nav-right {
    grid-column: 3;
    justify-self: end;
    justify-content: flex-end;
    margin-left: auto;
}

.nav-left .logo {
    display: flex;
    align-items: center;
}

.nav-left .logo img {
    height: 80px;
    transition: height 0.4s ease;
}

nav.scrolled .nav-left .logo img {
    height: 60px;
}

.nav-left .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: white;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-links-item a {
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s;
    font-weight: 400;
}

.nav-links-item a:hover {
    color: var(--gold);
}

.nav-cta-btn {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(200, 162, 86, 0.4);
    padding: 8px 20px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.nav-cta-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* NAV TOGGLE (MOBILE) */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1500;
}

.nav-toggle i {
    font-size: 20px;
    color: rgba(248, 244, 237, 0.95);
    line-height: 1;
}

.nav-toggle:focus {
    outline: none;
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: rgba(8, 8, 8, 0.98);
    transform: translateX(100%);
    transition: transform 0.32s ease;
    z-index: 2000;
    padding: 72px 24px 24px 24px;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.4);
}

.nav-mobile .nav-close {
    position: absolute;
    top: 14px;
    right: 12px;
    background: transparent;
    border: none;
    color: rgba(248, 244, 237, 0.9);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.nav-mobile.open {
    transform: translateX(0);
}

.nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nav-mobile a {
    color: rgba(248, 244, 237, 0.95);
    text-decoration: none;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 0 16px;
        height: 72px;
        grid-template-columns: auto 1fr auto;
        z-index: 2100;
    }

    .nav-left {
        display: flex;
        grid-column: 1;
    }

    .nav-right,
    .nav-center {
        display: none;
    }

    .nav-left .logo img {
        height: 56px;
    }

    .nav-toggle {
        display: flex;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
}



@media (max-width: 480px) {
    .nav-mobile {
        width: 100%;
    }

    .hero-panel-left {
        /* padding: 64px 20px 140px 20px !important; */
        padding: 110px 20px 40px 20px !important;
        max-width: 100%;
    }
}

/* Mobile: slide-in panel from the right */
@media (max-width: 900px) {
    .nav-mobile {
        top: 0;
        right: 0;
        left: auto;
        width: 320px;
        height: 100vh;
        transform: translateX(110%);
        transition: transform 0.32s ease;
        box-shadow: -12px 0 32px rgba(0, 0, 0, 0.5);
        padding: 72px 20px 20px 20px;
        z-index: 2300;
    }

    .nav-mobile.open {
        transform: translateX(0);
    }

    .nav-mobile .nav-close {
        top: 18px;
        right: 18px;
    }

    /* Ensure toggle above mobile menu */
    .nav-toggle {
        z-index: 2400;
    }
}

/* when nav is open, prevent body scroll */
.nav-open {
    overflow: hidden;
}

.nav-lang {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    color: rgba(248, 244, 237, 0.35);
    cursor: pointer;
}

/* HERO — SPLIT SCREEN, scroll-scrubbed photo sequence */
.hero-scroll {
    position: relative;
    height: 300vh;
}

.hero {
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    filter: brightness(0.78) saturate(0.85);
}

.hero-scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    transition: opacity 0.3s;
}

.hero-scroll-cue-text {
    font-size: 0.58rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(248, 244, 237, 0.5);
    font-weight: 500;
}

.hero-scroll-mouse {
    width: 20px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(200, 162, 86, 0.5);
    padding: 4px;
    display: flex;
    justify-content: center;
}

.hero-scroll-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    animation: heroDotDrop 1.8s ease-in-out infinite;
}

@keyframes heroDotDrop {
    0%   { transform: translateY(0);    opacity: 1; }
    75%  { transform: translateY(14px); opacity: 0; }
    100% { transform: translateY(0);    opacity: 0; }
}

.hero-panel-left {
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* padding: 80px 60px 180px 60px; */
    padding: 80px 60px 95px 60px;
    position: relative;
    height: 100%;
    max-width: 640px;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3.2rem, 5.5vw, 5.8rem);
    line-height: 1.05;
    color: white;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
    font-size: 60px;
}

.hero-title strong {
    font-weight: 600;
    /* display: block; */
    color: white;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: rgba(248, 244, 237, 0.55);
}

/* .hero-rule {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 28px 0;
    opacity: 0.7;
} */

.hero-desc {
    font-size: 0.88rem;
    line-height: 1.9;
    color: rgba(248, 244, 237, 0.5);
    max-width: 460px;
    margin-bottom: 25px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 0;
}

.hero-btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 16px 36px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.hero-btn-primary:hover {
    background: var(--gold-l);
}

.hero-btn-text {
    background: transparent;
    color: rgba(248, 244, 237, 0.6);
    padding: 16px 28px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn-text:hover {
    color: white;
}

.hero-bottom-meta {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    gap: 28px;
}

/* Responsive: move hero bottom meta into flow and center on smaller screens */
@media (max-width: 900px) {
    .hero-bottom-meta {
        position: static;
        bottom: auto;
        left: auto;
        justify-content: center;
        gap: 18px !important;
        margin-top: 22px;
        padding-left: 12px;
        padding-right: 12px;
        /* flex-wrap: wrap; */
    }

    .meta-val {
        font-size: 1.4rem;
    }

    .meta-label {
        font-size: 0.62rem;
    }
}

@media (max-width: 480px) {
    .hero-bottom-meta {
        gap: 12px;
        margin-top: 18px;
    }

    .meta-val {
        font-size: 1.1rem;
    }

    .meta-label {
        font-size: 0.56rem;
        letter-spacing: 1.6px;
    }
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.meta-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: white;
    line-height: 1;
}

.meta-label {
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(248, 244, 237, 0.35);
}

.meta-sep {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    align-self: stretch;
    margin: 4px 0;
}

.hero-panel-right {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.55) 32%, rgba(8, 8, 8, 0.18) 62%, transparent 100%);
}

.hero-badge {
    position: absolute;
    bottom: 44px;
    right: 44px;
    width: 96px;
    height: 96px;
    border: 1px solid rgba(248, 244, 237, 0.25);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(10px);
    background: rgba(8, 8, 8, 0.3);
}

.hero-badge span {
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(248, 244, 237, 0.5);
    line-height: 1.6;
}

.hero-badge strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--gold);
    display: block;
    line-height: 1.1;
}




@media(max-width:768px) {
    .hero-badge {
        display: none;
    }
}


@media(max-width:432px) {
    .hero-title {
        font-size: 38px;
        line-height: 1.2;
    }
}











/* hero end */

/* MARQUEE STRIP */
.marquee-strip {
    background: var(--emerald);
    overflow: hidden;
    padding: 14px 0;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marqueeAnim 30s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 28px;
}

.marquee-text {
    font-size: 0.65rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(248, 244, 237, 0.75);
    font-weight: 400;
}

.marquee-diamond {
    color: var(--gold-l);
    opacity: 0.6;
    font-size: 0.5rem;
}

@keyframes marqueeAnim {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* SECTION HELPERS */
.section-tag {
    font-size: 0.62rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.section-tag::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    opacity: 0.7;
}

.section-title-cg {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.section-title-cg em {
    font-style: italic;
}

.section-title-cg strong {
    font-weight: 600;
}

/* ABOUT — EDITORIAL */
.about-section {
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    background: var(--black);
}

.about-left {
    position: relative;
    overflow: hidden;
}

.about-img-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: saturate(0.8) brightness(0.85);
}

.about-img-inset {
    position: absolute;
    bottom: -44px;
    right: -44px;
    width: 220px;
    height: 260px;
    object-fit: cover;
    border: 5px solid var(--black);
    filter: saturate(0.7);
}

.about-num {
    position: absolute;
    top: -32px;
    left: -10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 9rem;
    font-weight: 700;
    color: var(--emerald);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
    letter-spacing: -6px;
}

.about-right {
    padding-top: 20px;
}

.about-body {
    margin-bottom: 40px;
}

.about-body p {
    font-size: 0.92rem;
    line-height: 1.95;
    color: rgba(248, 244, 237, 0.55);
    margin-bottom: 18px;
    font-weight: 300;
}

.about-body p:first-of-type {
    font-size: 1.02rem;
    color: rgba(248, 244, 237, 0.75);
}

.about-quote {
    border-left: 1px solid var(--gold);
    padding-left: 24px;
    margin: 36px 0;
}

.about-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.35rem;
    color: rgba(248, 244, 237, 0.8);
    line-height: 1.6;
    font-weight: 300;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: gap 0.3s;
}

.about-link:hover {
    gap: 20px;
}

.about-link::after {
    content: '→';
}

.origin-tag {
    /* margin-top: 48px; */
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.origin-tag i {
    color: var(--em-light);
}

.origin-tag span {
    font-size: 0.78rem;
    color: rgba(248, 244, 237, 0.35);
    letter-spacing: 0.5px;
}





@media(max-width:600px) {
    .about-section {
        padding: 50px 60px;
    }


    .about-img-main {
        height: 350px;
    }
}










/* about end */

/* PRODUCTS — HOVER REVEAL LIST */
.products-section {
    background: var(--char);
    padding: 120px 60px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.products-list {
    position: relative;
}

.product-row {
    display: grid;
    grid-template-columns: 80px 1fr 160px 100px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    cursor: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.product-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--emerald);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 0;
}

.product-row:hover::before {
    transform: scaleX(1);
}

.product-row>* {
    position: relative;
    z-index: 1;
}

.product-row:hover .prod-num,
.product-row:hover .prod-name,
.product-row:hover .prod-origin,
.product-row:hover .prod-cta {
    color: white !important;
}

.prod-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    /* color: rgba(248, 244, 237, 0.2); */
    letter-spacing: 1px;
    font-weight: 300;
}

.prod-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: white;
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

.prod-name em {
    font-style: italic;
    font-weight: 300;
    font-size: 0.65em;
    color: rgba(248, 244, 237, 0.45);
    display: block;
    margin-top: 2px;
}

.prod-origin {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(248, 244, 237, 0.3);
    transition: color 0.3s;
}

.prod-cta {
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    justify-content: flex-end;
}

.prod-cta i {
    font-size: 0.55rem;
    transition: transform 0.3s;
}

.product-row:hover .prod-cta {
    color: rgba(248, 244, 237, 0.8);
}

.product-row:hover .prod-cta i {
    transform: translateX(6px);
}

/* Floating image on product hover */
.products-hover-img {
    position: fixed;
    width: 280px;
    height: 340px;
    pointer-events: none;
    overflow: hidden;
    z-index: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.products-hover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-hover-img.visible {
    opacity: 1;
}


@media(max-width:600px) {
    .products-section {
        padding: 20px 60px;
    }
}








/* product end */

/* IMPACT — BIG NUMBERS */
.impact-section {
    background: var(--emerald);
    padding: 100px 60px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
}

.impact-item {
    padding: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.impact-item:last-child {
    border-right: none;
}

.impact-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 7vw, 6rem);
    font-weight: 600;
    color: white;
    line-height: 1;
    display: block;
}

.impact-sup {
    font-size: 0.45em;
    vertical-align: top;
    margin-top: 0.2em;
    display: inline-block;
    color: var(--gold-l);
}

.impact-label {
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 10px;
    display: block;
}

.impact-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 6px;
    display: block;
}


@media (max-width:500px) {
    .impact-section{
        padding: 50px 60px
    }

    .impact-num{
        font-size: 54px;
    }

    .impact-label{
        font-size: 10px;
    }
}







/* QUALITY — ALTERNATING PAIRS */
.quality-section {
    background: var(--black);
    padding: 130px 60px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.quality-section .section-tag {
    margin-bottom: 60px;
}

.quality-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.quality-pair.reverse {
    direction: rtl;
}

.quality-pair.reverse>* {
    direction: ltr;
}

.quality-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    filter: brightness(0.8) saturate(0.75);
    transition: filter 0.5s;
}

.quality-img:hover {
    filter: brightness(0.9) saturate(1);
}

.quality-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.5rem;
    font-weight: 700;
    /* color: var(--emerald); */
    opacity: 0.18;
    line-height: 1;
    /* margin-bottom: -20px; */
    letter-spacing: -4px;
}

.quality-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: white;
    margin-bottom: 18px;
    line-height: 1.2;
}

.quality-body p {
    font-size: 0.88rem;
    line-height: 1.95;
    color: rgba(248, 244, 237, 0.45);
    font-weight: 300;
    margin-bottom: 14px;
}

.quality-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--em-light);
    margin-top: 12px;
}

.quality-tag i {
    font-size: 0.7rem;
}


@media(max-width:600px){
    .quality-img{
        height: 300px;
    }

    .quality-section{
        padding: 50px 60px;
    }
}


/* quality end */





/* GLOBAL REACH */
.global-section {
    background: var(--char);
    padding: 120px 60px;
}

.global-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
    margin-top: 64px;
}

.global-countries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.country-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.25s;
    cursor: default;
}

.country-item:hover {
    background: rgba(0, 80, 60, 0.25);
}

.country-flag {
    font-size: 1.3rem;
    line-height: 1;
}

.country-name {
    font-size: 0.78rem;
    color: rgba(248, 244, 237, 0.5);
    font-weight: 400;
}

.country-name strong {
    display: block;
    color: rgba(248, 244, 237, 0.8);
    font-size: 0.82rem;
    font-weight: 500;
}

.global-right .section-tag {
    margin-bottom: 24px;
}

.global-right h2 {
    color: white;
    margin-bottom: 24px;
}

.global-right p {
    font-size: 0.9rem;
    line-height: 1.9;
    color: rgba(248, 244, 237, 0.45);
    font-weight: 300;
    margin-bottom: 20px;
}

.shipping-info {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.shipping-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
}

.shipping-row i {
    color: var(--gold);
    width: 18px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.shipping-row p {
    font-size: 0.82rem;
    color: rgba(248, 244, 237, 0.45);
    margin: 0;
    line-height: 1.5;
}

.shipping-row p strong {
    color: rgba(248, 244, 237, 0.75);
}



@media (max-width:600px) {
    .global-section{
        padding: 50px 60px;
    }
}





/* CERTIFICATIONS */
.cert-section {
    background: var(--off);
    padding: 80px 60px;
}

.cert-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.cert-label {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
}

.cert-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.12);
}

.cert-items {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    align-items: center;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cert-item i {
    width: 36px;
    height: 36px;
    background: var(--emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.cert-item span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark);
}



@media(max-width:600px){
    .cert-inner{
        justify-content: left;
    }
}

/* cert end */




/* PARTNERSHIP CTA */
.cta-section {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.cta-left {
    background-image: url('../image/form-img.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
}

.cta-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 50, 35, 0.7);
}

.cta-right {
    background: var(--black);
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-right .section-tag {
    margin-bottom: 22px;
}

.cta-right h2 {
    color: white;
    margin-bottom: 22px;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.cta-right p {
    font-size: 0.9rem;
    color: rgba(248, 244, 237, 0.45);
    line-height: 1.9;
    margin-bottom: 36px;
    font-weight: 300;
}

.cta-form-inline {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cta-field {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 13px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: white;
    outline: none;
    transition: border-color 0.25s;
    width: 100%;
}

.cta-field::placeholder {
    color: rgba(248, 244, 237, 0.25);
}

.cta-field:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.07);
}

.cta-select {
    appearance: none;
    cursor: pointer;
}

.cta-submit {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 15px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-submit:hover {
    background: var(--gold-l);
}

.cta-disclaimer {
    font-size: 0.7rem;
    color: rgba(248, 244, 237, 0.25);
    margin-top: 8px;
}


@media(max-width:500px){
    .cta-div{
        padding: 14px !important;
        
    }

    /* .cta-div p{
font-size: 25px !important;
    } */
}


/* cta end */







/* FOOTER */
footer {
    background: #040404;
    border-top: 1px solid var(--border);
    padding: 80px 60px 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
    gap: 64px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.footer-brand img {
    height: 70px;
    margin-bottom: 20px;
    /* filter: brightness(0) invert(1); */
    opacity: 0.7;
}

.footer-brand p {
    font-size: 0.83rem;
    line-height: 1.85;
    /* color: rgba(248, 244, 237, 0.3); */
    color: #f8f4ed;
    max-width: 260px;
    font-weight: 300;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border: 1px solid #f8f4ed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f8f4ed;
    text-decoration: none;
    font-size: 0.78rem;
    transition: all 0.25s;
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h5 {
    /* font-size: 0.62rem; */
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* color: rgba(248, 244, 237, 0.35); */
    color: #f8f4ed;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.83rem;
    color: #f8f4ed;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.25s;
}

.footer-col ul li a:hover {
    color: rgba(248, 244, 237, 0.8);
}

.footer-contact h5{
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f8f4ed;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-contact p {
    font-size: 0.83rem;
    color: #f8f4ed;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 8px;
}

.footer-contact a {
    color: #f8f4ed;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-contact a:hover {
    opacity: 0.75;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
}

.footer-bottom p {
    /* font-size: 0.72rem; */
    font-size: 14px;
    color: #f8f4ed;
    letter-spacing: 0.5px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    
}

.footer-bottom-links a {
    font-size: 14px;
    color: #f8f4ed;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: rgba(248, 244, 237, 0.55);
}


@media(max-width:992px){
    .footer-bottom{
        display: flex;
        flex-direction: column;
        line-height: 1.9;
    }
}

@media(max-width:490px){

    .footer-bottom p{
        text-align: center;
    }
    
    .footer-bottom-links a{
        text-align: center;
    }
}





/* foter end */









/* SCROLLBAR */
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--emerald);
}

/* ANIMATIONS */
[data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal-delay="1"] {
    transition-delay: 0.12s;
}

[data-reveal-delay="2"] {
    transition-delay: 0.24s;
}

[data-reveal-delay="3"] {
    transition-delay: 0.36s;
}

@media(max-width:1100px) {
    /* nav {
        padding: 0 32px;
    } */

    .about-section,
    .products-section,
    .quality-section,
    .global-section,
    .cert-section,
    .cta-section,
    footer {
        padding-left: 32px;
        padding-right: 32px;
    }

    .impact-section {
        padding-left: 32px;
        padding-right: 32px;
    }

    .hero-panel-left {
        padding: 80px 40px 80px 32px;
    }

    .cta-left { min-height: 520px; }
}

@media(max-width:900px) {
    .hero-panel-left {
        max-width: 100%;
    }

    .hero-img-overlay {
        background: linear-gradient(180deg, rgba(8, 8, 8, 0.55) 0%, rgba(8, 8, 8, 0.65) 55%, rgba(8, 8, 8, 0.85) 100%);
    }

    .hero-scroll-cue {
        display: none;
    }

    .cta-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .cta-left {
        min-height: 360px;
    }

    .cta-right {
        padding: 10px 0px;
    }

    .cta-right h2 {
        font-size: 2.6rem;
    }

    .cta-right p {
        margin-bottom: 28px;
    }

    .cta-form-inline {
        gap: 12px;
    }

    @media (max-width: 1100px) {
        /* reduce large paddings that can cause overflow */
        .hero-panel-left {
            padding-left: 32px;
            padding-right: 32px;
        }

        /* .hero-panel-left, .hero-panel-right { padding-top: 100px; } */
    }

    @media (max-width: 600px) {
        .about-img-inset {
            right: -10px;
            transform: translateX(6px);
            width: 180px;
            height: 210px;
        }

        .products-hover-img {
            max-width: calc(100vw - 40px);
            max-height: calc(100vh - 120px);
            width: auto;
            height: auto;
        }
    }

    .about-section,
    .global-inner,
    .cta-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .quality-pair,
    .quality-pair.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }

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

    .global-countries {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .products-hover-img {
        display: none;
    }
}

@media (max-width: 700px) {
    .nav-left {
        display: flex !important;
        align-items: center;
        flex-shrink: 0;
    }

    .nav-left .logo {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    .nav-left .logo img {
        height: 48px;
        width: auto;
        max-width: 180px;
    }

    .nav-right,
    .nav-center,
    .nav-lang {
        display: none !important;
    }

    .nav-toggle {
        display: flex !important;
    }
}

@media(max-width:600px) {

    nav {
        grid-template-columns: auto 1fr auto;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
    }

    .product-row {
        grid-template-columns: 50px 1fr 90px;
    }

    .prod-origin {
        display: none;
    }
}

/* ============================================
   PAGE HERO — banner for interior pages
   ============================================ */
.page-hero {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 170px 60px 90px;
    background: var(--black);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5) saturate(0.85);
    transform: scale(1.04);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.72) 0%, rgba(8, 8, 8, 0.5) 45%, rgba(8, 8, 8, 0.92) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.page-hero-content .section-tag {
    justify-content: center;
}

.page-hero-crumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.66rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(248, 244, 237, 0.4);
    margin-bottom: 26px;
}

.page-hero-crumb a {
    color: rgba(248, 244, 237, 0.6);
    text-decoration: none;
    transition: color 0.25s;
}

.page-hero-crumb a:hover {
    color: var(--gold);
}

.page-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.8rem, 5.5vw, 4.6rem);
    line-height: 1.1;
    color: white;
    letter-spacing: -0.01em;
    margin: 18px 0 22px;
}

.page-hero-title em {
    font-style: italic;
    color: rgba(248, 244, 237, 0.7);
}

.page-hero-title strong {
    font-weight: 600;
    color: var(--gold-l);
}

.page-hero-desc {
    font-size: 0.92rem;
    line-height: 1.8;
    color: rgba(248, 244, 237, 0.5);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .page-hero {
        min-height: 44vh;
        padding: 100px 24px 70px;
    }
}

/* ============================================
   SIMPLE CTA BANNER — used on About / Products
   ============================================ */
.simple-cta {
    background: var(--emerald);
    padding: 90px 60px;
    text-align: center;
}

.simple-cta .section-tag {
    justify-content: center;
    margin: 0 auto 20px;
}

.simple-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.simple-cta p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.8;
    font-weight: 300;
}

.simple-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--black);
    padding: 16px 38px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.simple-cta-btn:hover {
    background: var(--gold-l);
    gap: 18px;
}

@media (max-width: 900px) {
    .simple-cta {
        padding: 70px 24px;
    }
}

/* ============================================
   CONTACT INFO CARDS — contact.html
   ============================================ */
.contact-info-section {
    background: var(--char);
    padding: 90px 60px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
}

.contact-info-card {
    background: var(--char);
    padding: 44px 28px;
    text-align: center;
}

.contact-info-card i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(200, 162, 86, 0.1);
    border: 1px solid rgba(200, 162, 86, 0.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin: 0 auto 20px;
}

.contact-info-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.contact-info-card p,
.contact-info-card a {
    display: block;
    font-size: 0.8rem;
    color: rgba(248, 244, 237, 0.45);
    text-decoration: none;
    line-height: 1.7;
    transition: color 0.25s;
}

.contact-info-card a:hover {
    color: var(--gold);
}

@media (max-width: 900px) {
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info-section {
        padding: 0px 24px 0;
    }
}

@media (max-width: 500px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.products-category {
    font-size: 0.62rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 56px 0 18px;
}

.products-category:first-child {
    margin-top: 0;
}

/* product */




/* certi.. */

.certifications-section{
    padding:20px 5%;
    background:#040404;
}

.certifications-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.certificate-card{
    height:350px;
    border-radius:10px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    background:#111;
    transition:.4s ease;
}

.certificate-card img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover; 
    transition:.5s ease;
}

.certificate-card:hover{
    transform:translateY(-8px);
    border-color:#8d8f3c;
    box-shadow:0 15px 40px rgba(141,143,60,.18);
}

.certificate-card:hover img{
    transform:scale(1.05);
}


@media (max-width:992px){
    .certifications-container{
        grid-template-columns:repeat(2,1fr);
    }

    .certificate-card{
        height:420px;
    }
}


@media (max-width:768px){
    .certifications-container{
        grid-template-columns:1fr;
    }

    .certificate-card{
        height:250px;
    }
}