/* =========================================
   DESIGN SYSTEM & VARIABLES
   ========================================= */
:root {
    --color-cream: #FDFBF7;
    --color-dark: #181615;
    --color-darker: #0c0b0a;
    --color-brown: #2A1A14;
    --color-copper: #C25E2E;
    
    --color-text-light: #FDFBF7;
    --color-text-dark: #2A1A14;
    --color-text-muted: #8a7c78;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    /* Removed background for curtain footer */
}

body {
    overflow-x: hidden;
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 120px 0;
}

.bg-cream { background-color: var(--color-cream); }
.bg-dark { background-color: var(--color-dark); }
.bg-darker { background-color: var(--color-darker); }
.bg-brown { background-color: var(--color-brown); }

.text-light { color: var(--color-text-light); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.mb-s { margin-bottom: 1rem; }
.mb-l { margin-bottom: 3rem; }
.mb-xl { margin-bottom: 5rem; }
.mt-s { margin-top: 1rem; }
.mt-l { margin-top: 3rem; }

.relative { position: relative; }
.z-index-1 { z-index: 1; }
.overflow-hidden { overflow: hidden; }

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-copper);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, mix-blend-mode 0.3s;
}

.cursor.active {
    width: 60px;
    height: 60px;
    background-color: rgba(194, 94, 46, 0.2);
    border: 1px solid var(--color-copper);
    mix-blend-mode: normal;
}

.cursor-grab {
    cursor: none;
}
.cursor.grab {
    width: 80px;
    height: 80px;
    background-color: var(--color-copper);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
}
.cursor.grab::after {
    content: "DRAG";
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    color: var(--color-brown);
}
.text-light .section-title,
.section-title.text-light {
    color: var(--color-cream);
}
.section-intro {
    font-size: 1.25rem;
    max-width: 800px;
    color: var(--color-text-muted);
}
.text-light .section-intro,
.section-intro.text-light {
    color: #a09a98;
}

/* =========================================
   NAVIGATION
   ========================================= */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    z-index: 1000;
    color: white;
    transition: padding 0.3s ease;
}
.site-nav.scrolled {
    padding: 15px 40px;
    background: rgba(24, 22, 21, 0.95);
    backdrop-filter: blur(10px);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    display: flex;
    flex-direction: column;
}
.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: none; /* Show authentic original colors */
    transition: transform 0.3s ease, height 0.3s ease;
    display: block;
}
.nav-links {
    display: flex;
    gap: 30px;
    mix-blend-mode: difference;
}
.site-nav.scrolled .nav-links {
    mix-blend-mode: normal;
}
.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: 10px;
    color: white;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 0;
    height: 1px;
    background-color: var(--color-copper);
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: calc(100% - 20px);
}

/* =========================================
   PRELOADER & ZOOM MASK
   ========================================= */
.zoom-mask-wrapper {
    position: fixed;
    top: 0; left: 0; 
    width: 100vw; height: 100vh;
    background-color: #050505; /* Fallback */
    z-index: 99998;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    transform-origin: center center;
    overflow: hidden;
}
.preloader-bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.1); /* To be animated slightly */
}
.preloader-dark-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(5,5,5,0.85) 100%);
    z-index: 2;
}
.zoom-text {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem); /* Elegant readable size initially */
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-copper); /* Leather luxury color */
    line-height: 1;
    margin: 0;
    white-space: nowrap;
    text-align: center;
    z-index: 3;
    position: relative;
}

.preloader-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align items to the bottom */
    align-items: center;
    background-color: transparent;
    pointer-events: none;
    padding-bottom: 50px; /* Distance from the bottom of the screen */
}
.preloader-counter {
    font-family: var(--font-body);
    font-size: 1.2rem; /* Slightly smaller for elegance */
    letter-spacing: 0.2em;
    font-weight: 300;
    color: var(--color-copper);
}
.loading-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
    text-transform: uppercase;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    clip-path: inset(50% 50% 50% 50%); /* Starts fully clipped for the animation */
    overflow: hidden;
}

/* =========================================
   CURSOR
   ========================================= */

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0;
    transition: var(--transition);
}
.btn-primary {
    background-color: var(--color-copper);
    color: white;
    border: 1px solid var(--color-copper);
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--color-copper);
}
.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
    border-color: white;
}

/* =========================================
   HERO SECTION
   ========================================= */
