@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* â€”â€”â€” RESET & BASE (body theme via header CSS vars) â€”â€”â€” */
body {
    background: var(--bg, #0a0a0c);
    color: var(--text, #e4e4e7);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    position: relative;
    transition: background 0.4s ease, color 0.4s ease;
}

/* â€”â€”â€” CSS VARIABLES â€”â€”â€” */
:root {
    --orange: rgb(243, 113, 33);
    --orange-dim: rgba(243,113,33,0.15);
    --orange-glow: rgba(243,113,33,0.25);
    --dark: #0a0a0c;
    --dark2: #111114;
    --dark3: #18181b;
    --border: rgba(255,255,255,0.07);
    --text-muted: #71717a;
    --playfair: 'Playfair Display', serif;
}

/* â€”â€”â€” HERO â€”â€”â€” */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: opacity 0.8s ease;
    filter: blur(6px);
    transform: scale(1.05);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(10,10,12,0.7) 60%, #0a0a0c 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 900px;
    margin-top: 4rem;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    border: 1px solid var(--orange);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease 0.2s both;
}
.hero-title {
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    color: #fff;
    margin-bottom: 1.25rem;
    animation: fadeUp 0.8s ease 0.4s both;
    text-align: center;
}
.hero-title .welcome-text {
    display: block;
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
}
.hero-title .brand {
    display: block;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--orange);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    font-style: normal;
    margin-top: 0;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #a1a1aa;
    font-weight: 300;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s ease 0.6s both;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.8s both;
}
.btn-primary-hero {
    background: var(--orange);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 30px var(--orange-glow); }
.btn-ghost-hero {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.3s, border-color 0.3s;
    backdrop-filter: blur(8px);
}
.btn-ghost-hero:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }

/* Scroll indicator */
.scroll-down {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #52525b;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeUp 0.8s ease 1.2s both;
}
.scroll-pip {
    width: 26px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}
.scroll-pip::after {
    content: '';
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

/* â€”â€”â€” SECTION DIVIDER â€”â€”â€” */
.section-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    margin: 0 auto;
}

/* â€”â€”â€” SECTION HEADER â€”â€”â€” */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; padding: 0 1rem; }
.section-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: #fafafa;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}
.section-title.orange { color: var(--orange); font-style: normal; }
.section-desc { color: #71717a; font-size: 1rem; line-height: 1.7; }

/* â€”â€”â€” ABOUT STRIP â€”â€”â€” */
.about-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.about-strip-text {
    padding: 5rem 3rem 5rem 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-strip-image {
    position: relative;
    min-height: 440px;
    overflow: hidden;
}
.about-strip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-strip-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--dark2) 0%, transparent 40%);
}
.about-lead {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: #fafafa;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}
.about-body { color: #a1a1aa; font-size: 0.95rem; line-height: 1.8; margin-bottom: 2rem; max-width: 540px; }
.philosophy-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange-dim);
    border: 1px solid rgba(243,113,33,0.25);
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
}
.link-orange {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: gap 0.3s;
}
.link-orange:hover { gap: 0.8rem; }

