/* =========================================
   1. CORE SETUP & VARIABLES
   ========================================= */
:root {
    --bg-white: #ffffff;
    --text-black: #111111;
    --accent-red: #D72638; /* The Signature Red */
    --gray-light: #f4f4f4;
    --gray-medium: #e0e0e0;
    --font-display: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-serif: 'Georgia', serif;
    --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
    --radius-img: 12px;
    --radius-btn: 50px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }

html { scroll-behavior: smooth; }
body { 
    background: var(--bg-white); 
    color: var(--text-black); 
    font-family: var(--font-display); 
    overflow-x: hidden; 
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
img { display: block; width: 100%; object-fit: cover; border-radius: var(--radius-img); }

/* =========================================
   2. TYPOGRAPHY
   ========================================= */
.display-xl {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

h2 { font-size: 2.5rem; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; }
h3 { font-size: 1.5rem; font-weight: 700; text-transform: uppercase; }
p { font-size: 1.1rem; color: #555; line-height: 1.7; max-width: 600px; }

.red-text { color: var(--accent-red); }
.text-center { text-align: center; }

/* =========================================
   3. NAVIGATION (Sticky & Clear)
   ========================================= */
header {
    position: fixed; top: 0; left: 0; width: 100%; height: 80px; z-index: 1000;
    background: rgba(255, 255, 255, 0.95); /* Solid enough to read, slight transparency */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.logo { font-size: 1.8rem; font-weight: 900; text-transform: uppercase; letter-spacing: -1px; color: black; }
.logo span { color: var(--accent-red); }

.nav-menu { display: flex; gap: 40px; }
.nav-link { 
    font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: black; position: relative; 
}
/* Hover Line Effect */
.nav-link::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--accent-red); transition: 0.3s;
}
.nav-link:hover::after { width: 100%; }

/* Mobile Menu Button */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.bar { width: 25px; height: 3px; background: black; transition: 0.3s; }

/* =========================================
   4. HERO SECTION (The Wow Factor)
   ========================================= */
.hero-split {
    height: 100vh;
    display: flex;
    padding-top: 80px; /* Offset for fixed header */
}

/* Left Content */
.hero-text-side {
    flex: 1;
    display: flex; flex-direction: column; justify-content: center;
    padding: 60px;
    background: white;
    z-index: 2;
}

/* Right Image (Parallax Feel) */
.hero-img-side {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}
.hero-img-side img {
    height: 100%; width: 100%; object-fit: cover;
    border-radius: 0; /* Sharp edges for full bleed */
    transition: transform 1.5s var(--ease-smooth);
}
.hero-split:hover .hero-img-side img { transform: scale(1.05); }

/* =========================================
   5. UI ELEMENTS & BUTTONS
   ========================================= */
.btn {
    display: inline-block; padding: 18px 50px; 
    border-radius: var(--radius-btn);
    font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem;
    cursor: pointer; transition: 0.3s; border: 2px solid transparent;
}

.btn-primary { background: var(--text-black); color: white; }
.btn-primary:hover { background: var(--accent-red); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(215, 38, 56, 0.3); }

.btn-outline { border: 2px solid var(--text-black); background: transparent; color: var(--text-black); }
.btn-outline:hover { background: var(--text-black); color: white; }

/* =========================================
   6. PRODUCT GRID (Clean & Professional)
   ========================================= */
.section-padding { padding: 100px 40px; }

.grid-3 {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px;
    margin-top: 50px;
}

.product-card {
    position: relative; cursor: pointer; group: hover;
}
.img-container {
    position: relative; overflow: hidden; border-radius: var(--radius-img);
    aspect-ratio: 3/4; background: var(--gray-light); margin-bottom: 20px;
}
.img-container img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    transition: opacity 0.4s, transform 0.6s var(--ease-smooth);
}

/* Hover Swap Logic */
.img-hover { opacity: 0; }
.product-card:hover .img-main { opacity: 0; }
.product-card:hover .img-hover { opacity: 1; transform: scale(1.05); }

.p-meta { display: flex; justify-content: space-between; align-items: flex-end; }
.p-price { font-size: 1.2rem; font-weight: 700; color: var(--accent-red); }

/* =========================================
   7. ANIMATIONS
   ========================================= */
.fade-up { opacity: 0; transform: translateY(30px); transition: 0.8s var(--ease-smooth); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   8. FOOTER (Professional 4-Column)
   ========================================= */
footer {
    background: #0a0a0a; color: white; padding: 100px 40px 40px;
    margin-top: 100px;
}

.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
    border-bottom: 1px solid #333; padding-bottom: 60px; margin-bottom: 40px;
}

.footer-brand p { color: #888; font-size: 0.9rem; margin-top: 20px; max-width: 300px; }
.footer-col h4 { color: white; margin-bottom: 25px; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col a { color: #888; font-size: 0.95rem; transition: 0.3s; }
.footer-col a:hover { color: var(--accent-red); padding-left: 5px; }

.footer-bottom {
    display: flex; justify-content: space-between; color: #555; font-size: 0.8rem;
}

/* =========================================
   9. MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 900px) {
    header { padding: 0 20px; height: 70px; }
    .nav-menu {
        position: fixed; top: 70px; left: 0; width: 100%; height: calc(100vh - 70px);
        background: white; flex-direction: column; align-items: center; justify-content: center;
        transform: translateX(100%); transition: 0.3s; border-top: 1px solid #eee;
    }
    .nav-menu.active { transform: translateX(0); }
    .hamburger { display: flex; }
    
    .hero-split { flex-direction: column-reverse; height: auto; padding-top: 70px; }
    .hero-text-side { padding: 60px 20px; text-align: center; }
    .hero-img-side { height: 50vh; }
    .display-xl { font-size: 3rem; }
    
    .grid-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .section-padding { padding: 60px 20px; }
}

/* =========================================
   13. NEW "WOW" HERO & ABOUT SECTIONS
   ========================================= */

/* --- The Main Cinematic Hero --- */
.main-hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
}

.main-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Darken for text readability */
    animation: slowZoom 20s infinite alternate; /* The "Alive" movement */
}

.main-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 20px;
    color: white;
}

.hero-title-large {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -3px;
    margin-bottom: 30px;
    text-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Animation Keyframes */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* --- The Mini Editorial About Section --- */
.about-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0; /* Seamless split */
    min-height: 600px;
    background: var(--bg-white);
}

.about-img-col {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.about-img-col img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0; /* Full bleed, no round corners here */
    transition: transform 0.6s var(--ease-smooth);
}
/* Hover Effect: Image slightly zooms */
.about-split-section:hover .about-img-col img { transform: scale(1.03); }

.about-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.about-divider {
    width: 60px;
    height: 4px;
    background: var(--accent-red);
    margin-bottom: 30px;
}

/* Mobile Adjustments for New Sections */
@media (max-width: 900px) {
    .main-hero-bg { animation: none; transform: scale(1.1); } /* Save battery on mobile */
    .about-split-section { grid-template-columns: 1fr; }
    .about-img-col { height: 400px; }
    .about-text-col { padding: 50px 30px; }
}

/* =========================================
   14. PAGE SPECIFIC LAYOUTS (Add to bottom)
   ========================================= */

/* --- Contact Page Split Layout --- */
.contact-split {
    display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh;
}
.contact-dark-side {
    background: #0a0a0a; color: white; padding: 120px 60px;
    display: flex; flex-direction: column; justify-content: space-between;
}
.contact-light-side {
    padding: 120px 80px; display: flex; flex-direction: column; justify-content: center;
}
.minimal-input {
    width: 100%; padding: 15px 0; border: none; border-bottom: 2px solid #eee;
    font-family: var(--font-display); font-size: 1.1rem; outline: none; transition: 0.3s;
    margin-bottom: 30px; background: transparent; border-radius: 0;
}
.minimal-input:focus { border-color: var(--accent-red); }

/* --- Product Showcase (Sticky) --- */
.showcase-layout {
    display: grid; grid-template-columns: 1fr 1fr;
}
.showcase-sticky-col {
    position: sticky; top: 0; height: 100vh; background: white;
    display: flex; flex-direction: column; justify-content: center; padding: 60px; z-index: 2;
}
.showcase-scroll-col {
    background: var(--gray-light); padding: 40px; display: flex; flex-direction: column; gap: 40px;
}
.showcase-scroll-col img { box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

/* --- Editorial Grid (About) --- */
.editorial-row {
    display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 600px;
}
.editorial-row.reversed { direction: rtl; } /* Swaps image/text order */
.editorial-row.reversed .editorial-text { direction: ltr; } /* Keeps text LTR */
.editorial-text { padding: 80px; }
.editorial-img { height: 100%; min-height: 600px; object-fit: cover; border-radius: 0; }

/* Mobile Fixes for these pages */
@media (max-width: 900px) {
    .contact-split, .showcase-layout, .editorial-row { grid-template-columns: 1fr; }
    .contact-dark-side, .contact-light-side { padding: 60px 30px; }
    .showcase-sticky-col { position: relative; height: auto; padding: 40px 20px; }
    .editorial-img { min-height: 400px; }
    .editorial-text { padding: 40px 20px; }
}

/* =========================================
   15. FINAL LAYOUT FIXES (Append to bottom)
   ========================================= */

/* --- FIX: Text Page Spacing (Legal) --- */
.text-page-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 160px 20px 100px; /* Top padding clears the fixed header */
    min-height: 60vh; /* Ensures footer stays down on short pages */
}

.text-header {
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.text-body h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 10px;
    line-height: 1;
}

.text-body h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-red);
    padding-left: 20px;
}

.text-body p {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* --- FIX: Editorial Grid (About Us) --- */
.editorial-section {
    padding: 0;
    width: 100%;
}

.editorial-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh; /* Makes each section substantial */
    align-items: center;
}

.editorial-row.reversed {
    direction: rtl; /* Swaps columns visually */
}
.editorial-row.reversed .editorial-content {
    direction: ltr; /* Resets text direction */
}

.editorial-img-col {
    height: 100%;
    min-height: 500px;
    width: 100%;
    position: relative;
}

.editorial-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Full bleed images */
}

.editorial-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Mobile Fixes for these sections */
@media (max-width: 900px) {
    .text-page-wrapper { padding-top: 120px; }
    .editorial-row { grid-template-columns: 1fr; min-height: auto; }
    .editorial-img-col { height: 400px; min-height: 400px; }
    .editorial-content { padding: 40px 20px; }
    .text-body h1 { font-size: 2.5rem; }
}