.section-hero {
    position: relative;
    height: 250vh; /* Extra scroll space for reveal */
    width: 100%;
    background-color: var(--color-dark);
}
.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    clip-path: inset(25% 30% 25% 30% round 20px); /* Start as a window */
    will-change: clip-path;
}
.hero-bg img,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(24, 22, 21, 0.7) 0%, rgba(24, 22, 21, 0.2) 60%, rgba(24, 22, 21, 0.3) 100%);
    filter: none !important;
    backdrop-filter: none !important;
}
.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem; /* Account for nav */
    will-change: transform, opacity;
}

.image-matched-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 800px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 2.5rem;
    color: #FDFBF7;
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3.5rem;
    font-weight: 300;
    max-width: 500px;
}

/* Minimal Discovery Button */
.btn-discover {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    text-transform: uppercase;
    group: hover;
}

.btn-discover::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgba(255,255,255,0.4);
    transition: width 0.3s ease;
}
.btn-discover:hover::after {
    width: 100%;
}

.btn-circle-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.btn-discover:hover .btn-circle-arrow {
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

/* Bottom Right Stamp */
.hero-stamp {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 120px;
    height: 120px;
    opacity: 0.8;
}

.rotating-stamp {
    width: 100%;
    height: 100%;
    animation: rotateStamp 20s linear infinite;
}

@keyframes rotateStamp {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* =========================================
   OUR STORY (HORIZONTAL ARCHIVE)
   ========================================= */
.section-story {
    position: relative;
    overflow: hidden;
    height: 100vh;
}
.story-sticky {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
}
.story-track {
    display: flex;
    height: 100%;
    align-items: center;
    padding-left: 10vw;
    width: max-content;
}
.story-panel {
    flex-shrink: 0;
    height: 60vh;
    margin-right: 8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.intro-panel {
    width: 35vw;
}
.year-panel {
    flex: 0 0 450px; 
    height: 60vh; 
    position: relative;
    color: white;
    box-sizing: border-box; 
    border-radius: 24px; 
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    padding: 0;
    --sweep-color: rgba(255, 230, 200, 0.15);
    transform: translateZ(0); /* Hardware acceleration */
    will-change: transform;
}
/* Lightweight Grain Overlay (Static instead of CPU-heavy SVG) */
.year-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAAAAP//////////////////////f//hXwRRAAAACHRSTlMAAwUHCQoOEQjZ9AAAAAFiS0dEAIgFiAAAAAlwSFlzAAALEwAACxMBAJqcGAAAAW1JREFUOMuV0zFOwzAUQNE/x65T2oEBOkF06tSBDG3dOnXjD8A7MHeA+O+wJ3gA3oDHj78+n6R5Kz4vH6+S0if+F0lG7xG3R/B/Qc3Jk3uI/G/jIe6PjP6LhP43Q/B/EfJ/IQL/H8H/H2L0P6T8XzT6PzX6X4z+nxn9Xxr97xr9Pxr9fxr9nxr9vxr93xr9/xr9Axr9Exr9Ixr9Mxr9Qxr9Uxr9Yxr9cxr9gxr9kxr9oxr9sxr9wxv90xv94xv98xv9Axz9Exz9Ixz9Mxz9Qxz9Uxz9Yxz9cxz9gxz9kxz9oxz9sxz9wx390x394x398x39Ax79Ex79Ix79Mx79Qx79Ux79Yx79cx79gx79kx79ox79sx79wx/90x/94x/98x/9AyD9EyD9IyD9MyD9QyD9UyD9YyD9cyD9gyD9kyD9oyD9syD9wyH90yH94yH98yH9AyL9EyL9IyL9MyL9QyL9UyL9YyL9cyL9gyL9kyL9oyL9syL9wyP90yP94yP98yP9AyT9EyT9IyT9MyT9QyT9UyT9YyT9cyT9gyT9kyT9oyT9syT9wyX90yX94yX98yX9AyZ9EyZ9IyZ9MyZ9QyZ9UyZ9YyZ9cyZ9gyZ9kyZ9oyZ9syZ9wyb90yb94yb98yb9Ayd9Eyd9Iyd9Myd9Qyd9Uyd9Yyd9cyd9gyd9kyd9oyd9syd9wyd90yd94yd98yd9Ayg9Eyg9Iyg9Myg9Qyg9Uyg9Yyg9cyg9gyg9kyg9oyg9syg9wyk90yk94yk98yk9Ayl9Eyl9Iyl9Myl9Qyl9Uyl9Yyl9cyl9gyl9kyl9oyl9syl9wym90ym94ym98ym9Ayn9Eyn9Iyn9Myn9Qyn9Uyn9Yyn9cyn9gyn9kyn9oyn9syn9wyp90yp94yp98yp9Ayq9Eyq9Iyq9Myq9Qyq9Uyq9Yyq9cyq9gyq9kyq9oyq9syq9wyq90yq94yq98yq9Ayr9Eyr9Iyr9Myr9Qyr9Uyr9Yyr9cyr9gyr9kyr9oyr9syr9wxr90xr94xr98xr9AyC');
    opacity: 0.08;
    z-index: 5;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Warm Light Sweep */
.year-panel::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, var(--sweep-color), transparent);
    transform: skewX(-20deg) translateZ(0); /* GPU acceleration */
    z-index: 4;
    pointer-events: none;
    animation: sweep 12s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes sweep {
    0%, 70% { left: -100%; opacity: 0; }
    80% { opacity: 1; }
    100% { left: 200%; opacity: 0; }
}

.year-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    transform: translateZ(0);
}
/* Hardware accelerated image transforms */
.year-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.8); 
    will-change: transform, filter;
    transform: scale(1.01) translateZ(0); /* Prevent edge bleeding & boost perf */
}
/* Frosted Glass Content Panel */
.year-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    background: rgba(20, 10, 5, 0.3); 
    backdrop-filter: blur(12px); /* Reduced blur radius from 16 to 12 for massive performance gain */
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0) translateZ(0);
    will-change: transform, opacity;
}
.year-num {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--color-copper);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
    letter-spacing: -0.02em;
}
.year-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: var(--font-display);
}
.year-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}
.person-tag {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 30px;
    display: block;
    font-weight: 600;
}

