/* ===================================
   FAST BUNNY™ - Luxury Fashion House
   The House of Bellucio
   =================================== */

/* ============= CSS RESET & BASE ============= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Luxury Neutrals */
    --deep-green: #2F3F36;
    --forest-green: #3A5244;
    --cream: #F3EFE6;
    --beige: #E8DCC8;
    --warm-beige: #C9A876;
    --soft-tan: #D4C4AD;
    --black: #1A1A1A;
    --soft-black: #2D2D2D;
    --gold: #B8956A;
    --muted-gold: #C2A65F;
    --white: #FFFFFF;
    --light-gray: #F8F6F3;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1440px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--black);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ============= NAVIGATION ============= */
/* Navigation removed as per user request */

/* ============= HERO SECTION ============= */
.hero-section {
    min-height: 100vh;
    background-color: var(--cream);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    width: 100%;
    max-width: 1440px;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 80px 120px 60px;
    margin: 0 auto;
}

/* Desktop Navigation Menu */
.hero-nav {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 10;
    padding-bottom: 20px;
}

.hero-nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--deep-green);
    margin-bottom: 15px;
}

.hero-nav-menu a {
    color: var(--deep-green);
    transition: var(--transition);
}

.hero-nav-menu a:hover {
    color: var(--gold);
}

.hero-nav-separator {
    color: var(--deep-green);
    font-size: 0.6rem;
}

/* Desktop Footer Text */
.hero-footer-text {
    font-family: var(--font-serif);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--soft-black);
    font-style: italic;
    text-align: center;
}

/* Top Center Logo */
.hero-logo {
    position: relative;
    text-align: center;
    z-index: 10;
    padding-top: 20px;
}

.logo-image {
    height: 120px;
    width: auto;
    margin: 0 auto;
    display: block;
}

/* Tagline Wrapper */
.hero-tagline-wrapper {
    position: relative;
    text-align: center;
    margin-top: 20px;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    font-style: italic;
    text-align: center;
    opacity: 0.9;
}

/* Main Content Area */
.hero-content {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Center Headline */
.hero-headline {
    position: relative;
    text-align: center;
    max-width: 800px;
    z-index: 10;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    color: var(--deep-green);
    line-height: 1.35;
    margin: 0 0 40px 0;
    letter-spacing: -0.5px;
}

.hero-divider {
    width: 100px;
    height: 1px;
    background-color: var(--muted-gold);
    margin: 0 auto;
    opacity: 0.6;
}

/* Right Side Character Image */
.hero-character {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    max-width: 500px;
    height: auto;
    z-index: 5;
    pointer-events: none;
}

.hero-character img {
    width: 100%;
    height: auto;
    max-height: 65vh;
    object-fit: contain;
    mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,1) 8%,
        rgba(0,0,0,1) 85%,
        rgba(0,0,0,0) 100%),
        linear-gradient(to right,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,1) 15%,
        rgba(0,0,0,1) 85%,
        rgba(0,0,0,0) 100%);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,1) 8%,
        rgba(0,0,0,1) 85%,
        rgba(0,0,0,0) 100%),
        linear-gradient(to right,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,1) 15%,
        rgba(0,0,0,1) 85%,
        rgba(0,0,0,0) 100%);
    -webkit-mask-composite: source-in;
}

/* ============= HERO V2 SECTION (NEW REFERENCE DESIGN) ============= */
.hero-v2-section {
    min-height: 100vh;
    background-image: url('../images/taust.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.hero-v2-container {
    width: 100%;
    max-width: 1440px;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 80px 100px 80px;
    margin: 0 auto;
}

/* Top Left Logo Lockup */
.hero-v2-logo-lockup {
    position: absolute;
    top: 30px;
    left: 80px;
    text-align: center;
    z-index: 10;
}

.hero-v2-logo-image {
    height: 100px;
    width: auto;
    margin-bottom: 8px;
    display: block;
}

.hero-v2-tagline {
    font-family: var(--font-serif);
    font-size: 0.65rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 6.5px;
    text-transform: uppercase;
    font-style: italic;
    margin: 0;
    opacity: 0.85;
}

/* Center Content Area */
.hero-v2-center {
    position: relative;
    max-width: 720px;
    text-align: center;
    z-index: 10;
    margin-top: 100px; /* Adjusted for better spacing below logo */
    margin-bottom: 0;
}

/* Ornamental Dividers */
.hero-v2-divider-ornamental {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-v2-divider-ornamental.hero-v2-divider-second {
    margin-top: 18px;
    margin-bottom: 20px;
}

.hero-v2-divider-line {
    width: 70px;
    height: 1px;
    background-color: var(--muted-gold);
    opacity: 0.4;
}

.hero-v2-divider-diamond {
    font-size: 0.45rem;
    color: var(--muted-gold);
    opacity: 0.5;
    line-height: 1;
}

/* Main Headline */
.hero-v2-headline {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 400;
    color: var(--deep-green);
    line-height: 1.2;
    margin: 0 0 16px 0;
    letter-spacing: 0.3px;
    display: flex;
    flex-direction: column; /* Vertical stacking */
    align-items: center;
}

/* "The House of" - lighter weight, no bold */
.hero-house-of {
    font-weight: 300; /* Lighter, not bold */
    display: block;
}

/* "FAST BUNNY" - keep original weight */
.hero-fast-bunny {
    font-weight: 400; /* Keep same as original headline */
    display: block;
}

/* Subline */
.hero-v2-subline {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 300;
    color: var(--soft-black);
    font-style: italic;
    margin: 0;
    line-height: 1.5;
    opacity: 0.75;
}

/* Main Statement */
.hero-v2-statement {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 300;
    color: var(--deep-green);
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 40px;
    text-align: center;
    z-index: 15;
}

/* Center Text Between Divider and Menu */
.hero-v2-center-text {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 300;
    color: var(--deep-green);
    line-height: 1.5;
    margin: 60px 0 30px 0; /* Adjusted spacing */
    letter-spacing: 0.2px;
    position: static;
    transform: none;
    text-align: center;
    z-index: 15;
    display: flex;
    flex-direction: column; /* Vertical stacking */
    align-items: center;
}

.hero-center-line1,
.hero-center-line2 {
    display: block;
}


/* Left Character Image (Photoreal) */
.hero-v2-character-left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: auto;
    max-width: 320px;
    height: auto;
    z-index: 2;
}

.hero-v2-character-left img {
    width: 100%;
    height: auto;
    max-height: 72vh;
    object-fit: contain;
    display: block;
    background: transparent;
    mix-blend-mode: normal;
    opacity: 1;
}

/* Right Character Image (Illustrated) */
.hero-v2-character-right {
    position: absolute;
    right: 80px;
    bottom: 40px; /* Align bottom of image with menu position */
    width: auto;
    max-width: 416px; /* 30% larger: 320px * 1.3 = 416px */
    height: auto;
    z-index: 2;
}

.hero-v2-character-right img {
    width: 100%;
    height: auto;
    max-height: 93.6vh; /* 30% larger: 72vh * 1.3 = 93.6vh */
    object-fit: contain;
    display: block;
    background: transparent;
    mix-blend-mode: multiply;
    opacity: 0.98;
    /* Fade effect to blend with background */
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,0,0,0.3) 5%,
        rgba(0,0,0,1) 12%,
        rgba(0,0,0,1) 85%,
        rgba(0,0,0,0.6) 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,0,0,0.3) 5%,
        rgba(0,0,0,1) 12%,
        rgba(0,0,0,1) 85%,
        rgba(0,0,0,0.6) 92%,
        transparent 100%
    );
}

