/* ==========================================================================
   Richimi Design System - Updated based on Prototype
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500&family=Mulish:wght@700&family=Open+Sans:wght@400;700&family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&display=swap');

:root {
    /* Colors */
    --color-primary: #404040; /* Dark text */
    --color-secondary: #666666; /* Body text */
    --color-background: #FFFFFF; /* Pure white */
    --color-surface: #E6E4E0; /* Warm beige */
    --color-border: #E5E5E5;
    
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-about-heading: 'DM Serif Display', serif;
    --font-about-body: 'Open Sans', sans-serif;
    --font-number: 'Mulish', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;

    /* Layout */
    --container-max-width: 1200px;
    --container-padding: 2rem;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    width: 100%;
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    width: 100%;
    font-family: var(--font-sans);
    color: var(--color-primary);
    background-color: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    opacity: 0.7;
}

ul { list-style: none; }

/* Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 6vw, 85px);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

h2 {
    font-size: clamp(2rem, 5vw, 64px);
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
    display: block;
}

.subtitle::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: var(--color-secondary);
    vertical-align: middle;
    margin-right: 10px;
}

p {
    font-size: 0.9375rem;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
    font-weight: 300;
}

/* Link with arrow */
.link-arrow {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   Layout Helpers
   ========================================================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-xl) 0;
}

/* ==========================================================================
   Components
   ========================================================================== */

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md) 0;
    z-index: 100;
    color: white;
}

.header.scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    padding: var(--space-sm) 0;
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

body:not([class]) .header:not(.scrolled) .nav-links a {
    color: white;
}

body:not([class]) .header:not(.scrolled) .mobile-toggle {
    color: white;
}

.nav-links a:hover, .nav-links a.active {
    color: rgba(255, 255, 255, 0.7);
}

.header.scrolled .nav-links a {
    color: var(--color-primary);
}

.header.scrolled .nav-links a:hover, .header.scrolled .nav-links a.active {
    color: var(--color-secondary);
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
}

.lang-switch a {
    opacity: 0.6;
}
.lang-switch a.active {
    opacity: 1;
    font-weight: 500;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition-medium);
}
.play-button:hover {
    background-color: rgba(255,255,255,0.2);
    transform: scale(1.05);
}
.play-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin-left: 4px;
}

/* Sobre Nós (About) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-images img {
    position: absolute;
}

.about-images img:first-child {
    width: 65%;
    top: 0;
    right: 0;
}

.about-images img:last-child {
    width: 65%;
    bottom: 0;
    left: 0;
    border: 10px solid var(--color-background);
}

.about-content h2 {
    max-width: 400px;
}

/* Produtos (Accordion Style) */
.products-section {
    background-color: var(--color-surface);
}

.products-list {
    margin-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.product-item {
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-md) 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    z-index: 1;
}

.product-item:hover {
    z-index: 20;
}

.product-item:hover {
    padding-left: 1rem;
}

.product-item h3 {
    font-size: 2.5rem;
    font-style: italic;
    flex-grow: 1;
    margin: 0;
}

.product-image-preview {
    position: absolute;
    width: 350px;
    height: 450px;
    right: 10%;
    top: -50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    z-index: 10;
    pointer-events: none;
    transform: translateY(20px);
}

.product-item:nth-child(2) .product-image-preview {
    right: 20%;
    top: -100px;
}

.product-item:nth-child(3) .product-image-preview {
    right: 5%;
    top: -80px;
}

.product-item:nth-child(4) .product-image-preview {
    right: 25%;
    top: -150px;
}

.product-item:nth-child(5) .product-image-preview {
    right: 15%;
    top: -200px;
}

.product-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item:hover .product-image-preview {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-arrow {
    width: 40px;
    height: 1px;
    background-color: var(--color-primary);
    position: relative;
}
.product-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--color-primary);
    border-right: 1px solid var(--color-primary);
    transform: rotate(45deg);
}

/* Portfolio */
.portfolio-header {
    margin-bottom: var(--space-lg);
}