/* =========================================
   OUR LEATHERS (COLLECTION)
   ========================================= */
.section-leathers {
    padding: 200px 0 160px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: radial-gradient(circle at 70% 30%, #26160d 0%, #0c0704 100%);
    overflow-x: hidden;
}
.leathers-container {
    display: flex;
    flex-direction: column;
    gap: 120px; /* Space between top gallery and bottom features */
    width: 100%;
}
.leathers-top {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Vertically align title and gallery */
    gap: 40px;
}
.leathers-intro {
    flex: 0 0 30%;
    margin-bottom: 30px;
}
.leathers-reveal-text {
    /* GSAP Text Fill Effect Base - Smooth Gradient */
    background: linear-gradient(to right, #d3cdc1 35%, #2a1f18 65%);
    background-size: 300% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    will-change: background-position;
}
.leathers-gallery {
    flex: 0 0 65%;
    position: relative;
    overflow: hidden; /* Restoring hidden to prevent the empty space bug on the right */
    border-radius: 4px; /* Slight rounding for premium feel */
}
.gallery-wrapper {
    display: flex;
    will-change: transform;
    position: relative;
}
/* The thin connecting line across the images */
.gallery-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    z-index: 2;
    transform: translateY(-50%);
    pointer-events: none;
}
.leather-item {
    position: relative;
    flex: 0 0 33.3333%; /* Exactly 3 items visible */
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
    /* Flush next to each other, thin border between */
    border-right: 1px solid rgba(0,0,0,0.8);
}
.leather-item img {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%; /* Extra height for scroll parallax */
    object-fit: cover;
    transition: filter 0.8s;
    filter: brightness(0.65) contrast(1.1);
}
.leather-item:hover img {
    filter: brightness(0.9) contrast(1.1);
}
/* Bottom gradient just for the text visibility */
.leather-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    pointer-events: none;
}
.leather-name {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: rgba(255,255,255,0.8);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    font-weight: 500;
    z-index: 3;
}
.btn-circle-arrow-slider {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 60px; height: 60px; /* Made slightly larger for better UX */
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
    border-radius: 50%;
    color: #ffffff; /* Pure white arrow */
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.btn-circle-arrow-slider:hover {
    border-color: #ffffff;
    background: var(--color-copper);
    transform: scale(1.05);
}
.gallery-nav {
    position: absolute;
    top: 50%;
    right: 20px; /* Safely inside the container */
    transform: translateY(-50%);
    z-index: 20; /* Ensure it stays above everything */
}
.gallery-nav-left {
    position: absolute;
    top: 50%;
    left: 20px; /* Safely inside the container */
    transform: translateY(-50%);
    z-index: 20; /* Ensure it stays above everything */
}



/* =========================================
   WHAT WE DO (CAPABILITIES)
   ========================================= */
.section-what-we-do {
    position: relative;
    padding: 100px 0;
    overflow: visible; /* Need visible for sticky to work correctly within wrapper */
}
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.split-left {
    height: 100%;
}
.sticky-content {
    position: sticky;
    top: 150px;
    padding-bottom: 50px;
}
.eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-copper);
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}
.scroll-indicator {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.scroll-line {
    width: 60px;
    height: 1px;
    background-color: var(--color-text-muted);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-copper);
    animation: scrollLine 2s infinite ease-in-out;
}
@keyframes scrollLine {
    to { left: 100%; }
}

