/* ============================================================
   GEETANJALI AGRO — Custom CSS
   Color Palette:
     --gold-dark:   #8B6914  (deep Muga gold)
     --gold:        #C9920A  (Muga gold)
     --gold-light:  #E8B84B  (light golden sheen)
     --gold-pale:   #FBF0D4  (pale gold / cream)
     --ivory:       #FAF6EE  (off-white fabric)
     --charcoal:    #1A1A1A  (deep black)
     --brown:       #3D2B1F  (rich warm brown)
     --text:        #2E2218  (warm text)
     --text-muted:  #6B5744  (muted warm text)
     --green-wa:    #25D366  (WhatsApp green)
     --green-wa-dk: #1EB855  (WA hover)
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold-dark:  #8B6914;
    --gold:       #C9920A;
    --gold-light: #E8B84B;
    --gold-pale:  #FBF0D4;
    --ivory:      #FAF6EE;
    --charcoal:   #1A1A1A;
    --brown:      #3D2B1F;
    --text:       #2E2218;
    --text-muted: #6B5744;
    --green-wa:   #25D366;
    --green-wa-dk:#1EB855;
    --white:      #FFFFFF;
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
    --shadow-md:  0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:  0 16px 48px rgba(0,0,0,0.14);
    --transition: 0.3s ease;
    --font-serif: 'Noto Serif', Georgia, serif;
    --font-sans:  'Jost', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background-color: var(--ivory);
    line-height: 1.65;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.18;
    color: var(--brown);
}

.section-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-title { margin-bottom: 16px; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: none;
    transition: background var(--transition), color var(--transition),
                transform 0.15s ease, box-shadow var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-lg {
    padding: 15px 30px;
    font-size: 0.95rem;
}

.btn-sm {
    padding: 9px 16px;
    font-size: 0.82rem;
}

.btn-whatsapp {
    background: var(--green-wa);
    color: white;
    box-shadow: 0 4px 14px rgba(37,211,102,0.25);
}
.btn-whatsapp:hover {
    background: var(--green-wa-dk);
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--brown);
    border: 1.5px solid var(--brown);
}
.btn-outline:hover {
    background: var(--brown);
    color: var(--ivory);
}

.btn-call {
    background: var(--brown);
    color: var(--ivory);
}
.btn-call:hover { background: var(--charcoal); }

.btn-light {
    background: var(--ivory);
    color: var(--brown);
}
.btn-light:hover { background: var(--gold-pale); }

/* ── SECTION BASE ─────────────────────────────────────────── */
.section {
    padding: 96px 0;
}

/* ── ANNOUNCEMENT BAR ─────────────────────────────────────── */
.announcement-bar {
    background: var(--brown);
    color: var(--gold-pale);
    text-align: center;
    padding: 9px 16px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ── HEADER ───────────────────────────────────────────────── */
#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250,246,238,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139,105,20,0.12);
    transition: box-shadow var(--transition);
}

#header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
    height: 72px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    flex-shrink: 0;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    font-style: italic;
    color: var(--brown);
    letter-spacing: 0.01em;
}

.logo-sub {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

#nav { flex: 1; }

.nav-list {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-link {
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--brown);
}

.nav-link:hover::after, .nav-link.active::after {
    width: calc(100% - 24px);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform 0.15s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.header-icon-btn svg {
    width: 22px;
    height: 22px;
}

.header-icon-btn--wa {
    background: var(--green-wa);
    color: white;
}

.header-icon-btn--wa:hover {
    background: var(--green-wa-dk);
    transform: scale(1.08);
}

.header-icon-btn--login {
    background: var(--gold-pale);
    color: var(--brown);
}

.header-icon-btn--login:hover {
    background: rgba(201,146,10,0.15);
    transform: scale(1.08);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ───────────────────────────────────────────── */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: 72px;
    background: var(--ivory);
    z-index: 999;
    padding: 40px 24px;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
}

.mobile-nav-overlay.open { display: flex; }

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: block;
    padding: 14px 0;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--brown);
    border-bottom: 1px solid rgba(139,105,20,0.1);
    transition: color var(--transition);
}

.mobile-nav-link:hover { color: var(--gold); }

