/* =====================================================
   LEMARCH — Brand Stylesheet
   Colors: #8B7524 | #E2D4A8 | #BFAA51 | #A5A295 | #000
   Fonts:  Montserrat/Poppins (headings) | Open Sans (body)
===================================================== */

:root {
    /* ── Canonical brand palette ── */
    --primary-gold: #8B7524;
    --light-gold:   #E2D4A8;
    --text-white:   #FFFFFF;
    --bg-white:     #FFFFFF;

    /* ── Aliases (all existing usage preserved) ── */
    --gold:       var(--primary-gold);
    --gold-light: #BFAA51;
    --beige:      var(--light-gold);
    --cream:      #F5EDD6;
    --off-white:  #FAF8F3;
    --grey:       #A5A295;
    --dark:       #000000;
    --dark-soft:  #0a0a0a;
    --white:      var(--text-white);
    --shadow-g:   0 6px 30px rgba(139,117,36,.18);
    --shadow-s:   0 8px 40px rgba(0,0,0,.07);
    --radius:     2px;
    --trans:      all .35s ease;
    --nav-h:      72px;
    --olive-brand:  #8c7b24;
    --text-gold:    #948a4c;
    --bg-gray:      #a19d8e;
    --diagram-gold: #b9a84d;
}

/* ---- Reset ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html  {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden; /* stop nav-slide & wide elements from creating a right gutter */
    max-width: 100%;
}
body  {
    font-family: 'Open Sans', 'Roboto', sans-serif;
    color: var(--dark);
    background: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}
a   { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }
button { cursor: pointer; background: none; border: none; outline: none; }

/* ---- Layout utilities ---- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* ---- Section labels ---- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .85rem;
}
.section-tag::before {
    content: '';
    display: inline-block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

.section-heading {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.12;
    margin-bottom: .9rem;
}
.section-heading span { color: var(--gold); }

.headline-container {
    /* width: 100%; */
    /* padding: 40px 20px; */
    /* text-align: center; */
    /* background-color: #ffffff; */
}

.main-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .main-headline {
        font-size: 24px;
        padding: 0 10px;
    }
}

.section-sub {
    font-size: .97rem;
    color: #555;
    line-height: 1.8;
    max-width: 560px;
}

/* ---- Buttons ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .9rem 2.4rem;
    background: var(--gold);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
    transition: color .35s ease, border-color .35s ease;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: translateX(-101%);
    transition: transform .4s ease;
    z-index: 0;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { border-color: var(--gold-light); }
.btn-primary span,
.btn-primary i { position: relative; z-index: 1; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 2rem;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1.5px solid rgba(0,0,0,.2);
    transition: var(--trans);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); gap: .9rem; }

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    background: var(--primary-gold);
    box-shadow: 0 2px 16px rgba(139,117,36,.25);
    transition: background .4s ease, box-shadow .4s ease, height .4s ease;
}
.navbar.scrolled {
    background: #6b5a18;
    box-shadow: 0 2px 24px rgba(139,117,36,.4);
    height: 60px;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    overflow: visible; /* allow desktop dropdowns to show */
    min-width: 0;      /* prevent flex children from forcing width */
}

/* Logo */
.nav-logo { display: flex; align-items: center; }
.nav-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: .15em;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
}
.nav-logo-accent { color: var(--light-gold); }
.nav-logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.88);
    position: relative;
    transition: color .3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: var(--white);
    transition: width .3s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta {
    padding: .45rem 1.4rem;
    border: 1.5px solid var(--white);
    color: var(--white) !important;
    transition: var(--trans);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-gold) !important;
}

/* ---- Products multi-level dropdown ---- */
.nav-has-dropdown { position: relative; }

.nav-link--arrow .nav-arrow {
    font-size: .55rem;
    margin-left: 4px;
    vertical-align: middle;
    transition: transform .25s ease;
}
.nav-has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1c1a14;
    min-width: 200px;
    list-style: none;
    padding: 6px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 1100;
    border-top: 2px solid var(--gold);
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.nav-has-dropdown:hover > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item { position: relative; }

.nav-dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 18px;
    color: rgba(255,255,255,.85);
    font-family: 'Poppins', sans-serif;
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .05em;
    cursor: default;
    white-space: nowrap;
    transition: color .2s, background .2s;
}
.nav-dropdown-item:hover > .nav-dropdown-link {
    color: var(--gold-light);
    background: rgba(255,255,255,.06);
}
.nav-dropdown-link i { font-size: .58rem; opacity: .7; flex-shrink: 0; }

/* Level-2 flyout */
.nav-subdrop {
    position: absolute;
    top: 0;
    left: 100%;
    background: #1c1a14;
    min-width: 190px;
    list-style: none;
    padding: 6px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 1101;
    border-top: 2px solid var(--gold);
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.nav-has-sub:hover > .nav-subdrop {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-subdrop-link {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 20px;
    color: rgba(255,255,255,.8);
    font-family: 'Poppins', sans-serif;
    font-size: .74rem;
    font-weight: 400;
    letter-spacing: .04em;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: color .2s, background .2s;
}
.nav-subdrop li:last-child .nav-subdrop-link { border-bottom: none; }
.nav-subdrop-link:hover {
    color: var(--gold-light);
    background: rgba(255,255,255,.06);
}

/* ---- Desktop: flip subdrop to left side on narrower viewports ---- */
@media (max-width: 1100px) {
    .nav-subdrop {
        left: auto;
        right: 100%;
        transform: translateX(8px);
    }
    .nav-has-sub:hover > .nav-subdrop {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .nav-dropdown,
    .nav-subdrop { display: none; }
    .nav-arrow    { display: none; }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =====================================================
   HERO
===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--cream);
    background-image:
        radial-gradient(ellipse at 20% 60%, rgba(191,170,81,.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(140,119,28,.08) 0%, transparent 50%);
}
/* Background video */
.h2-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Geometric accent */
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(145deg, rgba(191,170,81,.1) 0%, rgba(226,214,166,.35) 100%);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}
/* Grain texture overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    width: 90%;
    max-width: 1260px;
    margin: 0 auto;
    padding: calc(var(--nav-h) + 60px) 0 80px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.hero-tag::before {
    content: '';
    width: 28px; height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

.hero-heading {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1.08;
    color: var(--dark);
    margin-bottom: 1.25rem;
}
.hero-heading .gold-word {
    color: var(--gold);
    display: block;
}

.hero-sub {
    font-size: 1.02rem;
    color: #4a4a40;
    line-height: 1.85;
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Play button */
.play-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.play-circle {
    width: 54px; height: 54px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--trans);
    flex-shrink: 0;
}
.play-circle::before {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px solid rgba(140,119,28,.3);
    animation: pulse-ring 2.5s ease-in-out infinite;
}
.play-circle i {
    color: var(--gold);
    font-size: .95rem;
    margin-left: 3px;
    transition: color .3s ease;
}
.play-btn:hover .play-circle { background: var(--gold); }
.play-btn:hover .play-circle i { color: var(--white); }
.play-text {
    font-family: 'Poppins', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--dark);
}

/* Hero visual side */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-image-main {
    width: 100%;
    max-width: 460px;
    height: 400px;
    background: linear-gradient(135deg, var(--beige) 0%, #c8b87a 100%);
    border: 1px solid rgba(140,119,28,.2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-image-main::before {
    content: 'LEMARCH';
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: .25em;
    color: rgba(140,119,28,.12);
    pointer-events: none;
    white-space: nowrap;
}
.hero-badge {
    position: absolute;
    bottom: -22px; left: -22px;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    animation: spin-slow 20s linear infinite;
    box-shadow: 0 8px 30px rgba(140,119,28,.45);
    z-index: 2;
}
.hero-badge strong { font-size: 1.45rem; font-weight: 900; line-height: 1; }
.hero-badge span   { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; text-align: center; }

.hero-img-secondary {
    position: absolute;
    top: -20px; right: -20px;
    width: 140px; height: 140px;
    background: var(--gold-light);
    opacity: .35;
    z-index: 0;
}

.hero-floating-tag {
    position: absolute;
    bottom: 40px; right: -30px;
    background: var(--white);
    border-left: 3px solid var(--gold);
    padding: .75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    box-shadow: var(--shadow-s);
    z-index: 3;
    animation: float-ud 3s ease-in-out infinite;
}
.hero-floating-tag i { color: var(--gold); font-size: 1.2rem; }
.hero-floating-tag strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: .88rem;
    font-weight: 700;
}
.hero-floating-tag span { font-size: .72rem; color: var(--grey); }

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    z-index: 1;
}
.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}
.hero-scroll-indicator span {
    font-family: 'Poppins', sans-serif;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Keyframes */
@keyframes pulse-ring {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes float-ud {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@keyframes scroll-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: .3; }
}

/* =====================================================
   STATS
===================================================== */
.stats-section {
    background: var(--dark-soft);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--gold-light), transparent);
}
.stats-section::after {
    content: 'STATS';
    position: absolute;
    right: -20px; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Montserrat', sans-serif;
    font-size: 7rem;
    font-weight: 900;
    letter-spacing: .3em;
    color: rgba(255,255,255,.025);
    pointer-events: none;
}

.stats-inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: center;
    gap: 5rem;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-label-col .section-tag  { color: var(--gold-light); }
.stats-label-col .section-tag::before { background: var(--gold-light); }
.stats-label-col .section-heading { color: var(--white); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.stat-card {
    padding: 2rem 1rem;
    border: 1px solid rgba(191,170,81,.15);
    text-align: center;
    position: relative;
    transition: var(--trans);
    cursor: default;
}
.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width .45s ease;
}
.stat-card:hover { border-color: rgba(191,170,81,.4); }
.stat-card:hover::after { width: 100%; }

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: .4rem;
}
.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--grey);
}

/* =====================================================
   WORLD MAP
===================================================== */
.map-section { padding: 90px 0; background: #ffffff; }

.map-header { text-align: center; margin-bottom: 3.5rem; }
.map-header .section-sub { margin: .5rem auto 0; }

.map-container {
    width: 100%;
    background: #e8e3d8;
    border: 1px solid rgba(165,162,149,.3);
    overflow: hidden;
}
.map-placeholder {
    width: 100%;
    height: 460px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.map-placeholder-text {
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--grey);
    opacity: .5;
    pointer-events: none;
    user-select: none;
}
.map-pins-overlay { position: absolute; inset: 0; }

.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transform: translate(-50%, -50%);
}
.map-pin-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 4px rgba(140,119,28,.3);
    animation: pin-pulse 2.5s ease-in-out infinite;
    position: relative;
    z-index: 2;
    transition: transform .25s ease;
}
.map-pin:hover .map-pin-dot { transform: scale(1.4); }
@media (max-width: 960px) {
    .map-pin-dot { width: 11px; height: 11px; }
}
@media (max-width: 820px) {
    .map-pin[data-pin="usa"]     { left: 29% !important; top: 46% !important; }
    .map-pin[data-pin="greece"]  { left: 53% !important; top: 45% !important; }
    .map-pin[data-pin="japan"]   { left: 76% !important; top: 44% !important; }
    .map-pin[data-pin="italy"]   { left: 50% !important; top: 42% !important; }
    .map-pin[data-pin="belgium"] { left: 49% !important; top: 40% !important; }
    .map-pin[data-pin="uk"]      { left: 47% !important; top: 37% !important; }
}
@media (max-width: 768px) {
    .map-pin-dot { width: 9px; height: 9px; }
}
@media (max-width: 480px) {
    .map-pin-dot { width: 8px; height: 8px; }
    .map-pin[data-pin="usa"]     { left: 28% !important; top: 48% !important; }
    .map-pin[data-pin="japan"]   { left: 76% !important; top: 47% !important; }
    .map-pin[data-pin="greece"]  { left: 53% !important; top: 48% !important; }
    .map-pin[data-pin="italy"]   { left: 51% !important; top: 47% !important; }
    .map-pin[data-pin="belgium"] { left: 49% !important; top: 46% !important; }
    .map-pin[data-pin="uk"]      { left: 47% !important; top: 45% !important; }
}
@media (max-width: 360px) {
    .map-pin-dot { width: 7px; height: 7px; }
    .map-pin[data-pin="usa"]     { left: 28% !important; top: 48% !important; }
    .map-pin[data-pin="japan"]   { left: 76% !important; top: 47% !important; }
    .map-pin[data-pin="greece"]  { left: 53% !important; top: 48% !important; }
    .map-pin[data-pin="italy"]   { left: 51% !important; top: 47% !important; }
    .map-pin[data-pin="belgium"] { left: 49% !important; top: 46% !important; }
    .map-pin[data-pin="uk"]      { left: 47% !important; top: 45% !important; }
}
.map-pin-label {
    position: absolute;
    top: 20px;
    background: var(--dark);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .08em;
    padding: 4px 10px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(4px);
    transition: all .25s ease;
    pointer-events: none;
    z-index: 3;
}
.map-pin:hover .map-pin-label { opacity: 1; transform: translateY(0); }

@keyframes pin-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(140,119,28,.3); }
    50%       { box-shadow: 0 0 0 10px rgba(140,119,28,.08); }
}

.map-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}
.map-legend-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Poppins', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: #444;
}
.map-legend-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* =====================================================
   PRODUCTS
===================================================== */
.products-section { padding: 90px 0; background: var(--white); }

.products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.product-card {
    border: 1px solid rgba(140,119,28,.1);
    overflow: hidden;
    cursor: pointer;
    background: var(--cream);
    transition: box-shadow .4s ease;
}
.product-card:hover { box-shadow: var(--shadow-g); }

.product-card-img {
    height: 320px;
    position: relative;
    overflow: hidden;
}
.product-img-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.product-img-bg i {
    font-size: 5rem;
    color: rgba(140,119,28,.2);
    transition: transform .6s ease;
}
.product-card:hover .product-img-bg { transform: scale(1.08) rotate(2deg); }
.product-card:hover .product-img-bg i { transform: rotate(-5deg); }

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.72) 100%);
    opacity: 0;
    transition: opacity .4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-overlay-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: .25rem;
}
.product-overlay-text p { font-size: .8rem; color: rgba(255,255,255,.75); }

.product-card-info {
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(140,119,28,.15);
}
.product-card-name {
    font-family: 'Poppins', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.product-card-tag {
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: var(--trans);
}
.product-card:hover .product-card-tag { letter-spacing: .15em; }

.products-cta { text-align: center; }

/* =====================================================
   PRODUCTION PROCESS
===================================================== */
.process-section {
    padding: 90px 0;
    background: var(--dark-soft);
    position: relative;
    overflow: hidden;
}
.process-section::before {
    content: 'PROCESS';
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 9rem;
    font-weight: 900;
    letter-spacing: .25em;
    color: rgba(255,255,255,.025);
    pointer-events: none;
    white-space: nowrap;
}

.process-header {
    text-align: center;
    margin-bottom: 4.5rem;
}
.process-header .section-heading { color: var(--white); }
.process-header .section-tag     { color: var(--gold-light); }
.process-header .section-tag::before { background: var(--gold-light); }

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 36px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191,170,81,.4) 15%, rgba(191,170,81,.4) 85%, transparent);
    z-index: 0;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 .75rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .5s ease, transform .5s ease;
}
.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-icon-wrap {
    width: 72px; height: 72px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--dark-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: 1.25rem;
    transition: background .3s ease, transform .35s ease;
}
.process-step:hover .process-icon-wrap {
    background: var(--gold);
    transform: scale(1.12) rotate(8deg);
}
.process-icon-wrap i {
    font-size: 1.3rem;
    color: var(--gold-light);
    transition: color .3s ease;
}
.process-step:hover .process-icon-wrap i { color: var(--white); }

.process-step-num {
    position: absolute;
    top: -8px; right: -4px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-size: .63rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-step-title {
    font-family: 'Poppins', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: .35rem;
}
.process-step-desc {
    font-size: .76rem;
    color: rgba(165,162,149,.8);
    line-height: 1.6;
}
.process-arrow {
    position: absolute;
    top: 22px; right: -8px;
    color: var(--gold);
    font-size: .72rem;
    z-index: 2;
}

/* =====================================================
   CERTIFICATIONS
===================================================== */
.cert-section { padding: 80px 0; background: var(--cream); }

.cert-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #F2EBD3;
}

.cert-line {
    height: 2px;
    background-color: #9C832D;
    flex-grow: 1;
    margin-right: 30px;
}

.cert-title {
    font-family: 'Arial Black', Gadget, sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #000000;
    margin: 0;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .cert-title { font-size: 28px; }
    .cert-line { margin-right: 15px; }
}

.cert-display {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px 20px 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.cert-frame {
    position: relative;
    display: inline-block;
    flex: 1 1 420px;
    max-width: 480px;
    padding: 18px;
    background: var(--white);
    border: 1px solid rgba(140,119,28,.2);
    box-shadow: 0 8px 40px rgba(140,119,28,.12), 0 2px 12px rgba(0,0,0,.06);
    transition: box-shadow .35s ease, transform .35s ease;
}

.cert-frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(140,119,28,.35);
    pointer-events: none;
}

.cert-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 56px rgba(140,119,28,.18), 0 4px 18px rgba(0,0,0,.08);
}

.cert-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 640px) {
    .cert-display { gap: 24px; padding: 16px; }
    .cert-frame { flex: 1 1 100%; max-width: 100%; padding: 12px; }
    .cert-frame::before { inset: 5px; }
}

/* =====================================================
   CLIENTS SLIDER
===================================================== */
.clients-section { padding: 70px 0; background: var(--white); overflow: hidden; }

.clients-header {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.clients-title {
    font-family: 'Arial Black', Gadget, sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #000000;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 1px;
}

.clients-line {
    height: 2px;
    background-color: #9C832D;
    flex-grow: 1;
    margin-left: 30px;
}

@media (max-width: 768px) {
    .clients-title { font-size: 28px; }
    .clients-line { margin-left: 15px; }
}

.clients-slider-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.clients-track {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: marquee 28s linear infinite;
    width: max-content;
}
.clients-track:hover { animation-play-state: paused; }

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 100px;
    background: #ffffff;
    border: 1px solid rgba(140,119,28,.15);
    border-radius: 8px;
    padding: 14px 18px;
    flex-shrink: 0;
    transition: var(--trans);
    filter: grayscale(1);
    opacity: .6;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.client-logo:hover {
    filter: none;
    opacity: 1;
    border-color: var(--gold-light);
    box-shadow: 0 4px 18px rgba(140,119,28,.18);
    transform: translateY(-2px);
}
.client-logo img {
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
}
.client-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--dark);
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =====================================================
   TEAM
===================================================== */
.team-section { padding: 90px 0; background: var(--off-white); }

.team-header {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
    font-family: 'Arial Black', sans-serif;
}
.team-header .line {
    flex-grow: 1;
    height: 2px;
    background-color: #b1934c;
    margin-right: 20px;
}
.team-header .title {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: #000;
    white-space: nowrap;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.team-card {
    background: var(--white);
    border: 1px solid rgba(140,119,28,.1);
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.09);
}

.team-card-img {
    height: 280px;
    overflow: hidden;
}
.team-avatar-bg {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .5s ease;
}
.team-avatar-bg i {
    font-size: 5rem;
    color: rgba(140,119,28,.25);
}
.team-card:hover .team-avatar-bg { transform: scale(1.04); }

.team-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .5s ease;
}
.team-card:hover .team-avatar-img { transform: scale(1.04); }

.team-card-body {
    padding: 1.5rem;
    border-top: 3px solid var(--gold);
}
.team-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: .2rem;
}
.team-role {
    font-family: 'Poppins', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .8rem;
}
.team-bio {
    font-size: .84rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.team-socials { display: flex; gap: .65rem; }
.team-social-link {
    width: 32px; height: 32px;
    border: 1px solid rgba(140,119,28,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .78rem;
    transition: var(--trans);
}
.team-social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* =====================================================
   TESTIMONIALS
===================================================== */
.testimonials-section {
    padding: 90px 0;
    background: var(--dark-soft);
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.testi-header {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 3.5rem;
    font-family: 'Arial Black', sans-serif;
}
.testi-title {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: #b1934c;
    white-space: nowrap;
}
.testi-title-line {
    flex-grow: 1;
    height: 2px;
    background-color: #b1934c;
    margin-left: 20px;
}

/* Viewport clips overflow so only N cards show */
.testi-viewport {
    overflow: hidden;
    padding: 6px 0 10px;  /* let box-shadows breathe */
}

.testi-track {
    display: flex;
    gap: 2rem;
    transition: transform .55s cubic-bezier(.77,0,.18,1);
    will-change: transform;
}

/* Card */
.testi-card {
    flex-shrink: 0;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(191,170,81,.15);
    border-top: 3px solid var(--gold);
    padding: 2rem 2rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: background .35s ease, border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}
.testi-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(191,170,81,.06) 0%, transparent 60%);
    pointer-events: none;
}
.testi-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(191,170,81,.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.testi-quote-icon {
    font-size: 1.8rem;
    color: var(--gold);
    opacity: .55;
    margin-bottom: .9rem;
    line-height: 1;
}

.testi-stars {
    display: flex;
    gap: .25rem;
    margin-bottom: 1rem;
}
.testi-stars i { font-size: .8rem; color: var(--gold-light); }

.testi-body {
    font-size: .9rem;
    color: rgba(255,255,255,.68);
    line-height: 1.85;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-divider {
    height: 1px;
    background: rgba(191,170,81,.18);
    margin-bottom: 1.3rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .9rem;
}
.testi-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(191,170,81,.35);
    background: rgba(191,170,81,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testi-avatar i { font-size: 1.15rem; color: var(--gold-light); }
.testi-name {
    font-family: 'Poppins', sans-serif;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--white);
}
.testi-role {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: .1rem;
}
.testi-company {
    font-size: .75rem;
    color: rgba(255,255,255,.38);
    margin-top: .15rem;
}

/* Controls */
.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    margin-top: 2.8rem;
}
.testi-btn {
    width: 44px; height: 44px;
    border: 1.5px solid rgba(191,170,81,.35);
    background: transparent;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    cursor: pointer;
    transition: var(--trans);
    flex-shrink: 0;
}
.testi-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}
.testi-dots {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.testi-dot {
    width: 8px; height: 8px;
    border-radius: 4px;
    background: rgba(191,170,81,.28);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .35s ease;
}
.testi-dot.active {
    background: var(--gold);
    width: 26px;
}

/* ---- Testimonials responsive ---- */
@media (max-width: 960px) {
    .testimonials-section { padding: 70px 0; }
    .testi-title { font-size: 2rem; }
}
@media (max-width: 768px) {
    .testimonials-section { padding: 60px 0; }
    .testi-title { font-size: 1.6rem; }
    .testi-header { margin-bottom: 2.5rem; }
    .testi-controls { gap: 1rem; margin-top: 2rem; }
    .testi-card { padding: 1.6rem 1.5rem 1.5rem; }
}
@media (max-width: 480px) {
    .testimonials-section { padding: 50px 0; }
    .testi-header {
        flex-direction: column;
        align-items: flex-start;
        gap: .6rem;
        margin-bottom: 2rem;
    }
    .testi-title { font-size: 1.25rem; white-space: normal; }
    .testi-title-line { width: 100%; margin-left: 0; }
    .testi-card { padding: 1.4rem 1.2rem 1.3rem; }
    .testi-body { font-size: .84rem; }
    .testi-controls { gap: .75rem; margin-top: 1.5rem; }
    .testi-btn { width: 40px; height: 40px; font-size: .82rem; }
    .testi-dots { gap: .4rem; }
}

/* =====================================================
   BLOG
===================================================== */
.blog-section { padding: 90px 0; background: var(--white); }

.blog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.blog-title-wrap {
    display: flex;
    align-items: center;
    flex: 1;
    font-family: 'Arial Black', sans-serif;
}
.blog-main-title {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: #000;
    white-space: nowrap;
}
.blog-title-line {
    flex-grow: 1;
    height: 2px;
    background-color: #b1934c;
    margin-left: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.blog-card {
    background: var(--off-white);
    border: 1px solid rgba(140,119,28,.1);
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-g);
}

.blog-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.blog-img-bg {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .5s ease;
}
.blog-img-bg i { font-size: 3.5rem; color: rgba(140,119,28,.25); }
.blog-card:hover .blog-img-bg { transform: scale(1.05); }

.blog-img-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}
.blog-card:hover .blog-img-photo { transform: scale(1.05); }

.blog-cat-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--gold);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .28rem .8rem;
}

.blog-body { padding: 1.5rem; }
.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: .75rem;
}
.blog-meta-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .74rem;
    color: var(--grey);
}
.blog-meta-item i { color: var(--gold); font-size: .68rem; }

