/* =========================================
   BASE RESET & TYPOGRAPHY
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
}

body, html { 
    margin: 0; 
    padding: 0; 
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; 
    line-height: 1.6; 
    background-color: #fff;
    color: #111;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.bg-light { background-color: #f4f4f4; }
.section-title {
    text-align: center;
    font-size: clamp(3rem, 6vw, 4.8rem); 
    line-height: 1.1;
    margin-bottom: 3.5rem;
    color: #000;
    font-weight: 900; 
    text-transform: uppercase;
    letter-spacing: -2px; 
}

/* =========================================
   Scroll Reveal Text Animation Styles 
   ========================================= */
#scroll-reveal-heading {
    margin-bottom: 3rem; 
}

#scroll-reveal-heading .word {
    display: inline-block;
    will-change: opacity, filter;
}

/* =========================================
   DESKTOP NAVIGATION (Header)
   ========================================= */
header { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; 
    z-index: 100; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1.5rem 5%; 
    box-sizing: border-box; 
}
.logo-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.main-nav {
    display: flex;
    gap: 20px;
}
.main-nav a { 
    color: #fff; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px;
    transition: opacity 0.3s ease;
}
.main-nav a:hover { opacity: 0.7; }
.nav-toggle, .nav-toggle-label { display: none; }

.mobile-sticky-cta { display: none; }

/* =========================================
   3D OPTION WHEEL (MOBILE MENU BASE)
   ========================================= */
/* Hide the wheel on desktop screens by default */
.mobile-wheel-nav {
    display: none; 
}

.option-wheel {
    --ow-text-color: #666666;
    --ow-active-color: #ffffff;
    --ow-font-size: clamp(2rem, 10vw, 3.5rem); 
    --ow-inset: 12vw; 
    
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: none; 
    display: flex;
    align-items: center;
}

.option-wheel--dragging {
    cursor: grabbing;
}

.option-wheel__item {
    position: absolute;
    top: 50%;
    right: var(--ow-inset);
    white-space: nowrap;
    font-size: var(--ow-font-size);
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transform-origin: right center; 
    cursor: pointer;
    will-change: transform, opacity, filter;
    color: color-mix(in srgb, var(--ow-active-color) calc(var(--ow-p, 0) * 100%), var(--ow-text-color));
    transition: font-weight 0.2s;
}

.option-wheel__item--selected {
    font-weight: 900;
}

/* =========================================
   LOGO IMAGE SIZING
   ========================================= */

/* Header Logo */
.header-logo {
    height: 55px; /* Adjust this number to make your logo larger or smaller */
    width: auto;
    display: block;
    object-fit: contain;
}

/* Footer Logo */
.footer-logo {
    height: 45px; /* Slightly larger for the footer */
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 1.5rem; /* Keeps the spacing consistent with the old placeholder */
}

/* Hide the old text/placeholder CSS just in case */
.footer-logo-placeholder {
    display: none !important;
}

/* Mobile Adjustments for Logos */
@media (max-width: 900px) {
    .header-logo {
        height: 28px; /* Scales the logo down slightly for mobile screens */
    }
}
/* =========================================
   FULL-SCREEN HERO
   ========================================= */
.hero { 
    position: relative; 
    min-height: 100vh;
    min-height: 100svh; 
    display: flex; 
    align-items: center; 
    padding: 0 5%; 
    overflow: hidden; 
    color: #fff; 
    background-color: #000; 
    z-index: 1;
}
.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover;
    filter: grayscale(100%); 
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
}
.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 40px; 
    transition: background 0.3s ease;
}
.hero-btn:hover { background: #ddd; }
.hero-trust { margin-top: 4rem; }
.hero-trust p {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.trust-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}
.trust-logos span { font-weight: 700; font-size: 1.2rem; }

/* =========================================
   SECTIONS & DESKTOP GRIDS
   ========================================= */
section:not(.hero) { padding: 6rem 0; }

.intro-teaser { 
    text-align: left; 
}
.intro-teaser h2 {
    font-size: clamp(2.8rem, 6vw, 4.5rem); 
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    max-width: 900px;
}
.intro-teaser p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 0 3rem 0; 
    color: #555;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 40px;
    transition: all 0.3s ease;
}
.btn-outline:hover { background: #000; color: #fff; }

.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem; 
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

/* Base Styling for Image Cards (Capabilities) */
.card { 
    padding: 4rem 2rem; 
    text-align: center;
    color: #fff;
    border: none;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease; 
    cursor: pointer;
    overflow: hidden; 
}
.card:hover {
    transform: scale(1.03) translateY(-5px); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); 
}