.mobile-nav-ctas {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.mobile-nav-ctas .btn { flex: 1; justify-content: center; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    min-height: calc(100vh - 82px);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-items: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero-slide--1 {
    background-image: url('assets/image1.jpeg');
    z-index: 1;
}
.hero-slide--2 {
    background-image: url('assets/image6.jpeg');
    z-index: 2;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide--2.active {
    opacity: 1;
}

.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(20,12,4,0.45);
    border: 1px solid rgba(250,246,238,0.28);
    color: var(--ivory);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.hero-carousel-btn:hover {
    background: rgba(201,146,10,0.38);
    border-color: var(--gold-light);
    transform: translateY(-50%) scale(1.08);
}
.hero-carousel-btn svg { width: 22px; height: 22px; pointer-events: none; }
.hero-carousel-prev { left: 28px; }
.hero-carousel-next { right: 28px; }

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        to bottom,
        rgba(20,12,4,0.52) 0%,
        rgba(20,12,4,0.44) 50%,
        rgba(20,12,4,0.64) 100%
    );
}

.hero-pattern {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,146,10,0.18);
    border: 1px solid rgba(201,146,10,0.4);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    display: block;
}

.hero-title em:first-child {
    color: var(--ivory);
    white-space: nowrap;
}

.hero-title em:last-child {
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(250,246,238,0.78);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    justify-content: center;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(250,246,238,0.18);
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(250,246,238,0.7);
    letter-spacing: 0.04em;
}

.trust-icon {
    color: var(--gold-light);
    font-size: 0.65rem;
}

/* Hero‑context outline button — light on dark photo */
.hero .btn-outline {
    color: var(--ivory);
    border-color: rgba(250,246,238,0.55);
}
.hero .btn-outline:hover {
    background: rgba(250,246,238,0.12);
    border-color: var(--ivory);
    color: var(--ivory);
}

/* Hero Visual — empty, kept for scroll-hint grid row */
.hero-visual {
    display: none;
}

.hero-silk-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 360px;
}

.silk-card {
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    min-height: 130px;
    display: flex;
    align-items: flex-end;
    cursor: default;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: silkCardIn 0.6s ease forwards;
    animation-delay: var(--delay, 0s);
    opacity: 0;
    transform: translateY(20px);
}

.silk-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-lg);
}

@keyframes silkCardIn {
    to { opacity: 1; transform: translateY(0); }
}

.silk-card--muga {
    background: linear-gradient(135deg, #7A5C18 0%, #C9920A 50%, #E8B84B 100%);
    box-shadow: 0 8px 32px rgba(201,146,10,0.3);
}

.silk-card--patt {
    background: linear-gradient(135deg, #2E1A3A 0%, #6B3FA0 50%, #9B6EBF 100%);
    box-shadow: 0 8px 32px rgba(107,63,160,0.25);
}

.silk-card--eri {
    background: linear-gradient(135deg, #1A3A2E 0%, #2E7D52 50%, #5BAF80 100%);
    box-shadow: 0 8px 32px rgba(46,125,82,0.25);
}

.silk-card-texture {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(255,255,255,0.04) 3px,
            rgba(255,255,255,0.04) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(255,255,255,0.04) 3px,
            rgba(255,255,255,0.04) 4px
        );
}

.silk-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.silk-label {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: white;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.silk-origin {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Hero scroll hint */
.hero-scroll-hint {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    margin-top: 16px;
    transition: color var(--transition);
}

.hero-scroll-hint:hover { color: var(--gold); }

.hero-scroll-hint svg {
    width: 20px;
    height: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ── ABOUT SECTION ────────────────────────────────────────── */
.about { background: var(--white); padding: 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 700px;
}

.about-visual {
    position: relative;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}

.about-visual:hover img {
    transform: scale(1.035);
}

.about-text-wrap {
    display: flex;
    align-items: center;
    padding: 96px 72px;
}

.badge-text {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

.about-text .section-title { margin-bottom: 20px; }

.about-lead {
    font-size: 1.08rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-text > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold-dark);
}

.highlight-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.highlight-item strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brown);
}

.highlight-item span {
    font-size: 0.83rem;
    color: var(--text-muted);
}

/* ── PRODUCTS SECTION ─────────────────────────────────────── */
.products { background: var(--ivory); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(139,105,20,0.08);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-visual {
    height: 260px;
    position: relative;
    overflow: hidden;
    background: var(--brown);
}

.product-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}

.product-card:hover .product-card-visual img {
    transform: scale(1.05);
}

.product-card-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, transparent 50%);
    pointer-events: none;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    color: white;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.25);
}