.blog-title {
    font-family: 'Poppins', sans-serif;
    font-size: .97rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.45;
    margin-bottom: .75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-excerpt {
    font-size: .82rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: 'Poppins', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap .3s ease;
}
.blog-read-more:hover { gap: .8rem; }
.blog-read-more i { font-size: .7rem; }

/* ---- Blog responsive ---- */
@media (max-width: 960px) {
    .blog-section { padding: 70px 0; }
    .blog-main-title { font-size: 2rem; }
}
@media (max-width: 768px) {
    .blog-section { padding: 60px 0; }
    .blog-main-title { font-size: 1.6rem; }
    .blog-header { margin-bottom: 2rem; }
    .blog-img { height: 200px; }
}
@media (max-width: 480px) {
    .blog-section { padding: 50px 0; }
    .blog-main-title { font-size: 1.25rem; white-space: normal; }
    .blog-title-wrap { flex-wrap: wrap; gap: .4rem; }
    .blog-title-line { width: 100%; margin-left: 0; flex-grow: unset; }
    .blog-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .blog-img { height: 180px; }
    .blog-body { padding: 1.2rem; }
    .blog-title { font-size: .92rem; }
    .blog-excerpt { font-size: .8rem; }
    .blog-read-more { font-size: .72rem; }
}

/* =====================================================
   FOOTER
===================================================== */
.footer { background: var(--dark-soft); color: rgba(255,255,255,.7); }

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding: 70px 5% 60px;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo {
    display: block;
    margin-bottom: 1.1rem;
}
.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}
.footer-about {
    font-size: .83rem;
    line-height: 1.85;
    color: rgba(255,255,255,.45);
    margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: .65rem; }
.footer-social {
    width: 36px; height: 36px;
    border: 1px solid rgba(191,170,81,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: .82rem;
    transition: var(--trans);
}
.footer-social:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-col-title {
    font-family: 'Poppins', sans-serif;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--white);
    padding-bottom: .65rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    margin-bottom: 1.25rem;
}
.footer-links-list { display: flex; flex-direction: column; gap: .55rem; }
.footer-links-list a {
    font-size: .83rem;
    color: rgba(255,255,255,.45);
    transition: color .3s ease, padding-left .3s ease;
    display: flex;
    align-items: center;
    gap: 0;
}
.footer-links-list a:hover { color: var(--gold-light); padding-left: .5rem; }

.footer-contact-list { display: flex; flex-direction: column; gap: .9rem; }
.footer-contact-item { display: flex; gap: .75rem; align-items: flex-start; }
.footer-contact-icon {
    width: 32px; height: 32px;
    background: rgba(140,119,28,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-light);
    font-size: .82rem;
}
.footer-contact-text {
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    line-height: 1.65;
    padding-top: .2rem;
}

.footer-newsletter-form { display: flex; margin-top: .75rem; }
.footer-newsletter-form input {
    flex: 1;
    padding: .65rem 1rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-right: none;
    color: var(--white);
    font-size: .82rem;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    min-width: 0;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.28); }
.footer-newsletter-form input:focus { border-color: rgba(191,170,81,.5); }
.footer-newsletter-form button {
    padding: .65rem 1rem;
    background: var(--gold);
    color: var(--white);
    font-size: .85rem;
    flex-shrink: 0;
    transition: background .3s ease;
}
.footer-newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: .75rem;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
    font-size: .76rem;
    color: rgba(255,255,255,.3);
    transition: color .3s ease;
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* =====================================================
   SCROLL TO TOP
===================================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 42px; height: 42px;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease, background .3s ease, transform .3s ease;
    z-index: 900;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover { background: var(--gold-light); transform: translateY(-3px); }

/* =====================================================
   VIDEO MODAL
===================================================== */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}
.video-modal.active { opacity: 1; pointer-events: all; }

.video-modal-inner {
    width: 90%;
    max-width: 860px;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.video-modal-inner video,
.video-modal-inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video-modal-close {
    position: absolute;
    top: -2.75rem; right: 0;
    color: rgba(255,255,255,.7);
    font-size: 1.2rem;
    transition: var(--trans);
    background: none;
    border: none;
    cursor: pointer;
}
.video-modal-close:hover { color: var(--gold-light); transform: rotate(90deg); }

/* =====================================================
   SCROLL ANIMATIONS
===================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }
.fade-up-delay-5 { transition-delay: .5s; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1100px) {
    .stats-inner { grid-template-columns: 1fr; gap: 3rem; }
    .stats-grid  { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
    .hero-inner    { grid-template-columns: 1fr; }
    .hero-visual   { display: none; }
    .hero-inner    { padding-bottom: 60px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid     { grid-template-columns: repeat(2, 1fr); }
    .team-grid     { grid-template-columns: repeat(2, 1fr); }
    /* Footer: 2-col at 960px */
    .footer-top {
        grid-template-columns: 1.4fr 1fr;
        gap: 2.5rem;
        padding: 60px 5% 50px;
    }
    .team-header .title { font-size: 2rem; }
    /* testi viewport: 2 per view — JS handles translateX, this is a marker class */
    .testi-viewport.per-2 .testi-card { /* handled via JS width */ }
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        background: var(--primary-gold);
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        padding-top: var(--nav-h) !important;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        transition: transform .4s cubic-bezier(.77,0,.18,1);
        z-index: 999;
        will-change: transform;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-link { font-size: 1rem; }
    .hamburger { display: flex; }

    .process-timeline { flex-wrap: wrap; gap: 2.5rem; }
    .process-timeline::before { display: none; }
    .process-arrow { display: none; }
    .process-step { flex: 0 0 calc(33.33% - 1.67rem); }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    .blog-grid  { grid-template-columns: 1fr; }
    .team-grid  { grid-template-columns: 1fr; }
    /* Footer: 2-col grid — brand & contact full width, Quick Links + Products side by side */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        padding: 50px 6% 44px;
        gap: 2rem 2.5rem;
    }
    /* Brand col: spans both columns */
    .footer-brand-col {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-logo { display: inline-block; margin-bottom: 1rem; }
    .footer-about {
        max-width: 480px;
        margin: 0 auto 1.4rem;
        text-align: center;
    }
    .footer-socials { justify-content: center; }
    /* Get In Touch: spans both columns */
    .footer-top > div:last-child { grid-column: 1 / -1; }
    .footer-col-title { display: block; width: 100%; }

    /* Get In Touch — responsive at 768px */
    .footer-contact-list { gap: 1rem; }
    .footer-contact-item {
        align-items: center;
        gap: 1rem;
    }
    .footer-contact-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        font-size: .88rem;
    }
    .footer-contact-text {
        font-size: .83rem;
        line-height: 1.6;
        padding-top: 0;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: .6rem;
    }
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .hero-scroll-indicator { display: none; }
    .team-section { padding: 60px 0; }
    .team-header  { margin: 30px auto 40px; }
    .team-header .title {
        font-size: 1.7rem;
        letter-spacing: .5px;
        white-space: normal;
    }
    .team-header .line { margin-right: 14px; }
}

/* ---- Footer 640px: 2-col for links/products/contact ---- */
@media (max-width: 640px) {
    .footer-top {
        padding: 46px 5% 40px;
        gap: 2.2rem;
    }
    .footer-about { font-size: .81rem; }
}

@media (max-width: 480px) {
    .hero-heading { font-size: 2rem; }
    .stat-number  { font-size: 2rem; }
    .process-step { flex: 0 0 calc(50% - 1.25rem); }
    .team-header .title { font-size: 1.4rem; letter-spacing: 0; }

    /* Footer 480px */
    .footer-top {
        padding: 44px 5% 38px;
        gap: 2rem;
    }
    .footer-logo-img { height: 38px; }
    .footer-about { font-size: .8rem; }
    .footer-social { width: 40px; height: 40px; font-size: .88rem; }
    .footer-col-title { font-size: .72rem; letter-spacing: .14em; }
    .footer-links-list { gap: .5rem; }
    .footer-links-list a { font-size: .8rem; }
    .footer-contact-list  { gap: .85rem; }
    .footer-contact-item  { gap: .75rem; }
    .footer-contact-icon  { width: 36px; height: 36px; font-size: .82rem; }
    .footer-contact-text  { font-size: .8rem; line-height: 1.55; }
    .footer-copy { font-size: .74rem; }
    .footer-bottom-links a { font-size: .72rem; }
    .footer-newsletter-form { flex-direction: column; }
    .footer-newsletter-form input {
        border-right: 1px solid rgba(255,255,255,.1);
        border-bottom: none;
        width: 100%;
    }
    .footer-newsletter-form button { width: 100%; min-height: 46px; }
}

@media (max-width: 360px) {
    .footer-top {
        padding: 36px 4% 30px;
        gap: 1.6rem;
    }
    .footer-logo-img   { height: 32px; }
    .footer-about      { font-size: .76rem; }
    .footer-col-title  { font-size: .66rem; letter-spacing: .12em; }
    .footer-links-list a   { font-size: .76rem; }
    .footer-contact-list  { gap: .7rem; }
    .footer-contact-item  { gap: .6rem; }
    .footer-contact-icon  { width: 32px; height: 32px; font-size: .76rem; }
    .footer-contact-text  { font-size: .74rem; line-height: 1.5; }
    .footer-social     { width: 36px; height: 36px; }
    .footer-bottom     { padding: 1rem 4%; gap: .45rem; }
    .footer-copy       { font-size: .70rem; }
    .footer-bottom-links { gap: .75rem; flex-wrap: wrap; justify-content: center; }
    .footer-bottom-links a { font-size: .68rem; }
}

/* =====================================================
   ABOUT PAGE
===================================================== */

/* ---- Page Hero Banner ---- */
.page-hero {
    min-height: 52vh;
    background: var(--dark-soft);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-h);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(140,119,28,.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(191,170,81,.12) 0%, transparent 60%);
}
.page-hero::after {
    content: attr(data-title);
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 9rem;
    font-weight: 900;
    letter-spacing: .3em;
    color: rgba(255,255,255,.025);
    pointer-events: none;
    text-transform: uppercase;
    white-space: nowrap;
}
.page-hero-inner {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}
.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Poppins', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}
.page-hero-tag::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--gold-light);
}
.page-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.page-hero-title span { color: var(--gold-light); }
.page-hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,.55);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Poppins', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: rgba(255,255,255,.4);
}
.breadcrumb a { color: rgba(255,255,255,.4); transition: color .3s ease; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: .6rem; color: var(--gold); }
.breadcrumb .current { color: var(--gold-light); }

/* ---- Gold divider ---- */
.gold-divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: .75rem 0 1.5rem;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ---- Who We Are ---- */
.who-section {
    padding: 90px 0;
    background: var(--white);
}
.who-section .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Content side */
.who-content-side {
    flex: 1;
}
.who-info-block {
    margin-bottom: 50px;
}
.who-info-block:last-child {
    margin-bottom: 0;
}
.who-heading {
    font-family: 'Arial Black', Gadget, sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    color: var(--dark);
    line-height: 1.1;
}
.who-para {
    color: #B0A469;
    font-size: 18px;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    font-weight: 500;
    margin: 0;
}

/* Image side */
.who-image-side {
    flex: 1;
    background-color: #EEEEEE;
    aspect-ratio: 4 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
}
.who-placeholder-circle {
    width: 100px;
    height: 100px;
    background-color: #E5E0C6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .who-section .container { flex-direction: column; }
    .who-heading             { font-size: 32px; }
    .who-image-side          { width: 100%; }
}

/* ---- Journey Banner ---- */
.journey-banner-section {
    position: relative;
    width: 100%;
    height: 700px;
    background-color: #fdf6cc;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: 'Arial Black', sans-serif;
}

.jb-dots-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#d1ca9e 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 1;
}

.jb-marquee-container {
    position: absolute;
    bottom: 50px;
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.jb-marquee-content {
    display: flex;
    white-space: nowrap;
    font-size: 80px;
    font-weight: 900;
    line-height: 0.95;
    -webkit-text-stroke: 2px #948a4c;
    color: transparent;
}

/* Lines 1, 3, 5 — scroll right */
.jb-marquee-content:nth-child(odd) {
    animation: jbScrollRight 40s linear infinite;
}

/* Lines 2, 4 — scroll left, black outlined text */
.jb-marquee-content:nth-child(even) {
    animation: jbScrollLeft 40s linear infinite;
    -webkit-text-stroke: 2px #000;
    color: transparent;
}

.jb-header-text {
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 4;
    text-align: right;
}
.jb-header-text h2 {
    color: #948a4c;
    font-size: 48px;
    font-family: 'Arial Black', sans-serif;
    font-weight: 900;
    margin: 0;
    line-height: 1.15;
}

.jb-model-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 90%;
    z-index: 3;
    object-fit: cover;
}

@keyframes jbScrollRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
@keyframes jbScrollLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .journey-banner-section { height: auto; min-height: 400px; }
    .jb-marquee-content     { font-size: 40px; }
    .jb-header-text h2      { font-size: 24px; }
    .jb-header-text         { top: 20px; right: 20px; }
    .jb-model-image         { height: 70%; left: 50%; transform: translateX(-50%); }
}

/* ---- Product Range ---- */
.product-range {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: 'Arial Black', sans-serif;
}

.range-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.range-title {
    font-size: 42px;
    font-weight: 900;
    margin: 0;
    white-space: nowrap;
    color: var(--dark);
}
.range-line {
    flex-grow: 1;
    height: 2px;
    background-color: #c5b358;
}

.range-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.range-card {
    flex: 1;
    max-width: calc((100% - 40px) / 3);
    background-color: #9e9a8a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color .3s ease;
}
.range-card.active,
.range-card:hover {
    background-color: #8c7b24;
}
.range-image {
    width: 100%;
}
.range-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .4s ease;
}
.range-card:hover .range-image img {
    transform: scale(1.05);
}
.range-label {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    margin: 0;
    padding: 18px 0;
    z-index: 1;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: .04em;
    text-align: center;
    width: 100%;
    background-color: rgba(0,0,0,0.35);
}

@media (max-width: 768px) {
    .range-grid  { flex-direction: column; }
    .range-title { font-size: 28px; }
    .range-card  { max-width: 100%; }
}

/* ---- Capabilities Section ---- */
.capabilities-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Inter', Arial, sans-serif;
}

.cap-header-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    margin-bottom: 50px;
}
.cap-header-line {
    height: 2px;
    background-color: #c5b358;
    flex-grow: 1;
}
.cap-heading {
    font-size: 52px;
    font-weight: 900;
    margin: 0;
    font-family: 'Arial Black', sans-serif;
    color: var(--dark);
    white-space: nowrap;
}

.cap-main-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.capability-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
.gold-bar {
    width: 10px;
    height: 45px;
    background-color: #8c7b24;
    flex-shrink: 0;
}
.capability-item {
    cursor: pointer;
}
.cap-text-content h3 {
    margin: 0;
    color: #8c7b24;
    font-size: 22px;
    font-weight: 800;
    font-family: 'Arial Black', sans-serif;
    cursor: pointer;
    user-select: none;
    transition: color .35s ease;
}
.capability-item.active .cap-text-content h3 {
    color: #000;
}
.cap-text-content p {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    opacity: 0;
    color: #948a4c;
    line-height: 1.6;
    font-size: 15px;
    transition: max-height .5s cubic-bezier(.4,0,.2,1),
                margin-top .5s cubic-bezier(.4,0,.2,1),
                opacity .4s ease .1s;
}
.capability-item.active .cap-text-content p {
    max-height: 300px;
    margin-top: 15px;
    opacity: 1;
}
.gold-bar {
    width: 10px;
    min-height: 45px;
    background-color: #c5b358;
    flex-shrink: 0;
    transition: background-color .35s ease, min-height .35s ease;
}
.capability-item.active .gold-bar {
    background-color: #8c7b24;
    min-height: 100%;
}
.capability-item:hover:not(.active) .gold-bar {
    background-color: #8c7b24;
}

.cap-image-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.cap-image-placeholder {
    background-color: #8c7b24;
    aspect-ratio: 16 / 10;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.cap-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cap-icon-circle {
    width: 100px;
    height: 100px;
    background-color: #e2dcc0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 900px) {
    .cap-main-layout { grid-template-columns: 1fr; }
    .cap-heading      { font-size: 32px; }
}

/* ---- Our Setup ---- */
.setup-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Arial', sans-serif;
}

.setup-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}
.setup-main-title {
    font-family: 'Arial Black', sans-serif;
    font-size: 42px;
    font-weight: 900;
    margin: 0;
    white-space: nowrap;
    color: var(--dark);
}
.setup-gold-line {
    flex-grow: 1;
    height: 2px;
    background-color: #8c7b24;
}

.setup-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px 40px;
}

.setup-image {
    background-color: #a19d8e;
    aspect-ratio: 1 / 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.setup-icon-circle {
    width: 100px;
    height: 100px;
    background-color: #d1ca9e;
    border-radius: 50%;
}

.capsule-header {
    background-color: #8c7b24;
    color: #fff;
    padding: 10px 30px;
    border-radius: 0 25px 25px 0;
    display: inline-block;
    margin: 0 0 20px 0;
    font-size: 22px;
    font-family: 'Arial Black', sans-serif;
    font-weight: 900;
    letter-spacing: .06em;
}

.setup-para {
    color: #948a4c;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gold-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.gold-list li {
    color: #8c7b24;
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: .04em;
}
.gold-list li::before {
    content: "•";
    margin-right: 10px;
    font-size: 16px;
}

/* Circular diagram */
.setup-diagram {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 40px auto 0;
}
.sd-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 10px;
    font-weight: 900;
    color: #fff;
    font-family: 'Arial Black', sans-serif;
    background-color: #b9a84d;
}
.sd-central {
    width: 110px;
    height: 110px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #8c7b24;
    z-index: 2;
    font-size: 11px;
}
.sd-outer { width: 76px; height: 76px; }
.sd-top         { top: 0;    left: 50%;  transform: translateX(-50%); }
.sd-right       { top: 50%;  right: 0;   transform: translateY(-50%); }
.sd-left        { top: 50%;  left: 0;    transform: translateY(-50%); }
.sd-bottom-right { bottom: 0; right: 18px; }
.sd-bottom-left  { bottom: 0; left: 18px; }

@media (max-width: 992px) {
    .setup-grid         { grid-template-columns: 1fr; }
    .capsule-header     { border-radius: 25px; }
    .setup-main-title   { font-size: 28px; }
    .setup-diagram      { width: 260px; height: 260px; }
}

/* ---- Machinery Section ---- */
.machinery-section {
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Arial', sans-serif;
}

.machinery-section .container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.image-box {
    flex: 1;
    aspect-ratio: 1.1 / 1;
    overflow: hidden;
    position: relative;
}

.machinery-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.machinery-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.machinery-slides img {
    min-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.machinery-dots {
    display: none;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
    z-index: 2;
}

.m-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.m-dot.active {
    background-color: #B0A469;
}

.content-box {
    flex: 1;
}

.header-capsule {
    background-color: #8c7b24;
    display: inline-block;
    padding: 12px 60px 12px 30px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    width: 100%;
    margin-bottom: 25px;
}

.header-capsule h2 {
    color: white;
    margin: 0;
    font-size: 28px;
    letter-spacing: 1px;
    font-family: 'Arial Black', sans-serif;
}

.description {
    color: #948a4c;
    font-size: 15px;
    line-height: 1.5;
    /* margin-bottom: 25px; */
    padding-right: 20px;
}

.machinery-list {
    list-style: none;
    padding: 0;
}

.machinery-list li {
    color: #8c7b24;
    font-weight: 900;
    font-size: 14px;
    /* margin-bottom: 15px; */
    display: flex;
    align-items: center;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: .04em;
}

.machinery-list li::before {
    content: "•";
    margin-right: 12px;
    font-size: 20px;
}

@media (max-width: 992px) {
    .machinery-section .container {
        flex-direction: column;
        gap: 30px;
    }
    .image-box {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
    .content-box { width: 100%; }
    .header-capsule { border-radius: 40px; }
    .machinery-dots { display: flex; }
}

/* ---- Timeline ---- */
.timeline-section { padding: 90px 0; background: var(--off-white); }
.timeline-header { text-align: center; margin-bottom: 4rem; }

.timeline {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--gold-light), rgba(191,170,81,.1));
    transform: translateX(-50%);
}
.timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: start;
    gap: 0;
    margin-bottom: 3.5rem;
    position: relative;
}
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-year    { grid-column: 2; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-empty   { grid-column: 1; }

.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-year    { grid-column: 2; }
.timeline-item:nth-child(odd) .timeline-empty   { grid-column: 3; }

.timeline-year {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: .2rem;
}
.timeline-dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--off-white);
    box-shadow: 0 0 0 2px var(--gold);
    flex-shrink: 0;
}
.timeline-year-label {
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--gold);
    background: var(--off-white);
    padding: .2rem .4rem;
    margin-top: .3rem;
    white-space: nowrap;
}

.timeline-content {
    padding: 0 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .6s ease, transform .6s ease;
}
.timeline-item:nth-child(even) .timeline-content {
    transform: translateX(20px);
}
.timeline-content.visible {
    opacity: 1;
    transform: translateX(0);
}
.timeline-card {
    background: var(--white);
    border: 1px solid rgba(140,119,28,.12);
    padding: 1.5rem;
    position: relative;
}
.timeline-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--gold);
}
.timeline-item:nth-child(odd) .timeline-card::before {
    left: auto; right: 0;
}
.timeline-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--dark);
    margin-bottom: .4rem;
}
.timeline-card p {
    font-size: .83rem;
    color: #666;
    line-height: 1.7;
}

/* ---- Lemarch Advantage ---- */
.advantage-section { padding: 90px 0; background: var(--dark-soft); }
.advantage-header { text-align: center; margin-bottom: 3.5rem; }
.advantage-header .section-heading { color: var(--white); }
.advantage-header .section-tag     { color: var(--gold-light); }
.advantage-header .section-tag::before { background: var(--gold-light); }

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.advantage-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(191,170,81,.15);
    padding: 2.5rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: border-color .35s ease, background .35s ease;
}
.advantage-card:hover {
    background: rgba(140,119,28,.1);
    border-color: rgba(191,170,81,.4);
}
.advantage-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width .45s ease;
}
.advantage-card:hover::after { width: 100%; }
.advantage-icon {
    width: 60px; height: 60px;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background .35s ease;
}
.advantage-card:hover .advantage-icon { background: var(--gold); }
.advantage-icon i {
    font-size: 1.4rem;
    color: var(--gold-light);
    transition: color .35s ease;
}
.advantage-card:hover .advantage-icon i { color: var(--white); }
.advantage-title {
    font-family: 'Poppins', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: .85rem;
}
.advantage-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.advantage-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    line-height: 1.6;
}
.advantage-list li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: .5rem;
}

/* ---- Product Categories ---- */
.prod-cat-section { padding: 90px 0; background: var(--cream); }
.prod-cat-header  { text-align: center; margin-bottom: 3.5rem; }
.prod-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.prod-cat-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(140,119,28,.12);
}
.prod-cat-img {
    height: 360px;
    position: relative;
    overflow: hidden;
}
.prod-cat-bg {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.prod-cat-bg i { font-size: 6rem; transition: transform .6s ease; }
.prod-cat-card:hover .prod-cat-bg { transform: scale(1.08) rotate(2deg); }
.prod-cat-card:hover .prod-cat-bg i { transform: rotate(-4deg); }

.prod-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.82) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 2rem;
}
.prod-cat-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: .35rem;
}
.prod-cat-sub {
    font-size: .8rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 1rem;
}
.prod-cat-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-light);
    transition: gap .3s ease;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
}
.prod-cat-card:hover .prod-cat-link { opacity: 1; transform: translateY(0); }

/* ---- Capabilities ---- */
.cap-section { padding: 90px 0; background: var(--white); }
.cap-header   { text-align: center; margin-bottom: 3.5rem; }
.cap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.cap-card {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid rgba(140,119,28,.1);
    background: var(--cream);
    transition: var(--trans);
    cursor: default;
}
.cap-card:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-g);
}
.cap-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(140,119,28,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .9rem;
    transition: background .35s ease;
}
.cap-card:hover .cap-icon { background: rgba(255,255,255,.2); }
.cap-icon i {
    font-size: 1.3rem;
    color: var(--gold);
    transition: color .35s ease;
}
.cap-card:hover .cap-icon i { color: var(--white); }
.cap-label {
    font-family: 'Poppins', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--dark);
    transition: color .35s ease;
}
.cap-card:hover .cap-label { color: var(--white); }