.card-fabric {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/fabric.jpg');
    background-size: cover;
    background-position: center;
}

.card-quality {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/quality.jpg');
    background-size: cover;
    background-position: center;
}

.card-printing {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/printing.jpg');
    background-size: cover;
    background-position: center;
}

.card h3 { 
    font-weight: 800; 
    text-transform: uppercase; 
    margin-bottom: 1rem; 
    color: #fff; 
}
.card p { 
    color: #e0e0e0; 
    margin: 0; 
}

.center-action { text-align: center; margin-top: 3rem; }

/* =========================================
   HOW WE WORK (Image Backgrounds)
   ========================================= */
.process-step { 
    padding: 3rem 2rem; 
    border: none;
    border-radius: 16px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.process-step:hover {
    transform: translateY(-5px); 
}

/* Background images with dark overlay for readability */
.step-consultation {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)), url('../images/step1-consultation.jpg');
    background-size: cover;
    background-position: center;
}
.step-prototyping {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)), url('../images/step2-prototyping.jpg');
    background-size: cover;
    background-position: center;
}
.step-production {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)), url('../images/step3-production.jpg');
    background-size: cover;
    background-position: center;
}
.step-delivery {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)), url('../images/step4-delivery.jpg');
    background-size: cover;
    background-position: center;
}

/* Typography adapted for dark backgrounds */
.step-number { 
    font-size: 3rem; 
    font-weight: 800; 
    color: rgba(255, 255, 255, 0.3); 
    margin-bottom: 1rem; 
    line-height: 1;
}
.process-step h4 { 
    margin-bottom: 0.8rem; 
    font-size: 1.2rem; 
    text-transform: uppercase; 
    font-weight: 800; 
    color: #fff;
}
.process-step p { 
    color: #e0e0e0; 
    font-size: 0.95rem; 
}


/* =========================================
   Pre-Footer CTA 
   ========================================= */
.pre-footer-section { padding-bottom: 4rem; }
.cta-box {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/ready-to-begin.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
    border-radius: 24px; 
}
.cta-badge {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.cta-box h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto; margin-right: auto;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-solid {
    background: #fff; color: #000; padding: 12px 28px; border-radius: 40px;
    text-decoration: none; font-weight: 800; display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase;
}
.btn-solid span { background: #e0e0e0; border-radius: 50%; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.6); color: #fff; padding: 12px 28px; border-radius: 40px;
    text-decoration: none; transition: all 0.3s ease; text-transform: uppercase; font-weight: 800; display: inline-flex; align-items: center;
}
.btn-outline-light:hover { background: #fff; color: #000; }

/* =========================================
   Footer 
   ========================================= */
.site-footer { background-color: #000; color: #fff; padding: 4rem 0 2rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.brand-col p { color: #aaa; font-size: 0.9rem; margin-bottom: 0.2rem; }
.footer-logo-placeholder { width: 50px; height: 50px; background: #222; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-bottom: 1.5rem; }
.footer-col h4 { font-weight: 800; margin-bottom: 1.5rem; font-size: 1.1rem; text-transform: uppercase; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col a { color: #aaa; text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; display: inline-block; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: 0.85rem; color: #777; flex-wrap: wrap; gap: 1rem; }
.legal-links a { color: #777; text-decoration: none; margin-right: 1.5rem; }


/* =========================================
   CAPABILITIES PAGE STYLES (PRECISION LAYOUT)
   ========================================= */
.cap-feature {
    display: flex;
    align-items: center;
    padding: 8rem 8% !important; 
    background-color: #fff;
}
.cap-feature:nth-child(even) {
    background-color: #f9f9f9; 
}
.cap-split {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    width: 100%;
    max-width: 1400px; 
    margin: 0 auto; 
}
.cap-text, 
.cap-image-wrapper {
    width: 46%;
    flex: none; 
}
.cap-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}
.cap-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0,0,0,0.08);
    line-height: 1;
    margin-bottom: 1rem;
}
.cap-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.cap-text p {
    font-size: 1.125rem;
    line-height: 1.7; 
    color: #444;
    margin-bottom: 2rem;
    max-width: 95%; 
}
.cap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cap-list li {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.cap-list li::before {
    content: '◆';
    font-size: 0.65rem;
    color: #000;
}
.cap-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden; 
    box-shadow: 0 12px 40px rgba(0,0,0,0.08); 
    aspect-ratio: 4 / 3; 
}
.cap-hover-zoom {
    width: 100%;
    height: 100%; 
    display: block;
    object-fit: cover; 
    object-position: center; 
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1); 
}
.cap-image-wrapper:hover .cap-hover-zoom {
    transform: scale(1.05); 
}
.cap-split.reverse {
    flex-direction: row-reverse;
}

/* =========================================
   DEPTH CAROUSEL (SECTION 04)
   ========================================= */
.depth-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
    perspective-origin: 50% 50%;
    touch-action: pan-y;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
}
.depth-carousel:active { cursor: grabbing; }

.depth-carousel__stage {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
}

.depth-carousel__card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    overflow: hidden;
    background: #000;
    border-radius: 18px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.65), 0 8px 20px -10px rgba(0,0,0,0.5);
    will-change: transform, opacity, filter;
    cursor: pointer;
    width: 280px; 
    height: 380px; 
}