.split-right {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.modern-card {
    background-color: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
}
.modern-card:hover {
    transform: translateY(-10px);
}
.card-image {
    width: 100%;
    height: 400px; /* Taller, more editorial images */
    overflow: hidden;
    border-radius: 4px; /* Slight softening for elegance */
    margin-bottom: 30px;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1); /* Intentional editorial choice */
    transition: filter 0.8s ease, transform 1.2s ease;
}
.modern-card:hover .card-image img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.03);
}
.card-content {
    padding: 0 10px;
    position: relative;
}
.card-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}
.editorial-marker {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-copper);
    letter-spacing: 0.1em;
    font-weight: 500;
}
.editorial-heading {
    font-size: 2.2rem;
    color: var(--color-cream);
    font-weight: 400;
    margin: 0;
}
.editorial-body {
    overflow-x: hidden;
    color: #a09a98;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 90%;
}
.editorial-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--color-copper);
    margin-bottom: 25px;
    display: block;
    font-weight: 600;
}
.title-editorial {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}



.intro-editorial {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 480px; /* Constrain line length for readability */
}

/* =========================================
   PRODUCTS (HORIZONTAL SCROLL)
   ========================================= */
.section-products {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 10vh; /* Space for navbar */
    padding-bottom: 5vh;
}

.products-header {
    margin-bottom: 1rem; /* Reduced from 4rem to close the top gap */
}
.editorial-eyebrow.dark {
    color: var(--color-copper);
}
.products-header-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: flex-end;
    margin-top: 1rem;
}
.products-header-main .title-editorial {
    margin-bottom: 0;
    max-width: 100%;
}
.products-header-main .intro-editorial {
    margin-bottom: 1rem; /* Adjusts baseline alignment with the big title */
    color: var(--color-brown);
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .products-header-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: flex-start;
    }
}

.cards-stack-wrapper {
    position: relative;
    width: 100%;
    margin-top: 5vh;
    padding-bottom: 20vh; /* Extra space at the bottom for the last card to stick */
}
.stack-card {
    position: sticky;
    top: 15vh; /* Sticks a bit below the navbar */
    width: 100%;
    height: 70vh; /* Full elegant height */
    border-radius: 12px;
    margin-bottom: 4vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform-origin: center top;
    will-change: transform;
    --veil: 0;
}
/* Every card sticks at the SAME offset, so they physically pile on top of one
   another. Fading a card's own opacity therefore made the cards behind it show
   through (two product titles visible at once). Instead the card stays fully
   opaque and a page-coloured veil is laid over it: 0.6 of cream over the card
   is the same colour as the card at 0.4 opacity on a cream page, so the look
   is unchanged - but nothing behind can bleed through. */