/* Bottom Navigation */
.hero-v2-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 15;
}

.hero-v2-nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* Reduced from 14px - more compact */
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--deep-green);
    margin-bottom: 8px;
    opacity: 0.8;
}

.hero-v2-nav-menu a {
    color: var(--deep-green);
    transition: var(--transition);
}

.hero-v2-nav-menu a:hover {
    color: var(--gold);
}

.hero-v2-nav-separator {
    color: var(--deep-green);
    font-size: 0.45rem;
    opacity: 0.7;
}

.hero-v2-footer-text {
    font-family: var(--font-serif);
    font-size: 0.68rem;
    font-weight: 300;
    color: var(--soft-black);
    font-style: italic;
    text-align: center;
    margin: 0;
    opacity: 0.65;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .hero-v2-container {
        padding: 50px 60px 80px 60px;
    }
    
    .hero-v2-logo-lockup {
        top: 25px;
        left: 60px;
    }
    
    .hero-v2-logo-image {
        height: 85px;
    }
    
    .hero-v2-tagline {
        letter-spacing: 5.5px;
    }
    
    .hero-v2-center {
        max-width: 600px;
        margin-top: 0;
    }
    
    .hero-v2-headline {
        font-size: 3.2rem;
    }
    
    .hero-v2-statement {
        font-size: 1.45rem;
        margin-top: 30px;
    }
    
    .hero-v2-center-text {
        font-size: 1.45rem;
        margin: 30px 0; /* Sama nagu desktopis ja mobiilis */
    }
    
    .hero-v2-nav {
        bottom: 30px;
    }
    
    .hero-v2-character-left {
        max-width: 280px;
    }
    
    .hero-v2-character-right {
        right: 60px;
        max-width: 280px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .hero-v2-section {
        overflow: hidden;
    }
    
    .hero-v2-container {
        padding: 40px 25px 30px 25px;
        justify-content: flex-start;
        min-height: auto;
    }
    
    .hero-v2-logo-lockup {
        position: static;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-v2-logo-image {
        height: 70px;
        margin: 0 auto 10px;
    }
    
    .hero-v2-tagline {
        font-size: 0.55rem;
        letter-spacing: 4.5px;
    }
    
    .hero-v2-center {
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 40px;
    }
    
    .hero-v2-divider-line {
        width: 50px;
    }
    
    .hero-v2-headline {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-v2-subline {
        font-size: 0.9rem;
    }
    
    .hero-v2-divider-ornamental {
        margin-bottom: 15px;
        gap: 10px;
    }
    
    .hero-v2-divider-ornamental.hero-v2-divider-second {
        margin-top: 15px;
        margin-bottom: 18px;
    }
    
    .hero-v2-statement {
        font-size: 1.3rem;
        position: static;
        transform: none;
        margin: 30px 0;
    }
    
    .hero-v2-center-text {
        font-size: 1.3rem;
        position: static;
        transform: none;
        margin: 30px 0;
    }
    
    /* Hide left character on mobile for cleaner layout */
    .hero-v2-character-left {
        display: none;
    }
    
    .hero-v2-character-right {
        position: static;
        max-width: 286px; /* 30% larger: 220px * 1.3 = 286px */
        margin: -10px auto 40px;
        right: auto;
    }
    
    .hero-v2-character-right img {
        max-height: 65vh; /* 30% larger: 50vh * 1.3 = 65vh */
        /* Mobile fade effect */
        mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0,0,0,0.4) 8%,
            rgba(0,0,0,1) 15%,
            rgba(0,0,0,1) 82%,
            rgba(0,0,0,0.5) 90%,
            transparent 100%
        );
        -webkit-mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0,0,0,0.4) 8%,
            rgba(0,0,0,1) 15%,
            rgba(0,0,0,1) 82%,
            rgba(0,0,0,0.5) 90%,
            transparent 100%
        );
    }
    
    .hero-v2-nav {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }
    
    .hero-v2-nav-menu {
        font-size: 0.55rem; /* Slightly smaller to fit on one line */
        gap: 6px; /* Tighter spacing for mobile */
        letter-spacing: 1.8px; /* Reduced letter spacing */
        flex-wrap: nowrap; /* Force single line */
        white-space: nowrap; /* Prevent wrapping */
    }
    
    .hero-v2-nav-menu a {
        white-space: nowrap; /* Prevent link text wrapping */
    }
    
    .hero-v2-nav-separator {
        font-size: 0.4rem; /* Smaller separator */
    }
    
    .hero-v2-footer-text {
        font-size: 0.7rem;
    }
}

/* ============= REUSABLE CHARACTER FADE UTILITY ============= */
/* Apply to any character image container for soft edge fade */
.fade-character {
    position: relative;
    background: transparent;
}

.fade-character img {
    background: transparent !important;
    mix-blend-mode: multiply;
    filter: contrast(1.05) brightness(0.98);
    mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.3) 3%,
        rgba(0,0,0,1) 8%,
        rgba(0,0,0,1) 88%,
        rgba(0,0,0,0.5) 95%,
        rgba(0,0,0,0) 100%),
        linear-gradient(to right,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.4) 5%,
        rgba(0,0,0,1) 12%,
        rgba(0,0,0,1) 88%,
        rgba(0,0,0,0.4) 95%,
        rgba(0,0,0,0) 100%);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.3) 3%,
        rgba(0,0,0,1) 8%,
        rgba(0,0,0,1) 88%,
        rgba(0,0,0,0.5) 95%,
        rgba(0,0,0,0) 100%),
        linear-gradient(to right,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.4) 5%,
        rgba(0,0,0,1) 12%,
        rgba(0,0,0,1) 88%,
        rgba(0,0,0,0.4) 95%,
        rgba(0,0,0,0) 100%);
    -webkit-mask-composite: source-in;
}