.depth-carousel__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.depth-carousel__tint {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background: #05060a;
}

.depth-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3000;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 999px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    color: #000;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.depth-carousel__arrow:hover { background: #fff; }
.depth-carousel__arrow:active { transform: translateY(-50%) scale(0.94); }
.depth-carousel__arrow--prev { left: 0; }
.depth-carousel__arrow--next { right: 0; }

.depth-carousel__dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
    display: flex;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,0.05);
}
.depth-carousel__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: width 0.25s, background 0.25s;
}
.depth-carousel__dot.is-active {
    width: 24px;
    background: #000;
}


/* =========================================
   MEET THE FOUNDER SECTION (EDITORIAL)
   ========================================= */
.founder-section {
    padding: 120px 5%;
    background-color: #f4f3ef; /* Warm editorial off-white */
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.founder-container {
    width: 100%;
    max-width: 1000px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Giant Background Text --- */
.founder-bg-text {
    font-size: clamp(3.5rem, 13vw, 11rem);
    font-weight: 900;
    line-height: 0.85;
    color: #111;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1; 
}

/* --- Portrait Image & Layout --- */
.founder-content-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Greatly reduced the top margin to pull the image up and overlap the text */
    margin-top: 20px; 
}

.founder-image-main {
    width: 100%;
    /* Increased from 450px to 600px to make the CEO portrait significantly larger */
    max-width: 600px;
    aspect-ratio: 4 / 5;
    background: transparent;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.founder-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; 
    /* The grayscale filter has been completely removed to keep it fully colored */
}

.founder-image-main img:hover {
    filter: grayscale(0%);
}

/* --- Decorative Side Angles --- */
.accent-line {
    position: absolute;
    bottom: 160px; 
    width: 50px;
    height: 50px;
    border: 2px solid #111;
    z-index: 0;
}

.accent-left {
    left: 5%;
    border-top: none;
    border-right: none;
}

.accent-right {
    right: 5%;
    border-top: none;
    border-left: none;
}

/* --- The Quote Box --- */
.founder-quote-box {
    width: 90%;
    max-width: 650px;
    background: #fff;
    padding: 35px 45px;
    text-align: center;
    position: relative;
    z-index: 3;
    margin-top: -60px; /* Forces overlap with the bottom of the portrait */
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.founder-quote-box p {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* --- Bottom Info Bar --- */
.founder-info-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    padding: 20px 0;
    margin-top: 60px;
}

.info-item {
    flex: 1;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #111;
}

.info-item:first-child {
    border-right: 1px solid #111;
}

/* =========================================
   BENTO GRID STYLES
   ========================================= */
.bento-section {
    background-color: #0b0d12;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
    width: 100%;
}
.bento-item {
    background-color: #14171f;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.bento-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 13, 18, 0.95) 0%, rgba(11, 13, 18, 0.2) 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
}
.bento-item:hover { transform: translateY(-5px); }
.bento-item:hover::before { opacity: 0.85; }
.bento-icon {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.8);
}
.bento-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.bento-item p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin: 0;
}
.bento-tall-left { grid-column: 1 / 2; grid-row: 1 / 3; }
.bento-top-mid { grid-column: 2 / 3; grid-row: 1 / 2; }
.bento-top-right { grid-column: 3 / 4; grid-row: 1 / 2; }
.bento-mid-mid { grid-column: 2 / 3; grid-row: 2 / 3; }
.bento-wide-bottom { grid-column: 1 / 3; grid-row: 3 / 4; }
.bento-tall-right { grid-column: 3 / 4; grid-row: 2 / 4; }