.product-badge--eco {
    background: rgba(37,211,102,0.2);
    border-color: rgba(37,211,102,0.4);
    color: #A8FFCE;
}

.product-card-body {
    padding: 28px;
}

.product-origin {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-origin svg {
    width: 13px;
    height: 13px;
    stroke: var(--gold);
}

.product-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--brown);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    padding: 16px;
    background: var(--gold-pale);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spec-label {
    font-size: 0.67rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.spec-value {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-actions .btn { width: 100%; justify-content: center; }

/* Spec Banner */
.spec-banner {
    background: var(--brown);
    color: var(--ivory);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.spec-banner-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

.spec-banner-title svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold-light);
    flex-shrink: 0;
}

/* ── QUALITY SECTION ──────────────────────────────────────── */
.quality {
    background: linear-gradient(160deg, var(--brown) 0%, var(--charcoal) 100%);
    color: var(--ivory);
}

.quality .section-eyebrow { color: var(--gold-light); }
.quality .section-title { color: var(--ivory); }
.quality .section-title em { color: var(--gold-light); }

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.quality-text > p {
    color: rgba(250,246,238,0.7);
    margin-bottom: 40px;
    margin-top: 16px;
}

.quality-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.quality-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.step-content h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    font-style: italic;
    color: var(--ivory);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.85rem;
    color: rgba(250,246,238,0.6);
    line-height: 1.6;
}

/* Quality Stats */
.quality-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-card--gold { background: linear-gradient(135deg, #8B6914 0%, #E8B84B 100%); }
.stat-card--cream { background: rgba(250,240,212,0.1); border: 1px solid rgba(232,184,75,0.2); }
.stat-card--ivory { background: rgba(250,246,238,0.07); border: 1px solid rgba(250,246,238,0.12); }
.stat-card--dark { background: rgba(201,146,10,0.12); border: 1px solid rgba(201,146,10,0.25); align-items: center; justify-content: center; text-align: center; }

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ivory);
    line-height: 1;
}

.stat-number span {
    font-size: 1.2rem;
    color: rgba(250,246,238,0.5);
}

.stat-unit {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(250,246,238,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(250,246,238,0.8);
    margin-top: 6px;
}

.stat-sub {
    font-size: 0.7rem;
    color: rgba(250,246,238,0.45);
    margin-top: 2px;
}

.stat-silk-mark svg {
    width: 36px;
    height: 36px;
    stroke: var(--gold-light);
    margin-bottom: 8px;
}

/* ── SOURCING SECTION ─────────────────────────────────────── */
.sourcing { background: var(--white); }

.sourcing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sourcing-card {
    padding: 36px 28px;
    background: var(--ivory);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139,105,20,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sourcing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,146,10,0.2);
}

.sourcing-icon {
    width: 52px;
    height: 52px;
    background: var(--gold-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sourcing-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold-dark);
}

.sourcing-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--brown);
    margin-bottom: 12px;
}

.sourcing-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.sourcing-list-label {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--brown);
    margin-top: 14px;
    margin-bottom: 8px;
}

.sourcing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.sourcing-list li {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.55;
    padding-left: 18px;
    position: relative;
}

.sourcing-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

.stat-note {
    font-size: 0.82rem;
    color: rgba(250,246,238,0.5);
    font-style: italic;
    margin-top: 14px;
    text-align: center;
    letter-spacing: 0.02em;
}

/* ── EXPORT BANNER ────────────────────────────────────────── */
.export-banner {
    background: linear-gradient(135deg, var(--gold-pale) 0%, #FFF4D9 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(139,105,20,0.12);
    border-bottom: 1px solid rgba(139,105,20,0.12);
}

.export-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.export-banner-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    font-style: italic;
    color: var(--brown);
    margin-bottom: 12px;
}

.export-banner-text p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 460px;
}