/* Variant: Fade left side more (for left-aligned characters) */
.fade-character.fade-left img {
    mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.3) 3%,
        rgba(0,0,0,1) 8%,
        rgba(0,0,0,1) 90%,
        rgba(0,0,0,0) 100%),
        linear-gradient(to right,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.4) 5%,
        rgba(0,0,0,1) 12%,
        rgba(0,0,0,1) 100%);
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.3) 3%,
        rgba(0,0,0,1) 8%,
        rgba(0,0,0,1) 90%,
        rgba(0,0,0,0) 100%),
        linear-gradient(to right,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.4) 5%,
        rgba(0,0,0,1) 12%,
        rgba(0,0,0,1) 100%);
}

/* Variant: Fade right side more (for right-aligned characters) */
.fade-character.fade-right img {
    mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.3) 3%,
        rgba(0,0,0,1) 8%,
        rgba(0,0,0,1) 90%,
        rgba(0,0,0,0) 100%),
        linear-gradient(to left,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.4) 5%,
        rgba(0,0,0,1) 12%,
        rgba(0,0,0,1) 100%);
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.3) 3%,
        rgba(0,0,0,1) 8%,
        rgba(0,0,0,1) 90%,
        rgba(0,0,0,0) 100%),
        linear-gradient(to left,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.4) 5%,
        rgba(0,0,0,1) 12%,
        rgba(0,0,0,1) 100%);
}

/* Variant: Subtle fade (less aggressive) */
.fade-character.fade-subtle img {
    mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.5) 2%,
        rgba(0,0,0,1) 5%,
        rgba(0,0,0,1) 92%,
        rgba(0,0,0,0.7) 97%,
        rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.5) 2%,
        rgba(0,0,0,1) 5%,
        rgba(0,0,0,1) 92%,
        rgba(0,0,0,0.7) 97%,
        rgba(0,0,0,0) 100%);
}

/* ============= SECTION STRUCTURE ============= */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--section-padding) 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--deep-green);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.title-line {
    width: 80px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto 30px;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--soft-black);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Subtitle styles for all sections (italic, before line) */
.story-subtitle,
.collections-subtitle,
.quality-subtitle,
.roadmap-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--soft-black); /* Default for cream backgrounds */
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    text-align: center;
}

/* Light subtitle for green background sections */
.philosophy-subtitle,
.character-subtitle,
.roadmap-subtitle {
    color: var(--light-gray); /* Light text on green background */
}

/* Story subtitle special styling - underline with decoration */
.story-subtitle {
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    margin: 0 0 0 0;
    position: relative;
}

.story-subtitle::after {
    content: '◆';
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 12px;
    background-color: var(--cream);
    padding: 0 10px;
}

/* ============= BRAND STORY SECTION ============= */
.story-section {
    background-color: var(--cream);
    padding: 80px 0;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Header - Same as Philosophy Section */
.story-header {
    text-align: center;
    margin-bottom: 80px;
}

.story-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--deep-green);
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.story-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--soft-black);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    text-align: center;
}

.story-line {
    width: 80px;
    height: 1px;
    background-color: var(--gold);
    margin: 0 auto;
}

/* Content Grid - Image + Text Side by Side */
.story-content-grid {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 60px;
    align-items: center;
}

/* Image Area */
.story-image-area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image-area img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,1) 5%,
        rgba(0,0,0,1) 92%,
        rgba(0,0,0,0) 100%),
        linear-gradient(to right,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,1) 8%,
        rgba(0,0,0,1) 92%,
        rgba(0,0,0,0) 100%);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,1) 5%,
        rgba(0,0,0,1) 92%,
        rgba(0,0,0,0) 100%),
        linear-gradient(to right,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,1) 8%,
        rgba(0,0,0,1) 92%,
        rgba(0,0,0,0) 100%);
    -webkit-mask-composite: source-in;
}

/* Text Area */
.story-text-area {
    padding-left: 20px;
}

/* Body Paragraphs */
.story-paragraph {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 300;
    color: #4f4f4f;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-paragraph:last-child {
    margin-bottom: 0;
}

/* ============= PHILOSOPHY SECTION ============= */
.philosophy-section {
    background-color: var(--deep-green);
    padding: 40px 0;
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 50px;
}

.philosophy-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--cream); /* Muudetud: cream tekst rohelisel taustal */
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.philosophy-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--light-gray); /* Muudetud: light-gray rohelisel taustal */
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    text-align: center;
}

.philosophy-line {
    width: 80px;
    height: 1px;
    background-color: var(--gold);
    margin: 0 auto;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    align-items: start;
}

.philosophy-item {
    text-align: center;
}