/* =========================================
   CONTACT PAGE STYLES (STRICT B&W)
   ========================================= */
.page-contact { background-color: #ffffff; }
.contact-section {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    min-height: calc(100vh - 400px); 
}
.contact-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.contact-info h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #000000; 
    letter-spacing: -1px;
}
.contact-info p {
    font-size: 1.1rem;
    color: #333333; 
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}
.contact-details { margin-bottom: 3rem; }
.detail-block { margin-bottom: 1.5rem; }
.detail-block span {
    display: block;
    font-size: 1rem;
    color: #000000;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
.detail-block strong {
    display: block;
    font-size: 1.4rem;
    color: #000000;
    font-weight: 600;
}
.detail-block small {
    display: block;
    font-size: 0.85rem;
    color: #555555;
    margin-top: 5px;
}
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #000000;
    color: #ffffff;
    padding: 8px 8px 8px 24px; 
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #000000;
    cursor: pointer;
}
.btn-dark:hover {
    transform: translateY(-3px);
    background-color: #ffffff;
    color: #000000;
}
.btn-dark:hover .arrow-circle {
    background: #000000;
    color: #ffffff;
}
.arrow-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    color: #000000;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background 0.3s ease, color 0.3s ease;
}
.contact-form-wrapper {
    background: #ffffff;
    padding: 50px;
    border: 2px solid #000000; 
    border-radius: 0; 
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { margin-bottom: 25px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #000000;
    border-radius: 0;
    font-size: 1rem;
    background: #ffffff;
    color: #000000;
    transition: outline 0.2s ease;
    box-sizing: border-box;
    font-family: inherit; 
}
.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid #000000;
    outline-offset: 2px;
    border-color: #000000;
}
.form-group textarea { resize: vertical; }
.form-submit-row {
    display: flex;
    justify-content: flex-end; 
    margin-top: 10px;
}

/* =========================================
   EDITORIAL CATALOG PAGE
   ========================================= */
.page-catalog {
    background-color: #f4f3ef; /* Warm editorial off-white */
}

/* --- Hero Section --- */
.catalog-hero {
    padding: 140px 5% 60px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 2px solid #111;
}

.catalog-hero-text {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.catalog-hero-text h1 {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.85;
    color: #111;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin: 0;
}

.catalog-hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1400px;
}

.hero-img-box {
    width: 100%;
    aspect-ratio: 4/5;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-bw {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.img-bw:hover {
    filter: grayscale(0%);
}

.hero-asterisk {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    line-height: 1;
    color: #fff;
    font-family: sans-serif;
}

/* --- Marquee Ticker --- */
.marquee-band {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 15px 0;
    overflow: hidden;
    border-bottom: 2px solid #111;
    border-top: 2px solid #111;
    display: flex;
    white-space: nowrap;
}

.bg-black {
    background-color: #111;
    color: #fff;
}

.marquee-content {
    display: flex;
    width: max-content;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.marquee-content span {
    padding-right: 3rem;
}

/* --- Crossed Marquees --- */
.crossed-marquees-container {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #f4f3ef;
}

.angle-up {
    position: absolute;
    transform: rotate(-3deg);
    width: 110vw;
    left: -5vw;
}

.angle-down {
    position: absolute;
    transform: rotate(3deg);
    width: 110vw;
    left: -5vw;
    background-color: #fff;
    color: #111;
}

/* --- Brutalist Product Grid --- */
.catalog-grid-section {
    padding: 100px 10%; /* Increased side padding for a deep, editorial margin */
    max-width: 1250px;  /* Reduced from 1400px to strictly constrain the image sizes */
    margin: 0 auto;
}

.grid-section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 50px;
    color: #111;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px; /* Increased the gap from 20px to 50px to separate the products cleanly */
}

.catalog-card {
    display: flex;
    flex-direction: column;
}

.catalog-img-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    background: #e0e0e0;
    border: 1px solid #111;
    overflow: hidden;
}

.catalog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.catalog-card:hover .catalog-img-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.catalog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #111;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
}

.catalog-btn {
    background: #111;
    color: #fff;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s;
}

.catalog-btn:hover {
    background: #333;
}