/* ---- Our Setup (Machinery) ---- */
.setup-section { padding: 90px 0; background: var(--off-white); }
.setup-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.setup-text .section-sub { margin-top: .5rem; }
.setup-intro {
    font-size: .95rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 2rem;
}
.machinery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
    margin-top: 2rem;
}
.machine-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem;
    background: var(--white);
    border: 1px solid rgba(140,119,28,.1);
    transition: var(--trans);
}
.machine-item:hover { border-color: var(--gold); transform: translateX(4px); }
.machine-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.machine-name {
    font-family: 'Poppins', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    color: var(--dark);
}
.machine-type {
    font-size: .72rem;
    color: var(--grey);
}

/* Setup stats sidebar */
.setup-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.setup-stat {
    background: var(--white);
    border: 1px solid rgba(140,119,28,.12);
    padding: 1.5rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.setup-stat::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.setup-stat:hover::after { transform: scaleX(1); }
.setup-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .3rem;
}
.setup-stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--grey);
}
.setup-full-width {
    margin-top: 1.25rem;
    background: var(--dark-soft);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.setup-full-icon {
    width: 52px; height: 52px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.3rem;
}
.setup-full-text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--white);
    margin-bottom: .25rem;
}
.setup-full-text p { font-size: .82rem; color: rgba(255,255,255,.5); }

/* ---- Workflow Diagram ---- */
.workflow-section { padding: 90px 0; background: var(--cream); overflow: hidden; }
.workflow-header  { text-align: center; margin-bottom: 4rem; }

.workflow-ring-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}
.workflow-ring {
    position: relative;
    width: 420px; height: 420px;
    flex-shrink: 0;
}
.workflow-center-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 130px; height: 130px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-align: center;
    z-index: 3;
    box-shadow: 0 0 0 10px rgba(140,119,28,.12), 0 0 0 20px rgba(140,119,28,.06);
}
.workflow-center-circle i { font-size: 1.6rem; margin-bottom: .3rem; }
/* Rotating dashed ring */
.workflow-ring-track {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(140,119,28,.3);
    animation: spin-slow 30s linear infinite;
}

.workflow-node {
    position: absolute;
    width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: default;
}
/* Top */
.workflow-node:nth-child(3)  { top: 0;   left: 50%; transform: translateX(-50%) translateY(-10px); }
/* Right */
.workflow-node:nth-child(4)  { top: 50%; right: 0;  transform: translateY(-50%) translateX(10px); }
/* Bottom */
.workflow-node:nth-child(5)  { bottom: 0; left: 50%; transform: translateX(-50%) translateY(10px); }
/* Left */
.workflow-node:nth-child(6)  { top: 50%; left: 0;  transform: translateY(-50%) translateX(-10px); }

.workflow-node-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .6rem;
    transition: background .35s ease, transform .35s ease;
    box-shadow: var(--shadow-s);
}
.workflow-node:hover .workflow-node-icon {
    background: var(--gold);
    transform: scale(1.1);
}
.workflow-node-icon i {
    font-size: 1.3rem;
    color: var(--gold);
    transition: color .35s ease;
}
.workflow-node:hover .workflow-node-icon i { color: var(--white); }
.workflow-node-label {
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: .2rem;
}
.workflow-node-sub {
    font-size: .68rem;
    color: var(--grey);
    line-height: 1.4;
}

.workflow-details {
    max-width: 380px;
}
.workflow-detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(140,119,28,.12);
}
.workflow-detail-item:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
.workflow-step-badge {
    width: 44px; height: 44px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
}
.workflow-detail-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--dark);
    margin-bottom: .3rem;
}
.workflow-detail-text p {
    font-size: .8rem;
    color: #666;
    line-height: 1.7;
}

/* ---- Quality Check ---- */
.quality-section { padding: 90px 0; background: var(--white); }
.quality-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.quality-text .section-sub { margin-top: .5rem; margin-bottom: 1.75rem; max-width: 100%; }
.quality-para {
    font-size: .94rem;
    color: #444;
    line-height: 1.95;
    margin-bottom: 1.25rem;
}
.quality-checks {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 1.5rem;
}
.quality-check-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .85rem 1.25rem;
    background: var(--cream);
    border-left: 3px solid var(--gold);
    transition: var(--trans);
}
.quality-check-item:hover { background: rgba(140,119,28,.08); transform: translateX(5px); }
.quality-check-item i { color: var(--gold); font-size: .95rem; }
.quality-check-item span {
    font-family: 'Poppins', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    color: var(--dark);
}
.quality-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.quality-stat-box {
    background: var(--cream);
    border: 1px solid rgba(140,119,28,.15);
    padding: 2rem 1.25rem;
    text-align: center;
    transition: var(--trans);
}
.quality-stat-box:hover { background: var(--gold); border-color: var(--gold); }
.quality-stat-box:nth-child(1) { grid-column: span 2; background: var(--dark-soft); border-color: transparent; }
.quality-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: .3rem;
}
.quality-stat-box:hover .quality-stat-num { color: var(--white); }
.quality-stat-box:nth-child(1) .quality-stat-num { font-size: 3rem; }
.quality-stat-lbl {
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--grey);
    transition: color .35s ease;
}
.quality-stat-box:hover .quality-stat-lbl { color: rgba(255,255,255,.8); }
.quality-stat-box:nth-child(1) .quality-stat-lbl { color: rgba(255,255,255,.5); }

/* ---- CTA Banner ---- */
.cta-section {
    padding: 90px 0;
    background: var(--dark-soft);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(140,119,28,.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(191,170,81,.1) 0%, transparent 55%);
}
.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}
.cta-tag::before, .cta-tag::after {
    content: '';
    width: 26px; height: 1px;
    background: var(--gold-light);
    flex-shrink: 0;
}
.cta-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.cta-heading span { color: var(--gold-light); }
.cta-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.5);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .9rem 2rem;
    border: 1.5px solid rgba(191,170,81,.4);
    color: rgba(255,255,255,.7);
    font-family: 'Poppins', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: var(--trans);
}
.btn-gold-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ---- QC + Workflow Grid Section ---- */
.wf-qc-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.wf-qc-section .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.wf-qc-section .capsule-header {
    background-color: var(--olive-brand);
    color: white;
    padding: 12px 40px;
    border-radius: 40px 0 0 40px;
    display: inline-block;
    margin-bottom: 25px;
    width: 100%;
    box-sizing: border-box;
}

.wf-qc-section .capsule-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
}

.wf-qc-section .text-content p {
    color: var(--text-gold);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.wf-qc-section .image-placeholder {
    background-color: var(--bg-gray);
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.wf-qc-section .icon-circle {
    width: 100px;
    height: 100px;
    background-color: #d1ca9e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wf-qc-section .diagram-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 40px auto;
    flex-shrink: 0;
}

/* Ring track — 300px circle centered in the 380px wrapper */
.wf-qc-section .wf-ring-track {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 40px;
    left: 40px;
    border-radius: 50%;
    border: 2px dashed rgba(140,119,28,.45);
    animation: spin-slow 18s linear infinite;
    z-index: 1;
}
/* 3 arrowheads evenly at 0°, 120°, 240° — rotate with the ring */
.wf-qc-section .wf-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-top:    5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left:   9px solid rgba(140,119,28,.9);
}
/* 0° — top of ring, tangent points east */
.wf-qc-section .wf-arrow--1 {
    top:  -5px;
    left: 145px;
    transform: rotate(0deg);
}
/* 120° — lower-right, x=275 y=220, tangent rotate 120deg */
.wf-qc-section .wf-arrow--2 {
    top:  220px;
    left: 275px;
    transform: rotate(120deg);
}
/* 240° — lower-left, x=15 y=220, tangent rotate 240deg */
.wf-qc-section .wf-arrow--3 {
    top:  220px;
    left:  15px;
    transform: rotate(240deg);
}

/* ---- Connectors: central circle → each satellite ---- */
/*
  All connectors share: left:50% top:50%, transform-origin:0 50%
  transform: rotate(θ) translateX(60px)  → starts at central edge (r=60px)
  width: 50px  → ends just before satellite edge (60+50=110px, satellite r=40px → gap at 110)
  Angles (from east, clockwise in screen coords):
    top          -90°
    upper-right  -18°
    lower-right   54°
    lower-left   126°
    upper-left   198°
*/
.wf-qc-section .wf-connector {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 2px;
    margin-top: -1px;
    background: linear-gradient(to right, rgba(140,119,28,.25), rgba(140,119,28,.7));
    transform-origin: 0 50%;
    z-index: 2;
}
.wf-qc-section .wf-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top:    4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left:   7px solid rgba(140,119,28,.85);
}
.wf-qc-section .wf-connector--1 { transform: rotate(-90deg)  translateX(60px); }
.wf-qc-section .wf-connector--2 { transform: rotate(-18deg)  translateX(60px); }
.wf-qc-section .wf-connector--3 { transform: rotate(54deg)   translateX(60px); }
.wf-qc-section .wf-connector--4 { transform: rotate(126deg)  translateX(60px); }
.wf-qc-section .wf-connector--5 { transform: rotate(198deg)  translateX(60px); }

/* All circles */
.wf-qc-section .circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background-color: var(--diagram-gold);
    padding: 8px;
    line-height: 1.3;
    letter-spacing: .03em;
    z-index: 3;
}

/* Satellite circles — 80px */
.wf-qc-section .circle:not(.central) {
    width: 80px;
    height: 80px;
    box-shadow: 0 4px 14px rgba(140,119,28,.35);
    transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.wf-qc-section .circle:not(.central):hover {
    transform: scale(1.18);
    background-color: var(--olive-brand);
    box-shadow: 0 8px 24px rgba(140,119,28,.65);
    z-index: 10;
}

/* Central circle */
.wf-qc-section .central {
    width: 120px;
    height: 120px;
    background-color: var(--olive-brand);
    top:  50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    font-size: 10px;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(140,119,28,.5);
    transition: transform .3s ease, box-shadow .3s ease;
}
.wf-qc-section .central:hover {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 10px 30px rgba(140,119,28,.75);
}

/*
  5 satellites evenly at 72° intervals (radius 150px from centre 190,190)
  Centre of wrapper: (190, 190)   satellite half-size: 40px
  pos  θ      sin θ    cos θ    cx       cy       left     top
  ─────────────────────────────────────────────────────────────
  top   0°    0.000    1.000   190.0    40.0     150px    0px
  right 72°   0.951    0.309   332.7   143.6     293px   104px
  br   144°   0.588   -0.809   278.2   311.4     238px   271px
  bl   216°  -0.588   -0.809   101.8   311.4      62px   271px
  left 288°  -0.951    0.309    47.3   143.6       7px   104px
*/
.wf-qc-section .pos-top          { top:   0px; left: 150px; }
.wf-qc-section .pos-right        { top: 104px; left: 293px; }
.wf-qc-section .pos-bottom-right { top: 271px; left: 238px; }
.wf-qc-section .pos-bottom-left  { top: 271px; left:  62px; }
.wf-qc-section .pos-left         { top: 104px; left:   7px; }

@media (max-width: 900px) {
    .wf-qc-section .grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .wf-qc-section .diagram-wrapper {
        transform: scale(0.75);
        transform-origin: top center;
        margin-bottom: -40px;
    }
    .wf-qc-section .image-placeholder { aspect-ratio: 16 / 9; }
}

/* =====================================================
   ABOUT PAGE RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
    .advantage-grid { grid-template-columns: repeat(2, 1fr); }
    .cap-grid        { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
    .who-section .container { flex-direction: column; }
    .who-image-side          { width: 100%; }
    .quality-inner   { grid-template-columns: 1fr; }
    .quality-visual  { grid-template-columns: repeat(2, 1fr); }
    .setup-inner     { grid-template-columns: 1fr; }
    .prod-cat-grid   { grid-template-columns: repeat(2, 1fr); }
    .workflow-ring-wrapper { gap: 3rem; }
}
@media (max-width: 768px) {
    .page-hero::after { display: none; }
    .advantage-grid  { grid-template-columns: 1fr; }
    .cap-grid        { grid-template-columns: repeat(2, 1fr); }
    .prod-cat-grid   { grid-template-columns: 1fr; }
    .timeline::before { left: 20px; }
    .timeline-item   { grid-template-columns: 40px 1fr; }
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content { grid-column: 2; text-align: left; }
    .timeline-item:nth-child(odd) .timeline-card::before { left: 0; right: auto; }
    .timeline-item .timeline-empty { display: none; }
    .timeline-item:nth-child(even) .timeline-year { grid-column: 1; }
    .workflow-ring   { width: 300px; height: 300px; }
    .workflow-node   { width: 80px; }
    .workflow-center-circle { width: 90px; height: 90px; font-size: .65rem; }
    .machinery-grid  { grid-template-columns: 1fr; }
    .who-highlights  { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .cap-grid        { grid-template-columns: repeat(2, 1fr); }
    .setup-stats     { grid-template-columns: 1fr; }
    .quality-visual  { grid-template-columns: 1fr; }
    .quality-stat-box:nth-child(1) { grid-column: span 1; }
}
}

/* =====================================================
   ABOUT PAGE — ADDITIONAL RESPONSIVE FIXES
===================================================== */

/* ---- Page Hero ---- */
@media (max-width: 640px) {
    .page-hero-inner { padding: 40px 0; }
    .page-hero-desc  { font-size: .9rem; }
}
@media (max-width: 480px) {
    .page-hero       { min-height: 44vh; }
    .page-hero-inner { padding: 28px 0; }
}

/* ---- Who We Are ---- */
@media (max-width: 960px) {
    .who-section { padding: 70px 0; }
}
@media (max-width: 768px) {
    .who-section { padding: 55px 0; }
    .who-section .container { gap: 30px; }
    .who-info-block { margin-bottom: 30px; }
}
@media (max-width: 480px) {
    .who-section    { padding: 45px 0; }
    .who-heading    { font-size: 26px; letter-spacing: 0; }
    .who-para       { font-size: 15px; }
    .who-info-block { margin-bottom: 22px; }
}

/* ---- Journey Banner ---- */
@media (max-width: 480px) {
    .journey-banner-section { min-height: 300px; }
    .jb-marquee-content     { font-size: 26px; }
    .jb-header-text h2      { font-size: 18px; }
    .jb-header-text         { top: 14px; right: 14px; }
    .jb-model-image         { height: 80%; }
}
@media (max-width: 380px) {
    .jb-marquee-content { font-size: 20px; }
    .jb-header-text h2  { font-size: 14px; }
}

/* ---- Product Range ---- */
@media (max-width: 480px) {
    .product-range { margin: 30px auto; }
    .range-title   { font-size: 20px; }
    .range-header  { gap: 12px; margin-bottom: 24px; }
}

/* ---- Capabilities ---- */
@media (max-width: 640px) {
    .capabilities-section { margin: 40px auto; }
    .cap-heading           { font-size: 26px; }
    .cap-text-content h3   { font-size: 18px; }
}
@media (max-width: 480px) {
    .cap-heading           { font-size: 22px; }
    .cap-text-content h3   { font-size: 16px; }
    .capability-item       { gap: 12px; padding: 14px 0; }
    .cap-header-row        { margin-bottom: 28px; }
}

/* ---- Our Setup / Machinery ---- */
@media (max-width: 768px) {
    .setup-container        { margin: 40px auto; padding: 0 16px; }
    .setup-main-title       { font-size: 28px; }
    .setup-header           { gap: 16px; margin-bottom: 30px; }
    .machinery-section      { padding: 40px 16px; }
    .machinery-section .container { gap: 28px; }
    .header-capsule h2      { font-size: 22px; }
    .description            { font-size: 14px; }
}
@media (max-width: 640px) {
    .setup-main-title       { font-size: 24px; }
    .machinery-section      { padding: 32px 14px; }
    .header-capsule h2      { font-size: 20px; }
    .description            { font-size: 13px; }
    .machinery-list li      { font-size: 13px; }
}
@media (max-width: 480px) {
    .setup-main-title       { font-size: 20px; }
    .setup-header           { gap: 12px; margin-bottom: 24px; }
    .description            { padding-right: 0; font-size: 13px; }
    .machinery-list li      { font-size: 12px; }
    .header-capsule         { padding: 10px 20px; border-radius: 30px; }
    .machinery-section      { padding: 24px 12px; }
    .machinery-section .container { gap: 20px; }
}
@media (max-width: 380px) {
    .setup-main-title       { font-size: 18px; }
    .header-capsule h2      { font-size: 17px; }
    .description            { font-size: 12px; }
    .machinery-list li      { font-size: 12px; }
    .m-dot                  { width: 6px; height: 6px; }
}

/* ---- QC / Workflow diagram ---- */
@media (max-width: 1024px) {
    .wf-qc-section                      { padding: 20px 16px; }
    .wf-qc-section .grid-container      { gap: 40px; }
}
@media (max-width: 768px) {
    .wf-qc-section                      { margin: 30px auto; padding: 16px; }
    .wf-qc-section .grid-container      { gap: 24px; }
    .wf-qc-section .capsule-header h2   { font-size: 20px; }
    .wf-qc-section .text-content p      { font-size: 13.5px; }
    .wf-qc-section .diagram-wrapper     { transform: scale(0.72); transform-origin: top center; margin-bottom: -86px; }
}
@media (max-width: 640px) {
    .wf-qc-section                      { overflow-x: hidden; padding: 14px; }
    .wf-qc-section .diagram-wrapper     { transform: scale(0.62); transform-origin: top center; margin-bottom: -120px; }
    .wf-qc-section .capsule-header h2   { font-size: 18px; }
    .wf-qc-section .text-content p      { font-size: 13px; }
}
@media (max-width: 480px) {
    .wf-qc-section                      { margin: 20px auto; padding: 12px; }
    .wf-qc-section .diagram-wrapper     { transform: scale(0.52); transform-origin: top center; margin-bottom: -162px; }
    .wf-qc-section .capsule-header      { padding: 10px 24px; }
    .wf-qc-section .capsule-header h2   { font-size: 16px; }
    .wf-qc-section .text-content p      { font-size: 12px; }
    .wf-qc-section .grid-container      { gap: 20px; }
}
@media (max-width: 380px) {
    .wf-qc-section .diagram-wrapper     { transform: scale(0.44); transform-origin: top center; margin-bottom: -200px; }
    .wf-qc-section .capsule-header h2   { font-size: 15px; }
}

/* =====================================================
   PRODUCTS PAGE
===================================================== */

.products-page { padding-bottom: 90px; background: var(--off-white); }

/* ---- Filter Bar ---- */
.filter-bar {
    background: var(--white);
    border-bottom: 1px solid rgba(140,119,28,.1);
    position: sticky;
    top: 60px;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.filter-bar-inner {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

/* Category Tabs */
.cat-tabs {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(140,119,28,.08);
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
}
.cat-tabs::-webkit-scrollbar { display: none; }

.cat-tab {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 1.1rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--grey);
    cursor: pointer;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
    transition: color .3s ease, border-color .3s ease;
    flex-shrink: 0;
}
.cat-tab i { font-size: .9rem; }
.cat-tab:hover { color: var(--dark); }
.cat-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.cat-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: rgba(140,119,28,.1);
    color: var(--gold);
    font-size: .62rem;
    font-weight: 700;
    border-radius: 20px;
    transition: background .3s ease, color .3s ease;
}
.cat-tab.active .cat-tab-count { background: var(--gold); color: var(--white); }

/* Subcategory + Controls Row */
.subcat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .8rem 0;
    flex-wrap: wrap;
}
.subcat-pills {
    display: flex;
    align-items: center;
    gap: .45rem;
    flex-wrap: wrap;
}
.subcat-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .95rem;
    font-family: 'Poppins', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #555;
    background: var(--cream);
    border: 1px solid rgba(140,119,28,.15);
    cursor: pointer;
    transition: all .25s ease;
    white-space: nowrap;
}
.subcat-pill:hover { border-color: var(--gold); color: var(--gold); }
.subcat-pill.active { background: var(--gold); border-color: var(--gold); color: var(--white); }
.subcat-pill.pill-hidden { display: none; }

.filter-controls {
    display: flex;
    align-items: center;
    gap: .85rem;
    flex-shrink: 0;
}
.product-count-text {
    font-family: 'Poppins', sans-serif;
    font-size: .74rem;
    font-weight: 600;
    color: var(--grey);
    white-space: nowrap;
}
.product-count-text strong { color: var(--gold); }

.sort-select {
    appearance: none;
    -webkit-appearance: none;
    padding: .4rem 2rem .4rem .85rem;
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--dark);
    background-color: var(--cream);
    border: 1px solid rgba(140,119,28,.2);
    cursor: pointer;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='5'%3E%3Cpath d='M0 0l5 5 5-5z' fill='%238C771C'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .65rem center;
}
.sort-select:focus { border-color: var(--gold); }

.view-toggle { display: flex; gap: .3rem; }
.view-btn {
    width: 31px; height: 31px;
    border: 1px solid rgba(140,119,28,.2);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--grey);
    font-size: .72rem;
    transition: all .25s ease;
}
.view-btn.active, .view-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ---- Layout ---- */
.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2.5rem;
    width: 90%;
    max-width: 1300px;
    margin: 2.5rem auto 0;
    align-items: start;
}

/* ---- Sidebar ---- */
.filter-sidebar {
    background: var(--white);
    border: 1px solid rgba(140,119,28,.1);
    position: sticky;
    top: 168px;
}
.sidebar-header {
    padding: 1rem 1.4rem;
    border-bottom: 1px solid rgba(140,119,28,.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sidebar-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--dark);
}
.sidebar-clear {
    font-family: 'Poppins', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gold);
    cursor: pointer;
    transition: opacity .25s ease;
}
.sidebar-clear:hover { opacity: .65; }

.sidebar-section { border-bottom: 1px solid rgba(140,119,28,.07); }
.sidebar-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.4rem;
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dark);
    cursor: pointer;
    user-select: none;
}
.sidebar-section-title i { color: var(--gold); font-size: .62rem; transition: transform .25s ease; }
.sidebar-section.collapsed .sidebar-section-title i { transform: rotate(-90deg); }
.sidebar-section-body { padding: .25rem 1.4rem 1.1rem; }
.sidebar-section.collapsed .sidebar-section-body { display: none; }

.sidebar-check-list { display: flex; flex-direction: column; gap: .55rem; }
.sidebar-check-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    cursor: pointer;
}
.sidebar-check-item input[type="checkbox"] {
    width: 14px; height: 14px;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
}
.sidebar-check-item label {
    font-size: .78rem;
    color: #555;
    cursor: pointer;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color .2s ease;
}
.sidebar-check-item:hover label { color: var(--gold); }
.check-count {
    font-size: .65rem;
    color: var(--grey);
    background: var(--cream);
    padding: .1rem .42rem;
    border-radius: 20px;
    flex-shrink: 0;
}

.color-swatches { display: flex; flex-wrap: wrap; gap: .5rem; padding: .1rem 0; }
.color-swatch {
    width: 24px; height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .2s ease, transform .2s ease;
    position: relative;
    outline: none;
}
.color-swatch:hover, .color-swatch.active {
    transform: scale(1.2);
    border-color: var(--gold);
}
.color-swatch.active::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    border: 2px solid var(--white);
}

/* ---- Product Grid ---- */
.products-main { min-width: 0; }

.product-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.product-listing-grid.view-4col  { grid-template-columns: repeat(4, 1fr); }
.product-listing-grid.view-list  { grid-template-columns: 1fr; }

/* Transition on filter */
.product-listing-grid { transition: opacity .25s ease; }
.product-listing-grid.filtering { opacity: 0; pointer-events: none; }

/* Product Card */
.pl-card {
    background: var(--white);
    border: 1px solid rgba(140,119,28,.1);
    overflow: hidden;
    position: relative;
    transition: box-shadow .4s ease, transform .4s ease, border-color .3s ease;
    display: flex;
    flex-direction: column;
}
.pl-card:hover { box-shadow: 0 18px 50px rgba(0,0,0,.1); transform: translateY(-5px); border-color: rgba(140,119,28,.3); }
.pl-card.is-hidden { display: none !important; }