.philosophy-image {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    background-color: var(--white);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 
        0 4px 6px rgba(44, 64, 52, 0.06),
        0 10px 20px rgba(44, 64, 52, 0.08);
    border: 1px solid rgba(184, 149, 106, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.philosophy-image:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 24px rgba(44, 64, 52, 0.12),
        0 20px 40px rgba(44, 64, 52, 0.15);
    border-color: var(--gold);
}

.philosophy-image::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.philosophy-image:hover::before {
    opacity: 0.7;
}

.philosophy-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(184, 149, 106, 0.1) 0%, 
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.philosophy-image:hover::after {
    opacity: 1;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--cream); /* Muudetud: cream tekst rohelisel taustal */
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.philosophy-item p {
    font-family: var(--font-serif); /* Changed to serif like Quality */
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic; /* Added italic like Quality */
    color: var(--light-gray); /* Muudetud: light-gray rohelisel taustal */
    line-height: 1.7;
}

/* ============= DESIGN PHILOSOPHY - EXACT 1:1 REFERENCE MATCH ============= */
/* Background: Sage green with canvas texture */
.philosophy-section {
    background-image: url('../images/rohetaust.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 80px 0 100px;
}

/* Layout: 2 columns - left stacked, right single large card */
.philosophy-layout-reference {
    display: grid;
    grid-template-columns: 1fr 1.3fr; /* Left smaller, right larger */
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Left column: stacked small cards */
.philosophy-column-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Right column: single large card */
.philosophy-column-right {
    display: flex;
}

/* Card Base Styling */
.philosophy-card-ref {
    background-color: #f5f1e8; /* Warm cream/beige */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-card-ref:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Small Cards (left column) */
.philosophy-card-small-ref {
    display: flex;
    flex-direction: column;
}

.philosophy-card-small-ref .philosophy-card-image-ref {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.philosophy-card-small-ref .philosophy-card-content-ref {
    padding: 30px 32px 36px;
    text-align: center;
}

/* Large Card (right column) */
.philosophy-card-large-ref {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.philosophy-card-large-ref .philosophy-card-image-ref {
    width: 100%;
    height: 420px; /* Taller than small cards */
    overflow: hidden;
}

.philosophy-card-large-ref .philosophy-card-content-ref {
    padding: 40px 44px 44px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Images */
.philosophy-card-image-ref img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Typography */
.philosophy-card-ref h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: #3d3d3d;
    line-height: 1.4;
    margin-bottom: 14px;
}

.philosophy-card-large-ref h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.philosophy-card-ref p {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    color: #5a5a5a;
    line-height: 1.6;
    margin: 0;
}

.philosophy-card-large-ref p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Decorative divider for large card */
.philosophy-card-divider {
    width: 60px;
    height: 1px;
    background-color: #b8956a;
    margin: 0 auto 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .philosophy-layout-reference {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 25px;
    }
    
    .philosophy-column-left {
        gap: 25px;
    }
    
    .philosophy-card-small-ref .philosophy-card-image-ref {
        height: 240px;
    }
    
    .philosophy-card-large-ref {
        flex-direction: column;
    }
    
    .philosophy-card-large-ref .philosophy-card-image-ref {
        height: 320px;
    }
    
    .philosophy-card-small-ref .philosophy-card-content-ref {
        padding: 24px 28px 30px;
    }
    
    .philosophy-card-large-ref .philosophy-card-content-ref {
        padding: 32px 32px 36px;
    }
    
    .philosophy-card-ref h3 {
        font-size: 1.25rem;
    }
    
    .philosophy-card-large-ref h3 {
        font-size: 1.4rem;
    }
}

/* ============= COLLECTIONS SECTION ============= */
.collections-section {
    background-image: url('../images/taust.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 40px 0;
}

.collections-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.collections-header {
    text-align: center;
    margin-bottom: 50px;
}

.collections-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--deep-green); /* Muudetud: deep-green tekst cream taustal */
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.collections-line {
    width: 80px;
    height: 1px;
    background-color: var(--gold);
    margin: 0 auto;
}

.collections-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.collections-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.collections-image {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    background-color: var(--white);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 
        0 4px 6px rgba(44, 64, 52, 0.06),
        0 10px 20px rgba(44, 64, 52, 0.08);
    border: 1px solid rgba(184, 149, 106, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.collections-image:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 24px rgba(44, 64, 52, 0.12),
        0 20px 40px rgba(44, 64, 52, 0.15);
    border-color: var(--gold);
}

.collections-image::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.collections-image:hover::before {
    opacity: 0.7;
}

.collections-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(184, 149, 106, 0.1) 0%, 
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collections-image:hover::after {
    opacity: 1;
}

.collections-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Core Collections - crop out top FAST BUNNY text */
.collections-card:nth-child(1) .collections-image img {
    object-position: center 65%;
}

/* Limited Narratives - same size as others */
.collections-card:nth-child(3) .collections-image img {
    object-fit: cover;
    object-position: center;
}

.collections-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--deep-green); /* Muudetud: deep-green tekst cream taustal */
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.collections-card p {
    font-family: var(--font-serif); /* Changed to serif like Quality */
    font-size: 1rem;
    font-weight: 300;
    font-style: italic; /* Added italic like Quality */
    color: var(--soft-black); /* Muudetud: soft-black tekst cream taustal */
    line-height: 1.7;
}

/* ============= CHARACTER SECTION ============= */
.character-section {
    background-image: url('../images/rohetaust.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 40px 0;
}

.character-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.character-header {
    text-align: center;
    margin-bottom: 50px;
}

.character-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--cream); /* Muudetud: cream tekst rohelisel taustal */
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.character-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--light-gray); /* Muudetud: light-gray rohelisel taustal */
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    text-align: center;
}

.character-line {
    width: 80px;
    height: 1px;
    background-color: var(--gold);
    margin: 0 auto;
}

.character-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.character-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.character-image {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    background-color: var(--white);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 
        0 4px 6px rgba(44, 64, 52, 0.06),
        0 10px 20px rgba(44, 64, 52, 0.08);
    border: 1px solid rgba(184, 149, 106, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.character-image:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 24px rgba(44, 64, 52, 0.12),
        0 20px 40px rgba(44, 64, 52, 0.15);
    border-color: var(--gold);
}

.character-image::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.character-image:hover::before {
    opacity: 1;
}

.character-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.1) 0%, rgba(184, 149, 106, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.character-image:hover::after {
    opacity: 1;
}

.character-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.character-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--cream); /* Muudetud: cream tekst rohelisel taustal */
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.character-card p {
    font-family: var(--font-serif); /* Changed to serif like Quality */
    font-size: 1rem;
    font-weight: 300;
    font-style: italic; /* Added italic like Quality */
    color: var(--light-gray); /* Muudetud: light-gray rohelisel taustal */
    line-height: 1.7;
}

/* ============= QUALITY SECTION ============= */
.quality-section {
    background-image: url('../images/taust.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 40px 0;
}

.quality-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.quality-header {
    text-align: center;
    margin-bottom: 50px;
}

.quality-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--deep-green); /* Muudetud: deep-green tekst cream taustal */
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.quality-line {
    width: 80px;
    height: 1px;
    background-color: var(--gold);
    margin: 0 auto;
}

/* NEW LAYOUT - 2 Column (Hero Left + 2x2 Grid Right) */
.quality-new-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr; /* Left side slightly wider */
    gap: 40px;
    margin-top: 60px;
    align-items: start;
}

/* LEFT SIDE - Hero */
.quality-hero {
    display: grid;
    grid-template-rows: 1fr auto; /* Image fills space, content below */
    height: 100%; /* Match right side height */
}

.quality-hero-image {
    width: 100%;
    height: 100%; /* Fill all available grid space */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 0; /* Grid handles spacing */
    background-color: var(--white);
    box-shadow: 
        0 4px 6px rgba(44, 64, 52, 0.06),
        0 10px 20px rgba(44, 64, 52, 0.08);
    border: 1px solid rgba(184, 149, 106, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quality-hero-image:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 24px rgba(44, 64, 52, 0.12),
        0 20px 40px rgba(44, 64, 52, 0.15);
    border-color: var(--gold);
}

.quality-hero-image::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.quality-hero-image:hover::before {
    opacity: 0.7;
}

.quality-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quality-hero-image:hover::after {
    opacity: 1;
}

.quality-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Show top part better */
}

.quality-hero-content {
    text-align: left;
    padding: 30px 20px 0 20px; /* Top padding for spacing after image */
}

.quality-hero-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--deep-green);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.quality-hero-line {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    margin-bottom: 20px;
}

.quality-hero-description {
    font-family: var(--font-serif);
    font-size: 0.95rem; /* Match Philosophy design */
    font-weight: 300;
    font-style: italic;
    color: var(--soft-black);
    line-height: 1.7;
}

/* RIGHT SIDE - 2×2 Grid */
.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal width columns */
    grid-template-rows: auto auto;
    gap: 5px 30px; /* row-gap 5px, column-gap 30px */
    align-items: start;
}

.quality-card {
    display: flex;
    flex-direction: column;
    width: 100%; /* Full width of grid cell */
}

.quality-card-image {
    width: 100%;
    aspect-ratio: 1 / 1; /* Square images */
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
    background-color: var(--white);
    box-shadow: 
        0 4px 6px rgba(44, 64, 52, 0.06),
        0 10px 20px rgba(44, 64, 52, 0.08);
    border: 1px solid rgba(184, 149, 106, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.quality-card-image:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 24px rgba(44, 64, 52, 0.12),
        0 20px 40px rgba(44, 64, 52, 0.15);
    border-color: var(--gold);
}

.quality-card-image::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.quality-card-image:hover::before {
    opacity: 0.7;
}

.quality-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quality-card-image:hover::after {
    opacity: 1;
}

.quality-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.quality-card-content {
    text-align: left; /* Match Hero layout */
}

.quality-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--deep-green);
    letter-spacing: 0.5px;
    margin-bottom: 20px; /* Match Hero: 20px */
    line-height: 1.4;
    white-space: normal; /* Allow wrapping like Hero */
}