/* =========================================
   APP-LIKE MOBILE OPTIMIZATIONS (FIXED STRICTLY)
   ========================================= */
@media (max-width: 900px) {
    /* Switch to 3D Wheel on Mobile */
    
    /* 1. Force the original desktop nav to stay hidden on mobile */
    .main-nav, #nav-toggle:checked ~ .main-nav {
        display: none !important;
    }

    /* 2. Show the new 3D Wheel overlay when the hamburger is clicked */
    #nav-toggle:checked ~ .mobile-wheel-nav {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #0b0d12;
        z-index: 99; /* Keeps it just underneath your hamburger button */
        align-items: center;
    }

    /* 3. Global Reset for Mobile */
    html { 
        scroll-snap-type: none !important; 
    }
    
    body { 
        padding-bottom: 80px !important; 
    }
    
    .snap-section {
        scroll-snap-align: none !important;
        min-height: auto !important; 
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 4rem 0 !important; 
    }

    /* 4. Hero Overlap Fix */
    .hero.snap-section {
        min-height: 100svh !important;
        padding-top: 140px !important; 
        align-items: flex-start !important; 
    }
    .hero-content { 
        text-align: center; 
        width: 100% !important;
        margin-top: 0 !important;
    }
    .hero-content h1 { 
        font-size: 2.4rem !important; 
        line-height: 1.1 !important;
    }
    .hero-content h2 { 
        font-size: 1.1rem !important; 
    }
    .trust-logos { justify-content: center; flex-wrap: wrap; gap: 15px; }

    /* 5. Navigation */
    header { background: transparent; padding: 1rem 5%; }
    .logo-link { position: relative; z-index: 102; font-size: 1.2rem; }
    
    .nav-toggle-label {
        display: flex; align-items: center; justify-content: center;
        width: 44px; height: 44px; cursor: pointer; position: relative; z-index: 102;
    }
    .nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after {
        display: block; background: #fff; height: 2px; width: 24px; position: relative; transition: 0.3s ease;
    }
    .nav-toggle-label span::before, .nav-toggle-label span::after { content: ''; position: absolute; }
    .nav-toggle-label span::before { bottom: 7px; }
    .nav-toggle-label span::after { top: 7px; }

    .nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
    .nav-toggle:checked ~ .nav-toggle-label span::before { transform: translateY(7px) rotate(45deg); }
    .nav-toggle:checked ~ .nav-toggle-label span::after { transform: translateY(-7px) rotate(-45deg); }

    /* 6. Text & Titles Fixes */
    .section-title { 
        font-size: clamp(1.8rem, 8vw, 2.5rem) !important; 
        margin-bottom: 2rem !important; 
        width: 100% !important;
        text-align: center !important;
        overflow-wrap: break-word !important; 
        hyphens: auto;
        padding: 0 15px !important; 
    }
    .intro-teaser h2 { font-size: 2.2rem !important; }
    .intro-teaser p { font-size: 1rem !important; }

    /* 7. Contact Page Title Fix */
    .contact-info h1 {
        font-size: 2.2rem !important; 
        line-height: 1.1 !important;
    }
    .contact-container { grid-template-columns: 1fr !important; gap: 40px !important; }
    .form-row { grid-template-columns: 1fr !important; }
    .contact-form-wrapper { padding: 30px 20px !important; }

    /* 8. Swipe Galleries EXACT FIT Math */
    .swipe-gallery {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch;
        
        width: 100vw !important; 
        margin-left: calc(50% - 50vw) !important; 
        padding-left: 5vw !important; 
        padding-right: 5vw !important; 
        
        gap: 1rem !important;
        padding-bottom: 1rem !important;
        scrollbar-width: none; 
        box-sizing: border-box !important;
    }
    .swipe-gallery::-webkit-scrollbar { display: none; } 
    
    .swipe-item {
        flex: 0 0 85vw !important; 
        max-width: 85vw !important; 
        scroll-snap-align: center !important;
        box-sizing: border-box !important;
        white-space: normal !important; 
    }
    
    .card, .process-step { 
        padding: 2.5rem 1.5rem !important; 
        box-sizing: border-box !important; 
    }
    
    .process-step h4, .card h3 {
        font-size: 1.1rem !important; 
        word-wrap: break-word !important; 
        overflow-wrap: break-word !important;
        white-space: normal !important;
        hyphens: auto;
    }
    
    .process-step p, .card p { font-size: 0.95rem !important; }

    /* 9. Capabilities Split Blocks */
    .cap-feature { padding: 4rem 5% !important; }
    .cap-split, .cap-split.reverse { flex-direction: column !important; gap: 2.5rem !important; }
    .cap-text, .cap-image-wrapper { width: 100% !important; }
    .cap-number { font-size: 3rem !important; }

    /* 10. Depth Carousel Fixes */
    .depth-carousel { min-height: 340px !important; }
    .depth-carousel__card { width: 220px !important; height: 300px !important; }

    /* 11. CEO Section */
    .ceo-wireframe-section { padding: 80px 5% !important; }
    .ceo-layout-container { align-items: center !important; }
    .ceo-image-main { aspect-ratio: 1 / 1 !important; max-width: 100% !important; margin-bottom: 0 !important; }
    .ceo-text-box { max-width: 100% !important; margin-right: 0 !important; box-shadow: none !important; border-top: 1px solid #eee !important; padding: 30px 20px !important; }

    /* 12. Bento Grid */
    .bento-grid { grid-template-columns: 1fr !important; grid-auto-rows: auto !important; }
    .bento-item { grid-column: 1 / -1 !important; grid-row: auto !important; padding: 40px 30px !important; min-height: 250px !important; }

    /* 13. Footer & Sticky CTA */
    .mobile-sticky-cta {
        display: flex; position: fixed; bottom: 0; left: 0; width: 100%;
        background: #000; border-top: 1px solid #333; padding: 15px 0;
        justify-content: center; align-items: center; z-index: 999; 
    }
    .mobile-sticky-cta a {
        color: #fff; font-weight: 800; text-transform: uppercase; text-decoration: none;
        font-size: 1.1rem; letter-spacing: 1px; display: flex; align-items: center; gap: 8px;
    }
    .mobile-sticky-cta a span {
        background: #fff; color: #000; border-radius: 50%;
        width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
    }

    .site-footer { padding-bottom: 80px !important; }
    .pre-footer-section { padding-bottom: 40px !important; }
    .cta-box { padding: 3rem 1.5rem !important; }
    .cta-box h2 { font-size: 1.8rem !important; margin-bottom: 2rem !important; }
    .cta-buttons { flex-direction: column !important; width: 100% !important; gap: 1rem !important; }
    .btn-solid, .btn-outline-light, .btn-outline, .hero-btn { width: 100% !important; box-sizing: border-box !important; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; text-align: center !important; }
    .footer-logo-placeholder { margin: 0 auto 1.5rem auto !important; }
    .footer-bottom { flex-direction: column !important; gap: 1.5rem !important; text-align: center !important; }
    .legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
    .legal-links a { margin-right: 0 !important; padding: 10px 0 !important; }

    /* 14. Catalog Page Mobile Fixes */
    .catalog-hero { padding-top: 120px !important; }
    .catalog-hero-text h1 { font-size: 3.5rem !important; }
    .catalog-hero-images { grid-template-columns: 1fr !important; } /* Stacks the hero images */
    .hero-asterisk { font-size: 3rem !important; top: 10px !important; right: 10px !important; }
    
    .catalog-grid { grid-template-columns: 1fr !important; gap: 40px !important; } /* Stacks products into a single column */
    .grid-section-title { font-size: 2.2rem !important; }
    
    .crossed-marquees-container { height: 150px !important; } /* Shrinks the crossed bands so they fit smaller screens */
    .marquee-content { font-size: 1.1rem !important; }
}


/* =========================================
   UNDER CONSTRUCTION (SCROLL VELOCITY)
   ========================================= */
.page-process {
    background-color: #f4f3ef;
}

.construction-section {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* CRITICAL: Prevents horizontal blowout */
    padding: 100px 0;
}

.parallax-container {
    width: 100vw;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: rotate(-2deg); /* Gives it an edgy, dynamic tilt */
}

.parallax {
    width: 100%;
    overflow: hidden; /* Contains the infinite text */
}

.scroller {
    display: flex;
    width: max-content;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #000;
    text-transform: uppercase;
}

.scroller span {
    flex-shrink: 0;
    padding-right: 2rem;
}

/* Light styling for the second row */
.parallax:nth-child(2) .scroller {
    color: transparent;
    -webkit-text-stroke: 2px #000;
}

.construction-cta {
    margin-top: 80px;
    z-index: 10;
}