.export-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ── CONTACT SECTION ──────────────────────────────────────── */
.contact { background: var(--ivory); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-title { margin-bottom: 16px; }

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    border: 1.5px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-method:hover {
    transform: translateX(4px);
}

.contact-method--whatsapp {
    background: rgba(37,211,102,0.07);
    border-color: rgba(37,211,102,0.2);
}
.contact-method--whatsapp:hover { border-color: var(--green-wa); box-shadow: 0 4px 16px rgba(37,211,102,0.15); }

.contact-method--call {
    background: var(--gold-pale);
    border-color: rgba(201,146,10,0.2);
}
.contact-method--call:hover { border-color: var(--gold); }

.contact-method--email {
    background: rgba(250,246,238,1);
    border-color: rgba(139,105,20,0.12);
    cursor: default;
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method--whatsapp .contact-method-icon { background: var(--green-wa); }
.contact-method--whatsapp .contact-method-icon svg { fill: white; }

.contact-method--call .contact-method-icon { background: var(--gold); }
.contact-method--call .contact-method-icon svg { fill: white; }

.contact-method--email .contact-method-icon { background: var(--gold-pale); border: 1px solid rgba(139,105,20,0.15); }
.contact-method--email .contact-method-icon svg { width: 20px; height: 20px; stroke: var(--gold-dark); }

.contact-method-icon svg { width: 22px; height: 22px; }

.contact-method-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-method-text strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brown);
}

.contact-method-text span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-serif);
}

.contact-method-text em {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: normal;
}

.contact-method-arrow {
    width: 18px;
    height: 18px;
    stroke: var(--text-muted);
    flex-shrink: 0;
    opacity: 0;
    transition: opacity var(--transition), transform var(--transition);
}

.contact-method:hover .contact-method-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Contact Card */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139,105,20,0.08);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(139,105,20,0.1);
}

.contact-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--brown) 0%, var(--gold) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.contact-card-header h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
    color: var(--brown);
}

.contact-card-header p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-address h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.contact-address h4 svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
}

.contact-address address {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.9;
    padding-left: 20px;
    border-left: 2px solid var(--gold-pale);
    margin-bottom: 24px;
}

.contact-card-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(201,146,10,0.06);
    border: 1px solid rgba(201,146,10,0.15);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 24px;
}

.contact-card-note svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-card-note p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.contact-card-note strong {
    color: var(--brown);
}

.contact-card-actions {
    display: flex;
    gap: 10px;
}

.contact-card-actions .btn { flex: 1; justify-content: center; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
    background: var(--charcoal);
    color: var(--ivory);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(250,246,238,0.08);
}

.footer-brand .footer-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 20px;
}

.footer-brand .logo-main {
    color: var(--ivory);
    font-size: 1.5rem;
}

.footer-brand .logo-sub {
    color: var(--gold-light);
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(250,246,238,0.5);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-type {
    font-size: 0.72rem !important;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold) !important;
}

.footer-links h4,
.footer-products h4,
.footer-contact h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(250,246,238,0.4);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-products ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-products a {
    font-size: 0.87rem;
    color: rgba(250,246,238,0.6);
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-products a:hover { color: var(--gold-light); }

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(250,246,238,0.6);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item--wa svg { fill: var(--green-wa); }
.footer-contact-item--wa:hover { color: var(--green-wa); }

.footer-contact-item--call svg { fill: var(--gold-light); }
.footer-contact-item--call:hover { color: var(--gold-light); }

.footer-contact-item--addr { cursor: default; }
.footer-contact-item--addr svg { stroke: rgba(250,246,238,0.35); fill: none; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.78rem;
    color: rgba(250,246,238,0.3);
    gap: 16px;
}

.footer-note {
    padding: 4px 12px;
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.2);
    border-radius: 100px;
    color: rgba(37,211,102,0.7) !important;
    font-size: 0.72rem;
    font-weight: 500;
}

/* ── PAGE HERO (Products / Gallery sub-pages) ────────────── */
.page-hero {
    background: var(--ivory);
    padding: 80px 0 48px;
    border-bottom: 1px solid rgba(139,105,20,0.1);
}
.page-hero-content { text-align: center; }
.page-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 16px;
}
.page-hero-title em { color: var(--gold-dark); font-style: italic; }
.page-hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

