/* ===================================
   TableChic - Luxury Editorial Design
   =================================== */

:root {
    /* Brand Palette */
    --burgundy: #8B1A3D;
    --burgundy-light: #A62D52;
    --burgundy-dark: #6B1430;
    --burgundy-soft: rgba(139, 26, 61, 0.08);
    
    /* Neutrals */
    --white: #FFFFFF;
    --cream: #FAF8F5;
    --cream-warm: #F5F1EB;
    --sand: #E8E2D9;
    --charcoal: #1A1A1A;
    --graphite: #3D3D3D;
    --slate: #6B6B6B;
    --silver: #9A9A9A;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Libre Franklin', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;
    
    /* Layout */
    --max-width: 1440px;
    --content-width: 1200px;
    
    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-product: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
}

/* ===================================
   Reset & Base
   =================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background: var(--burgundy);
    color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 em, h1 em {
    font-style: italic;
    color: var(--burgundy);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 500;
}

p {
    color: var(--slate);
    font-size: 1.05rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

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

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ===================================
   Cursor Glow (Desktop only)
   =================================== */

.cursor-glow {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .cursor-glow {
        display: block;
        position: fixed;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(139, 26, 61, 0.06) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    body:hover .cursor-glow {
        opacity: 1;
    }
}

/* ===================================
   Navigation
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background: transparent;
    transition: all var(--duration-normal) var(--ease-out);
}

.nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.nav-logo img {
    height: 55px;
    width: auto;
    transition: transform var(--duration-normal) var(--ease-out);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: var(--space-xl);
    list-style: none;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--burgundy);
    transition: width var(--duration-normal) var(--ease-out);
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all var(--duration-fast) var(--ease-out);
    transform-origin: center;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--cream) 0%,
        var(--cream-warm) 50%,
        var(--sand) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url('picture/toile_de_jouy_black.png');
    background-size: 500px;
    background-position: center;
    filter: grayscale(100%);
    animation: patternFloat 60s linear infinite;
}

@keyframes patternFloat {
    0% { background-position: 0 0; }
    100% { background-position: 500px 500px; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-lg);
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--burgundy);
    padding: var(--space-xs) var(--space-md);
    border: 1px solid var(--burgundy);
    border-radius: 30px;
    margin-bottom: var(--space-lg);
    animation: fadeDown 1s var(--ease-out) both;
}

.hero-logo {
    width: min(280px, 45vw);
    height: auto;
    margin: 0 auto var(--space-lg);
    animation: fadeUp 1s var(--ease-out) 0.1s both;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    animation: fadeUp 1s var(--ease-out) 0.2s both;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--slate);
    margin-bottom: var(--space-xl);
    animation: fadeUp 1s var(--ease-out) 0.3s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--burgundy);
    padding: var(--space-md) var(--space-xl);
    border-radius: 50px;
    transition: all var(--duration-normal) var(--ease-out);
    animation: fadeUp 1s var(--ease-out) 0.4s both;
}

.hero-cta:hover {
    background: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hero-cta svg {
    transition: transform var(--duration-fast) var(--ease-out);
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 1s var(--ease-out) 0.8s both;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--burgundy), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===================================
   Intro Section
   =================================== */

.intro {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.intro-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--graphite);
}

.intro-text .highlight {
    color: var(--burgundy);
    font-style: italic;
}

/* ===================================
   Collections Section
   =================================== */

.collections {
    padding: var(--space-2xl) 0 var(--space-3xl);
    background: var(--cream);
}

.collection {
    margin-bottom: var(--space-3xl);
}

.collection:last-child {
    margin-bottom: 0;
}

.collection-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.collection-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: var(--space-xs);
}

.collection-title {
    margin-bottom: var(--space-sm);
}

.collection-desc {
    font-size: 1rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    gap: var(--space-lg);
}

.toile-grid {
    grid-template-columns: repeat(4, 1fr);
}

.vichy-grid {
    grid-template-columns: repeat(5, 1fr);
}

.torchons-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* Product Card */
.product-card {
    position: relative;
    cursor: pointer;
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--white) 0%, var(--cream-warm) 100%);
    border-radius: 20px;
    padding: var(--space-lg);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    pointer-events: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--duration-slow) var(--ease-out);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.product-card:hover .product-image {
    background: linear-gradient(145deg, var(--white) 0%, var(--sand) 100%);
    box-shadow: var(--shadow-product);
    transform: translateY(-8px);
}

.product-card:hover .product-image img {
    transform: scale(1.05) rotate(-2deg);
}

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: var(--space-md);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.product-detail {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--burgundy);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    text-align: center;
    padding: var(--space-md) var(--space-sm) 0;
}

.product-info h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: var(--space-2xs);
}

.product-color {
    font-size: 0.85rem;
    color: var(--burgundy);
    font-weight: 400;
}