.quality-card-line {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    margin-bottom: 20px; /* Match Hero: 20px */
}

.quality-card-description {
    font-family: var(--font-serif);
    font-size: 0.95rem; /* Same as Hero */
    font-weight: 300;
    font-style: italic;
    color: var(--soft-black);
    line-height: 1.7;
}

/* OLD LAYOUT - Keep for backwards compatibility */
.quality-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.quality-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quality-image {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    background-color: var(--white);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 
        0 4px 6px rgba(44, 64, 52, 0.06),
        0 10px 20px rgba(44, 64, 52, 0.08);
    border: 1px solid rgba(184, 149, 106, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.quality-image:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 24px rgba(44, 64, 52, 0.12),
        0 20px 40px rgba(44, 64, 52, 0.15);
    border-color: var(--gold);
}

.quality-image::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.quality-image:hover::before {
    opacity: 1;
}

.quality-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.1) 0%, rgba(184, 149, 106, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.quality-image:hover::after {
    opacity: 1;
}

.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.quality-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--deep-green); /* Muudetud: deep-green tekst cream taustal */
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.quality-card p {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: var(--soft-black); /* Muudetud: soft-black tekst cream taustal */
    line-height: 1.7;
}

/* ============= FUTURE HORIZONS (ROADMAP) SECTION - NEW LAYOUT ============= */
.roadmap-section {
    background-image: url('../images/rohetaust.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 80px 0;
}

.roadmap-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 60px;
}

.roadmap-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--cream); /* Muudetud: cream tekst rohelisel taustal */
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.roadmap-subtitle {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--light-gray); /* Muudetud: light-gray rohelisel taustal */
    margin-bottom: 30px;
}

.roadmap-line {
    width: 80px;
    height: 1px;
    background-color: var(--gold);
    margin: 0 auto;
}

/* New 2-Column Layout */
.roadmap-new-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* LEFT SIDE - Heritage Knit Hero */
.roadmap-hero {
    display: flex;
    flex-direction: column;
}

.roadmap-hero-image {
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 
        0 8px 16px rgba(44, 64, 52, 0.08),
        0 16px 32px rgba(44, 64, 52, 0.10);
    cursor: pointer; /* Clickable */
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-hero-image:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 24px rgba(44, 64, 52, 0.12),
        0 20px 40px rgba(44, 64, 52, 0.15);
}

.roadmap-hero-image::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.roadmap-hero-image:hover::before {
    opacity: 0.7;
}

.roadmap-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.roadmap-hero-image:hover::after {
    opacity: 1;
}

.roadmap-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.roadmap-hero-content {
    text-align: left;
}

.roadmap-hero-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--cream); /* Muudetud: cream tekst rohelisel taustal */
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.roadmap-hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--light-gray); /* Muudetud: light-gray rohelisel taustal */
    margin-bottom: 20px;
    line-height: 1.6;
}

.roadmap-hero-description {
    font-family: var(--font-serif); /* Changed to serif like Quality */
    font-size: 1rem;
    font-weight: 300;
    font-style: italic; /* Added italic like Quality */
    color: var(--light-gray); /* Muudetud: light-gray rohelisel taustal */
    line-height: 1.8;
    max-width: 500px;
}

/* RIGHT SIDE - 3 Cards */
.roadmap-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.roadmap-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 25px;
    align-items: center;
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 
        0 4px 8px rgba(44, 64, 52, 0.06),
        0 8px 16px rgba(44, 64, 52, 0.08);
    transition: all 0.3s ease;
}

.roadmap-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 16px rgba(44, 64, 52, 0.10),
        0 16px 32px rgba(44, 64, 52, 0.12);
}

.roadmap-card-image {
    width: 200px;
    height: 140px;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer; /* Clickable */
    position: relative;
    transition: all 0.3s ease;
}

.roadmap-card:hover .roadmap-card-image {
    transform: translateY(-2px);
}

.roadmap-card-image::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.roadmap-card:hover .roadmap-card-image::before {
    opacity: 0.7;
}

.roadmap-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.roadmap-card:hover .roadmap-card-image::after {
    opacity: 1;
}

.roadmap-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.roadmap-card-content {
    padding-right: 10px;
}