/* ── GALLERY PAGE GRID ────────────────────────────────────── */
.gallery-page { background: var(--ivory); }
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}
.gallery-page-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    background: var(--white);
    border: 1px solid rgba(139, 105, 20, 0.12);
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--transition), transform var(--transition);
}
.gallery-page-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.gallery-page-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}
.gallery-page-item:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 16px;
    }
    .page-hero { padding: 60px 0 36px; }
}
@media (max-width: 480px) {
    .gallery-page-grid { grid-template-columns: 1fr; }
    .gallery-page-item img { height: 240px; }
}

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery { background: var(--white); }

.gallery-grid {
    columns: 3;
    column-gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    break-inside: avoid;
    margin-bottom: 14px;
    background: var(--gold-pale);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.65s ease;
}

.gallery-item:hover img {
    transform: scale(1.055);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(46,34,24,0.78) 0%, rgba(46,34,24,0) 52%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 18px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-label {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.92rem;
    color: var(--ivory);
    letter-spacing: 0.01em;
}

.gallery-item-overlay svg {
    width: 18px;
    height: 18px;
    color: var(--gold-light);
    flex-shrink: 0;
}

/* ── LIGHTBOX ─────────────────────────────────────────────── */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(10,7,4,0.95);
    align-items: center;
    justify-content: center;
}

#lightbox.open {
    display: flex;
}

.lightbox-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 0 68px;
    max-width: 100vw;
}

#lightboxImg {
    display: block;
    max-width: min(88vw, 1100px);
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 24px 80px rgba(0,0,0,0.55);
}

.lightbox-caption {
    font-family: var(--font-serif);
    font-style: italic;
    color: rgba(250,246,238,0.62);
    font-size: 0.92rem;
    text-align: center;
}

.lightbox-counter {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(250,246,238,0.28);
    text-align: center;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(250,246,238,0.18);
    background: rgba(250,246,238,0.06);
    color: rgba(250,246,238,0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
    z-index: 910;
}

.lightbox-close:hover {
    background: rgba(250,246,238,0.14);
    border-color: rgba(250,246,238,0.4);
    color: var(--ivory);
}

.lightbox-close svg { width: 18px; height: 18px; }

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(250,246,238,0.18);
    background: rgba(250,246,238,0.06);
    color: rgba(250,246,238,0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
    z-index: 910;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(201,146,10,0.18);
    border-color: rgba(201,146,10,0.45);
    color: var(--gold-light);
}

.lightbox-prev svg,
.lightbox-next svg { width: 20px; height: 20px; }

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--delay, 0s);
}

[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate="fade-up"] { transform: translateY(30px); }

[data-animate].is-visible {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE — TABLET ──────────────────────────────────── */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 32px 64px;
        min-height: 90vh;
    }

    .hero-scroll-hint { grid-row: 2; }

    .about-grid { grid-template-columns: 1fr; }
    .about-visual { display: none; }
    .about-text-wrap { padding: 64px 24px; }

    .products-grid { grid-template-columns: 1fr 1fr; }

    .quality-grid { grid-template-columns: 1fr; gap: 48px; }

    .sourcing-cards { grid-template-columns: 1fr 1fr; }

    .gallery-grid { columns: 2; }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── RESPONSIVE — MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
    .hero { padding: 100px 24px 56px; min-height: 90vh; }

    .hero-title { font-size: clamp(1.9rem, 8vw, 3rem); }

    .products-grid { grid-template-columns: 1fr; }

    .sourcing-cards { grid-template-columns: 1fr; }

    .gallery-grid { columns: 2; column-gap: 8px; }
    .gallery-item { margin-bottom: 8px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-inner { padding: 0 44px; }

    .spec-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .export-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .export-banner-actions { justify-content: center; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

    #nav { display: none; }
    .header-cta { display: none; }
    .hamburger { display: flex; }

    .quality-stats-grid { grid-template-columns: 1fr 1fr; }

    .contact-card-actions { flex-direction: column; }
    .contact-card-actions .btn { width: 100%; }

    .product-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
    .section { padding: 64px 0; }

    .hero-trust { flex-direction: column; align-items: center; gap: 10px; }

    .quality-stats-grid { grid-template-columns: 1fr; }

    .mobile-nav-ctas { flex-direction: column; }
}