/* Image */
.pl-card-img {
    height: 270px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.pl-card-img-bg {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.pl-card:hover .pl-card-img-bg { transform: scale(1.1); }
.pl-card-img-bg i { font-size: 5rem; opacity: .18; transition: transform .55s ease; }
.pl-card:hover .pl-card-img-bg i { transform: rotate(5deg); }

/* Badges */
.pl-badge-wrap {
    position: absolute;
    top: .85rem; left: .85rem;
    display: flex; flex-direction: column;
    gap: .35rem; z-index: 2;
}
.pl-badge {
    display: inline-block;
    padding: .22rem .65rem;
    font-family: 'Poppins', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
}
.pl-badge.new     { background: var(--gold); }
.pl-badge.popular { background: #1a6b41; }
.pl-badge.export  { background: #1a4f7a; }

/* Hover overlay actions */
.pl-actions {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.72) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: .5rem;
    padding: 1rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
}
.pl-card:hover .pl-actions { opacity: 1; transform: translateY(0); }

.pl-action-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem 1.1rem;
    background: var(--gold);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background .25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.pl-action-btn:hover { background: var(--gold-light); }
.pl-action-icon {
    width: 32px; height: 32px;
    background: rgba(255,255,255,.15);
    border: none;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: .78rem;
    cursor: pointer;
    transition: background .25s ease;
    flex-shrink: 0;
}
.pl-action-icon:hover { background: rgba(255,255,255,.3); }

/* Card Body */
.pl-card-body {
    padding: 1rem 1.2rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 2px solid var(--gold);
}
.pl-cat-tag {
    font-family: 'Poppins', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .3rem;
}
.pl-name {
    font-family: 'Poppins', sans-serif;
    font-size: .92rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: .35rem;
}
.pl-desc {
    font-size: .77rem;
    color: #777;
    line-height: 1.6;
    flex: 1;
    margin-bottom: .85rem;
}
.pl-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: .75rem;
    border-top: 1px solid rgba(140,119,28,.1);
}
.pl-moq {
    font-family: 'Poppins', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    color: var(--grey);
    letter-spacing: .06em;
    text-transform: uppercase;
}
.pl-moq strong { color: var(--gold); }
.pl-arrow {
    width: 28px; height: 28px;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: .7rem;
    cursor: pointer;
    transition: all .25s ease;
}
.pl-card:hover .pl-arrow { background: var(--gold); color: var(--white); }

/* List view */
.view-list .pl-card { flex-direction: row; max-height: 155px; }
.view-list .pl-card-img { width: 190px; height: 100%; flex-shrink: 0; }
.view-list .pl-card-img { height: 155px; }
.view-list .pl-card-img-bg i { font-size: 3rem; }
.view-list .pl-card-body { flex-direction: row; flex-wrap: wrap; align-content: center; padding: 1rem 1.25rem; gap: .2rem; border-top: none; border-left: 2px solid var(--gold); }
.view-list .pl-cat-tag { width: 100%; }
.view-list .pl-name { width: 100%; font-size: .88rem; margin-bottom: .2rem; }
.view-list .pl-desc { display: none; }
.view-list .pl-footer { padding-top: 0; border: none; width: 100%; }
.view-list .pl-actions {
    position: static; background: none; opacity: 1; transform: none;
    flex-direction: column; padding: 1rem; align-self: stretch;
    justify-content: center; margin-left: auto; flex-shrink: 0; gap: .35rem;
}
.view-list .pl-action-btn { font-size: .65rem; padding: .45rem .9rem; }
.view-list .pl-action-icon { background: var(--cream); color: var(--gold); border: 1px solid rgba(140,119,28,.2); }

/* No results */
.no-results {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem;
    grid-column: 1 / -1;
}
.no-results.show { display: flex; }
.no-results i { font-size: 3rem; color: rgba(140,119,28,.2); margin-bottom: 1.25rem; }
.no-results h3 {
    font-family: 'Poppins', sans-serif;
    font-size: .95rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--dark); margin-bottom: .4rem;
}
.no-results p { font-size: .82rem; color: var(--grey); }

/* Load more */
.load-more-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}
.load-progress-row {
    display: flex;
    align-items: center;
    gap: .85rem;
    width: 100%;
    max-width: 320px;
}
.load-bar {
    flex: 1;
    height: 3px;
    background: rgba(140,119,28,.15);
    overflow: hidden;
}
.load-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width .6s ease;
}
.load-bar-text {
    font-family: 'Poppins', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    color: var(--grey);
    white-space: nowrap;
    letter-spacing: .06em;
}

/* ---- Product Page Responsive ---- */
@media (max-width: 1100px) {
    .product-listing-grid { grid-template-columns: repeat(2, 1fr); }
    .product-listing-grid.view-4col { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .products-layout { grid-template-columns: 1fr; }
    .filter-sidebar { display: none; position: static; }
}
@media (max-width: 640px) {
    .filter-controls { gap: .5rem; }
    .sort-select { display: none; }
    .product-listing-grid,
    .product-listing-grid.view-4col { grid-template-columns: repeat(2, 1fr); }
    .view-list .pl-card { flex-direction: column; max-height: none; }
    .view-list .pl-card-img { width: 100%; height: 200px; }
    .view-list .pl-actions { position: absolute; bottom: 0; left: 0; right: 0; flex-direction: row; background: linear-gradient(0deg,rgba(0,0,0,.72),transparent); }
    .view-list .pl-card-body { border-left: none; border-top: 2px solid var(--gold); }
}
@media (max-width: 420px) {
    .product-listing-grid,
    .product-listing-grid.view-4col { grid-template-columns: 1fr; }
}

/* =====================================================
   PRODUCT DETAIL PAGE
===================================================== */

/* ---- Breadcrumb Bar ---- */
.pd-breadcrumb-bar {
    background: var(--dark-soft);
    padding: .75rem 0;
    border-bottom: 1px solid rgba(191,170,81,.12);
    margin-top: var(--nav-h);
}
.pd-breadcrumb {
    width: 90%;
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-wrap: wrap;
}
.pd-breadcrumb a,
.pd-breadcrumb span {
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
    transition: color .25s ease;
}
.pd-breadcrumb a:hover  { color: var(--gold-light); }
.pd-breadcrumb .pd-bc-sep { color: rgba(255,255,255,.2); font-size: .6rem; }
.pd-breadcrumb .pd-bc-current { color: var(--gold-light); }

/* ---- Product Hero (split) ---- */
.pd-hero {
    background: var(--off-white);
    padding: 60px 0 80px;
}
.pd-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    width: 90%;
    max-width: 1260px;
    margin: 0 auto;
}

/* Left: image stack */
.pd-image-col { position: relative; }

.pd-main-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--beige) 0%, #c8b87a 100%);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(140,119,28,.15);
    cursor: zoom-in;
}
.pd-main-image-bg {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .5s ease;
}
.pd-main-image:hover .pd-main-image-bg { transform: scale(1.04); }
.pd-main-image-bg i {
    font-size: 8rem;
    color: rgba(140,119,28,.15);
}
.pd-main-image-label {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: var(--gold);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .28rem .85rem;
}
.pd-zoom-hint {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 34px; height: 34px;
    background: rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .8rem;
    opacity: 0;
    transition: opacity .3s ease;
}
.pd-main-image:hover .pd-zoom-hint { opacity: 1; }

/* Thumbnail strip */
.pd-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .6rem;
    margin-top: .75rem;
}
.pd-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color .25s ease;
    position: relative;
}
.pd-thumb.active  { border-color: var(--gold); }
.pd-thumb:hover   { border-color: var(--gold-light); }
.pd-thumb-bg {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    transition: transform .35s ease;
}
.pd-thumb:hover .pd-thumb-bg { transform: scale(1.08); }
.pd-thumb-bg i { font-size: 1.5rem; opacity: .25; }

/* Right: product info */
.pd-info-col { padding-top: .5rem; }

.pd-category-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Poppins', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
}
.pd-category-tag::before {
    content: '';
    width: 22px; height: 2px;
    background: var(--gold);
}

.pd-product-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.pd-badge-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.pd-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .85rem;
    font-family: 'Poppins', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1px solid;
}
.pd-badge.new     { color: var(--gold);  border-color: var(--gold); background: rgba(140,119,28,.07); }
.pd-badge.popular { color: #1a6b41;      border-color: #1a6b41;     background: rgba(26,107,65,.07); }
.pd-badge.export  { color: #1a4f7a;      border-color: #1a4f7a;     background: rgba(26,79,122,.07); }

.pd-short-desc {
    font-size: .95rem;
    color: #4a4a40;
    line-height: 1.9;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(140,119,28,.12);
}

/* Spec grid */
.pd-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem 1.5rem;
    margin-bottom: 1.75rem;
}
.pd-spec-item { display: flex; flex-direction: column; gap: .15rem; }
.pd-spec-label {
    font-family: 'Poppins', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--grey);
}
.pd-spec-value {
    font-family: 'Poppins', sans-serif;
    font-size: .84rem;
    font-weight: 600;
    color: var(--dark);
}

/* MOQ highlight box */
.pd-moq-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    background: var(--cream);
    border-left: 3px solid var(--gold);
    margin-bottom: 1.75rem;
}
.pd-moq-icon {
    width: 42px; height: 42px;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}
.pd-moq-text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    color: var(--dark);
}
.pd-moq-text span { font-size: .78rem; color: var(--grey); }

/* CTA buttons inline */
.pd-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---- Materials Section ---- */
.pd-materials-section {
    padding: 80px 0;
    background: var(--dark-soft);
    position: relative;
    overflow: hidden;
}
.pd-materials-section::before {
    content: 'MATERIALS';
    position: absolute;
    right: -30px; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Montserrat', sans-serif;
    font-size: 7rem;
    font-weight: 900;
    letter-spacing: .25em;
    color: rgba(255,255,255,.025);
    pointer-events: none;
    white-space: nowrap;
}

.pd-mat-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.pd-mat-header .section-heading { color: var(--white); }
.pd-mat-header .section-tag     { color: var(--gold-light); }
.pd-mat-header .section-tag::before { background: var(--gold-light); }
.pd-mat-header .section-sub { color: rgba(255,255,255,.45); margin: .4rem auto 0; }

/* Material tab buttons */
.mat-tabs {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.mat-tab {
    padding: .7rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(191,170,81,.18);
    cursor: pointer;
    transition: all .3s ease;
}
.mat-tab:hover { color: var(--gold-light); border-color: rgba(191,170,81,.4); }
.mat-tab.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* Material content panels */
.mat-panel { display: none; }
.mat-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.mat-visual {
    position: relative;
}
.mat-img {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(191,170,81,.15);
}
.mat-img i { font-size: 7rem; transition: transform .5s ease; }
.mat-img:hover i { transform: rotate(5deg) scale(1.05); }
.mat-img-label {
    position: absolute;
    bottom: 1rem; left: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255,255,255,.06);
    pointer-events: none;
    white-space: nowrap;
}
.mat-corner-accent {
    position: absolute;
    bottom: -12px; right: -12px;
    width: 80px; height: 80px;
    background: var(--gold);
    opacity: .25;
}

.mat-info .section-tag { color: var(--gold-light); }
.mat-info .section-tag::before { background: var(--gold-light); }
.mat-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--white);
    margin-bottom: .75rem;
}
.mat-info p {
    font-size: .9rem;
    color: rgba(255,255,255,.5);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}
.mat-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
    margin-bottom: 2rem;
}
.mat-feature {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .75rem 1rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(191,170,81,.12);
    transition: border-color .3s ease, background .3s ease;
}
.mat-feature:hover { border-color: rgba(191,170,81,.35); background: rgba(140,119,28,.1); }
.mat-feature i { color: var(--gold-light); font-size: .9rem; flex-shrink: 0; }
.mat-feature span {
    font-family: 'Poppins', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: rgba(255,255,255,.65);
}
.mat-swatch-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}
.mat-swatch-label {
    font-family: 'Poppins', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-right: .5rem;
}
.mat-swatch {
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.15);
    cursor: pointer;
    transition: transform .25s ease, border-color .25s ease;
}
.mat-swatch:hover { transform: scale(1.25); border-color: var(--gold-light); }

/* ---- Description Section ---- */
.pd-desc-section {
    padding: 90px 0;
    background: var(--white);
}
.pd-desc-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 5rem;
    align-items: start;
    width: 90%;
    max-width: 1260px;
    margin: 0 auto;
}

.pd-desc-text .section-sub { margin-top: .5rem; max-width: 100%; }
.pd-desc-body {
    margin-top: 1.5rem;
}
.pd-desc-body p {
    font-size: .95rem;
    color: #444;
    line-height: 2;
    margin-bottom: 1.25rem;
}
.pd-desc-body p:last-child { margin-bottom: 0; }

/* Feature pillars */
.pd-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.pd-pillar {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.25rem 1.4rem;
    background: var(--cream);
    border: 1px solid rgba(140,119,28,.1);
    transition: var(--trans);
}
.pd-pillar:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}
.pd-pillar-icon {
    width: 46px; height: 46px;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
    transition: background .3s ease;
}
.pd-pillar:hover .pd-pillar-icon { background: var(--gold-light); }
.pd-pillar-text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--dark);
    margin-bottom: .25rem;
}
.pd-pillar-text p { font-size: .8rem; color: #666; line-height: 1.65; margin: 0; }

/* ---- Gallery Grid ---- */
.pd-gallery-section {
    padding: 80px 0;
    background: var(--off-white);
}
.pd-gallery-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 90%;
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
}

.pd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: .85rem;
    width: 90%;
    max-width: 1260px;
    margin: 0 auto;
}

/* Mosaic layout */
.pd-gal-item { overflow: hidden; position: relative; cursor: pointer; }
.pd-gal-item:nth-child(1) { grid-column: span 6; grid-row: span 2; }
.pd-gal-item:nth-child(2) { grid-column: span 3; grid-row: span 1; }
.pd-gal-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.pd-gal-item:nth-child(4) { grid-column: span 3; grid-row: span 1; }
.pd-gal-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }
.pd-gal-item:nth-child(6) { grid-column: span 4; grid-row: span 1; }
.pd-gal-item:nth-child(7) { grid-column: span 4; grid-row: span 1; }
.pd-gal-item:nth-child(8) { grid-column: span 4; grid-row: span 1; }

.pd-gal-bg {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.pd-gal-item:nth-child(1) .pd-gal-bg { min-height: 420px; }
.pd-gal-item:hover .pd-gal-bg { transform: scale(1.07); }

.pd-gal-bg i { font-size: 3.5rem; opacity: .2; transition: transform .5s ease; }
.pd-gal-item:nth-child(1) .pd-gal-bg i { font-size: 6rem; }
.pd-gal-item:hover .pd-gal-bg i { transform: rotate(5deg); }

/* Hover overlay */
.pd-gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s ease;
}
.pd-gal-item:hover .pd-gal-overlay { opacity: 1; }
.pd-gal-zoom-icon {
    width: 50px; height: 50px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: .95rem;
    transform: scale(.7);
    transition: transform .35s ease;
}
.pd-gal-item:hover .pd-gal-zoom-icon { transform: scale(1); }

/* Lightbox */
.pd-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.94);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}
.pd-lightbox.active { opacity: 1; pointer-events: all; }
.pd-lightbox-img {
    width: 90vw;
    max-width: 900px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.pd-lightbox-img-bg {
    width: 100%; height: 100%;
    border: 1px solid rgba(191,170,81,.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pd-lightbox-img-bg i { font-size: 8rem; opacity: .2; }
.pd-lightbox-close {
    position: absolute;
    top: -3rem; right: 0;
    color: rgba(255,255,255,.6);
    font-size: 1.3rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: all .25s ease;
}
.pd-lightbox-close:hover { color: var(--gold-light); transform: rotate(90deg); }

/* ---- Related / Tags strip ---- */
.pd-tags-strip {
    padding: 30px 0;
    background: var(--cream);
    border-top: 1px solid rgba(140,119,28,.12);
    border-bottom: 1px solid rgba(140,119,28,.12);
}
.pd-tags-inner {
    width: 90%;
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.pd-tags-label {
    font-family: 'Poppins', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--grey);
    flex-shrink: 0;
}
.pd-tag {
    display: inline-block;
    padding: .28rem .85rem;
    background: var(--white);
    border: 1px solid rgba(140,119,28,.18);
    font-family: 'Poppins', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: #555;
    transition: all .25s ease;
    cursor: pointer;
}
.pd-tag:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ---- Detail Page Responsive ---- */
@media (max-width: 1024px) {
    .mat-panel.active { grid-template-columns: 1fr; gap: 2.5rem; }
    .pd-desc-inner     { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .pd-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .pd-gallery-grid { grid-template-columns: repeat(6, 1fr); }
    .pd-gal-item:nth-child(1) { grid-column: span 6; }
    .pd-gal-item:nth-child(2),
    .pd-gal-item:nth-child(3) { grid-column: span 3; }
    .pd-gal-item:nth-child(4),
    .pd-gal-item:nth-child(5) { grid-column: span 3; }
    .pd-gal-item:nth-child(6),
    .pd-gal-item:nth-child(7),
    .pd-gal-item:nth-child(8) { grid-column: span 6; }
    .mat-features { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .pd-thumbnails { grid-template-columns: repeat(4, 1fr); }
    .pd-specs      { grid-template-columns: 1fr; }
    .pd-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
    .pd-gal-item   { grid-column: span 1 !important; grid-row: span 1 !important; }
    .pd-gal-bg     { min-height: 160px !important; }
    .pd-pillars    { gap: .75rem; }
    .mat-tabs      { gap: .5rem; }
    .mat-tab       { padding: .6rem 1.2rem; font-size: .7rem; }
    .pd-cta-row    { flex-direction: column; }
    .pd-cta-row .btn-primary,
    .pd-cta-row .btn-outline { width: 100%; justify-content: center; }
}

/* ============================================================
   MANUFACTURING SERVICES SECTION
   ============================================================ */
.manufacturing-services {
    --ms-brand-gold: #8c7b24;
    --ms-light-gold: #c5b358;
    --ms-text-color: #948a4c;
    --ms-bg-gray:    #eeeeee;
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Arial', sans-serif;
}

.manufacturing-services .main-title {
    text-align: center;
    margin-bottom: 80px;
}

.manufacturing-services .main-title h1 {
    color: var(--ms-brand-gold);
    font-size: 36px;
    font-weight: 900;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: 1px;
}

.manufacturing-services .service-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}

.manufacturing-services .service-item.reverse {
    flex-direction: row-reverse;
}

.manufacturing-services .image-area {
    flex: 1;
}

.manufacturing-services .placeholder-box {
    background-color: var(--ms-bg-gray);
    aspect-ratio: 1.6 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.manufacturing-services .ms-icon-circle {
    width: 100px;
    height: 100px;
    background-color: #e2dcc0;
    border-radius: 50%;
}

.manufacturing-services .text-area {
    flex: 1;
    text-align: center;
}

.manufacturing-services .number {
    display: block;
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.manufacturing-services .text-area h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.manufacturing-services .text-area p {
    color: var(--ms-text-color);
    font-size: 14px;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

.manufacturing-services .divider {
    border: 0;
    height: 1.5px;
    background-color: var(--ms-light-gold);
    margin: 40px 0;
}

@media (max-width: 768px) {
    .manufacturing-services .service-item,
    .manufacturing-services .service-item.reverse {
        flex-direction: column;
        gap: 30px;
    }
    .manufacturing-services .main-title h1 { font-size: 24px; }
}

/* ============================================================
   SERVICES PAGE  (sv-)
   ============================================================ */

/* --- Hero --- */
.sv-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1610 50%, #221e12 100%);
    padding: 140px 0 90px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.sv-hero::after {
    content: attr(data-title);
    position: absolute;
    bottom: -30px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(5rem, 16vw, 15rem);
    font-weight: 900;
    color: rgba(255,255,255,.03);
    letter-spacing: .08em;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}
.sv-hero-inner { position: relative; z-index: 1; width: 90%; max-width: 860px; margin: 0 auto; }
.sv-hero-eyebrow {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: .7rem; font-weight: 700;
    letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(191,170,81,.35);
    padding: .35rem 1.3rem;
    margin-bottom: 1.6rem;
}
.sv-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900; color: var(--white);
    line-height: 1.1; margin-bottom: 1.3rem;
    letter-spacing: -.01em;
}
.sv-hero-title span { color: var(--gold-light); }
.sv-hero-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem; color: rgba(255,255,255,.55);
    max-width: 580px; margin: 0 auto;
    line-height: 1.8;
}

/* --- Process Bar --- */
.sv-process-bar { background: var(--gold); padding: 20px 0; }
.sv-process-bar-inner {
    width: 90%; max-width: 1260px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.sv-proc-stat { text-align: center; }
.sv-proc-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.55rem; font-weight: 900;
    color: var(--white); line-height: 1;
}
.sv-proc-stat-label {
    font-family: 'Open Sans', sans-serif;
    font-size: .67rem; font-weight: 600;
    color: rgba(255,255,255,.75);
    text-transform: uppercase; letter-spacing: .1em;
    margin-top: .25rem;
}
.sv-proc-divider { width: 1px; height: 38px; background: rgba(255,255,255,.25); }

/* --- Intro --- */
.sv-intro-section { padding: 90px 0 50px; background: var(--white); }
.sv-intro-inner {
    width: 90%; max-width: 840px;
    margin: 0 auto; text-align: center;
}
.sv-intro-inner .section-label { margin-bottom: 1rem; }
.sv-intro-inner .section-title { margin-bottom: 1.5rem; }
.sv-intro-inner p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem; color: #666; line-height: 1.88;
}

/* --- Timeline Wrapper --- */
.sv-timeline-section { padding: 40px 0 110px; background: var(--white); }
.sv-timeline-wrap {
    width: 90%; max-width: 1100px;
    margin: 0 auto; position: relative;
    padding-top: 20px;
}
.sv-timeline-wrap::before {
    content: '';
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(140,119,28,.2) 6%,
        rgba(140,119,28,.2) 94%,
        transparent 100%);
    transform: translateX(-50%);
    z-index: 0;
}

/* --- Step Row --- */
.sv-step {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    align-items: start;
    margin-bottom: 3.5rem;
    position: relative;
}
.sv-step:last-child { margin-bottom: 0; }

/* --- Node (spine element) --- */
.sv-step-node {
    display: flex; flex-direction: column;
    align-items: center; padding-top: 1.6rem;
    position: relative; z-index: 2;
    opacity: 0; transform: scale(.4);
    transition: opacity .4s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
}
.sv-step-node.visible { opacity: 1; transform: scale(1); }

.sv-node-circle {
    width: 68px; height: 68px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.5rem;
    box-shadow: 0 0 0 9px rgba(140,119,28,.1), 0 8px 26px rgba(140,119,28,.32);
    position: relative; z-index: 1;
}
.sv-step-num {
    font-family: 'Montserrat', sans-serif;
    font-size: .62rem; font-weight: 900;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold); margin-top: .55rem;
}

/* --- Content Card --- */
.sv-step-content {
    opacity: 0;
    transition: opacity .55s ease, transform .55s cubic-bezier(.25,.46,.45,.94);
}
.sv-step--left  .sv-step-content { grid-column: 1; padding-right: 2.5rem; transform: translateX(-28px); }
.sv-step--right .sv-step-content { grid-column: 3; padding-left:  2.5rem; transform: translateX(28px);  }
.sv-step--left  .sv-step-node    { grid-column: 2; }
.sv-step--left  .sv-step-spacer  { grid-column: 3; }
.sv-step--right .sv-step-spacer  { grid-column: 1; }
.sv-step--right .sv-step-node    { grid-column: 2; }
.sv-step-content.visible { opacity: 1; transform: translateX(0); }

/* Card shell */
.sv-card {
    background: var(--off-white);
    border: 1px solid rgba(140,119,28,.1);
    border-radius: var(--radius);
    overflow: hidden; position: relative;
    transition: box-shadow .3s ease, transform .3s ease;
}
.sv-card:hover {
    box-shadow: var(--shadow-g);
    transform: translateY(-4px);
}

/* Card top bar */
.sv-card-top {
    background: linear-gradient(90deg, rgba(140,119,28,.07) 0%, rgba(191,170,81,.04) 100%);
    padding: .85rem 1.4rem;
    border-bottom: 1px solid rgba(140,119,28,.09);
    display: flex; align-items: center; gap: .7rem;
}
.sv-card-top-icon {
    width: 34px; height: 34px; border-radius: 7px;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: .85rem; flex-shrink: 0;
}
.sv-card-step-label {
    font-family: 'Poppins', sans-serif;
    font-size: .62rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold);
}

/* Card body */
.sv-card-body { padding: 1.4rem 1.4rem 1.6rem; }
.sv-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.08rem; font-weight: 700;
    color: var(--dark); margin-bottom: .55rem; line-height: 1.3;
}
.sv-card-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: .875rem; color: #666;
    line-height: 1.72; margin-bottom: 1.1rem;
}
.sv-card-bullets {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: .45rem;
}
.sv-card-bullets li {
    display: flex; align-items: flex-start; gap: .55rem;
    font-family: 'Open Sans', sans-serif;
    font-size: .82rem; color: #555; line-height: 1.55;
}
.sv-card-bullets li i { color: var(--gold); font-size: .68rem; margin-top: .28rem; flex-shrink: 0; }