/* ===================================
   Concept Section
   =================================== */

.concept {
    position: relative;
    padding: var(--space-3xl) 0;
    background: var(--charcoal);
    color: var(--white);
    overflow: hidden;
}

.concept-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url('picture/toile_de_jouy_black.png');
    background-size: 600px;
    background-position: center;
    filter: invert(1);
}

.concept-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.concept-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--burgundy-light);
    padding: var(--space-xs) var(--space-md);
    border: 1px solid var(--burgundy-light);
    border-radius: 30px;
    margin-bottom: var(--space-lg);
}

.concept h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.concept h2 em {
    color: var(--burgundy-light);
}

.concept > .container > .concept-content > p {
    color: var(--silver);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.concept-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    text-align: left;
}

.concept-feature {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all var(--duration-normal) var(--ease-out);
}

.concept-feature:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(139, 26, 61, 0.3);
    transform: translateY(-4px);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--burgundy-light);
    margin-bottom: var(--space-sm);
}

.concept-feature h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.concept-feature p {
    font-size: 0.9rem;
    color: var(--silver);
}

/* ===================================
   Made in Italy Banner
   =================================== */

.made-in-italy {
    padding: var(--space-2xl) 0;
    background: var(--burgundy);
    color: var(--white);
}

.italy-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.italy-text {
    max-width: 500px;
}

.italy-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: var(--space-sm);
}

.italy-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.italy-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.italy-stats {
    display: flex;
    gap: var(--space-2xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
}

/* ===================================
   Contact Section
   =================================== */

.contact {
    padding: var(--space-3xl) 0;
    background: var(--cream-warm);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: var(--space-sm);
}

.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-info > p {
    margin-bottom: var(--space-xl);
    max-width: 400px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--white);
    border-radius: 12px;
    transition: all var(--duration-normal) var(--ease-out);
}

a.contact-link:hover {
    background: var(--burgundy);
    transform: translateX(8px);
}

a.contact-link:hover .contact-icon,
a.contact-link:hover .contact-text span {
    color: var(--white);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--burgundy-soft);
    border-radius: 12px;
    color: var(--burgundy);
    transition: all var(--duration-normal) var(--ease-out);
}

a.contact-link:hover .contact-icon {
    background: rgba(255, 255, 255, 0.15);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-type {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate);
    transition: color var(--duration-normal);
}

.contact-value {
    font-size: 1rem;
    color: var(--charcoal);
    transition: color var(--duration-normal);
}

/* Contact Visual */
.contact-visual {
    position: relative;
    height: 500px;
}

.contact-products {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-product {
    position: absolute;
    width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

.floating-product.p1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
    z-index: 3;
}

.floating-product.p2 {
    bottom: 10%;
    left: 5%;
    width: 220px;
    animation-delay: -2s;
    z-index: 2;
}

.floating-product.p3 {
    bottom: 5%;
    right: 5%;
    width: 200px;
    animation-delay: -4s;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.floating-product.p1 {
    animation: float1 6s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(-20px) rotate(-2deg); }
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-lg);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.footer-logo {
    height: 60px;
    width: auto;
    opacity: 0.9;
}

.footer-brand p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--silver);
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--silver);
    transition: color var(--duration-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--silver);
    transition: all var(--duration-fast);
}

.footer-social a:hover {
    border-color: var(--burgundy-light);
    background: var(--burgundy);
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--slate);
}

.footer-made {
    font-family: var(--font-display);
    font-style: italic;
}