.stack-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-color: var(--color-cream);
    opacity: var(--veil);
    pointer-events: none;
    z-index: 5;
}
.stack-card-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
}
.stack-card-content.reverse {
    flex-direction: row-reverse;
}
.card-text {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-text .product-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-brown);
    opacity: 0.6;
    margin-bottom: 20px;
}
.card-text h3 {
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--color-brown);
    line-height: 1.1;
    margin-bottom: 0;
}
.stack-card .card-image {
    flex: 1;
    height: 80%;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 40px;
}
.stack-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none; /* Overrides the grayscale from the other section */
}
.product-info {
    flex-shrink: 0; /* Prevents text block from shrinking */
}
.product-panel:hover .product-image img {
    transform: scale(1.05);
}
.product-info h3 {
    font-size: 1.5rem;
    color: var(--color-brown); /* Ensures title is visible on cream background */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.badge {
    background-color: var(--color-copper);
    color: white;
    font-size: 0.6rem;
    padding: 4px 8px;
    border-radius: 2px;
    font-family: var(--font-body);
    letter-spacing: 0.1em;
}

/* NEW SPLIT LAYOUT */
.stats-split-container {
    display: flex;
    gap: 6vw;
    align-items: flex-start;
}
.stats-visuals {
    flex: 1;
    position: sticky;
    top: 15vh;
    height: 70vh;
    display: flex;
    flex-direction: column;
}
.stats-image-frame {
    width: 100%;
    flex: 1;
    margin-top: 4vh;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.stat-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.stat-img.active {
    opacity: 1;
}
.ultra-stats-list {
    flex: 1;
    padding-top: 30vh;
    padding-bottom: 30vh;
}
.modern-stats-list {
    display: flex;
    flex-direction: column;
}
.stat-row {
    position: relative;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: background-color 0.5s ease;
}
.stat-row:hover {
    background-color: rgba(255, 255, 255, 0.015);
}
.stat-col-num {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 1;
    white-space: nowrap;
    opacity: 0.95;
    flex-shrink: 0;
    margin-right: 20px;
    width: 25%;
    
    background: linear-gradient(135deg, var(--color-copper) 0%, #ffcda5 50%, #d4a373 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), background-position 0.6s ease;
}
.ultra-stat-row {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: padding 0.5s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.5s ease;
    cursor: none;
    position: relative;
    overflow: hidden;
}
.ultra-stat-row:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ultra-stat-row:hover {
    padding: 80px 0;
}
.ultra-stat-row::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(194, 94, 46, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}
.ultra-stat-row:hover::before {
    opacity: 1;
}
.stat-big-number {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: clamp(5rem, 12vw, 15rem);
    line-height: 0.8;
    color: var(--color-copper);
    letter-spacing: -0.03em;
    font-weight: 300;
}
.stat-info {
    position: relative;
    z-index: 1;
    max-width: 320px;
    text-align: right;
    padding-bottom: 10px;
}
.stat-info .unit {
    display: block;
    margin-bottom: 15px;
    color: var(--color-cream);
}
.stat-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   WHO WE SUPPLY
   ========================================= */
.section-supply .section-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.section-supply .section-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: var(--color-dark);
}
.section-supply .section-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(12, 11, 10, 0.7);
    margin-bottom: 40px;
}
.supply-lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 80px auto;
    text-align: center;
    line-height: 1.7;
    color: var(--color-dark);
    font-weight: 500;
}
.inditex-box {
    border: 1px solid var(--color-copper);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    background-color: rgba(194, 94, 46, 0.03);
    margin-bottom: 60px;
}
.inditex-left .label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--color-copper);
    font-weight: 600;
}
.inditex-left h3 {
    font-size: 3rem;
    margin-top: 10px;
}
/* Infinite Marquee */
.marquee-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 0;
    overflow: hidden;
    cursor: none;
}
.marquee-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}
.marquee-content {
    will-change: transform;
    display: flex;
    align-items: center;
    padding-right: 4vw;
    animation: marquee 30s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.marquee-item {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 10rem);
    color: var(--color-brown);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    -webkit-text-stroke: 1px var(--color-brown);
    color: transparent;
    transition: color 0.4s ease, transform 0.4s ease;
    cursor: none;
    position: relative;
    z-index: 2;
}
.marquee-item:hover {
    color: var(--color-brown);
    transform: scale(1.05);
}
.dot {
    font-size: 2rem;
    color: var(--color-copper);
    margin: 0 4vw;
}

/* Hover Image Follower */
.marquee-hover-img {
    position: fixed;
    top: 0; left: 0;
    width: 300px;
    height: 300px;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
    overflow: hidden;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.marquee-hover-img.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.marquee-hover-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* =========================================
   SUSTAINABILITY (PINNED IMAGE SWAP)
   ========================================= */
.section-sustainability {
    padding: 0;
    overflow: visible;
}
.sustainability-container {
    display: flex;
    position: relative;
    width: 100%;
}
.sust-left {
    width: 50%;
    position: relative;
}
.sust-pinned-images {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.sust-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease, transform 1.2s ease;
    transform: scale(1.05);
}
.sust-img.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}
.sust-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.sust-right {
    width: 50%;
    padding: 100px 80px 100px 80px;
    background-color: var(--color-dark);
}
.sust-scroll-item {
    margin-bottom: 120px;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}