/* Horizontal connector lines (card → spine) */
.sv-step--left  .sv-card::after,
.sv-step--right .sv-card::after {
    content: '';
    position: absolute; top: calc(1.6rem + 34px);
    height: 1px;
    pointer-events: none;
    background: rgba(140,119,28,.18);
}
.sv-step--left  .sv-card::after { right: -2.5rem; left: auto; width: 2.5rem; }
.sv-step--right .sv-card::after { left: -2.5rem; right: auto; width: 2.5rem; }

/* ---- Services Responsive ---- */
@media (max-width: 900px) {
    .sv-timeline-wrap::before { left: 34px; transform: none; }
    .sv-step {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto;
    }
    .sv-step--left .sv-step-node,
    .sv-step--right .sv-step-node  { grid-column: 1; grid-row: 1; padding-top: 0; }
    .sv-step--left .sv-step-content,
    .sv-step--right .sv-step-content { grid-column: 2; grid-row: 1; padding: 0 0 0 1.4rem; transform: translateX(20px); }
    .sv-step--left .sv-step-spacer,
    .sv-step--right .sv-step-spacer { display: none; }
    .sv-card::after { display: none; }
    .sv-proc-divider { display: none; }
    .sv-process-bar-inner { justify-content: center; gap: 2.2rem; }
}
@media (max-width: 640px) {
    .sv-hero { padding: 110px 0 70px; }
    .sv-timeline-wrap::before { left: 26px; }
    .sv-step { grid-template-columns: 60px 1fr; margin-bottom: 2.4rem; }
    .sv-node-circle { width: 52px; height: 52px; font-size: 1.2rem; }
    .sv-step--left .sv-step-content,
    .sv-step--right .sv-step-content { padding-left: 1rem; }
    .sv-card-body { padding: 1.1rem 1.1rem 1.3rem; }
}
@media (max-width: 480px) {
    .sv-hero { padding: 90px 0 55px; }
    .sv-hero-sub { font-size: .9rem; }
    .manufacturing-services { padding: 0 14px; margin: 40px auto; }
    .manufacturing-services .main-title { margin-bottom: 36px; }
    .manufacturing-services .main-title h1 { font-size: 18px; }
    .manufacturing-services .service-item { gap: 20px; margin-bottom: 20px; }
    .manufacturing-services .number { font-size: 48px; }
    .manufacturing-services .text-area h2 { font-size: 15px; }
    .manufacturing-services .text-area p { max-width: 100%; }
    .manufacturing-services .divider { margin: 18px 0; }
}
@media (max-width: 640px) and (min-width: 481px) {
    .manufacturing-services { padding: 0 16px; }
    .manufacturing-services .main-title { margin-bottom: 50px; }
    .manufacturing-services .main-title h1 { font-size: 22px; }
    .manufacturing-services .service-item { gap: 24px; margin-bottom: 28px; }
    .manufacturing-services .number { font-size: 60px; }
    .manufacturing-services .text-area h2 { font-size: 17px; }
    .manufacturing-services .text-area p { max-width: 100%; }
    .manufacturing-services .divider { margin: 24px 0; }
}
@media (max-width: 380px) {
    .sv-hero { padding: 75px 0 45px; }
    .manufacturing-services { padding: 0 12px; }
    .manufacturing-services .main-title h1 { font-size: 16px; }
    .manufacturing-services .number { font-size: 40px; }
    .manufacturing-services .text-area h2 { font-size: 14px; }
}

/* ============================================================
   TEAMWORK SLIDER SECTION
   ============================================================ */
.teamwork-section {
    --tw-gold:    #b0a469;
    --tw-divider: #c5b358;
    text-align: center;
    padding: 80px 20px;
    font-family: 'Arial Black', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

.teamwork-section h2 {
    color: var(--tw-gold);
    font-size: 32px;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.tw-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tw-slider-container {
    overflow: hidden;
    width: 100%;
}

.tw-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.tw-card {
    flex-shrink: 0;
    box-sizing: border-box;
    /* width set by JS based on container */
}

.tw-img-wrap {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: var(--tw-gold);
}

.tw-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s;
}

.tw-img-wrap img:hover { opacity: 0.9; }

.tw-card-caption {
    padding: 14px 2px 6px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    position: relative;
}

.tw-card-caption::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--tw-gold);
    border-radius: 2px;
    margin-bottom: 2px;
}

.tw-card-title {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #111;
    line-height: 1.35;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.tw-card-desc {
    font-family: 'Open Sans', 'Arial', sans-serif;
    font-size: 12px;
    color: #6b6b6b;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tw-card-cat {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    color: var(--tw-gold);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.tw-nav-btn {
    background: none;
    border: none;
    font-size: 40px;
    color: var(--tw-gold);
    cursor: pointer;
    padding: 10px;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.tw-nav-btn:hover { transform: scale(1.2); }

@media (max-width: 768px) {
    .teamwork-section { padding: 60px 16px; }
    .teamwork-section h2 { font-size: 24px; margin-bottom: 36px; }
    .tw-nav-btn { font-size: 28px; padding: 6px; }
}
@media (max-width: 640px) {
    .teamwork-section { padding: 50px 14px; }
    .teamwork-section h2 { font-size: 20px; margin-bottom: 28px; }
    .tw-nav-btn { font-size: 22px; padding: 4px; }
}
@media (max-width: 480px) {
    .teamwork-section { padding: 40px 12px; }
    .teamwork-section h2 { font-size: 18px; margin-bottom: 22px; }
    .tw-nav-btn { font-size: 18px; padding: 2px; }
}
@media (max-width: 380px) {
    .teamwork-section { padding: 32px 10px; }
    .teamwork-section h2 { font-size: 16px; }
    .tw-nav-btn { font-size: 16px; padding: 0; }
}

/* ============================================================
   GALLERY PAGE  (gl-)
   ============================================================ */

/* --- Hero --- */
.gl-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1610 50%, #221e12 100%);
    padding: 140px 0 90px;
    position: relative; overflow: hidden; text-align: center;
}
.gl-hero::after {
    content: attr(data-title);
    position: absolute; bottom: -30px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(5rem, 16vw, 15rem); font-weight: 900;
    color: rgba(255,255,255,.03); letter-spacing: .08em;
    white-space: nowrap; pointer-events: none; z-index: 0;
}
.gl-hero-inner {
    position: relative; z-index: 1;
    width: 90%; max-width: 760px; margin: 0 auto;
}
.gl-hero-eyebrow {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: .7rem; font-weight: 700;
    letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(191,170,81,.35);
    padding: .35rem 1.3rem; margin-bottom: 1.6rem;
}
.gl-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900; color: var(--white);
    line-height: 1.1; margin-bottom: 1.3rem; letter-spacing: -.01em;
}
.gl-hero-title span { color: var(--gold-light); }
.gl-hero-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem; color: rgba(255,255,255,.55); line-height: 1.8;
}

/* --- Filter Bar --- */
.gl-filter-bar {
    background: var(--white);
    border-bottom: 1px solid rgba(140,119,28,.1);
    position: sticky; top: var(--nav-h); z-index: 90;
    box-shadow: 0 2px 14px rgba(0,0,0,.06);
}
.gl-filter-inner {
    width: 90%; max-width: 1260px; margin: 0 auto;
    display: flex; align-items: center;
    padding: .55rem 0;
}
.gl-filter-tabs { display: flex; align-items: center; gap: .25rem; }
.gl-filter-tab {
    display: flex; align-items: center; gap: .5rem;
    padding: .5rem 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-size: .72rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
    color: #777; background: transparent;
    border: 1px solid transparent; border-radius: 4px;
    cursor: pointer; transition: all .25s ease;
}
.gl-filter-tab span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 20px; height: 18px; padding: 0 .35rem;
    background: rgba(140,119,28,.1); border-radius: 10px;
    font-size: .58rem; font-weight: 700; color: var(--gold);
    transition: all .25s ease;
}
.gl-filter-tab:hover { color: var(--dark); border-color: rgba(140,119,28,.15); background: rgba(140,119,28,.04); }
.gl-filter-tab.active { color: var(--gold); border-color: rgba(140,119,28,.25); background: rgba(140,119,28,.05); }
.gl-filter-tab.active span { background: var(--gold); color: var(--white); }
.gl-result-count {
    margin-left: auto;
    font-family: 'Open Sans', sans-serif;
    font-size: .7rem; font-weight: 600; color: #aaa; letter-spacing: .04em;
}

/* --- Masonry Section --- */
.gl-masonry-section { padding: 60px 0 100px; background: var(--off-white); }
.gl-masonry {
    width: 90%; max-width: 1260px; margin: 0 auto;
    columns: 3; column-gap: 1.1rem;
    transition: opacity .28s ease;
}
.gl-masonry.filtering { opacity: 0; }

/* --- Gallery Item --- */
.gl-item {
    break-inside: avoid;
    display: inline-block;
    width: 100%;
    margin-bottom: 1.1rem;
    cursor: pointer;
}
.gl-item.hidden { display: none; }

/* Card */
.gl-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0,0,0,.08);
    transition: box-shadow .35s ease, transform .35s ease;
}
.gl-card:hover { box-shadow: 0 14px 40px rgba(0,0,0,.2); transform: translateY(-3px); }

/* Image area */
.gl-card-img { position: relative; width: 100%; }
.gl-card-img-bg {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.gl-card:hover .gl-card-img-bg { transform: scale(1.08); }

/* Hover overlay */
.gl-card-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.42);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s ease; z-index: 1;
}
.gl-card:hover .gl-card-overlay { opacity: 1; }
.gl-zoom-btn {
    width: 50px; height: 50px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,.8);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1rem;
    transform: scale(.55);
    transition: transform .32s cubic-bezier(.34,1.56,.64,1);
}
.gl-card:hover .gl-zoom-btn { transform: scale(1); }

/* Caption */
.gl-card-caption {
    background: var(--white);
    padding: .85rem 1.1rem;
    display: flex; align-items: center; justify-content: space-between; gap: .75rem;
}
.gl-caption-text {
    font-family: 'Poppins', sans-serif;
    font-size: .75rem; font-weight: 600;
    color: var(--dark); line-height: 1.3; flex: 1;
}
.gl-caption-cat {
    font-family: 'Open Sans', sans-serif;
    font-size: .62rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--gold);
    background: rgba(140,119,28,.09);
    padding: .18rem .65rem; border-radius: 3px;
    white-space: nowrap; flex-shrink: 0;
}

/* ---- Lightbox ---- */
.gl-lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.95);
    z-index: 3000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
}
.gl-lightbox.active { opacity: 1; pointer-events: all; }

.gl-lb-inner {
    width: 90vw; max-width: 880px;
    display: flex; flex-direction: column; align-items: center; gap: 1.3rem;
}
.gl-lb-img {
    width: 100%; aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    transition: opacity .22s ease;
}
.gl-lb-img.changing { opacity: 0; }
.gl-lb-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gl-lb-meta {
    width: 100%; display: flex;
    align-items: flex-start; justify-content: space-between; gap: 1rem;
}
.gl-lb-caption {
    font-family: 'Poppins', sans-serif;
    font-size: .95rem; font-weight: 600;
    color: rgba(255,255,255,.85); line-height: 1.35;
}
.gl-lb-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: .72rem; color: var(--gold-light);
    letter-spacing: .1em; text-transform: uppercase;
    margin-top: .3rem;
}
.gl-lb-counter {
    font-family: 'Montserrat', sans-serif;
    font-size: .72rem; font-weight: 700;
    color: rgba(255,255,255,.4); letter-spacing: .12em;
    white-space: nowrap; padding-top: .2rem;
}

/* Lightbox nav */
.gl-lb-close, .gl-lb-prev, .gl-lb-next {
    position: fixed; background: none; border: none;
    cursor: pointer; color: rgba(255,255,255,.55);
    transition: all .25s ease; z-index: 3001;
    display: flex; align-items: center; justify-content: center;
}
.gl-lb-close {
    top: 1.5rem; right: 1.8rem;
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18); font-size: 1.3rem;
}
.gl-lb-close:hover { color: var(--gold-light); border-color: var(--gold-light); transform: rotate(90deg); }
.gl-lb-prev, .gl-lb-next {
    top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.14); font-size: 1.1rem;
}
.gl-lb-prev { left: 1.5rem; }
.gl-lb-next { right: 1.5rem; }
.gl-lb-prev:hover { color: var(--gold-light); border-color: rgba(191,170,81,.5); background: rgba(140,119,28,.12); transform: translateY(-50%) translateX(-2px); }
.gl-lb-next:hover { color: var(--gold-light); border-color: rgba(191,170,81,.5); background: rgba(140,119,28,.12); transform: translateY(-50%) translateX(2px); }

/* ---- Gallery Responsive ---- */
@media (max-width: 1024px) {
    .gl-masonry { columns: 2; }
}

@media (max-width: 900px) {
    .gl-filter-tab { padding: .45rem .9rem; font-size: .68rem; }
    .gl-lb-prev { left: .5rem; }
    .gl-lb-next { right: .5rem; }
}

@media (max-width: 768px) {
    .gl-hero { padding: 120px 0 75px; }
    .gl-masonry-section { padding: 40px 0 70px; }
    /* Filter bar: horizontal scroll — no multi-row wrap */
    .gl-filter-bar {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .gl-filter-bar::-webkit-scrollbar { display: none; }
    .gl-filter-inner {
        width: max-content;
        min-width: 100%;
        padding: .5rem 5%;
        max-width: none;
        margin: 0;
        box-sizing: border-box;
    }
    .gl-filter-tabs { flex-wrap: nowrap; gap: .2rem; }
    .gl-result-count { flex-shrink: 0; white-space: nowrap; padding-left: 1rem; }
}

@media (max-width: 640px) {
    .gl-hero { padding: 110px 0 70px; }
    .gl-masonry { columns: 1; }
    .gl-masonry-section { padding: 28px 0 56px; }
    .gl-result-count { display: none; }
    .gl-filter-tab { padding: .4rem .75rem; font-size: .65rem; }
    /* Card captions */
    .gl-card-caption { padding: .75rem 1rem; }
    .gl-caption-text { font-size: .7rem; }
    .gl-caption-cat  { font-size: .58rem; padding: .15rem .5rem; }
    /* Lightbox */
    .gl-lb-close { top: 1rem; right: 1rem; width: 40px; height: 40px; font-size: 1.1rem; }
    .gl-lb-prev, .gl-lb-next { width: 40px; height: 40px; font-size: .9rem; }
}

@media (max-width: 480px) {
    .gl-hero { padding: 90px 0 55px; }
    .gl-hero-sub { font-size: .9rem; }
    .gl-masonry { width: 94%; column-gap: .7rem; }
    .gl-masonry-section { padding: 20px 0 48px; }
    /* Card captions */
    .gl-card-caption { padding: .65rem .85rem; }
    .gl-caption-text { font-size: .68rem; }
    .gl-caption-cat  { font-size: .56rem; }
    /* Filter */
    .gl-filter-tab { padding: .38rem .65rem; font-size: .63rem; }
    /* Lightbox */
    .gl-lb-inner { width: 96vw; gap: .8rem; }
    .gl-lb-caption { font-size: .8rem; }
    .gl-lb-sub { font-size: .62rem; }
    .gl-lb-prev { left: .25rem; }
    .gl-lb-next { right: .25rem; }
    .gl-lb-prev, .gl-lb-next { width: 36px; height: 36px; font-size: .82rem; }
    .gl-lb-close { top: .85rem; right: .85rem; width: 38px; height: 38px; }
}

@media (max-width: 380px) {
    .gl-hero { padding: 75px 0 45px; }
    .gl-masonry { width: 96%; }
    /* Lightbox: swipe-only, hide arrows */
    .gl-lb-meta { flex-direction: column; gap: .4rem; }
    .gl-lb-close { top: .6rem; right: .6rem; }
}

/* ============================================================
   CONTACT SECTION (new layout)
   ============================================================ */
.contact-section {
    --cs-olive:  #8c7b24;
    --cs-cream:  #fdf6cc;
    --cs-card:   #f9f2cf;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* ---- Info Cards ---- */
.contact-section .cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-section .contact-card {
    background-color: var(--cs-card);
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-section .cs-card-icon {
    width: 48px;
    height: 48px;
    background-color: var(--cs-olive);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-section .contact-card > span {
    color: #000;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.contact-section .cs-card-val {
    font-size: 12px;
    line-height: 1.6;
    color: #555;
}

.contact-section .cs-card-val a {
    color: var(--cs-olive);
    text-decoration: none;
}

.contact-section .cs-card-val a:hover { text-decoration: underline; }

/* ---- Map ---- */
.contact-section .cs-map {
    height: 300px;
    overflow: hidden;
}

/* ---- Form Side ---- */
.contact-section .form-side h2 {
    color: var(--cs-olive);
    font-size: 36px;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 30px;
}

.contact-section .input-group {
    margin-bottom: 20px;
}

.contact-section .input-group label {
    display: block;
    color: var(--cs-olive);
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-section .input-group label span { color: #c0392b; }

.contact-section .input-group .ct-input,
.contact-section .input-group .ct-textarea {
    width: 100%;
    padding: 12px;
    border: 1.5px solid var(--cs-olive);
    border-radius: 15px;
    outline: none;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    font-size: 14px;
    transition: border-color .25s;
}

.contact-section .input-group .ct-input:focus,
.contact-section .input-group .ct-textarea:focus {
    border-color: #5a4f17;
}

.contact-section .input-group.has-error .ct-input,
.contact-section .input-group.has-error .ct-textarea {
    border-color: #c0392b;
}

.contact-section .ct-field-err {
    display: block;
    font-size: 12px;
    color: #c0392b;
    margin-top: 4px;
    min-height: 16px;
}

.contact-section .cs-submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.contact-section .send-btn {
    background-color: var(--cs-olive);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    letter-spacing: .05em;
}

.contact-section .send-btn:hover { background-color: #6d601d; }
.contact-section .send-btn:disabled { opacity: .6; cursor: not-allowed; }

@media (max-width: 850px) {
    .contact-container { grid-template-columns: 1fr; gap: 28px; }
    .contact-section { padding: 0 16px; }
    .contact-section .form-side h2 { font-size: 28px; }
}
@media (max-width: 640px) {
    .contact-section { padding: 0 14px; margin: 40px auto; }
    .contact-section .form-side h2 { font-size: 22px; margin-bottom: 22px; }
    .contact-section .cs-map { height: 240px; }
    .contact-section .cs-submit-row { justify-content: stretch; }
    .contact-section .send-btn { width: 100%; text-align: center; }
    .contact-section .contact-card { padding: 18px 12px; }
}
@media (max-width: 480px) {
    .contact-section { padding: 0 12px; margin: 28px auto; }
    .contact-section .cards-grid { grid-template-columns: 1fr; }
    .contact-section .form-side h2 { font-size: 20px; }
    .contact-section .cs-map { height: 200px; }
    .contact-section .contact-card { padding: 16px 12px; }
    .contact-section .input-group { margin-bottom: 16px; }
}
@media (max-width: 380px) {
    .contact-section { padding: 0 10px; margin: 20px auto; }
    .contact-section .form-side h2 { font-size: 18px; }
    .contact-section .cs-card-icon { width: 40px; height: 40px; font-size: 15px; }
}

/* ============================================================
   CONTACT PAGE  (ct-)
   ============================================================ */

/* --- Hero --- */
.ct-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1610 50%, #221e12 100%);
    padding: 140px 0 90px;
    position: relative; overflow: hidden; text-align: center;
}
.ct-hero::after {
    content: attr(data-title);
    position: absolute; bottom: -30px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3.5rem, 13vw, 12rem); font-weight: 900;
    color: rgba(255,255,255,.03); letter-spacing: .1em;
    white-space: nowrap; pointer-events: none; z-index: 0;
}
.ct-hero-inner {
    position: relative; z-index: 1;
    width: 90%; max-width: 780px; margin: 0 auto;
}
.ct-hero-eyebrow {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: .7rem; font-weight: 700;
    letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(191,170,81,.35);
    padding: .35rem 1.3rem; margin-bottom: 1.6rem;
}
.ct-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900; color: var(--white);
    line-height: 1.1; margin-bottom: 1.3rem; letter-spacing: -.01em;
}
.ct-hero-title span { color: var(--gold-light); }
.ct-hero-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem; color: rgba(255,255,255,.55); line-height: 1.8;
}

/* --- Main 2-column section --- */
.ct-main-section { padding: 90px 0 100px; background: var(--off-white); }
.ct-main-inner {
    width: 90%; max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 400px 1fr;
    gap: 2.5rem; align-items: start;
}

/* --- Left: Info card --- */
.ct-left {
    background: linear-gradient(155deg, #0d0d0d 0%, #1a1510 60%, #221e10 100%);
    border-radius: var(--radius); padding: 2.8rem 2.4rem;
    position: sticky; top: calc(var(--nav-h) + 1.5rem);
    overflow: hidden;
}
.ct-left::after {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 100px; height: 100px;
    border-top: 1px solid rgba(191,170,81,.14);
    border-right: 1px solid rgba(191,170,81,.14);
    border-radius: 0 var(--radius) 0 0;
    pointer-events: none;
}
.ct-info-eyebrow {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: .62rem; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: .9rem;
}
.ct-info-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem; font-weight: 900;
    color: var(--white); line-height: 1.2; margin-bottom: .7rem;
}
.ct-info-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.7;
}

/* Info list */
.ct-info-list { list-style: none; padding: 0; margin: 2rem 0 0; display: flex; flex-direction: column; gap: 1.5rem; }
.ct-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.ct-info-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(140,119,28,.15);
    border: 1px solid rgba(191,170,81,.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light); font-size: .95rem; flex-shrink: 0;
}
.ct-info-label {
    font-family: 'Poppins', sans-serif;
    font-size: .6rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: .3rem; display: block;
}
.ct-info-val {
    font-family: 'Open Sans', sans-serif;
    font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.65;
}
.ct-info-val a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s ease; }
.ct-info-val a:hover { color: var(--gold-light); }

/* Divider */
.ct-divider { border: none; border-top: 1px solid rgba(255,255,255,.07); margin: 1.8rem 0; }

/* Hours */
.ct-hours { display: flex; align-items: flex-start; gap: 1rem; }
.ct-hours-body { }
.ct-hours-label {
    font-family: 'Poppins', sans-serif;
    font-size: .6rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: .3rem; display: block;
}
.ct-hours-val {
    font-family: 'Open Sans', sans-serif;
    font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.65;
}

/* Social */
.ct-social-label {
    font-family: 'Poppins', sans-serif;
    font-size: .6rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: rgba(255,255,255,.35);
    margin-top: 1.8rem; margin-bottom: .7rem; display: block;
}
.ct-social-row { display: flex; gap: .6rem; }
.ct-social-btn {
    width: 38px; height: 38px; border-radius: 8px;
    border: 1px solid rgba(191,170,81,.18);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.45); font-size: .9rem;
    text-decoration: none; transition: all .25s ease;
}
.ct-social-btn:hover { border-color: var(--gold-light); color: var(--gold-light); background: rgba(140,119,28,.14); }

/* --- Right: Form card --- */
.ct-right { }
.ct-form-card {
    background: var(--white);
    border-radius: var(--radius); padding: 2.8rem 2.6rem;
    box-shadow: 0 4px 32px rgba(0,0,0,.07);
}
.ct-form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem; font-weight: 700;
    color: var(--dark); margin-bottom: .4rem;
}
.ct-form-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: .875rem; color: #888; line-height: 1.65;
    margin-bottom: 2rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(140,119,28,.08);
}
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.ct-form-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.3rem; }
.ct-form-group:last-of-type { margin-bottom: 0; }
.ct-label {
    font-family: 'Poppins', sans-serif;
    font-size: .7rem; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase; color: var(--dark);
}
.ct-label span { color: var(--gold); }
.ct-input, .ct-textarea {
    width: 100%; padding: .85rem 1.05rem;
    font-family: 'Open Sans', sans-serif; font-size: .9rem; color: var(--dark);
    background: var(--off-white);
    border: 1.5px solid rgba(140,119,28,.12);
    border-radius: 6px; outline: none;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
    box-sizing: border-box;
}
.ct-input:focus, .ct-textarea:focus {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(140,119,28,.1);
}
.ct-input::placeholder, .ct-textarea::placeholder { color: #bbb; }
.ct-textarea { min-height: 148px; resize: vertical; }

/* Validation */
.ct-form-group.has-error .ct-input,
.ct-form-group.has-error .ct-textarea { border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,.1); }
.ct-field-err { font-family: 'Open Sans', sans-serif; font-size: .7rem; color: #e53e3e; min-height: 1em; }

/* Submit row */
.ct-submit-row {
    margin-top: 1.8rem;
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.ct-submit-btn {
    display: inline-flex; align-items: center; gap: .6rem;
    padding: .9rem 2.4rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white); border: none; border-radius: 4px;
    font-family: 'Poppins', sans-serif; font-size: .8rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    cursor: pointer; transition: all .3s ease;
    box-shadow: 0 4px 16px rgba(140,119,28,.35);
}
.ct-submit-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(140,119,28,.48); }
.ct-submit-btn:disabled { opacity: .65; cursor: not-allowed; }
.ct-privacy {
    font-family: 'Open Sans', sans-serif;
    font-size: .72rem; color: #aaa; line-height: 1.55; flex: 1; min-width: 160px;
}