/* ===================================
   Animations
   =================================== */

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease-out);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1200px) {
    .toile-grid,
    .torchons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vichy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .italy-content {
        flex-direction: column;
        text-align: center;
    }
    
    .italy-text {
        max-width: 100%;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .contact-visual {
        height: 400px;
    }
    
    .floating-product {
        width: 200px;
    }
    
    .floating-product.p2,
    .floating-product.p3 {
        width: 160px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    /* Navigation Mobile */
    .nav {
        padding: var(--space-xs) 0;
    }
    
    .nav-container {
        padding: 0 var(--space-sm);
    }
    
    .nav-logo img {
        height: 45px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--cream);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-lg);
        transition: right var(--duration-normal) var(--ease-out);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: var(--space-xl) 0;
    }
    
    .hero-content {
        padding: var(--space-md);
    }
    
    .hero-badge {
        font-size: 0.6rem;
        padding: var(--space-xs) var(--space-sm);
        margin-bottom: var(--space-md);
    }
    
    .hero-logo {
        width: 200px;
        margin-bottom: var(--space-md);
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--space-sm);
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: var(--space-lg);
    }
    
    .hero-subtitle br {
        display: none;
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: var(--space-md) var(--space-lg);
        font-size: 0.8rem;
    }
    
    .hero-scroll {
        bottom: var(--space-lg);
    }
    
    /* Intro Mobile */
    .intro {
        padding: var(--space-xl) 0;
    }
    
    .intro-text {
        font-size: 1.25rem;
        line-height: 1.6;
    }
    
    /* Collections Mobile */
    .collections {
        padding: var(--space-xl) 0;
    }
    
    .collection {
        margin-bottom: var(--space-xl);
    }
    
    .collection-header {
        margin-bottom: var(--space-lg);
        padding: 0 var(--space-xs);
    }
    
    .collection-title {
        font-size: 2rem;
    }
    
    .collection-desc {
        font-size: 0.9rem;
    }
    
    .toile-grid,
    .vichy-grid,
    .torchons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .product-image {
        padding: var(--space-md);
        border-radius: 16px;
    }
    
    .product-info {
        padding: var(--space-sm) var(--space-xs) 0;
    }
    
    .product-info h3 {
        font-size: 0.8rem;
    }
    
    .product-color {
        font-size: 0.75rem;
    }
    
    .product-overlay {
        display: none;
    }
    
    /* Concept Mobile */
    .concept {
        padding: var(--space-xl) 0;
    }
    
    .concept-badge {
        font-size: 0.6rem;
        margin-bottom: var(--space-md);
    }
    
    .concept h2 {
        font-size: 1.75rem;
    }
    
    .concept > .container > .concept-content > p {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
    }
    
    .concept-features {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .concept-feature {
        padding: var(--space-md);
        text-align: center;
    }
    
    .feature-number {
        font-size: 1.5rem;
        margin-bottom: var(--space-xs);
    }
    
    .concept-feature h4 {
        font-size: 0.95rem;
    }
    
    .concept-feature p {
        font-size: 0.85rem;
    }
    
    /* Made in Italy Mobile */
    .made-in-italy {
        padding: var(--space-xl) 0;
    }
    
    .italy-text h3 {
        font-size: 1.5rem;
    }
    
    .italy-text p {
        font-size: 0.9rem;
    }
    
    .italy-stats {
        gap: var(--space-lg);
        margin-top: var(--space-lg);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    /* Contact Mobile */
    .contact {
        padding: var(--space-xl) 0;
    }
    
    .contact-info h2 {
        font-size: 1.75rem;
    }
    
    .contact-info > p {
        font-size: 0.95rem;
        margin-bottom: var(--space-lg);
    }
    
    .contact-links {
        gap: var(--space-xs);
    }
    
    .contact-link {
        padding: var(--space-sm);
        gap: var(--space-sm);
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .contact-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .contact-type {
        font-size: 0.6rem;
    }
    
    .contact-value {
        font-size: 0.85rem;
    }
    
    .contact-visual {
        display: none;
    }
    
    /* Footer Mobile */
    .footer {
        padding: var(--space-lg) 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
        padding-bottom: var(--space-lg);
    }
    
    .footer-brand {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-links {
        gap: var(--space-md);
    }
    
    .footer-links a {
        font-size: 0.75rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .hero-logo {
        width: 160px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        font-size: 0.55rem;
    }
    
    .toile-grid,
    .vichy-grid,
    .torchons-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .product-image {
        padding: var(--space-lg);
        max-width: 280px;
        margin: 0 auto;
    }
    
    .italy-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .collection-title {
        font-size: 1.75rem;
    }
    
    .concept h2 {
        font-size: 1.5rem;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover .product-image {
        transform: none;
        box-shadow: var(--shadow-soft);
    }
    
    .product-card:hover .product-image img {
        transform: none;
    }
    
    .concept-feature:hover {
        transform: none;
    }
    
    a.contact-link:hover {
        transform: none;
    }
    
    /* Active states for touch */
    .product-card:active .product-image {
        transform: scale(0.98);
    }
    
    .hero-cta:active {
        transform: scale(0.98);
    }
    
    a.contact-link:active {
        background: var(--burgundy);
    }
    
    a.contact-link:active .contact-icon,
    a.contact-link:active .contact-text span {
        color: var(--white);
    }
}

/* Landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: var(--space-xl) 0;
    }
    
    .hero-logo {
        width: 120px;
        margin-bottom: var(--space-sm);
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        margin-bottom: var(--space-md);
    }
    
    .hero-scroll {
        display: none;
    }
}

/* Safe area for notched devices */
@supports (padding: max(0px)) {
    .nav-container {
        padding-left: max(var(--space-sm), env(safe-area-inset-left));
        padding-right: max(var(--space-sm), env(safe-area-inset-right));
    }
    
    .container {
        padding-left: max(var(--space-sm), env(safe-area-inset-left));
        padding-right: max(var(--space-sm), env(safe-area-inset-right));
    }
    
    .footer {
        padding-bottom: max(var(--space-lg), env(safe-area-inset-bottom));
    }
}