/* â€”â€”â€” SLIDER SECTION â€”â€”â€” */
.slider-section { padding: 5rem 0; }
.slider-track-wrap {
    position: relative;
}
.slider-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding: 0.5rem 4rem 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.slider-scroll::-webkit-scrollbar { display: none; }
.slide-card {
    flex-shrink: 0;
    scroll-snap-align: start;
    width: 280px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.25,1,0.5,1);
}
.slide-card:hover { transform: translateY(-8px); }
.slide-card-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.slide-card:hover .slide-card-img { transform: scale(1.06); }
.slide-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,0.97) 0%,
        rgba(0,0,0,0.75) 40%,
        rgba(0,0,0,0.15) 70%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem 1.25rem 1.5rem;
}
.slide-card-title { font-size: 1.15rem; font-weight: 600; color: #fff; margin-bottom: 0.4rem; line-height: 1.3; }
.slide-card-desc { font-size: 0.78rem; color: rgba(255,255,255,0.85); line-height: 1.5; margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.slide-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.slide-card:hover .slide-read-more { opacity: 1; transform: translateY(0); }
.slide-card-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.55;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.slide-card-tag {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 0.35rem;
    display: block;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    backdrop-filter: blur(8px);
}
.slider-arrow:hover { background: rgba(243,113,33,0.2); border-color: var(--orange); }
.slider-arrow.prev { left: 0.5rem; }
.slider-arrow.next { right: 0.5rem; }

/* future slider landscape cards */
.slide-card.landscape { width: 360px; }
.slide-card.landscape .slide-card-img { aspect-ratio: 16/10; }

/* â€”â€”â€” SUSTAINABILITY COUNTERS â€”â€”â€” */
.sustain-section {
    padding: 6rem 1.5rem;
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.counter-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.counter-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(243,113,33,0.08);
    border-color: rgba(243,113,33,0.2);
}
.counter-icon {
    width: 52px;
    height: 52px;
    background: var(--orange-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.4rem;
    color: var(--orange);
}
.counter-number {
    font-family: var(--playfair);
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.counter-label { color: #a1a1aa; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
.counter-desc { color: #52525b; font-size: 0.85rem; line-height: 1.6; }

/* â€”â€”â€” FEATURE GRID â€”â€”â€” */
.features-section { padding: 6rem 1.5rem; }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
    text-decoration: none;
    display: block;
}
.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(243,113,33,0.2); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--orange);
    margin-bottom: 1.25rem;
}
.feature-card-title { font-size: 1.05rem; font-weight: 600; color: #fafafa; margin-bottom: 0.6rem; }
.feature-card-desc { font-size: 0.85rem; color: #71717a; line-height: 1.65; margin-bottom: 1rem; }
.feature-card-link {
    font-size: 0.75rem;
    color: var(--orange);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* â€”â€”â€” DENIM TYPES SHOWCASE â€”â€”â€” */
.denim-showcase-section {
    padding: 6rem 1.5rem;
    background: var(--dark);
    overflow: hidden;
}
.denim-showcase-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}
.denim-types-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 260px 260px; gap: 1rem; max-width: 1300px; margin: 0 auto; }
.denim-type-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.5s cubic-bezier(0.25,1,0.5,1), box-shadow 0.5s ease;
}
.denim-type-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 60px rgba(243,113,33,0.15);
    border-color: rgba(243,113,33,0.3);
}
.denim-type-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}
.denim-type-card.wide {
    grid-column: span 2;
}
.denim-type-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
    position: absolute;
    inset: 0;
}
.denim-type-card:hover .denim-type-img { transform: scale(1.07); }
.denim-type-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.6) 40%,
        rgba(0,0,0,0.1) 70%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background 0.4s ease;
}
.denim-type-card:hover .denim-type-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.98) 0%,
        rgba(0,0,0,0.7) 50%,
        rgba(0,0,0,0.2) 80%,
        transparent 100%
    );
}
.denim-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(243,113,33,0.2);
    border: 1px solid rgba(243,113,33,0.4);
    backdrop-filter: blur(8px);
    color: var(--orange);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    margin-bottom: 0.6rem;
    width: fit-content;
}
.denim-type-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.35rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.denim-type-card.featured .denim-type-name { font-size: 1.7rem; font-weight: 700; }
.denim-type-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-bottom: 0.8rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}
.denim-type-card:hover .denim-type-desc {
    max-height: 80px;
    opacity: 1;
}
.denim-type-card.featured .denim-type-desc {
    max-height: none;
    opacity: 1;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}
.denim-type-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.denim-type-card:hover .denim-type-link,
.denim-type-card.featured .denim-type-link { opacity: 1; transform: translateY(0); }
.denim-spec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}
.denim-spec-tag {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    letter-spacing: 0.08em;
}
@media (max-width: 1024px) {
    .denim-types-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 260px 260px; gap: 1rem; max-width: 1300px; margin: 0 auto; }
    .denim-type-card.featured { grid-column: span 2; grid-row: span 2; }
    .denim-type-card.wide { grid-column: span 2; }
}
@media (max-width: 640px) {
    .denim-types-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 260px 260px; gap: 1rem; max-width: 1300px; margin: 0 auto; }
    .denim-type-card.featured,
    .denim-type-card.wide { grid-column: span 1; grid-row: span 1; }
}

/* â€”â€”â€” CSR BANNER â€”â€”â€” */
.csr-banner {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.csr-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.csr-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,10,12,0.95) 40%, rgba(10,10,12,0.5) 100%);
}
.csr-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
}
.csr-stats { display: flex; gap: 3rem; flex-wrap: wrap; margin-top: 2rem; }
.csr-stat-num {
    font-family: var(--playfair);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}