.roadmap-card-content h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--deep-green);
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.roadmap-card-content p {
    font-family: var(--font-serif); /* Changed to serif like Quality */
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic; /* Added italic like Quality */
    color: var(--soft-black);
    line-height: 1.6;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .roadmap-new-layout {
        gap: 40px;
    }
    
    .roadmap-hero-image {
        height: 450px;
    }
    
    .roadmap-card {
        grid-template-columns: 150px 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .roadmap-card-image {
        width: 150px;
        height: 110px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .roadmap-section {
        padding: 60px 0;
    }
    
    .roadmap-container {
        padding: 0 25px;
    }
    
    .roadmap-header {
        margin-bottom: 40px;
    }
    
    .roadmap-title {
        font-size: 2.2rem;
    }
    
    .roadmap-subtitle {
        font-size: 1rem;
    }
    
    /* Mobile: 1 column layout */
    .roadmap-new-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .roadmap-hero-image {
        height: 400px;
    }
    
    .roadmap-hero-title {
        font-size: 1.8rem;
    }
    
    .roadmap-hero-subtitle {
        font-size: 1rem;
    }
    
    .roadmap-hero-description {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    /* Mobile cards: stack image on top */
    .roadmap-card {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .roadmap-card-image {
        width: 100%;
        height: 200px;
    }
    
    .roadmap-card-content h4 {
        font-size: 1.3rem;
    }
    
    .roadmap-card-content p {
        font-size: 0.9rem;
    }
}

/* ============= FOOTER ============= */
.main-footer {
    background-image: url('../images/taust.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: var(--deep-green);
    padding: 60px 80px 30px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 75px;
    width: auto;
    margin-bottom: 15px;
    filter: none; /* Original logo colors on cream background */
}

.footer-brand h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 0;
    color: var(--deep-green);
    display: none;
}

.footer-brand h2 sup {
    font-size: 0.6em;
    vertical-align: super;
}

.footer-tagline {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.footer-subtitle {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--soft-black);
    opacity: 0.8;
    margin: 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.footer-column h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--deep-green);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: var(--soft-black);
    font-size: 0.9rem;
    font-weight: 300;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-tagline-bottom {
    margin-bottom: 40px;
}

.footer-tagline-bottom p {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--soft-black);
    opacity: 0.8;
}

.footer-bottom {
    background-image: url('../images/rohetaust.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    border-top: 1px solid rgba(184, 149, 106, 0.2);
    padding: 20px 0;
    margin-top: 40px;
    margin-left: -80px;
    margin-right: -80px;
    margin-bottom: -30px;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: var(--cream);
    opacity: 0.8;
}

/* ============= RESPONSIVE DESIGN ============= */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 40px;
    }
    
    .section-container {
        padding: var(--section-padding) 40px;
    }
    
    .hero-section {
        padding: 0;
    }
    
    .hero-container {
        padding: 60px 60px;
    }
    
    .hero-logo {
        padding-top: 0;
    }
    
    .logo-image {
        height: 100px;
    }
    
    .hero-headline {
        max-width: 650px;
    }
    
    .hero-subtitle {
        font-size: 3.2rem;
    }
    
    .hero-character {
        max-width: 450px;
    }
    
    .hero-character img {
        max-height: 60vh;
    }
    
    /* Story Section - Tablet */
    .story-layout-grid {
        grid-template-columns: 1fr 1fr;
        padding: 60px 0;
    }
    
    /* Story Section - Tablet */
    .story-container {
        padding: 0 40px;
    }
    
    .story-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-image-area img {
        max-width: 450px;
    }
    
    .story-text-area {
        padding-left: 0;
    }
    
    .story-title {
        font-size: 2.5rem;
    }
    
    .story-subtitle {
        font-size: 1rem;
    }
    
    .story-paragraph {
        font-size: 0.95rem;
    }
    
    .character-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    }
    
    .philosophy-container {
        padding: 0 40px;
    }
    
    /* Philosophy grid - single column mobile */
    .philosophy-grid {
        grid-template-columns: 1fr !important; /* Force single column */
        gap: 50px !important; /* Generous spacing */
        align-items: start;
    }
    
    .quality-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
    }
    
    .quality-image {
        height: 300px;
    }
    
    /* Roadmap grid - single column mobile */
    .roadmap-grid {
        grid-template-columns: 1fr !important; /* Force single column */
        gap: 50px !important; /* Generous spacing */
    }
    
    .character-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 30px;
    }
    
    .section-container {
        padding: var(--section-padding) 25px;
    }
    
    .nav-container {
        padding: 20px 25px;
    }
    
    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background-color: var(--cream);
        flex-direction: column;
        justify-content: start;
        padding: 40px 25px;
        gap: 30px;
        transition: var(--transition);
        border-top: 1px solid rgba(44, 64, 52, 0.1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 12px 0;
        border-bottom: 1px solid rgba(44, 64, 52, 0.1);
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hero-section {
        min-height: 85vh;
    }
    
    .hero-layout {
        height: 85vh;
        grid-template-columns: 1fr;
    }
    
    .hero-logo {
        top: 25px;
        left: 25px;
    }
    
    .logo-image {
        height: 65px;
    }
    
    .hero-text {
        bottom: 35px;
        left: 25px;
        max-width: calc(100% - 50px);
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .hero-character {
        width: 60%;
        height: 75%;
    }
    
    .hero-character img {
        height: 132%;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    /* Story Section - Mobile Stack */
    /* Story Section - Mobile */
    .story-container {
        padding: 0 25px;
    }
    
    .story-header {
        margin-bottom: 50px;
    }
    
    .story-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-image-area img {
        max-width: 320px;
    }
    
    .story-text-area {
        padding-left: 0;
    }
    
    .story-title {
        font-size: 2.2rem;
    }
    
    .story-subtitle {
        font-size: 1rem;
    }
    
    .story-paragraph {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    /* =============================================
       MOBILE LAYOUT IMPROVEMENTS - GENERAL
       Better spacing, readability, and UX
       Desktop layout completely unchanged
       ============================================= */
    
    /* Section containers - better padding */
    .philosophy-container,
    .collections-container,
    .character-container,
    .quality-container,
    .roadmap-container {
        padding: 0 20px !important; /* Consistent horizontal padding */
    }
    
    /* Section titles - mobile optimized */
    .philosophy-title,
    .collections-title,
    .character-title,
    .quality-title,
    .roadmap-title {
        font-size: 2rem !important; /* Smaller on mobile */
        margin-bottom: 16px !important;
    }
    
    /* Section headers - consistent spacing */
    .philosophy-header,
    .collections-header,
    .character-header,
    .quality-header,
    .roadmap-header {
        margin-bottom: 50px !important; /* Consistent across sections */
    }
    
    /* Philosophy grid - single column mobile */
    .philosophy-grid {
        grid-template-columns: 1fr !important; /* Force single column */
        gap: 50px !important; /* Generous spacing */
        align-items: start;
    }
    
    .quality-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
    }
    
    .quality-image {
        height: 300px;
    }
    
    /* Collections grid - single column mobile */
    .collections-gallery-grid {
        grid-template-columns: 1fr !important; /* Force single column */
        gap: 60px !important; /* Generous spacing */
    }
    
    /* Character grid - single column mobile */
    .character-gallery-grid {
        grid-template-columns: 1fr !important; /* Force single column */
        gap: 60px !important; /* Generous spacing */
    }
    
    /* Collection, Character, Philosophy images - mobile optimized */
    .collections-image,
    .character-image,
    .philosophy-image {
        height: 320px !important; /* Consistent height */
        margin-bottom: 28px !important;
    }
    
    /* Roadmap grid - single column mobile */
    .roadmap-grid {
        grid-template-columns: 1fr !important; /* Force single column */
        gap: 50px !important; /* Generous spacing */
    }
    
    /* Roadmap images - mobile optimized */
    .roadmap-image {
        height: 320px !important; /* Consistent with others */
        margin-bottom: 28px !important;
    }
    
    /* Card titles - mobile typography */
    .philosophy-item h3 {
        font-size: 1.4rem !important; /* Larger for readability */
        margin-bottom: 16px !important;
    }
    
    /* Card titles - collections, character, quality */
    .character-card h3,
    .collections-card h3,
    .quality-card h3,
    .roadmap-item h3 {
        font-size: 1.4rem !important; /* Consistent size */
        margin-bottom: 14px !important;
    }
    
    /* Card descriptions - mobile typography */
    .philosophy-item p {
        font-size: 0.95rem !important; /* Readable */
        line-height: 1.7 !important;
    }
    
    /* Card descriptions - collections, character, quality */
    .character-card p,
    .collections-card p,
    .quality-card p {
        font-size: 0.95rem !important; /* Consistent readable size */
        line-height: 1.7 !important;
    }
    
    .roadmap-item p {
        font-size: 0.9rem;
    }
    
    /* ============================================
       QUALITY & MATERIALS - MOBILE LAYOUT v3
       Match Future Horizons style: clean cards
       Desktop layout completely unchanged
       ============================================ */
    
    /* Section padding */
    .quality-section {
        padding: 60px 20px !important;
        background-color: var(--cream) !important;
    }
    
    /* Header spacing */
    .quality-header {
        margin-bottom: 50px !important;
        padding: 0 10px !important;
        max-width: 100% !important;
    }
    
    .quality-title {
        font-size: 2rem !important;
        margin-bottom: 16px !important;
        letter-spacing: 0.5px !important;
    }
    
    .quality-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        max-width: 90% !important;
        margin: 0 auto 20px !important;
    }
    
    /* Main layout: single column like Roadmap */
    .quality-new-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 60px !important; /* Match Roadmap gap */
        margin-top: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* ==================
       HERO CARD - PRIMARY FOCUS
       Pilt ja tekst eraldi, nagu quality-preview.html
       ================== */
    .quality-hero {
        display: flex !important;
        flex-direction: column-reverse !important; /* Reverse: tekst enne, pilt pärast */
        gap: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        grid-template-rows: unset !important;
    }
    
    .quality-hero-image {
        height: 380px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 0 !important; /* Ei mingit margin'i all, sest pilt on nüüd all */
        border-radius: 8px !important;
        overflow: hidden !important;
        aspect-ratio: unset !important;
        box-shadow: 
            0 4px 6px rgba(44, 64, 52, 0.06),
            0 10px 20px rgba(44, 64, 52, 0.08) !important;
        border: 1px solid rgba(184, 149, 106, 0.15) !important;
        background-color: white !important;
    }
    
    .quality-hero-image img {
        object-fit: cover !important;
        object-position: center !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .quality-hero-content {
        text-align: left !important;
        padding: 0 10px !important;
        max-width: 100% !important;
        margin: 0 0 30px 0 !important; /* Bottom margin, sest tekst on nüüd üleval */
        width: 100% !important;
    }
    
    .quality-hero-title {
        font-size: 1.6rem !important;
        margin-bottom: 16px !important;
        line-height: 1.3 !important;
        font-weight: 400 !important;
        letter-spacing: 0.3px !important;
    }
    
    .quality-hero-line {
        margin-bottom: 20px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .quality-hero-description {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        margin-bottom: 0 !important;
        max-width: 100% !important;
        font-weight: 300 !important;
        opacity: 0.9 !important;
    }
    
    /* ==================
       SECONDARY CARDS - Pilt ja tekst eraldi
       ================== */
    .quality-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 50px !important; /* Suurem gap cardide vahel */
        width: 100% !important;
        max-width: 100% !important;
        grid-template-columns: unset !important;
        grid-template-rows: unset !important;
    }
    
    .quality-card {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column-reverse !important; /* Reverse: tekst enne, pilt pärast */
        align-items: stretch !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        overflow: visible !important;
    }
    
    .quality-card-image {
        height: 280px !important;
        width: 100% !important;
        max-width: 100% !important;
        aspect-ratio: auto !important;
        margin-bottom: 0 !important; /* Ei mingit margin'i all, sest pilt on nüüd all */
        border-radius: 8px !important;
        overflow: hidden !important;
        box-shadow: 
            0 4px 6px rgba(44, 64, 52, 0.06),
            0 10px 20px rgba(44, 64, 52, 0.08) !important;
        border: 1px solid rgba(184, 149, 106, 0.15) !important;
        background-color: white !important;
    }
    
    .quality-card-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .quality-card-content {
        text-align: left !important;
        padding: 0 10px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 30px !important; /* Bottom margin, sest tekst on nüüd üleval */
    }
    
    .quality-card-title {
        font-size: 1.35rem !important; /* Match Roadmap */
        white-space: normal !important;
        margin-bottom: 12px !important; /* Match Roadmap */
        line-height: 1.3 !important;
        font-weight: 400 !important;
        letter-spacing: 0.3px !important;
    }
    
    .quality-card-line {
        margin-bottom: 16px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .quality-card-description {
        font-size: 0.95rem !important; /* Match Roadmap */
        line-height: 1.7 !important; /* Match Roadmap */
        max-width: 100% !important;
        font-weight: 300 !important;
        opacity: 0.9 !important;
    }
    
    /* =============================================
       ROADMAP (FUTURE HORIZONS) - MOBILE LAYOUT
       Single column: Hero on top, 3 cards below
       ============================================= */
    .roadmap-new-layout {
        grid-template-columns: 1fr !important; /* Force single column */
        gap: 60px !important; /* Space between hero and cards */
    }
    
    .roadmap-hero-image {
        height: 380px !important; /* Large hero image */
        margin-bottom: 30px !important;
    }
    
    .roadmap-cards {
        gap: 50px !important; /* Space between cards */
    }
    
    .roadmap-card {
        grid-template-columns: 1fr !important; /* Stack image above text */
        gap: 20px !important;
        padding: 0 !important;
        background: transparent !important; /* Remove white background on mobile */
        box-shadow: none !important;
    }
    
    .roadmap-card:hover {
        transform: none !important; /* Disable hover transform on mobile */
    }
    
    .roadmap-card-image {
        width: 100% !important; /* Full width */
        height: 280px !important; /* Taller on mobile */
        margin: 0 0 20px 0 !important;
    }
    
    .roadmap-card-content {
        padding: 0 10px !important;
        text-align: center !important; /* Center text on mobile */
    }
    
    .roadmap-card-content h4 {
        font-size: 1.35rem !important;
        margin-bottom: 12px !important;
    }
    
    .roadmap-card-content p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-footer {
        padding: 60px 25px 30px;
    }
    
    .footer-bottom {
        margin-left: -25px;
        margin-right: -25px;
        margin-bottom: -30px;
    }
}

/* Extra Small Mobile */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-container {
        height: 100vh;
        padding: 40px 30px 25px;
        justify-content: flex-start;
    }
    
    /* Logo + Brand at Top */
    .hero-logo {
        position: static;
        margin-bottom: 8px;
        text-align: left;
        padding-left: 10px;
        padding-top: 0;
    }
    
    .logo-image {
        height: 80px;
        width: auto;
        margin: 0;
    }
    
    /* Tagline wrapper */
    .hero-tagline-wrapper {
        margin-top: 8px;
        margin-bottom: 40px;
    }
    
    /* Tagline below logo */
    .hero-tagline {
        font-size: 0.65rem;
        letter-spacing: 2.5px;
        margin: 0;
        text-align: center;
    }
    
    /* Main content area */
    .hero-content {
        flex: 1;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    /* Main headline */
    .hero-headline {
        max-width: 50%;
        margin-left: 8%;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin: 0 0 20px 0;
        line-height: 1.6;
    }
    
    .hero-divider {
        width: 60px;
    }
    
    /* Character image on the right side */
    .hero-character {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 45%;
        max-width: 320px;
    }
    
    .hero-character img {
        width: 100%;
        height: auto;
    }
    
    .story-section {
        padding: 30px 0;
    }
    
    .story-container,
    .philosophy-container,
    .collections-container,
    .character-container,
    .quality-container,
    .roadmap-container {
        padding: 0 20px;
    }
    
    .story-title,
    .philosophy-title,
    .collections-title,
    .character-title,
    .quality-title,
    .roadmap-title {
        font-size: 2rem;
    }
    
    .story-header,
    .philosophy-header,
    .collections-header,
    .character-header,
    .quality-header,
    .roadmap-header {
        margin-bottom: 30px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .collections-gallery-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .character-gallery-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .quality-gallery-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .collections-image,
    .character-image,
    .quality-image,
    .roadmap-image,
    .philosophy-image {
        height: 350px;
        margin-bottom: 25px;
    }
    
    .philosophy-item h3 {
        font-size: 1.1rem;
    }
    
    .collections-card h3,
    .character-card h3,
    .quality-card h3,
    .roadmap-item h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    /* Card descriptions - mobile typography */
    .philosophy-item p {
        font-size: 0.95rem !important; /* Readable */
        line-height: 1.7 !important;
    }
    
    .collections-card p,
    .character-card p,
    .quality-card p,
    .roadmap-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .footer-brand h2 {
        font-size: 1.6rem;
    }
    
    .footer-tagline {
        font-size: 0.75rem;
    }
    
    .footer-subtitle {
        font-size: 0.85rem;
    }
    
    .footer-columns {
        gap: 35px;
    }
    
    .footer-column h4 {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .footer-column a {
        font-size: 0.8rem;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
    }
    
    .main-footer {
        padding: 30px 20px 25px;
    }
    
    /* Mobile Navigation Menu at Bottom of Hero */
    .hero-nav {
        position: absolute;
        bottom: 5px;
        left: 0;
        right: 0;
        width: 100%;
        padding-bottom: 10px;
    }
    
    .hero-nav-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        font-family: var(--font-sans);
        font-size: 0.65rem;
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--deep-green);
        margin-bottom: 12px;
    }
    
    .hero-nav-menu a {
        color: var(--deep-green);
        transition: var(--transition);
    }
    
    .hero-nav-menu a:hover {
        color: var(--gold);
    }
    
    .hero-nav-separator {
        color: var(--deep-green);
        font-size: 0.5rem;
    }
    
    /* Footer subtitle - Show on mobile */
    .hero-footer-text {
        display: block;
        font-family: var(--font-serif);
        font-size: 0.7rem;
        font-weight: 300;
        color: var(--soft-black);
        font-style: italic;
        margin-top: 8px;
    }
}

/* ============= LIGHTBOX (IMAGE MODAL) ============= */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    z-index: 9999;
    cursor: zoom-out;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 2rem;
    }
    
    .lightbox-caption {
        bottom: -50px;
        font-size: 0.95rem;
    }
}

/* ============= E-COMMERCE COMING SOON SECTION ============= */

.ecommerce-announcement-section {
    background-color: var(--cream);
    padding: 0;
    margin: 0;
    width: 100%;
}

.ecommerce-announcement-container {
    max-width: 1920px;
    margin: 0 auto;
}

.ecommerce-image-wrapper {
    width: 100%;
    position: relative;
}

.ecommerce-announcement-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Countdown Timer */
.launch-countdown {
    background-image: url('../images/taust.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 60px 40px;
    text-align: center;
}

.launch-countdown h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--deep-green); /* Muudetud: deep-green tekst cream taustal */
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.countdown-label {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--soft-black); /* Muudetud: soft-black cream taustal */
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Early Access Signup - ENHANCED VISIBILITY */
.early-access-signup {
    background-image: url('../images/rohetaust.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 100px 40px;
    text-align: center;
    position: relative;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.early-access-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.early-access-signup h3 {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.early-access-signup p {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 40px;
    opacity: 0.95;
}

.signup-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.email-input {
    flex: 1;
    padding: 20px 30px;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    border: 2px solid rgba(184, 149, 106, 0.4);
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--cream);
    border-radius: 6px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.email-input::placeholder {
    color: rgba(243, 239, 230, 0.6);
}

.email-input:focus {
    outline: none;
    border-color: var(--gold);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(184, 149, 106, 0.3);
}

.signup-button {
    padding: 20px 50px;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--muted-gold) 100%);
    color: var(--deep-green);
    border: 2px solid var(--gold);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(184, 149, 106, 0.4);
}

.signup-button:hover {
    background: linear-gradient(135deg, var(--muted-gold) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(184, 149, 106, 0.6);
    border-color: var(--cream);
}

.privacy-note {
    font-size: 0.85rem;
    color: rgba(243, 239, 230, 0.7);
    margin-top: 20px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .launch-countdown h3 {
        font-size: 2rem;
    }
    
    .countdown-display {
        gap: 40px;
    }
    
    .countdown-number {
        font-size: 3rem;
    }
    
    .early-access-signup h3 {
        font-size: 2rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .ecommerce-announcement-image {
        object-fit: contain;
        max-height: 600px;
    }
    
    .launch-countdown {
        padding: 40px 20px;
    }
    
    .launch-countdown h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .countdown-display {
        gap: 30px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .early-access-signup {
        padding: 60px 20px;
    }
    
    .early-access-signup h3 {
        font-size: 1.8rem;
    }
    
    .signup-form {
        flex-direction: column;
        width: 100%;
    }
    
    .email-input,
    .signup-button {
        width: 100%;
    }
}