/* Success state */
.ct-form-success {
    display: none;
    flex-direction: column; align-items: center;
    justify-content: center; text-align: center;
    padding: 3.5rem 2rem; gap: 1rem;
}
.ct-form-success.active { display: flex; }
.ct-success-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(34,197,94,.1);
    border: 2px solid rgba(34,197,94,.3);
    display: flex; align-items: center; justify-content: center;
    color: #22c55e; font-size: 2rem;
    animation: pop-in .45s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes pop-in { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.ct-success-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem; font-weight: 700; color: var(--dark);
}
.ct-success-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem; color: #666; line-height: 1.7; max-width: 360px;
}
.ct-success-reset {
    font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 600;
    color: var(--gold); background: none; border: none;
    cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
    margin-top: .5rem;
}

/* --- Map section --- */
.ct-map-section { position: relative; line-height: 0; }
.ct-map-iframe { width: 100%; height: 430px; border: none; display: block; }
.ct-map-top-shadow {
    position: absolute; top: 0; left: 0; right: 0;
    height: 10px;
    background: linear-gradient(to bottom, rgba(0,0,0,.1), transparent);
    pointer-events: none; z-index: 1;
}

/* ---- Contact Responsive ---- */
@media (max-width: 1024px) {
    .ct-main-inner { grid-template-columns: 1fr; max-width: 700px; }
    .ct-left { position: static; }
}
@media (max-width: 640px) {
    .ct-hero { padding: 110px 0 70px; }
    .ct-form-row { grid-template-columns: 1fr; }
    .ct-form-card { padding: 2rem 1.4rem; }
    .ct-left { padding: 2rem 1.5rem; }
    .ct-submit-row { flex-direction: column; align-items: stretch; }
    .ct-submit-btn { justify-content: center; }
    .ct-map-iframe { height: 300px; }
}
@media (max-width: 480px) {
    .ct-hero { padding: 90px 0 55px; }
    .ct-hero-sub { font-size: .9rem; }
    .ct-form-card { padding: 1.6rem 1.1rem; }
    .ct-left { padding: 1.6rem 1.2rem; }
    .ct-info-title { font-size: 1.4rem; }
    .ct-map-iframe { height: 240px; }
    .ct-main-section { padding: 60px 0 70px; }
}
@media (max-width: 380px) {
    .ct-hero { padding: 75px 0 45px; }
    .ct-form-card { padding: 1.3rem .9rem; }
    .ct-left { padding: 1.3rem 1rem; }
    .ct-map-iframe { height: 200px; }
}

/* ============================================================
   FLOATING FEATURES  (flt-)
   ============================================================ */

/* --- Social sidebar — left fixed, slides open on hover --- */
.flt-social-bar {
    position: fixed; left: 0; top: 50%;
    transform: translateY(-50%);
    z-index: 200; display: flex; flex-direction: column; gap: 2px;
}
.flt-social-btn {
    display: flex; align-items: center;
    width: 44px; height: 44px; overflow: hidden;
    border-radius: 0 8px 8px 0;
    background: rgba(10,10,10,.82); backdrop-filter: blur(6px);
    color: rgba(255,255,255,.7); text-decoration: none;
    border: 1px solid rgba(255,255,255,.08); border-left: none;
    transition: width .35s cubic-bezier(.25,.46,.45,.94), background .22s ease, color .22s ease;
    white-space: nowrap;
}
.flt-social-btn:hover { width: 144px; color: white; }
.flt-social-btn.flt-li:hover { background: #0a66c2; }
.flt-social-btn.flt-fb:hover { background: #1877f2; }
.flt-social-btn.flt-ig:hover { background: linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.flt-social-btn.flt-yt:hover { background: #ff0000; }
.flt-social-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.flt-social-label {
    font-family: 'Poppins', sans-serif;
    font-size: .68rem; font-weight: 600; letter-spacing: .04em;
    padding-right: 1rem;
}

/* --- Float Action Cluster — right, stacked --- */
.flt-actions {
    position: fixed; right: 1.5rem; bottom: 7rem;
    z-index: 200; display: flex; flex-direction: column;
    align-items: flex-end; gap: .7rem;
}

/* Quote pill */
.flt-quote-btn {
    display: flex; align-items: center; gap: .55rem;
    padding: .62rem 1.3rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white); border: none; border-radius: 30px;
    font-family: 'Poppins', sans-serif; font-size: .7rem;
    font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    cursor: pointer; white-space: nowrap;
    animation: cta-glow 3s ease-in-out infinite;
    transition: transform .25s ease;
}
.flt-quote-btn:hover { transform: translateY(-2px); }
@keyframes cta-glow {
    0%,100% { box-shadow: 0 4px 18px rgba(140,119,28,.45); }
    50%      { box-shadow: 0 6px 28px rgba(140,119,28,.72); }
}

/* Round buttons */
.flt-btn {
    width: 54px; height: 54px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; text-decoration: none; border: none;
    cursor: pointer; position: relative;
    transition: transform .25s ease;
}
.flt-btn:hover { transform: scale(1.1); }
.flt-btn-wa {
    background: #25d366; color: white;
    animation: wa-pulse 2.5s ease-in-out infinite;
}
@keyframes wa-pulse {
    0%,100% { box-shadow: 0 4px 14px rgba(37,211,102,.45); }
    50%      { box-shadow: 0 4px 22px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.1); }
}
.flt-btn-call {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: white;
    box-shadow: 0 4px 14px rgba(140,119,28,.4);
}

/* Tooltips */
.flt-tooltip {
    position: absolute; right: calc(100% + .75rem);
    background: rgba(0,0,0,.82); color: white;
    font-family: 'Poppins', sans-serif; font-size: .62rem; font-weight: 600;
    letter-spacing: .06em; white-space: nowrap;
    padding: .3rem .7rem; border-radius: 4px;
    opacity: 0; pointer-events: none;
    transform: translateX(6px);
    transition: opacity .2s ease, transform .2s ease;
}
.flt-tooltip::after {
    content: ''; position: absolute; left: 100%; top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent; border-left-color: rgba(0,0,0,.82);
}
.flt-btn:hover .flt-tooltip { opacity: 1; transform: translateX(0); }

/* ============================================================
   QUICK QUERY MODAL  (qm-)
   ============================================================ */
.qm-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.72); backdrop-filter: blur(4px);
    z-index: 4000; display: flex; align-items: center; justify-content: center;
    padding: 1rem; opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
}
.qm-overlay.active { opacity: 1; pointer-events: all; }

.qm-card {
    background: var(--white); border-radius: 14px;
    width: 100%; max-width: 560px;
    max-height: 92vh; overflow-y: auto; position: relative;
    box-shadow: 0 32px 72px rgba(0,0,0,.35);
    transform: translateY(24px);
    transition: transform .38s cubic-bezier(.25,.46,.45,.94);
}
.qm-overlay.active .qm-card { transform: translateY(0); }

.qm-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    padding: 1.8rem 2rem 1.2rem;
    border-bottom: 1px solid rgba(140,119,28,.1);
    position: sticky; top: 0; background: var(--white); z-index: 1;
}
.qm-eyebrow {
    font-family: 'Poppins', sans-serif; font-size: .6rem; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem;
}
.qm-title { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--dark); margin: 0; }
.qm-close {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--off-white); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #888; font-size: 1rem; flex-shrink: 0; transition: all .2s ease;
}
.qm-close:hover { background: #fee2e2; color: #ef4444; }

.qm-body { padding: 1.6rem 2rem 2rem; }
.qm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.qm-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.qm-label {
    font-family: 'Poppins', sans-serif; font-size: .68rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; color: var(--dark);
}
.qm-label span { color: var(--gold); }
.qm-input {
    width: 100%; padding: .78rem .95rem;
    font-family: 'Open Sans', sans-serif; font-size: .88rem; color: var(--dark);
    background: var(--off-white); border: 1.5px solid rgba(140,119,28,.12);
    border-radius: 6px; outline: none; box-sizing: border-box;
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.qm-input:focus { background: var(--white); border-color: var(--gold); box-shadow: 0 0 0 3px rgba(140,119,28,.1); }
.qm-input::placeholder { color: #c0c0c0; }
.qm-select {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.2rem;
}
.qm-textarea { min-height: 110px; resize: vertical; }
.qm-err { font-size: .68rem; color: #ef4444; min-height: .9em; }
.qm-group.has-error .qm-input { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }

.qm-footer {
    display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
    padding-top: 1rem; border-top: 1px solid rgba(140,119,28,.08);
}
.qm-submit {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .82rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: white; border: none; border-radius: 4px;
    font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
    box-shadow: 0 4px 14px rgba(140,119,28,.35);
    transition: all .25s ease;
}
.qm-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(140,119,28,.5); }
.qm-submit:disabled { opacity: .6; cursor: not-allowed; }
.qm-note { font-family: 'Open Sans', sans-serif; font-size: .7rem; color: #aaa; }
.qm-note i { color: var(--gold); }

.qm-success {
    display: none; flex-direction: column; align-items: center;
    justify-content: center; text-align: center;
    padding: 3.5rem 2rem; gap: .9rem;
}
.qm-success.active { display: flex; }
.qm-success-icon {
    width: 68px; height: 68px; border-radius: 50%;
    background: rgba(34,197,94,.1); border: 2px solid rgba(34,197,94,.3);
    display: flex; align-items: center; justify-content: center;
    color: #22c55e; font-size: 2rem;
    animation: pop-in .45s cubic-bezier(.34,1.56,.64,1) both;
}
.qm-success-title { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--dark); }
.qm-success-sub { font-family: 'Open Sans', sans-serif; font-size: .88rem; color: #666; line-height: 1.65; max-width: 320px; }
.qm-success-close {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .65rem 1.8rem; border-radius: 4px; margin-top: .5rem;
    background: var(--gold); color: white; border: none;
    font-family: 'Poppins', sans-serif; font-size: .75rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
}

/* ============================================================
   SOCIAL FEED SECTION  (sf-)
   ============================================================ */
.sf-section {
    padding: 80px 0;
    background: var(--off-white);
    border-top: 1px solid rgba(140,119,28,.08);
}
.sf-section-inner { width: 90%; max-width: 1260px; margin: 0 auto; }
.sf-header { text-align: center; margin-bottom: 3rem; }
.sf-header .section-label { margin-bottom: .8rem; }
.sf-header .section-title { margin-bottom: .7rem; }
.sf-header-sub { font-family: 'Open Sans', sans-serif; font-size: .92rem; color: #777; max-width: 480px; margin: 0 auto; }
.sf-handles {
    display: flex; align-items: center; justify-content: center;
    gap: .5rem; margin-top: .9rem; flex-wrap: wrap;
}
.sf-handle-tag {
    font-family: 'Poppins', sans-serif; font-size: .65rem; font-weight: 700;
    letter-spacing: .08em; color: var(--gold);
    background: rgba(140,119,28,.08); padding: .22rem .75rem; border-radius: 20px;
}
.sf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

.sf-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; cursor: pointer;
    box-shadow: 0 2px 14px rgba(0,0,0,.06);
    transition: box-shadow .3s ease, transform .3s ease;
}
.sf-card:hover { box-shadow: 0 12px 38px rgba(0,0,0,.14); transform: translateY(-4px); }

.sf-card-top {
    display: flex; align-items: center; gap: .7rem;
    padding: .9rem 1.1rem; border-bottom: 1px solid rgba(0,0,0,.04);
}
.sf-platform {
    width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; color: white;
}
.sf-platform.sf-ig { background: linear-gradient(135deg,#f09433 0%,#dc2743 50%,#bc1888 100%); }
.sf-platform.sf-fb { background: #1877f2; }
.sf-platform.sf-li { background: #0a66c2; }
.sf-meta { flex: 1; min-width: 0; }
.sf-handle { font-family: 'Poppins', sans-serif; font-size: .72rem; font-weight: 700; color: var(--dark); }
.sf-time   { font-family: 'Open Sans', sans-serif; font-size: .63rem; color: #aaa; margin-top: .1rem; }
.sf-follow-link {
    font-family: 'Poppins', sans-serif; font-size: .6rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    border: 1px solid rgba(140,119,28,.25); border-radius: 3px;
    padding: .18rem .55rem; transition: all .2s ease; flex-shrink: 0;
}
.sf-follow-link:hover { background: var(--gold); color: white; }

.sf-card-img { height: 195px; overflow: hidden; position: relative; }
.sf-card-img-bg {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.sf-card:hover .sf-card-img-bg { transform: scale(1.06); }
.sf-card-img-bg i { font-size: 3.2rem; color: white; opacity: .22; }
.sf-card-img-tag {
    position: absolute; top: .7rem; right: .7rem;
    background: rgba(0,0,0,.52); border-radius: 5px;
    padding: .2rem .6rem; font-family: 'Poppins', sans-serif;
    font-size: .56rem; font-weight: 700; color: rgba(255,255,255,.88);
    letter-spacing: .08em; text-transform: uppercase;
}

.sf-card-body { padding: 1rem 1.1rem 1.2rem; }
.sf-caption {
    font-family: 'Open Sans', sans-serif; font-size: .82rem; color: #555;
    line-height: 1.65;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.sf-engagement {
    display: flex; gap: 1.1rem; margin-top: .75rem;
    font-family: 'Open Sans', sans-serif; font-size: .75rem; color: #bbb;
}
.sf-engagement span { display: flex; align-items: center; gap: .3rem; }
.sf-engagement i { font-size: .7rem; }

.sf-follow-row {
    display: flex; justify-content: center; gap: 1rem;
    margin-top: 2.8rem; flex-wrap: wrap;
}
.sf-follow-btn {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .58rem 1.5rem; border-radius: 4px; border: 1.5px solid;
    font-family: 'Poppins', sans-serif; font-size: .7rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
    transition: all .25s ease;
}
.sf-follow-btn.sf-btn-ig { color: #e1306c; border-color: #e1306c; }
.sf-follow-btn.sf-btn-ig:hover { background: #e1306c; color: white; }
.sf-follow-btn.sf-btn-fb { color: #1877f2; border-color: #1877f2; }
.sf-follow-btn.sf-btn-fb:hover { background: #1877f2; color: white; }
.sf-follow-btn.sf-btn-li { color: #0a66c2; border-color: #0a66c2; }
.sf-follow-btn.sf-btn-li:hover { background: #0a66c2; color: white; }
.sf-follow-btn.sf-btn-yt { color: #ff0000; border-color: #ff0000; }
.sf-follow-btn.sf-btn-yt:hover { background: #ff0000; color: white; }

/* ---- Responsive: floating + feed ---- */
@media (max-width: 900px) {
    .flt-social-bar { display: none; }
    .sf-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .flt-actions { right: 1rem; bottom: 6rem; }
    .flt-quote-btn span { display: none; }
    .flt-quote-btn { padding: .72rem; border-radius: 50%; width: 54px; height: 54px; justify-content: center; }
    .sf-grid { grid-template-columns: 1fr; }
    .qm-row { grid-template-columns: 1fr; }
    .qm-body { padding: 1.3rem 1.3rem 1.6rem; }
    .qm-header { padding: 1.4rem 1.4rem 1rem; }
}

/* =====================================================
   RESPONSIVE — COMPREHENSIVE MODULE
   Covers: touch UX, mobile nav, vertical stacking,
   image hints, bottom-sheet modal, safe-area insets
===================================================== */

/* ---- 1. Remove 300 ms tap delay & highlight ---- */
* { -webkit-tap-highlight-color: transparent; }
a, button, [role="button"],
.filter-tab, .gl-filter-tab, .mat-tab,
.gl-item, .sf-card, .flt-btn, .flt-social-btn,
.pd-thumbnail, .product-card,
.hamburger { touch-action: manipulation; }

/* ---- 2. Base touch-target fixes (no media query) ---- */
.hamburger          { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.scroll-top-btn     { width: 48px; height: 48px; border-radius: 50%; }
.video-modal-close  { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.qm-close           { width: 40px; height: 40px; flex-shrink: 0; }
.gl-lb-close        { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }

/* ---- 3. Prevent iOS auto-zoom on focused inputs ---- */
@media (max-width: 768px) {
    input, select, textarea { font-size: 16px !important; }
}

/* ====================================================
   768 px -- Mobile nav + hero stacking
==================================================== */
@media (max-width: 768px) {

    /* Mobile nav: remove gap; padding-top is set in the fixed-overlay block */
    .nav-menu { gap: 0; }
    .nav-menu li { width: 100%; }

    /* Touch-target: each nav item >= 60 px tall */
    .nav-link {
        display: flex; align-items: center; justify-content: center;
        min-height: 60px; padding: 0 1.2rem; width: 100%;
        font-size: .9rem;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }
    .nav-link::after { display: none; }
    .nav-link.active { color: var(--white); background: rgba(0,0,0,.12); }
    .nav-menu li:first-child .nav-link { border-top: 1px solid rgba(255,255,255,.15); }

    /* CTA nav item: visually distinct in mobile menu */
    .nav-menu li:last-child { /* margin-top: 1.6rem; */ text-align: center; }
    .nav-cta {
        display: inline-flex; width: auto;
        min-height: 52px; padding: .75rem 2.5rem;
        border: 1.5px solid var(--white) !important;
        color: var(--white) !important;
        background: transparent;
        border-radius: 0;
    }
    .nav-cta::after { display: none; }
    .nav-cta:hover, .nav-cta.active {
        background: var(--white) !important;
        border-color: var(--white) !important;
        color: var(--primary-gold) !important;
    }

    /* Hero: stack CTA buttons */
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { width: 100%; max-width: 360px; justify-content: center; }

    /* Footer newsletter: stack vertically */
    .footer-newsletter-form { flex-direction: column; }
    .footer-newsletter-form input {
        border-right: 1px solid rgba(255,255,255,.1);
        border-bottom: none;
    }
    .footer-newsletter-form button { width: 100%; min-height: 46px; }
}

/* ====================================================
   640 px -- Small mobile
==================================================== */
@media (max-width: 640px) {

    /* Wider content on small screens */
    .container { width: 92%; }

    /* Hero buttons: full width */
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { max-width: 100%; }

    /* Page hero: scale down title */
    .page-hero-title { font-size: clamp(1.65rem, 6vw, 2.4rem); }
    .page-hero-inner { padding: 40px 0; }

    /* Process timeline: 1 col (overrides 33% at 768 and 50% at 480) */
    .process-step { flex: 0 0 100%; }
    .process-timeline { gap: 1.8rem; }

    /* Social feed section */
    .sf-section { padding: 60px 0 50px; }
    .sf-section-inner { width: 92%; }
    .sf-header { margin-bottom: 2rem; }
    .sf-header .section-title { font-size: 1.5rem; }
    .sf-header-sub { font-size: .86rem; }
    .sf-handles { gap: .45rem; }
    .sf-handle-tag { font-size: .68rem; padding: .25rem .6rem; }
    .sf-card-body { padding: .9rem; }
    .sf-caption { font-size: .82rem; }
    .sf-follow-row { flex-wrap: wrap; justify-content: center; gap: .6rem; }
    .sf-follow-btn { flex: 1 1 130px; justify-content: center; font-size: .72rem; padding: .52rem 1rem; }

    /* Quick query modal -> bottom sheet */
    .qm-overlay { align-items: flex-end; padding: 0; }
    .qm-card {
        width: 100%; max-width: 100%;
        border-radius: 18px 18px 0 0;
        max-height: 92dvh;
        transform: translateY(100%);
    }
    .qm-overlay.active .qm-card { transform: translateY(0); }
    .qm-header { padding: 1.3rem 1.4rem .9rem; }
    .qm-body   { padding: .9rem 1.4rem 1.2rem; }
    .qm-footer { flex-direction: column; align-items: stretch; gap: .9rem; }
    .qm-submit { width: 100%; justify-content: center; }
    .qm-note   { text-align: center; }

    /* Float action cluster: compact circle */
    .flt-actions { right: 1rem; bottom: 5.5rem; gap: .65rem; }
    .flt-quote-btn {
        width: 52px; height: 52px; padding: .72rem;
        border-radius: 50%; justify-content: center;
    }
    .flt-quote-btn span { display: none; }
    .flt-btn { width: 48px; height: 48px; }

    /* Scroll-to-top: avoid float cluster */
    .scroll-top-btn { bottom: 1.5rem; right: 1rem; }

    /* Gallery filter: horizontal scroll lane */
    .gl-filter-tabs {
        flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
        padding-bottom: .5rem;
        scrollbar-width: none;
    }
    .gl-filter-tabs::-webkit-scrollbar { display: none; }
    .gl-filter-tab { scroll-snap-align: start; white-space: nowrap; flex-shrink: 0; }

    /* Gallery lightbox: bigger arrow touch targets */
    .gl-lb-prev, .gl-lb-next { width: 48px; height: 48px; }
    .gl-lb-prev { left: .4rem; }
    .gl-lb-next { right: .4rem; }

    /* Map height */
    .ct-map-iframe { height: 280px; }

    /* Video modal close: easier tap */
    .video-modal-close { top: -3rem; font-size: 1.4rem; }
}

/* ====================================================
   480 px -- Extra small
==================================================== */
@media (max-width: 480px) {
    .section-heading { font-size: 1.6rem; }

    /* Stats: 1 col */
    .stats-grid { grid-template-columns: 1fr; max-width: 240px; margin-inline: auto; }
    .stat-item  { padding: 1.4rem 1.2rem; text-align: center; }
}

/* ====================================================
   480 px -- Nav height step + logo scale
==================================================== */
@media (max-width: 480px) {
    :root { --nav-h: 64px; }
    .nav-logo-img { height: 38px; }
    .hamburger span { width: 22px; }
}

/* ====================================================
   380 px -- Tiny phones
==================================================== */
@media (max-width: 380px) {
    :root { --nav-h: 60px; }
    .nav-logo-img  { height: 32px; }
    .nav-logo-text { font-size: 1.3rem; letter-spacing: .1em; }
    .hero-heading  { font-size: 1.55rem; }
    .page-hero-title { font-size: 1.5rem; }
    .team-header .title { font-size: 1.2rem; }
    .team-header .line  { margin-right: 10px; }

    /* Float cluster: even more compact */
    .flt-actions { gap: .45rem; bottom: 5rem; }
    .flt-btn     { width: 44px; height: 44px; font-size: .88rem; }
    .flt-quote-btn { width: 44px; height: 44px; }

    /* Lightbox: swipe-only on tiny screens (arrows hidden) */
    .gl-lb-prev, .gl-lb-next { display: none; }

    /* QM modal: full-height sheet */
    .qm-card { max-height: 100dvh; border-radius: 0; }
}

/* ====================================================
   Safe area / notch -- iPhone X+, Android cutout
==================================================== */
@supports (padding: env(safe-area-inset-bottom)) {
    .flt-actions    { bottom: calc(5.5rem + env(safe-area-inset-bottom)); }
    .scroll-top-btn { bottom: calc(1.5rem + env(safe-area-inset-bottom)); }
    .nav-menu       { padding-bottom: env(safe-area-inset-bottom); }
    .qm-card        { padding-bottom: env(safe-area-inset-bottom); }
    @media (max-width: 380px) {
        .flt-actions { bottom: calc(5rem + env(safe-area-inset-bottom)); }
    }
}

/* =====================================================
   HERO v2 -- Minimalist Architectural
   Overrides old .hero rules; all new classes use h2-
===================================================== */

/* ---- Layout override ---- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    background-image: none;
    padding-top: var(--nav-h);
    padding-bottom: 0;
}
.hero::before,
.hero::after { display: none; }

/* Ghost brand name behind circle for depth */
.hero > .h2-body { position: relative; }
.h2-body::before {
    content: 'LEMARCH';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(5rem, 16vw, 15rem);
    font-weight: 900;
    letter-spacing: .35em;
    color: rgba(140,119,28,.035);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

/* ---- Corner bracket marks ---- */
.h2-corner {
    position: absolute;
    width: 22px; height: 22px;
    pointer-events: none;
    z-index: 1;
}
.h2-corner--tl {
    top: calc(var(--nav-h) + 24px); left: 5%;
    border-top: 1px solid rgba(140,119,28,.28);
    border-left: 1px solid rgba(140,119,28,.28);
}
.h2-corner--tr {
    top: calc(var(--nav-h) + 24px); right: 5%;
    border-top: 1px solid rgba(140,119,28,.28);
    border-right: 1px solid rgba(140,119,28,.28);
}
.h2-corner--bl {
    bottom: 24px; left: 5%;
    border-bottom: 1px solid rgba(140,119,28,.28);
    border-left: 1px solid rgba(140,119,28,.28);
}
.h2-corner--br {
    bottom: 24px; right: 5%;
    border-bottom: 1px solid rgba(140,119,28,.28);
    border-right: 1px solid rgba(140,119,28,.28);
}

/* ---- Vertical rule lines ---- */
.h2-vrule {
    position: absolute;
    top: calc(var(--nav-h) + 24px);
    bottom: 24px;
    width: 1px;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(140,119,28,.14) 15%,
        rgba(140,119,28,.14) 85%,
        transparent 100%
    );
}
.h2-vrule--l { left: 12%; }
.h2-vrule--r { right: 12%; }

/* ---- Centred body ---- */
.h2-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    z-index: 2;
}

/* ---- Eyebrow label ---- */
.h2-eyebrow {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    font-family: 'Poppins', sans-serif;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 3.8rem;
}
.h2-eyebrow-line {
    display: block;
    width: 36px; height: 1px;
    background: rgba(140,119,28,.38);
    flex-shrink: 0;
}

/* ---- Central play button ---- */
.h2-play {
    position: relative;
    width: 190px; height: 190px;
    border-radius: 50%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    z-index: 1;
}

/* Decorative concentric rings */
.h2-play-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.h2-play-ring--outer {
    inset: -30px;
    border: 1px solid rgba(140,119,28,.1);
    animation: h2-breathe 4s ease-in-out infinite;
}
.h2-play-ring--mid {
    inset: -10px;
    border: 1px solid rgba(140,119,28,.2);
}
@keyframes h2-breathe {
    0%, 100% { transform: scale(1);    opacity: 1; }
    50%       { transform: scale(1.07); opacity: .5; }
}

/* Inner circle core */
.h2-play-core {
    width: 150px; height: 150px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(191,170,81,.07) 0%,
        rgba(140,119,28,.13) 100%
    );
    border: 1.5px solid rgba(140,119,28,.42);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background .42s ease,
        border-color .42s ease,
        box-shadow .42s ease;
}
.h2-play-core i {
    font-size: 2rem;
    color: var(--gold);
    margin-left: 6px;
    transition: color .35s ease, transform .35s ease;
}

.h2-play:hover .h2-play-core {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow:
        0 18px 54px rgba(140,119,28,.38),
        0 0 0 14px rgba(140,119,28,.06);
}
.h2-play:hover .h2-play-core i {
    color: var(--white);
    transform: scale(1.15);
}
.h2-play:focus-visible .h2-play-core {
    outline: 2px solid var(--gold);
    outline-offset: 6px;
}

/* ---- Sub-label below circle ---- */
.h2-sub-label {
    margin-top: 1.8rem;
    font-family: 'Poppins', sans-serif;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(140,119,28,.5);
}

/* ---- EXPLORE CTA ---- */
.h2-explore {
    display: inline-flex;
    align-items: center;
    gap: 1.1rem;
    margin-top: 3.2rem;
    padding: .9rem 4.2rem;
    border: 1px solid var(--gold);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .26em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .4s ease;
}
.h2-explore::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
    z-index: 0;
}
.h2-explore:hover::before { transform: scaleX(1); }
.h2-explore:hover { color: var(--white); }
.h2-explore span,
.h2-explore i { position: relative; z-index: 1; }
.h2-explore i { transition: transform .38s ease; }
.h2-explore:hover i { transform: translateX(5px); }
.h2-explore:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ---- Gold rule at very bottom of section ---- */
.h2-gold-rule {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold-light) 25%,
        var(--gold) 50%,
        var(--gold-light) 75%,
        transparent 100%
    );
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .h2-vrule { display: none; }
}
@media (max-width: 768px) {
    .h2-eyebrow { font-size: .52rem; gap: .9rem; margin-bottom: 2.8rem; }
    .h2-eyebrow-line { width: 24px; }
    .h2-play { width: 165px; height: 165px; }
    .h2-play-core { width: 128px; height: 128px; }
    .h2-play-core i { font-size: 1.65rem; }
    .h2-play-ring--outer { inset: -22px; }
    .h2-explore { padding: .85rem 3rem; }
    .h2-sub-label { margin-top: 1.4rem; }
}
@media (max-width: 480px) {
    .h2-corner { display: none; }
    .h2-eyebrow { flex-direction: column; gap: .6rem; margin-bottom: 2.2rem; text-align: center; }
    .h2-eyebrow-line { width: 40px; }
    .h2-play { width: 145px; height: 145px; }
    .h2-play-core { width: 112px; height: 112px; }
    .h2-play-core i { font-size: 1.4rem; margin-left: 4px; }
    .h2-play-ring--outer { inset: -16px; }
    .h2-explore { padding: .82rem 2.4rem; letter-spacing: .18em; }
}

/* =====================================================
   STATS v2 -- Two-column minimalist  (st2-)
   Background: --light-gold (#E2D4A8, light beige-yellow)
===================================================== */

/* Override old dark stats section */
.stats-section {
    background: var(--light-gold);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before,
.stats-section::after { display: none; }

/* ---- Layout ---- */
.st2-inner {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: start;
    gap: 0;
    width: 90%;
    max-width: 1260px;
    margin: 0 auto;
}

/* ---- Left column ---- */
.st2-left {
    padding-right: 5rem;
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
    align-items: flex-start;
}

.st2-pitch {}

.st2-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.65rem, 2vw, 4.85rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.15;
    color: var(--primary-gold);
    margin-bottom: .9rem;
}

.st2-body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    color: rgba(0,0,0,.5);
    line-height: 1.6;
    /* max-width: 380px; */
}

/* Discover button */
.st2-discover-btn {
    display: inline-flex;
    align-items: center;
    padding: .88rem 2.2rem;
    border: 1px solid var(--primary-gold);
    background: #ffffff;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .4s ease;
    flex-shrink: 0;
}
.st2-discover-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--primary-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
    z-index: 0;
}
.st2-discover-btn-text {
    position: relative;
    z-index: 1;
}
.st2-discover-btn:hover::before { transform: scaleX(1); }
.st2-discover-btn:hover { color: #ffffff; }

/* ---- Vertical divider ---- */
.st2-divider {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(139,117,36,.35) 12%,
        rgba(139,117,36,.35) 88%,
        transparent 100%
    );
}

/* ---- Right column ---- */
.st2-right {
    padding-left: 5rem;
    display: flex;
    flex-direction: column;
    gap: 6.5rem;
}

/* 2-col, 3-row metric grid */
.st2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem 2rem;
}

.st2-metric {}

.st2-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: .45rem;
}

.st2-mlabel {
    font-family: 'Open Sans', sans-serif;
    font-size: .78rem;
    color: rgba(0,0,0,.48);
    line-height: 1.55;
}

/* Established capsule */
.st2-established {
    align-self: center;
    display: inline-flex;
    align-items: center;
    padding: .6rem 2.2rem;
    border-radius: 50px;
    border: 1px solid rgba(139,117,36,.35);
    background: rgba(255,255,255,.55);
    font-family: 'Poppins', sans-serif;
    font-size: 1.65rem;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--primary-gold);
    backdrop-filter: blur(4px);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .st2-left  { padding-right: 3.5rem; }
    .st2-right { padding-left: 3.5rem; }
}
@media (max-width: 860px) {
    .st2-inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .st2-divider {
        width: 100%; height: 1px;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(139,117,36,.35) 15%,
            rgba(139,117,36,.35) 85%,
            transparent 100%
        );
        align-self: auto;
    }
    .st2-left  { padding-right: 0; }
    .st2-right { padding-left: 0; }
    .st2-body  { max-width: 100%; }
    .st2-established {
        font-size: 1.3rem;
        letter-spacing: .16em;
        padding: .55rem 1.8rem;
    }
}
@media (max-width: 480px) {
    .stats-section { padding: 60px 0; }
    .st2-grid { gap: 1.8rem 1.4rem; }
    .st2-number { font-size: 1.7rem; }
    .st2-established {
        align-self: flex-start;
        font-size: 1rem;
        letter-spacing: .12em;
        padding: .5rem 1.4rem;
    }
}
@media (max-width: 360px) {
    .st2-established {
        font-size: .8rem;
        letter-spacing: .08em;
        padding: .45rem 1.1rem;
    }
}

/* =====================================================
   PRODUCTS v2 -- Architectural two-col  (pd2-)
   Left: rotating circles rig | Right: product list
   Background: stark white (--bg-white)
===================================================== */

.products-section {
    background: var(--bg-white);
    padding: 90px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0px 0 70px;
    padding: 0;
}

.header-container .line {
    height: 2px;
    background-color: #9C832D;
    flex-grow: 1;
    margin-right: 40px;
}

.header-container .title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #000000;
    letter-spacing: 2px;
    margin: 0;
    white-space: nowrap;
}

/* ---- Outer wrap ---- */
.pd2-wrap {
    width: 90%;
    max-width: 1260px;
    margin: 0 auto;
}

/* ---- Section header: gold rule + label ---- */
.pd2-header {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 4rem;
}
.pd2-rule {
    display: block;
    width: 56px;
    height: 1px;
    background: var(--primary-gold);
    flex-shrink: 0;
}
.pd2-label {
    font-family: 'Poppins', sans-serif;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--primary-gold);
}

/* ---- Two-column body ---- */
.pd2-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 6rem;
    align-items: stretch;
}

/* =====================================================
   LEFT: Circular Image Rotator
===================================================== */
.pd2-visual-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.rotator-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.rotator-wrapper input[type="radio"] {
    display: none;
}

.rotator-wrapper .cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.rotator-wrapper .card {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    transition: transform .5s ease, opacity .5s ease, background-color .5s ease, box-shadow .3s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    background-color: var(--light-gold);
}

.rotator-wrapper .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

/* ---- Active (center) — z-index 7 ---- */
#pd2-item-1:checked ~ .cards #pd2-img-1,
#pd2-item-2:checked ~ .cards #pd2-img-2,
#pd2-item-3:checked ~ .cards #pd2-img-3,
#pd2-item-4:checked ~ .cards #pd2-img-4,
#pd2-item-5:checked ~ .cards #pd2-img-5,
#pd2-item-6:checked ~ .cards #pd2-img-6,
#pd2-item-7:checked ~ .cards #pd2-img-7 {
    transform: translate(0, 0) scale(1);
    z-index: 7;
    opacity: 1;
    box-shadow: 0 12px 40px rgba(139,117,36,.35);
}

/* ---- Near (±1 step) — z-index 6 ---- */
#pd2-item-1:checked ~ .cards #pd2-img-7, #pd2-item-1:checked ~ .cards #pd2-img-2,
#pd2-item-2:checked ~ .cards #pd2-img-1, #pd2-item-2:checked ~ .cards #pd2-img-3,
#pd2-item-3:checked ~ .cards #pd2-img-2, #pd2-item-3:checked ~ .cards #pd2-img-4,
#pd2-item-4:checked ~ .cards #pd2-img-3, #pd2-item-4:checked ~ .cards #pd2-img-5,
#pd2-item-5:checked ~ .cards #pd2-img-4, #pd2-item-5:checked ~ .cards #pd2-img-6,
#pd2-item-6:checked ~ .cards #pd2-img-5, #pd2-item-6:checked ~ .cards #pd2-img-7,
#pd2-item-7:checked ~ .cards #pd2-img-6, #pd2-item-7:checked ~ .cards #pd2-img-1 {
    z-index: 6;
    opacity: .9;
}

/* Near top */
#pd2-item-1:checked ~ .cards #pd2-img-7,
#pd2-item-2:checked ~ .cards #pd2-img-1,
#pd2-item-3:checked ~ .cards #pd2-img-2,
#pd2-item-4:checked ~ .cards #pd2-img-3,
#pd2-item-5:checked ~ .cards #pd2-img-4,
#pd2-item-6:checked ~ .cards #pd2-img-5,
#pd2-item-7:checked ~ .cards #pd2-img-6 {
    transform: translate(-40px, -100px) scale(.88);
}

/* Near bottom */
#pd2-item-1:checked ~ .cards #pd2-img-2,
#pd2-item-2:checked ~ .cards #pd2-img-3,
#pd2-item-3:checked ~ .cards #pd2-img-4,
#pd2-item-4:checked ~ .cards #pd2-img-5,
#pd2-item-5:checked ~ .cards #pd2-img-6,
#pd2-item-6:checked ~ .cards #pd2-img-7,
#pd2-item-7:checked ~ .cards #pd2-img-1 {
    transform: translate(-40px, 100px) scale(.88);
}

/* ---- Mid (±2 steps) — z-index 5 ---- */
#pd2-item-1:checked ~ .cards #pd2-img-6, #pd2-item-1:checked ~ .cards #pd2-img-3,
#pd2-item-2:checked ~ .cards #pd2-img-7, #pd2-item-2:checked ~ .cards #pd2-img-4,
#pd2-item-3:checked ~ .cards #pd2-img-1, #pd2-item-3:checked ~ .cards #pd2-img-5,
#pd2-item-4:checked ~ .cards #pd2-img-2, #pd2-item-4:checked ~ .cards #pd2-img-6,
#pd2-item-5:checked ~ .cards #pd2-img-3, #pd2-item-5:checked ~ .cards #pd2-img-7,
#pd2-item-6:checked ~ .cards #pd2-img-4, #pd2-item-6:checked ~ .cards #pd2-img-1,
#pd2-item-7:checked ~ .cards #pd2-img-5, #pd2-item-7:checked ~ .cards #pd2-img-2 {
    z-index: 5;
    opacity: .75;
}

/* Mid top */
#pd2-item-1:checked ~ .cards #pd2-img-6,
#pd2-item-2:checked ~ .cards #pd2-img-7,
#pd2-item-3:checked ~ .cards #pd2-img-1,
#pd2-item-4:checked ~ .cards #pd2-img-2,
#pd2-item-5:checked ~ .cards #pd2-img-3,
#pd2-item-6:checked ~ .cards #pd2-img-4,
#pd2-item-7:checked ~ .cards #pd2-img-5 {
    transform: translate(-75px, -175px) scale(.75);
}

/* Mid bottom */
#pd2-item-1:checked ~ .cards #pd2-img-3,
#pd2-item-2:checked ~ .cards #pd2-img-4,
#pd2-item-3:checked ~ .cards #pd2-img-5,
#pd2-item-4:checked ~ .cards #pd2-img-6,
#pd2-item-5:checked ~ .cards #pd2-img-7,
#pd2-item-6:checked ~ .cards #pd2-img-1,
#pd2-item-7:checked ~ .cards #pd2-img-2 {
    transform: translate(-75px, 175px) scale(.75);
}