.csr-stat-label { font-size: 0.8rem; color: #71717a; margin-top: 0.3rem; }

/* â€”â€”â€” QUALITY / RD STRIP â€”â€”â€” */
.quality-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.quality-strip-panel {
    padding: 4rem 3rem;
    border-right: 1px solid var(--border);
}
.quality-strip-panel:last-child { border-right: none; }
.strip-icon { font-size: 2rem; color: var(--orange); margin-bottom: 1.25rem; }
.strip-title {
    font-family: var(--playfair);
    font-size: 1.6rem;
    color: #fafafa;
    margin-bottom: 0.75rem;
}
.strip-desc { color: #71717a; font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.strip-ul { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.strip-ul li {
    color: #a1a1aa;
    font-size: 0.85rem;
    padding-left: 1.2rem;
    position: relative;
}
.strip-ul li::before {
    content: 'â†’';
    position: absolute;
    left: 0;
    color: var(--orange);
}

/* â€”â€”â€” VIDEO MODAL â€”â€”â€” */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(6px);
}
.video-modal.open { opacity: 1; pointer-events: all; }
.video-modal-inner {
    position: relative;
    width: 90%;
    max-width: 1100px;
    aspect-ratio: 16/9;
}
.video-modal-inner iframe { width: 100%; height: 100%; border-radius: 12px; border: none; }
.video-close {
    position: absolute;
    top: -3rem; right: 0;
    color: #fff;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
}
.video-close:hover { opacity: 1; transform: rotate(90deg); }

/* â€”â€”â€” CONTACT CTA â€”â€”â€” */
.contact-cta {
    padding: 6rem 1.5rem;
    text-align: center;
}
.contact-cta-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 4rem 3rem;
}

/* â€”â€”â€” ANIMATIONS â€”â€”â€” */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

/* â€”â€”â€” AOS-like utility â€”â€”â€” */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* â€”â€”â€” RESPONSIVE â€”â€”â€” */
@media (max-width: 1024px) {
    .about-strip { grid-template-columns: 1fr; }
    .about-strip-text { padding: 3rem 2rem; }
    .about-strip-image { min-height: 300px; }
    .quality-strip { grid-template-columns: 1fr; }
    .quality-strip-panel { border-right: none; border-bottom: 1px solid var(--border); }
    .quality-strip-panel:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
    .slide-card { width: 240px; }
    .slide-card.landscape { width: 300px; }
    .csr-stats { gap: 1.5rem; }
    .contact-cta-box { padding: 3rem 1.5rem; }
}
@media (max-width: 480px) {
    .slider-scroll { padding: 0.5rem 1.5rem 2rem; gap: 1rem; }
    .slider-arrow { display: none; }
}

/* â€”â€”â€” MARQUEE TICKER â€”â€”â€” */
.marquee-wrap {
    overflow: hidden;
    background: rgba(243,113,33,0.06);
    border-top: 1px solid rgba(243,113,33,0.15);
    border-bottom: 1px solid rgba(243,113,33,0.15);
    padding: 0.85rem 0;
    white-space: nowrap;
}
.marquee-track {
    display: inline-flex;
    gap: 2rem;
    animation: marqueeScroll 28s linear infinite;
    align-items: center;
}
.marquee-track span {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a1a1aa;
}
.marquee-dot {
    color: var(--orange) !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    line-height: 1;
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* â€”â€”â€” STAT BAR â€”â€”â€” */
.stat-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.stat-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 3.5rem;
    gap: 0.3rem;
    text-align: center;
}
.stat-bar-num {
    font-family: var(--playfair);
    font-size: 2rem;
    font-weight: 700;
    color: #fafafa;
    line-height: 1;
}
.stat-bar-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #52525b;
    font-weight: 500;
}
.stat-bar-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .stat-bar-item { padding: 1.5rem 1.5rem; }
    .stat-bar-divider { display: none; }
    .stat-bar { gap: 0; justify-content: space-around; }
}
@media (max-width: 480px) {
    .stat-bar { flex-wrap: wrap; }
    .stat-bar-item { width: 50%; padding: 1.25rem 1rem; }
}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SCROLL PATH SVG
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#scrollPathSvgWrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    /* z-index 3: above bg but below section cards (cards have their own bg) */
    z-index: 3;
    overflow: visible;
}
#scrollPathSvgWrap svg {
    display: block;
    overflow: visible;
}
#scrollPathLine {
    fill: none;
    stroke: rgba(243, 113, 33, 0.55);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 4px rgba(243,113,33,0.4));
}
@media (max-width: 768px) {
    #scrollPathSvgWrap { display: none; }
}



@media (max-width: 1024px) {
    .denim-types-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 240px 240px 240px; }
    .denim-type-card.featured, .denim-type-card.wide { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 640px) {
    .denim-types-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .denim-type-card.featured, .denim-type-card.wide, .denim-type-card { grid-column: span 1; grid-row: span 1; min-height: 240px; }
}