.sust-scroll-item.active {
    opacity: 1;
}
.sust-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-copper);
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}
.sust-scroll-item h3 {
    font-size: 2rem;
    color: var(--color-cream);
    margin-bottom: 15px;
}
.sust-scroll-item p {
    font-size: 1.1rem;
    color: #a09a98;
    line-height: 1.6;
}

/* =========================================
   AWARDS (DRAGGABLE)
   ========================================= */
/* Hero Award 3D */
.hero-award-container {
    perspective: 1500px;
    width: 100%;
    max-width: 500px; /* Elegant portrait size */
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.hero-award-3d {
    width: 100%;
    transform-style: preserve-3d;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    /* GSAP will animate this */
}
.hero-award-3d img {
    width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}
.hero-award-3d .glare {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 10px;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4), transparent 60%);
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 2;
}

/* Awards Gallery */
.awards-gallery-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 60px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.awards-gallery-track {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 0 5vw;
}
.award-photo-slot {
    width: 320px;
    height: 420px;
    border-radius: 6px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.award-photo-slot:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.award-photo-slot .img-wrap {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}
.award-photo-slot img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.award-caption {
    text-align: center;
    width: 100%;
}
.award-caption h5 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-brown);
    margin-bottom: 5px;
}
.award-caption p {
    font-size: 0.85rem;
    color: rgba(12, 11, 10, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Cursors */
.cursor-zoom {
    cursor: zoom-in;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 5vh;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-radius: 8px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    font-family: sans-serif;
    z-index: 10000;
}
.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--color-copper);
    text-decoration: none;
    cursor: pointer;
}

/* =========================================
   FOOTER
   ========================================= */
.footer-spacer {
    display: none;
}
.section-footer {
    position: relative;
    z-index: 1;
    width: 100%;
    background-color: var(--color-darker);
}
/* =========================================
   15. WebGL Horizontal Team (Scroll-World)
   ========================================= */
#team-pin-wrapper {
    position: relative;
    width: 100%;
    background-color: var(--color-darker);
    overflow: hidden; /* For mobile fallback */
}
.section-team-horizontal {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--color-darker);
    margin: 0;
}
.pin-spacer {
    background-color: var(--color-darker) !important;
}
#team-canvas-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5; /* Blend behind the cards */
}
.team-track {
    display: flex;
    height: 100%;
    width: max-content;
    position: relative;
    z-index: 2;
    padding-left: 5vw; /* Start padding */
    padding-right: 6vw; /* Clean end padding */
}
.team-panel {
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.team-intro-panel {
    width: 40vw;
    margin-right: 5vw;
    padding-top: 5vh;
}
.team-member-panel {
    position: relative;
    width: 32vw;
    height: 65vh;
    margin: auto 3vw;
    border-radius: 12px;
    overflow: visible;
}
.member-image-wrap {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    z-index: 1;
    transform-style: preserve-3d;
}
.member-image-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
    transform: translateZ(0); /* Force GPU */
}
/* Panels whose photo has not been supplied yet: a branded monogram plate
   instead of an empty black rectangle. Same box, same position. */