/* ---- Far (±3 steps) — z-index 4 ---- */
#pd2-item-1:checked ~ .cards #pd2-img-5, #pd2-item-1:checked ~ .cards #pd2-img-4,
#pd2-item-2:checked ~ .cards #pd2-img-6, #pd2-item-2:checked ~ .cards #pd2-img-5,
#pd2-item-3:checked ~ .cards #pd2-img-7, #pd2-item-3:checked ~ .cards #pd2-img-6,
#pd2-item-4:checked ~ .cards #pd2-img-1, #pd2-item-4:checked ~ .cards #pd2-img-7,
#pd2-item-5:checked ~ .cards #pd2-img-2, #pd2-item-5:checked ~ .cards #pd2-img-1,
#pd2-item-6:checked ~ .cards #pd2-img-3, #pd2-item-6:checked ~ .cards #pd2-img-2,
#pd2-item-7:checked ~ .cards #pd2-img-4, #pd2-item-7:checked ~ .cards #pd2-img-3 {
    z-index: 4;
    opacity: .5;
}

/* Far top */
#pd2-item-1:checked ~ .cards #pd2-img-5,
#pd2-item-2:checked ~ .cards #pd2-img-6,
#pd2-item-3:checked ~ .cards #pd2-img-7,
#pd2-item-4:checked ~ .cards #pd2-img-1,
#pd2-item-5:checked ~ .cards #pd2-img-2,
#pd2-item-6:checked ~ .cards #pd2-img-3,
#pd2-item-7:checked ~ .cards #pd2-img-4 {
    transform: translate(-105px, -235px) scale(.62);
}

/* Far bottom */
#pd2-item-1:checked ~ .cards #pd2-img-4,
#pd2-item-2:checked ~ .cards #pd2-img-5,
#pd2-item-3:checked ~ .cards #pd2-img-6,
#pd2-item-4:checked ~ .cards #pd2-img-7,
#pd2-item-5:checked ~ .cards #pd2-img-1,
#pd2-item-6:checked ~ .cards #pd2-img-2,
#pd2-item-7:checked ~ .cards #pd2-img-3 {
    transform: translate(-105px, 235px) scale(.62);
}

/* ---- Interaction hint ---- */
.interaction-hint {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding-left: .5rem;
}

.curve-arrow {
    width: 56px;
    height: auto;
    flex-shrink: 0;
}

.pd2-hint-text {
    font-family: 'Poppins', sans-serif;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--primary-gold);
    opacity: .7;
}

/* =====================================================
   RIGHT: Product content rotator
===================================================== */
.pd2-list-col {
    position: relative;
}

/* Viewport — 3 full items (~200px each) + 2 gaps (40px each) = 680px */
.pd2-content-stage {
    position: relative;
    height: 700px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom,
        transparent 0%, black 2%, black 98%, transparent 100%);
    mask-image: linear-gradient(to bottom,
        transparent 0%, black 2%, black 98%, transparent 100%);
}

/* Each content card — absolutely stacked */
.pd2-content-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0 2rem;
    transition: transform .55s cubic-bezier(.4,0,.2,1),
                opacity   .55s ease,
                filter    .55s ease;
    transform: translateY(750px);
    opacity: 0;
    filter: blur(10px);
    pointer-events: none;
    z-index: 1;
}

/* Active — full item in center (240px from top) */
.pd2-content-item.is-active {
    transform: translateY(240px);
    opacity: 1;
    filter: blur(0);
    pointer-events: auto;
    z-index: 3;
}

/* Previous — clamped at top so it never bleeds into active */
.pd2-content-item.is-prev {
    transform: translateY(0px);
    opacity: .88;
    filter: blur(2px);
    z-index: 2;
    pointer-events: none;
    max-height: 220px;
    overflow: hidden;
}

/* Next — pushed below active's full height so it never overlaps */
.pd2-content-item.is-next {
    transform: translateY(560px);
    opacity: .88;
    filter: blur(2px);
    z-index: 2;
    pointer-events: none;
    max-height: 140px;
    overflow: hidden;
}

.pd2-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 1.6vw, 1.45rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--primary-gold);
    margin-bottom: .75rem;
}

.pd2-item-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: .875rem;
    color: rgba(0,0,0,.45);
    line-height: 1.9;
    margin-bottom: 1.1rem;
    max-width: 440px;
}

.pd2-item-link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Poppins', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--primary-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(139,117,36,.3);
    padding-bottom: 2px;
    transition: gap .3s ease, border-color .3s ease;
}
.pd2-item-link i { font-size: .6rem; transition: transform .3s ease; }
.pd2-item-link:hover { gap: .9rem; border-color: var(--primary-gold); }
.pd2-item-link:hover i { transform: translateX(3px); }

/* =====================================================
   RESPONSIVE
===================================================== */

/* ---- 1100px: narrower gap, rotator 260px (86.7% of 300) ---- */
@media (max-width: 1100px) {
    .pd2-body { gap: 0 4rem; }
    .rotator-wrapper { width: 260px; height: 260px; }

    #pd2-item-1:checked ~ .cards #pd2-img-7,
    #pd2-item-2:checked ~ .cards #pd2-img-1,
    #pd2-item-3:checked ~ .cards #pd2-img-2,
    #pd2-item-4:checked ~ .cards #pd2-img-3,
    #pd2-item-5:checked ~ .cards #pd2-img-4,
    #pd2-item-6:checked ~ .cards #pd2-img-5,
    #pd2-item-7:checked ~ .cards #pd2-img-6 { transform: translate(-35px, -87px) scale(.88); }

    #pd2-item-1:checked ~ .cards #pd2-img-2,
    #pd2-item-2:checked ~ .cards #pd2-img-3,
    #pd2-item-3:checked ~ .cards #pd2-img-4,
    #pd2-item-4:checked ~ .cards #pd2-img-5,
    #pd2-item-5:checked ~ .cards #pd2-img-6,
    #pd2-item-6:checked ~ .cards #pd2-img-7,
    #pd2-item-7:checked ~ .cards #pd2-img-1 { transform: translate(-35px, 87px) scale(.88); }

    #pd2-item-1:checked ~ .cards #pd2-img-6,
    #pd2-item-2:checked ~ .cards #pd2-img-7,
    #pd2-item-3:checked ~ .cards #pd2-img-1,
    #pd2-item-4:checked ~ .cards #pd2-img-2,
    #pd2-item-5:checked ~ .cards #pd2-img-3,
    #pd2-item-6:checked ~ .cards #pd2-img-4,
    #pd2-item-7:checked ~ .cards #pd2-img-5 { transform: translate(-65px, -152px) scale(.75); }

    #pd2-item-1:checked ~ .cards #pd2-img-3,
    #pd2-item-2:checked ~ .cards #pd2-img-4,
    #pd2-item-3:checked ~ .cards #pd2-img-5,
    #pd2-item-4:checked ~ .cards #pd2-img-6,
    #pd2-item-5:checked ~ .cards #pd2-img-7,
    #pd2-item-6:checked ~ .cards #pd2-img-1,
    #pd2-item-7:checked ~ .cards #pd2-img-2 { transform: translate(-65px, 152px) scale(.75); }

    #pd2-item-1:checked ~ .cards #pd2-img-5,
    #pd2-item-2:checked ~ .cards #pd2-img-6,
    #pd2-item-3:checked ~ .cards #pd2-img-7,
    #pd2-item-4:checked ~ .cards #pd2-img-1,
    #pd2-item-5:checked ~ .cards #pd2-img-2,
    #pd2-item-6:checked ~ .cards #pd2-img-3,
    #pd2-item-7:checked ~ .cards #pd2-img-4 { transform: translate(-91px, -204px) scale(.62); }

    #pd2-item-1:checked ~ .cards #pd2-img-4,
    #pd2-item-2:checked ~ .cards #pd2-img-5,
    #pd2-item-3:checked ~ .cards #pd2-img-6,
    #pd2-item-4:checked ~ .cards #pd2-img-7,
    #pd2-item-5:checked ~ .cards #pd2-img-1,
    #pd2-item-6:checked ~ .cards #pd2-img-2,
    #pd2-item-7:checked ~ .cards #pd2-img-3 { transform: translate(-91px, 204px) scale(.62); }
}