.portfolio-header h2 {
    max-width: 500px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.portfolio-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.portfolio-card .card-subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.portfolio-card h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

/* CTA */
.cta-section {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section h2 {
    font-style: italic;
    margin-bottom: 2rem;
}

.btn-outline-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid white;
    color: white;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.btn-outline-white:hover {
    background-color: white;
    color: var(--color-primary);
    opacity: 1;
}

/* Footer */
.footer {
    padding: var(--space-xl) 0 var(--space-md);
    background-color: var(--color-surface);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-col h5 {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-col p, .footer-col ul li {
    font-size: 0.875rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-md);
    font-size: 0.75rem;
    color: var(--color-secondary);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

/* Contact Page Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-style: italic;
    line-height: 1.1;
    max-width: 400px;
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--color-border);
    padding: 0.5rem 0;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--color-primary);
    background: transparent;
    outline: none;
    transition: border-color var(--transition-fast);
}

.contact-form textarea {
    resize: none;
    height: 40px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--color-primary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-secondary);
    opacity: 0.7;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 2rem;
}

.checkbox-group input {
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.7rem;
    color: var(--color-secondary);
    line-height: 1.4;
}

/* Products Page Grid */
.products-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.products-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
}

.category-block h4 {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.category-block ul li {
    font-size: 0.875rem;
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.products-featured-img {
    height: 80vh;
}

.products-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Toggle */
.mobile-toggle { display: none; }

/* ==========================================================================
   Storytelling & Scroll Animations
   ========================================================================== */

/* Animation Utility Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-visible {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* Delay modifiers */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Story Intro Grid */
.story-intro {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: var(--space-xl);
}

.story-intro-images {
    position: relative;
    height: 500px;
}

.story-intro-images img:nth-child(1) {
    position: absolute;
    width: 60%;
    right: 0;
    top: 0;
}

.story-intro-images img:nth-child(2) {
    position: absolute;
    width: 50%;
    left: 0;
    bottom: 0;
    border: 10px solid var(--color-background);
}

/* Vertical Timeline */
.timeline-section {
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: var(--color-border);
    transform: translateX(-50%);
}

/* The central draggable/scroll indicator element */
.timeline-indicator {
    position: sticky;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 60px;
    background-color: transparent;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.timeline-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--color-primary);
    animation: scrollDown 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: top;
}

@keyframes scrollDown {
    0% { transform: scaleY(0); opacity: 0; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(1) translateY(100%); opacity: 0; }
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem 3rem;
    margin-bottom: 4rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* Node on the line */
.timeline-item::after {
    content: '';
    position: absolute;
    top: 2rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-secondary);
}

.timeline-item:nth-child(odd)::after { right: -4px; }
.timeline-item:nth-child(even)::after { left: -4px; }

.timeline-year {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.timeline-item img {
    margin: 1rem 0;
    border-radius: 4px;
    max-width: 80%;
}
.timeline-item:nth-child(odd) img { margin-left: auto; }

/* Quote Banner */
.quote-banner {
    background-color: var(--color-surface);
    padding: var(--space-xl) 0;
    text-align: center;
}

.quote-banner h2 {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

/* Logos & Stats */
.logos-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: var(--space-xl);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
}
.logos-row img {
    height: 30px;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}
.logos-row img:hover { opacity: 1; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 2rem;
}
.stat-number {
    font-family: var(--font-number);
    font-size: 100px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.stat-label {
    font-size: 0.875rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Team Section */
.team-section {
    padding: var(--space-xl) 0;
    text-align: center;
}
.team-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-top: var(--space-md);
}
.team-text-left {
    text-align: right;
    max-width: 300px;
}
.team-text-right {
    text-align: left;
    max-width: 300px;
}

/* Mega Menu */
.mega-menu {
    position: fixed;
    top: 80px; /* Below header */
    left: 0;
    width: 100%;
    background-color: var(--color-background);
    padding: var(--space-xl) var(--container-padding);
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition-medium), opacity var(--transition-medium), visibility var(--transition-medium);
    display: flex;
    justify-content: center;
}

.mega-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    max-width: var(--container-max-width);
    width: 100%;
}

.mega-menu-col h5 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.mega-menu-col ul li {
    margin-bottom: 0.5rem;
}

.mega-menu-col ul li a {
    color: var(--color-secondary);
    font-size: 0.875rem;
}

.mega-menu-col ul li a:hover {
    color: var(--color-primary);
}

/* Popup Menu / Off-canvas */
.menu-popup {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-surface);
    z-index: 200;
    padding: var(--space-xl) var(--container-padding);
    transform: translateX(100%);
    transition: transform var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.menu-popup.active {
    transform: translateX(0);
}

.menu-popup-close {
    position: absolute;
    top: var(--space-md);
    right: var(--container-padding);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary);
}

.menu-popup-content h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.menu-popup-content p {
    color: var(--color-primary);
}
.team-photo img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
}

/* Responsive adjustments for Timeline */
@media (max-width: 900px) {
    .story-intro {
        grid-template-columns: 1fr;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-indicator {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        left: 0 !important;
        text-align: left !important;
    }
    .timeline-item::after {
        left: 16px !important;
        right: auto !important;
    }
    .timeline-item img {
        margin-left: 0;
        max-width: 100%;
    }
    .team-block {
        flex-direction: column;
        gap: 2rem;
    }
    .team-text-left, .team-text-right {
        text-align: center;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-images {
        height: 400px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: block;
        background: none;
        border: none;
        color: inherit;
        font-size: 1.5rem;
        cursor: pointer;
    }
    .product-item h3 {
        font-size: 1.8rem;
    }
    .product-image-preview {
        display: none;
    }
}

/* About Page Custom */
.about-history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.about-heading {
    font-family: var(--font-about-heading);
    font-style: italic;
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 1.5rem;
}
.about-body-text {
    font-family: var(--font-about-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}
.focus-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.focus-line {
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}
.focus-label {
    font-family: var(--font-about-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .about-history-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}


/* ==========================================================================
   Mobile Responsive Rules (Clean & Premium)
   ========================================================================== */
body.menu-open {
    overflow: hidden !important;
}

@media (max-width: 900px) {
    /* Prevent horizontal overflow strictly */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    /* Typography scale */
    h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); }
    h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    
    /* Elements full width */
    .products-page-grid,
    .contact-grid,
    .story-intro {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        width: 100%;
    }
    
    .products-featured-img {
        height: auto;
        aspect-ratio: 4/5;
    }
    
    /* Fullscreen Mobile Menu */
    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--color-background);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 105;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s ease;
    }
    
    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links a {
        color: var(--color-primary) !important;
        font-size: 2rem !important;
        font-family: var(--font-serif) !important;
        font-weight: 400;
        text-align: center;
    }
    
    .nav-links .lang-switch {
        margin-top: 2rem;
        gap: 1.5rem;
    }
    
    .nav-links .lang-switch a {
        font-family: var(--font-sans) !important;
        font-size: 1rem !important;
        letter-spacing: 0.1em;
    }
    
    .mobile-toggle {
        display: block;
        background: none;
        border: none;
        color: inherit;
        font-size: 1.8rem;
        cursor: pointer;
        z-index: 110;
        position: relative;
    }
    
    .header {
        padding: 1.5rem 0;
    }
    
    .header.scrolled .mobile-toggle {
        color: var(--color-primary);
    }
    
    .header-container {
        position: relative;
        z-index: 120;
    }

    /* Images */
    .story-intro-images {
        height: auto;
        min-height: 350px;
        margin-top: 2rem;
    }
    .story-intro-images img:nth-child(1) { width: 80%; }
    .story-intro-images img:nth-child(2) { width: 70%; border-width: 6px; }
    
    /* Adjust Timeline */
    .timeline::before { left: 15px; }
    .timeline-indicator { left: 15px; }
    .timeline-item { padding-left: 45px; margin-bottom: 3rem; }
    .timeline-year { font-size: 2rem; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stat-number { font-size: 4rem; }
    
    .logos-row {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .logos-row img {
        width: 80px;
        height: auto;
    }
    
    .product-single-layout {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    
    .product-image {
        order: -1; /* Image on top on mobile */
    }
}