.member-image-wrap.is-placeholder {
    background:
        radial-gradient(circle at 30% 25%, rgba(194, 94, 46, 0.10) 0%, transparent 55%),
        linear-gradient(150deg, #241813 0%, #17110e 55%, #100c0a 100%);
    border: 1px solid rgba(194, 94, 46, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
}
.member-image-wrap.is-placeholder::after {
    content: attr(data-initials);
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1;
    color: rgba(194, 94, 46, 0.28);
    pointer-events: none;
}
.image-glare {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.4s ease;
    mix-blend-mode: overlay; /* React-bits signature look */
}
.team-member-panel:hover .member-image-wrap img {
    filter: grayscale(0%);
}
.member-text-wrap {
    position: absolute;
    bottom: -40px;
    left: -40px;
    z-index: 2;
    background: var(--color-darker);
    padding: 25px 35px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    pointer-events: none; /* Let hover hit the panel entirely */
}
.member-text-wrap .role-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-copper);
    margin-bottom: 10px;
}
.member-text-wrap .person-name {
    font-size: 2.2rem;
    line-height: 1.1;
    color: var(--color-cream);
    margin: 0;
}
.divider-panel {
    width: 15vw;
    justify-content: center;
}
.outline-text {
    font-size: clamp(3rem, 6vw, 12vh);
    color: transparent;
    -webkit-text-stroke: 1.5px var(--color-copper);
    opacity: 0.6;
    transform: rotate(-90deg);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

/* Magnetic Hover Logic */
.magnetic-element {
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1024px) {
    .team-member-panel {
        width: 45vw;
    }
}
.contact-section {
    border-top: none;
    padding-top: 0;
    margin: 0;
    background-color: var(--color-darker);
}
.cta-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: var(--color-darker);
}
.cta-bg-parallax {
    position: absolute;
    top: -10%; left: 0; width: 100%; height: 120%;
    z-index: 0;
    will-change: transform;
}
.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}
.cta-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, var(--color-darker) 0%, rgba(12, 11, 10, 0.4) 50%, var(--color-darker) 100%);
    z-index: 1;
}
.cursor-grid-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: auto; /* Catch mouse events */
}
.cursor-grid__canvas {
    display: block;
    width: 100%;
    height: 100%;
}
.cta-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    max-width: 1600px;
    padding: 100px 5vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none; /* Let background handle events if needed, except links */
}
.cta-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.cta-eyebrow-new {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--color-copper);
    text-transform: uppercase;
}
.cta-center-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.cta-giant-text {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 6rem); /* Reduced for elegance */
    font-weight: 400;
    color: var(--color-cream);
    line-height: 1.1; /* Breathes better */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0em; /* Cleaner look */
}
.cta-line {
    overflow: hidden;
    padding-bottom: 0.15em;
    margin-bottom: -0.15em;
}
.cta-word {
    display: inline-block;
    will-change: transform;
}
.cta-italic {
    font-style: italic;
    font-family: 'Playfair Display', serif; /* Or similar elegant serif */
    font-weight: 300;
    color: var(--color-copper);
    text-transform: lowercase;
}
.cta-bottom-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}
.cta-massive-btn {
    pointer-events: auto;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 25px 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 100px;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    transition: border-color 0.4s ease;
}
.cta-massive-btn:hover {
    border-color: rgba(212, 175, 55, 0.8);
}
.cta-massive-btn .btn-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--color-cream);
    font-weight: 600;
    z-index: 2;
    position: relative;
    transition: color 0.4s ease;
}
.cta-massive-btn .btn-icon {
    position: relative;
    z-index: 2;
    color: var(--color-copper);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}
.cta-massive-btn:hover .btn-icon {
    transform: translateX(5px);
}
.cta-massive-btn .btn-fill {
    position: absolute;
    top: 100%; left: 0; width: 100%; height: 100%;
    background: var(--color-copper);
    z-index: 1;
    border-radius: 50%;
    transition: top 0.5s cubic-bezier(0.19, 1, 0.22, 1), border-radius 0.5s ease;
}
.cta-massive-btn:hover .btn-fill {
    top: 0;
    border-radius: 0;
}
.cta-massive-btn:hover .btn-text {
    color: #000;
}
.cta-massive-btn:hover .btn-icon {
    color: #000;
}

/* =========================================
   MEGA FOOTER (AWWWARDS STYLE)
   ========================================= */
.footer-mega-grid {
    padding: 100px 40px 40px 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 150px;
}
.footer-contact-block {
    flex: 1;
    min-width: 300px;
}
.mega-email {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-family: var(--font-display);
    color: var(--color-cream);
    text-decoration: none;
    line-height: 1;
    display: inline-block;
    margin-bottom: 30px;
    transition: color 0.4s ease;
}
.mega-email:hover {
    color: var(--color-copper);
}
.footer-links-wrapper {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}
.footer-col {
    min-width: 150px;
}
.footer-col-title {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-copper);
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 15px;
}
.footer-links a, .footer-address, .footer-phone {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}
.footer-links a:hover, .footer-phone:hover {
    color: var(--color-cream);
}
.footer-giant-wrap {
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
    margin-bottom: 40px;
    overflow: hidden;
}
.footer-giant-text {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 15rem);
    font-weight: 400;
    line-height: 0.8;
    color: var(--color-cream);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    opacity: 0.9;
    white-space: nowrap;
}
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer-copy, .footer-legal {
    display: flex;
    gap: 40px;
    align-items: center;
}
.local-time-display {
    color: var(--color-copper);
    font-weight: 600;
}
.powered-by {
    opacity: 0.6;
}
.copper-link {
    color: var(--color-copper);
    text-decoration: none;
    font-weight: 600;
}
.ml-m { margin-left: 20px; }
.ml-l { margin-left: 40px; }
.footer-legal a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-legal a:hover, .copper-link:hover {
    color: var(--color-cream);
    padding-bottom: 80px;
}
.footer-legal a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
}
.division-divider {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-bottom: 30px;
    margin-top: 60px;
    font-size: 1.25rem;
    color: var(--color-copper);
}
.division-divider span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-right: 15px;
}
.hover-link {
    color: var(--color-copper);
    position: relative;
    padding-bottom: 2px;
}
.hover-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background-color: var(--color-copper);
    transition: width 0.3s ease;
}
.hover-link:hover::after {
    width: 100%;
}
/* =========================================
   7. FAQ SECTION
   ========================================= */