/* ---- 860px: single column, fan kept, padding reserves space for overflow cards ---- */
@media (max-width: 860px) {
    .pd2-body {
        grid-template-columns: 1fr;
        gap: 2rem 0;
    }
    .pd2-visual-col {
        align-items: center;
        /* 240px rotator: far cards overflow ~142px above & below — reserve that space */
        padding: 155px 0 155px;
    }
    .rotator-wrapper { width: 240px; height: 240px; }
    .pd2-item-desc { max-width: 100%; }
    .header-container { margin-bottom: 48px; }
    .header-container .title { font-size: 38px; }

    /* Content stage: drop translateY stacking, show only active item */
    .pd2-content-stage {
        height: auto !important;
        overflow: visible;
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }
    .pd2-content-item {
        position: static !important;
        display: none;
        transform: none !important;
        opacity: 0;
        filter: none !important;
        pointer-events: none;
        max-height: none !important;
        overflow: visible !important;
        padding: 0;
    }
    .pd2-content-item.is-active {
        display: block;
        opacity: 1;
        pointer-events: auto;
        padding: 1.2rem 0 1.8rem;
        animation: pd2FadeUp .4s ease forwards;
    }
    .pd2-content-item.is-prev,
    .pd2-content-item.is-next { display: none !important; }

    @keyframes pd2FadeUp {
        from { opacity: 0; transform: translateY(10px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* Scaled fan translations for 240px rotator */
    #pd2-item-1:checked ~ .cards #pd2-img-7,
    #pd2-item-2:checked ~ .cards #pd2-img-1,
    #pd2-item-3:checked ~ .cards #pd2-img-2,
    #pd2-item-4:checked ~ .cards #pd2-img-3,
    #pd2-item-5:checked ~ .cards #pd2-img-4,
    #pd2-item-6:checked ~ .cards #pd2-img-5,
    #pd2-item-7:checked ~ .cards #pd2-img-6 { transform: translate(-32px, -80px) scale(.88); }

    #pd2-item-1:checked ~ .cards #pd2-img-2,
    #pd2-item-2:checked ~ .cards #pd2-img-3,
    #pd2-item-3:checked ~ .cards #pd2-img-4,
    #pd2-item-4:checked ~ .cards #pd2-img-5,
    #pd2-item-5:checked ~ .cards #pd2-img-6,
    #pd2-item-6:checked ~ .cards #pd2-img-7,
    #pd2-item-7:checked ~ .cards #pd2-img-1 { transform: translate(-32px, 80px) scale(.88); }

    #pd2-item-1:checked ~ .cards #pd2-img-6,
    #pd2-item-2:checked ~ .cards #pd2-img-7,
    #pd2-item-3:checked ~ .cards #pd2-img-1,
    #pd2-item-4:checked ~ .cards #pd2-img-2,
    #pd2-item-5:checked ~ .cards #pd2-img-3,
    #pd2-item-6:checked ~ .cards #pd2-img-4,
    #pd2-item-7:checked ~ .cards #pd2-img-5 { transform: translate(-60px, -140px) scale(.75); }

    #pd2-item-1:checked ~ .cards #pd2-img-3,
    #pd2-item-2:checked ~ .cards #pd2-img-4,
    #pd2-item-3:checked ~ .cards #pd2-img-5,
    #pd2-item-4:checked ~ .cards #pd2-img-6,
    #pd2-item-5:checked ~ .cards #pd2-img-7,
    #pd2-item-6:checked ~ .cards #pd2-img-1,
    #pd2-item-7:checked ~ .cards #pd2-img-2 { transform: translate(-60px, 140px) scale(.75); }

    #pd2-item-1:checked ~ .cards #pd2-img-5,
    #pd2-item-2:checked ~ .cards #pd2-img-6,
    #pd2-item-3:checked ~ .cards #pd2-img-7,
    #pd2-item-4:checked ~ .cards #pd2-img-1,
    #pd2-item-5:checked ~ .cards #pd2-img-2,
    #pd2-item-6:checked ~ .cards #pd2-img-3,
    #pd2-item-7:checked ~ .cards #pd2-img-4 { transform: translate(-84px, -188px) scale(.62); }

    #pd2-item-1:checked ~ .cards #pd2-img-4,
    #pd2-item-2:checked ~ .cards #pd2-img-5,
    #pd2-item-3:checked ~ .cards #pd2-img-6,
    #pd2-item-4:checked ~ .cards #pd2-img-7,
    #pd2-item-5:checked ~ .cards #pd2-img-1,
    #pd2-item-6:checked ~ .cards #pd2-img-2,
    #pd2-item-7:checked ~ .cards #pd2-img-3 { transform: translate(-84px, 188px) scale(.62); }
}

/* ====================================================
   MOBILE (≤ 768px): active image + dot nav
   Fan replaced with single active circle + 6 tappable dots
==================================================== */
@media (max-width: 768px) {

    .products-section { padding: 60px 0; }
    .header-container { margin-bottom: 36px; }
    .header-container .title { font-size: 30px; letter-spacing: 1px; }
    .header-container .line { margin-right: 18px; }

    .pd2-body { gap: 2rem 0; }

    /* Visual col: no fan padding needed — fan is replaced */
    .pd2-visual-col { padding: 0; }

    /* Rotator wrapper: taller to hold dots row */
    .rotator-wrapper {
        width: 200px;
        height: 248px; /* 200px image + 16px gap + 10px dots + 22px breathing room */
        margin: 0 auto;
    }

    /* ---- All cards: reset to dot style ---- */
    .rotator-wrapper .card {
        width: 10px !important;
        height: 10px !important;
        top: 222px !important;
        border-radius: 50% !important;
        background: rgba(156, 131, 45, 0.35) !important;
        box-shadow: none !important;
        overflow: hidden;
        transform: none !important;
        opacity: 1 !important;
        transition: background .3s ease, width .4s ease, height .4s ease,
                    top .4s ease, left .4s ease !important;
    }
    /* Hide image inside inactive dot */
    .rotator-wrapper .card img { opacity: 0; transition: opacity .35s ease; }

    /* ---- Dot positions (7 × 10px + 6 × 8px gaps = 118px, centered in 200px) ---- */
    /* start = (200 - 118) / 2 = 41px */
    #pd2-img-1 { left: 41px !important; }
    #pd2-img-2 { left: 59px !important; }
    #pd2-img-3 { left: 77px !important; }
    #pd2-img-4 { left: 95px !important; }
    #pd2-img-5 { left: 113px !important; }
    #pd2-img-6 { left: 131px !important; }
    #pd2-img-7 { left: 149px !important; }

    /* ---- Active card: full-size circle image ---- */
    #pd2-item-1:checked ~ .cards #pd2-img-1,
    #pd2-item-2:checked ~ .cards #pd2-img-2,
    #pd2-item-3:checked ~ .cards #pd2-img-3,
    #pd2-item-4:checked ~ .cards #pd2-img-4,
    #pd2-item-5:checked ~ .cards #pd2-img-5,
    #pd2-item-6:checked ~ .cards #pd2-img-6,
    #pd2-item-7:checked ~ .cards #pd2-img-7 {
        width: 200px !important;
        height: 200px !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        opacity: 1 !important;
        box-shadow: 0 8px 28px rgba(139, 117, 36, .30) !important;
        background: var(--light-gold) !important;
        z-index: 10;
    }
    #pd2-item-1:checked ~ .cards #pd2-img-1 img,
    #pd2-item-2:checked ~ .cards #pd2-img-2 img,
    #pd2-item-3:checked ~ .cards #pd2-img-3 img,
    #pd2-item-4:checked ~ .cards #pd2-img-4 img,
    #pd2-item-5:checked ~ .cards #pd2-img-5 img,
    #pd2-item-6:checked ~ .cards #pd2-img-6 img,
    #pd2-item-7:checked ~ .cards #pd2-img-7 img { opacity: 1; }

    /* Active dot: gold highlight (the dot position for active item still renders
       briefly before being overridden — using a gold tint helps) */
    #pd2-item-1:checked ~ .cards #pd2-img-1,
    #pd2-item-2:checked ~ .cards #pd2-img-2,
    #pd2-item-3:checked ~ .cards #pd2-img-3,
    #pd2-item-4:checked ~ .cards #pd2-img-4,
    #pd2-item-5:checked ~ .cards #pd2-img-5,
    #pd2-item-6:checked ~ .cards #pd2-img-6,
    #pd2-item-7:checked ~ .cards #pd2-img-7 { background: var(--light-gold) !important; }
}

/* ---- 480px: small phones ---- */
@media (max-width: 480px) {
    .header-container .title { font-size: 26px; }
    .header-container .line { margin-right: 14px; }

    /* Rotator 180px */
    .rotator-wrapper {
        width: 180px;
        height: 228px;
    }

    /* Resize active card for 180px rotator */
    #pd2-item-1:checked ~ .cards #pd2-img-1,
    #pd2-item-2:checked ~ .cards #pd2-img-2,
    #pd2-item-3:checked ~ .cards #pd2-img-3,
    #pd2-item-4:checked ~ .cards #pd2-img-4,
    #pd2-item-5:checked ~ .cards #pd2-img-5,
    #pd2-item-6:checked ~ .cards #pd2-img-6,
    #pd2-item-7:checked ~ .cards #pd2-img-7 {
        width: 180px !important;
        height: 180px !important;
    }

    /* Re-center dots in 180px wrapper (118px total, start = (180-118)/2 = 31px) */
    .rotator-wrapper .card { top: 200px !important; }
    #pd2-img-1 { left: 31px !important; }
    #pd2-img-2 { left: 49px !important; }
    #pd2-img-3 { left: 67px !important; }
    #pd2-img-4 { left: 85px !important; }
    #pd2-img-5 { left: 103px !important; }
    #pd2-img-6 { left: 121px !important; }
    #pd2-img-7 { left: 139px !important; }
}

/* ---- 360px: very small phones ---- */
@media (max-width: 360px) {
    .header-container .title { font-size: 22px; }
    .header-container .line { margin-right: 10px; }

    /* Rotator 160px */
    .rotator-wrapper {
        width: 160px;
        height: 208px;
    }
    #pd2-item-1:checked ~ .cards #pd2-img-1,
    #pd2-item-2:checked ~ .cards #pd2-img-2,
    #pd2-item-3:checked ~ .cards #pd2-img-3,
    #pd2-item-4:checked ~ .cards #pd2-img-4,
    #pd2-item-5:checked ~ .cards #pd2-img-5,
    #pd2-item-6:checked ~ .cards #pd2-img-6,
    #pd2-item-7:checked ~ .cards #pd2-img-7 {
        width: 160px !important;
        height: 160px !important;
    }

    /* Re-center dots in 160px wrapper (118px total, start = (160-118)/2 = 21px) */
    .rotator-wrapper .card { top: 180px !important; }
    #pd2-img-1 { left: 21px !important; }
    #pd2-img-2 { left: 39px !important; }
    #pd2-img-3 { left: 57px !important; }
    #pd2-img-4 { left: 75px !important; }
    #pd2-img-5 { left: 93px !important; }
    #pd2-img-6 { left: 111px !important; }
    #pd2-img-7 { left: 129px !important; }
}

/* ============================================================
   PROCESS v2  (pr2-)
   Override old dark section; new white-bg numbered + wheel layout
============================================================ */
.process-section {
    background: var(--bg-white) !important;
    padding: 0 !important;
}
.process-section::before,
.process-section::after { display: none !important; }
.process-header,
.process-timeline { display: none !important; }

/* ---- Section shell ---- */
.pr2-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 110px;
    margin-bottom: 55px;
}

/* Gold rule top-right */
.pr2-rule-top {
    position: absolute;
    top: 44px;
    right: 80px;
    width: 130px;
    height: 2px;
    background: var(--primary-gold);
}

/* Inner container */
.pr2-inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---- Header ---- */
.pr2-header {
    margin-bottom: 40px;
}

.pr2-header .section-label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.pr2-title {
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 900;
    letter-spacing: .1em;
    color: var(--dark);
    text-transform: uppercase;
    margin: 0 0 24px;
    line-height: 1.1;
}

.process-header {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.process-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #000000;
    margin: 0;
    white-space: nowrap;
}

.process-line {
    height: 2px;
    background-color: #9C832D;
    flex-grow: 1;
    margin-left: 30px;
}

.header-section {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

.header-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 1px;
}

.header-line {
    height: 2px;
    background-color: #9C832D;
    flex-grow: 1;
    margin-left: 25px;
}

@media (max-width: 600px) {
    .header-text { font-size: 24px; }
    .header-line { margin-left: 15px; }
}

.production-list-container {
    max-width: 800px;
    /* margin: 40px auto; */
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.step-number {
    color: #9C832D;
    font-weight: 700;
    min-width: 25px;
    margin-right: 5px;
}

.step-content {
    margin: 0;
    color: #706F6F;
    font-size: 16px;
}

.step-title {
    color: #9C832D;
    font-weight: 700;
}

.footer-note {
    margin-top: 30px;
    color: #9C832D;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .step-content  { font-size: 14px; }
    .footer-note   { font-size: 16px; }
}

.pr2-pill {
    display: inline-block;
    padding: 17px 26px;
    border-radius: 50px;
    background: var(--primary-gold);
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* ---- Body two-col grid ---- */
.pr2-body {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 70px;
    align-items: center;
}

/* ---- Numbered list ---- */
.pr2-list-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.pr2-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(139,117,36,.14);
}

.pr2-step:nth-child(odd)  { padding-right: 28px; }
.pr2-step:nth-child(even) {
    padding-left: 28px;
    border-left: 1px solid rgba(139,117,36,.14);
}

/* Last row: no bottom border */
.pr2-step:nth-last-child(-n+2) { border-bottom: none; }

.pr2-num {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--primary-gold);
    min-width: 38px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.pr2-step-name {
    font-size: .88rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.35;
}

/* ---- Wheel column ---- */
.pr2-wheel-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pr2-wheel {
    position: relative;
    width: 460px;
    height: 460px;
    flex-shrink: 0;
}

.pr2-wheel > svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* ---- Nodes (common) ---- */
.pr2-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.pr2-node-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--text-white);
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(139,117,36,.32);
    flex-shrink: 0;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease, background .35s ease;
}
.pr2-node:hover .pr2-node-icon {
    transform: scale(1.35);
    background: var(--gold-light);
    box-shadow: 0 8px 28px rgba(139,117,36,.55);
}

.pr2-node-label {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .07em;
    color: var(--dark);
    line-height: 1.3;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ---- Center node ---- */
.pr2-node-center {
    left: 50%;
    top:  50%;
}

.pr2-icon-center {
    width: 82px;
    height: 82px;
    font-size: 1.8rem;
    background: var(--dark);
    box-shadow: 0 6px 28px rgba(0,0,0,.28);
}

/* ---- Outer node positions ---- */
/* Node 0 — top (Stitching): SVG (230,70) → 50%, 15.2% */
.pr2-node-0 { left: 50%;    top: 15.2%; }
/* Node 1 — top-right (Finishing): SVG (382,181) → 83%, 39.3% */
.pr2-node-1 { left: 83%;    top: 39.3%; }
/* Node 2 — bottom-right (Packing): SVG (324,359) → 70.4%, 78% */
.pr2-node-2 { left: 70.4%;  top: 78%;   }
/* Node 3 — bottom-left (Design): SVG (136,359) → 29.6%, 78% */
.pr2-node-3 { left: 29.6%;  top: 78%;   }
/* Node 4 — top-left (Fabric): SVG (78,181) → 17%, 39.3% */
.pr2-node-4 { left: 17%;    top: 39.3%; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .pr2-body {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .pr2-wheel-col { order: -1; }
}

@media (max-width: 768px) {
    .pr2-section { padding: 72px 0 80px; }
    .pr2-inner   { padding: 0 24px; }
    .pr2-rule-top { right: 24px; width: 90px; }
    .pr2-wheel {
        width: 340px;
        height: 340px;
    }
    .pr2-node-icon { width: 42px; height: 42px; font-size: 1rem; }
    .pr2-icon-center { width: 64px; height: 64px; font-size: 1.4rem; }
    .pr2-node-label { font-size: .58rem; }
    .pr2-pill {
        font-size: 1.15rem;
        letter-spacing: .10em;
        padding: 14px 22px;
    }
}

@media (max-width: 540px) {
    .pr2-section { padding: 56px 0 64px; }
    .pr2-inner   { padding: 0 16px; }
    .pr2-list-col { grid-template-columns: 1fr; }
    .pr2-step:nth-child(odd)  { padding-right: 0; }
    .pr2-step:nth-child(even) { padding-left: 0; border-left: none; }
    .pr2-step:nth-last-child(-n+2) { border-bottom: 1px solid rgba(139,117,36,.14); }
    .pr2-step:last-child { border-bottom: none; }
    .pr2-wheel { width: 290px; height: 290px; }
    .pr2-node-icon { width: 36px; height: 36px; font-size: .85rem; }
    .pr2-icon-center { width: 54px; height: 54px; font-size: 1.2rem; }
    .pr2-node-label { display: none; }
    .pr2-pill {
        font-size: .92rem;
        letter-spacing: .08em;
        padding: 12px 18px;
    }
}

@media (max-width: 480px) {
    .pr2-pill {
        font-size: .78rem;
        letter-spacing: .06em;
        padding: 11px 16px;
        text-align: center;
        display: block;
    }
}

@media (max-width: 360px) {
    .pr2-pill {
        font-size: .68rem;
        letter-spacing: .04em;
        padding: 10px 14px;
    }
}

/* ====================================================
   PRODUCT DETAIL PAGE
   ==================================================== */
.product-page {
    --pd-gold:       #8c7b24;
    --pd-text:       #948a4c;
    --pd-bg-gray:    #eeeeee;
    --pd-bg-olive:   #847726;
    max-width: 1100px;
    margin: 0 auto;
    padding: calc(var(--nav-h) + 25px) 20px 40px;
    font-family: Arial, sans-serif;
}

/* Header */
.product-page .product-header {
    text-align: center;
    margin-bottom: 15px;
}
.product-page .product-header h1 {
    font-family: 'Arial Black', sans-serif;
    color: var(--pd-gold);
    font-size: 38px;
    /* margin-bottom: 15px; */
}

/* Breadcrumb — override global flex nav style */
.product-page .breadcrumb {
    display: block;
    color: var(--pd-gold);
    font-weight: bold;
    font-size: 9px;
    padding: 0;
    background: none;
    text-align: left;
}
.product-page .breadcrumb .arrow {
    margin: 0 5px;
    font-size: 18px;
}

/* Hero image placeholder */
.product-page .hero-image-container {
    background-color: var(--pd-bg-gray);
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
.product-page .hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-page .placeholder-icon {
    width: 120px;
    height: 120px;
    background-color: #f9f2cf;
    border-radius: 50%;
}
.product-page .placeholder-icon.sm {
    width: 80px;
    height: 80px;
}

/* Section divider */
.product-page .section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.product-page .section-divider .line {
    height: 1px;
    background-color: var(--pd-gold);
    width: 150px;
}
.product-page .section-divider h3 {
    color: var(--pd-gold);
    font-family: 'Arial Black', sans-serif;
    margin: 0;
}

/* Materials */
.product-page .materials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}
.product-page .material-item {
    text-align: center;
    width: 80px;
    flex-shrink: 0;
}
.product-page .material-item span {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-page .material-item .box {
    width: 80px;
    height: 80px;
    background-color: #b0a469;
    margin-bottom: 10px;
    overflow: hidden;
}
.product-page .material-item .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-page .material-item span {
    font-size: 12px;
    font-weight: bold;
    color: var(--pd-gold);
}

/* Description */
.product-page .description-block h3 {
    color: var(--pd-gold);
    font-family: 'Arial Black', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
}
.product-page .description-block p {
    color: var(--pd-text);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 50px;
}

/* Bottom gallery */
.product-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.product-page .gallery-item {
    background-color: var(--pd-bg-olive);
    aspect-ratio: 3 / 4;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.product-page .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .product-page .gallery-grid       { grid-template-columns: 1fr; }
    .product-page .section-divider .line { width: 50px; }
    .product-page .product-header h1  { font-size: 28px; }
    .product-page .description-block h3 { font-size: 24px; }
}

/* ====================================================
   MOBILE NAV — Products accordion
   Overrides the display:none set on .nav-dropdown/.nav-subdrop
   at the 768px breakpoint so users can access product pages
==================================================== */
@media (max-width: 768px) {

    /* Products: chevron toggle — shows sub-options exist */
    .nav-has-dropdown .nav-arrow {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        margin-left: 8px;
        border: 1px solid rgba(255,255,255,.45);
        border-radius: 50%;
        font-size: .55rem;
        flex-shrink: 0;
        transition: transform .3s ease, background .3s ease, border-color .3s ease;
        vertical-align: middle;
    }
    .nav-has-dropdown.mob-open .nav-arrow {
        transform: rotate(180deg);
        background: rgba(255,255,255,.15);
        border-color: rgba(255,255,255,.7);
    }

    /* Products dropdown: accordion */
    .nav-dropdown {
        display: block !important;
        position: static;
        background: rgba(0,0,0,.18);
        min-width: 100%;
        width: 100%;
        padding: 0;
        margin: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }
    .nav-has-dropdown.mob-open > .nav-dropdown {
        max-height: 700px;
    }

    /* Sub-dropdown: accordion (2nd level) */
    .nav-subdrop {
        display: block !important;
        position: static;
        background: rgba(0,0,0,.22);
        min-width: 100%;
        width: 100%;
        padding: 0;
        margin: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }
    .nav-has-sub.mob-open > .nav-subdrop {
        max-height: 500px;
    }

    /* Products row: full-width, text left, arrow pinned right */
    .nav-has-dropdown > .nav-link--arrow {
        cursor: pointer !important;
        user-select: none;
        width: 100%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 0 1.2rem !important;
    }

    /* Dropdown category rows (Women's Wear, Bags) */
    .nav-dropdown > .nav-dropdown-item > .nav-dropdown-link {
        min-height: 52px;
        padding: 0 1.5rem 0 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255,255,255,.1);
        font-size: .85rem;
        color: rgba(255,255,255,.9);
        cursor: pointer;
        white-space: normal;
        width: 100%;
        box-sizing: border-box;
    }

    /* Chevron-right badge: sub-option indicator */
    .nav-dropdown-link i {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        border: 1px solid rgba(255,255,255,.35);
        border-radius: 50%;
        font-size: .5rem;
        opacity: 1;
        transition: transform .3s ease, background .3s ease, border-color .3s ease;
    }
    .nav-has-sub.mob-open > .nav-dropdown-link i {
        transform: rotate(90deg);
        background: rgba(255,255,255,.12);
        border-color: rgba(255,255,255,.6);
    }

    /* Sub-links (Dresses, Tops, etc.): indented, left-aligned */
    .nav-subdrop .nav-subdrop-link {
        display: flex;
        align-items: center;
        min-height: 46px;
        padding: 0 1.5rem 0 3rem;
        border-bottom: 1px solid rgba(255,255,255,.07);
        font-size: .82rem;
        color: rgba(255,255,255,.78);
        white-space: normal;
        width: 100%;
        box-sizing: border-box;
    }
    .nav-subdrop .nav-subdrop-link:last-child { border-bottom: none; }
    .nav-subdrop .nav-subdrop-link::before {
        content: '—';
        font-size: .6rem;
        color: rgba(255,255,255,.35);
        margin-right: .6rem;
        flex-shrink: 0;
    }
}

/* ====================================================
   PRODUCTS SECTION HEADING — small screens
==================================================== */
@media (max-width: 640px) {
    .header-container {
        flex-wrap: wrap;
        gap: 8px;
    }
    .header-container .title {
        font-size: 26px;
        white-space: normal;
    }
    .header-container .line {
        min-width: 40px;
        margin-right: 0;
    }
}

/* ====================================================
   PRODUCT DETAIL PAGE — Responsive
==================================================== */

/* ---- 960px: gallery 2-col ---- */
@media (max-width: 960px) {
    .product-page .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- 768px: override the existing 1-col rule → keep 2-col ---- */
@media (max-width: 768px) {
    .product-page .gallery-grid    { grid-template-columns: repeat(2, 1fr); }
    .product-page                  { padding: calc(var(--nav-h) + 20px) 16px 32px; }
    .product-page .hero-image-container { margin-bottom: 28px; }
    /* flex-wrap here handles pages with many material items (e.g. bags has 7) */
    .product-page .materials-grid  { gap: 20px; margin-bottom: 40px; flex-wrap: wrap; justify-content: center; }
    .product-page .section-divider { gap: 14px; margin-bottom: 20px; }
}

/* ---- 640px: tighten spacing ---- */
@media (max-width: 640px) {
    .product-page .product-header h1    { font-size: 24px; }
    .product-page .description-block h3 { font-size: 20px; }
    .product-page .materials-grid       { gap: 16px; }
    .product-page .material-item .box   { width: 70px; height: 70px; }
    .product-page .material-item        { width: 70px; }
    .product-page .gallery-grid         { gap: 14px; }
}

/* ---- 480px: single-col gallery, tighten further ---- */
@media (max-width: 480px) {
    .product-page .gallery-grid         { grid-template-columns: 1fr; gap: 12px; }
    .product-page .product-header h1    { font-size: 20px; }
    .product-page .description-block h3 { font-size: 18px; }
    .product-page .description-block p  { margin-bottom: 28px; }
    .product-page .materials-grid       { gap: 14px; margin-bottom: 30px; flex-wrap: wrap; justify-content: center; }
    .product-page .material-item .box   { width: 64px; height: 64px; }
    .product-page .material-item        { width: 64px; }
    .product-page .hero-image-container { margin-bottom: 20px; }
    .product-page .section-divider      { gap: 10px; }
}

/* ---- 380px: tiny phones ---- */
@media (max-width: 380px) {
    .product-page                       { padding: calc(var(--nav-h) + 14px) 12px 24px; }
    .product-page .product-header h1    { font-size: 17px; }
    .product-page .description-block h3 { font-size: 16px; }
    .product-page .material-item .box   { width: 56px; height: 56px; }
    .product-page .material-item        { width: 56px; }
    .product-page .section-divider .line { width: 30px; }
}