.section-faq {
    padding: 120px 0;
    background-color: #EFECE6; /* Slightly deeper warm sand tone for contrast */
    border-top: 1px solid rgba(0,0,0,0.05);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.faq-question {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    position: relative;
    z-index: 2;
}
.faq-question h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    color: #333;
}
.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-copper);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.faq-icon::before {
    width: 2px;
    height: 100%;
}
.faq-icon::after {
    width: 100%;
    height: 2px;
}
/* When active, the icon rotates 45deg to form an X (multiply) */
.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    transform: rotate(45deg);
    background-color: #bfa18a;
}
/* Genjutsu Text Effect Wrapper */
.genjutsu-text {
    position: relative;
    display: inline-block;
}

/* GSAP Handles the Answer height/opacity */
.faq-answer {
    height: 0;
    opacity: 0;
    overflow: hidden;
    background: white;
}
.faq-answer-inner {
    padding: 0 30px 30px 30px;
}
.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

#smooth-wrapper {
    position: relative;
    z-index: 2; 
    background-color: var(--color-darker);
}

/* =========================================
   14. Custom GSAP Cursor (Hybrid Mode)
   ========================================= */
body {
    overflow-x: hidden;
    /* Keep default cursor visible for better UX as requested */
    cursor: auto; 
}
a, button, .cursor-grab {
    cursor: pointer; 
}
.custom-cursor {
    /* Hide the small dot since default arrow is visible */
    display: none !important;
}
.custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5); /* Copper-ish border */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* CRITICAL: Allows clicking through */
    z-index: 9998;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: #000;
    letter-spacing: 0.1em;
    font-weight: 600;
    opacity: 1;
}
/* Hover states for the cursor */
.custom-cursor-follower.hover-active {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
    backdrop-filter: blur(2px);
}
.custom-cursor-follower.drag-active {
    width: 80px;
    height: 80px;
    background-color: var(--color-cream);
    border-color: var(--color-cream);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .grid-2-col, .grid-3-col, .grid-4-col {
        grid-template-columns: 1fr;
    }
    .hero-text-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .timeline-container {
        padding-left: 0;
    }
    .timeline-line {
        left: 20px;
    }
    .timeline-meta {
        position: relative;
        left: 0;
        text-align: left;
        margin-bottom: 20px;
        padding-left: 60px;
    }
    .timeline-meta .year {
        font-size: 1.5rem;
    }
    .inditex-box {
        grid-template-columns: 1fr;
    }
    .awards-gallery-track {
        padding: 0 20px;
    }
    .award-photo-slot {
        width: 300px;
        height: 225px;
    }
}

/* Mobile / tablet rules live in mobile-fix.css (loaded after this file). */

@media (max-width: 992px) {
    .brand-logo {
        height: 32px !important;
    }
}

/* Premium Light Background Overrides for What We Do */
.section-what-we-do.bg-premium-light {
    background-color: #E3DBD3; /* Unique luxury soft taupe/mushroom */
}
.section-what-we-do.bg-premium-light .title-editorial,
.section-what-we-do.bg-premium-light .editorial-heading {
    color: var(--color-darker);
}
.section-what-we-do.bg-premium-light .intro-editorial,
.section-what-we-do.bg-premium-light .editorial-body {
    color: #5A524D; /* Elegant warm dark gray */
}
.section-what-we-do.bg-premium-light .editorial-eyebrow {
    color: var(--color-copper);
}
.section-what-we-do.bg-premium-light .card-image img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); /* Premium subtle depth */
}
