* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #FAF7F2;
    --pearl: #F5F1E8;
    --gold: #D4AF37;
    --gold-light: #E8D7A8;
    --dark: #2C2C2C;
    --gray: #8B8B8B;
}

[data-theme="dark"] {
    --cream: #FAF7F2;
    --pearl: #242424;
    --dark: #f5f5f5;
    --gray: #b0b0b0;
    --gold: #D4AF37;
    --gold-light: #E8D7A8;
}

[data-theme="dark"] body {
    background-color: #0a0a0a;
    color: var(--cream);
}

html {
    scroll-behavior: smooth;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Optimize scrolling performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduce repaints on scroll */
.navbar,
.scroll-progress,
.fab-container {
    transform: translateZ(0);
    backface-visibility: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--dark);
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3 {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: background 0.3s ease;
}

[data-theme="dark"] .navbar {
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 1;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.hamburger {
    display: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 300;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('arkaplan.webp') center/cover no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 247, 242, 0.4) 0%, rgba(245, 240, 230, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    margin-bottom: 1rem;
    color: var(--dark);
    animation: fadeInUp 1.2s ease;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--gray);
    letter-spacing: 0.2em;
    font-weight: 200;
    animation: fadeInUp 1.4s ease;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 1px;
    height: 60px;
    background: var(--gold);
    animation: scrollDown 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollDown {
    0%, 100% {
        transform: scaleY(0.3);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
    }
}

/* Featured */
.featured {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 100vh;
    align-items: center;
}

.featured-image {
    height: 100vh;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-text {
    padding: 5rem;
}

.label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.featured-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.featured-text p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 2;
}

/* Collection */
.collection {
    padding: 8rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    letter-spacing: 0.1em;
}

.collection-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.collection-grid::-webkit-scrollbar {
    height: 8px;
}

.collection-grid::-webkit-scrollbar-track {
    background: var(--pearl);
    border-radius: 10px;
}

.collection-grid::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.collection-grid::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

.collection-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: var(--pearl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex: 0 0 380px;
    min-width: 380px;
}



.collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.item-image {
    height: 480px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--pearl) 0%, #f0ebe0 100%);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.item-overlay {
    display: none;
}

.item-info {
    padding: 2rem;
    background: white;
    position: relative;
    z-index: 3;
    transition: background 0.3s ease;
}

[data-theme="dark"] .item-info {
    background: #1a1a1a;
}

.item-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    transition: color 0.3s ease;
}

.collection-item:hover .item-info h3 {
    color: var(--gold);
}

.item-info p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.item-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: white;
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 3;
    font-weight: 400;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Philosophy */
.philosophy {
    background: var(--pearl);
    padding: 10rem 3rem;
    text-align: center;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.philosophy-content p {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 2.2;
}

/* Testimonials */
.testimonials {
    padding: 10rem 3rem;
    background: var(--cream);
}

.testimonials-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 5rem;
    margin-top: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.testimonial {
    padding: 3rem 2rem;
    background: var(--pearl);
    border-radius: 2px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}

/* Atelier */
.atelier {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 100vh;
    align-items: center;
}

.atelier-text {
    padding: 5rem;
}

.atelier-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.atelier-text p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 2;
}

.atelier-image {
    height: 100vh;
    overflow: hidden;
}

.atelier-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Maison */
.maison {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    color: var(--cream);
    padding: 10rem 3rem;
    text-align: center;
}

.maison-content {
    max-width: 1000px;
    margin: 0 auto;
}

.maison-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
    color: var(--gold-light);
}

.maison-content > p {
    font-size: 1.15rem;
    color: rgba(250, 247, 242, 0.9);
    line-height: 2.2;
    margin-bottom: 5rem;
}

.maison-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-number {
    font-family: 'Cormorant', serif;
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 300;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250, 247, 242, 0.8);
}

[data-theme="dark"] .maison {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--cream);
}

[data-theme="dark"] .maison-content h2 {
    color: var(--gold-light);
}

[data-theme="dark"] .maison-content > p {
    color: var(--cream);
    opacity: 0.9;
}

[data-theme="dark"] .stat-label {
    color: var(--pearl);
}

/* Contact */
.contact {
    padding: 10rem 3rem;
    background: var(--cream);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 5rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    text-align: left;
}

.info-block p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--cream);
    padding: 4rem 3rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 50px;
    opacity: 0.8;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.footer-social {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-social a {
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-container {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }
    
    .logo img {
        height: 35px;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: var(--cream);
        margin-top: 0;
    }
    
    .nav-menu.active {
        max-height: 300px;
        margin-top: 1rem;
        padding: 1rem 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
        display: block;
    }
    
    .language-switcher {
        margin-left: auto;
    }
    
    .theme-toggle {
        width: 35px;
        height: 35px;
        margin-left: 0.8rem;
    }
    
    .theme-toggle svg {
        width: 18px;
        height: 18px;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 0.5rem;
        margin-left: 1rem;
    }
    
    .hamburger span {
        width: 25px;
        height: 2px;
        background: var(--dark);
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 3vw, 1.2rem);
    }
    
    .featured,
    .atelier {
        grid-template-columns: 1fr;
    }
    
    .featured-image,
    .atelier-image {
        height: 50vh;
        order: 1;
    }
    
    .featured-text,
    .atelier-text {
        padding: 3rem 1.5rem;
        order: 2;
    }
    
    .featured-text h2,
    .atelier-text h2 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .featured-text p,
    .atelier-text p {
        font-size: 1rem;
    }
    
    .collection {
        padding: 4rem 1.5rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: clamp(2rem, 7vw, 3rem);
    }
    
    .collection-grid {
        gap: 1.5rem;
    }
    
    .collection-item {
        flex: 0 0 300px;
        min-width: 300px;
    }
    
    .collection-item {
        border-radius: 2px;
    }
    
    .item-image {
        height: 350px;
    }
    
    .item-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 1rem;
        font-size: 0.65rem;
    }
    
    .item-info {
        padding: 1.5rem;
    }
    
    .item-info h3 {
        font-size: 1.5rem;
    }
    
    .philosophy,
    .testimonials,
    .maison,
    .contact {
        padding: 4rem 1.5rem;
    }
    
    .philosophy-content h2,
    .testimonials-content h2,
    .maison-content h2,
    .contact-content h2 {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: 2rem;
    }
    
    .philosophy-content p,
    .maison-content > p {
        font-size: 1rem;
        line-height: 1.9;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .maison-stats {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer {
        padding: 3rem 1.5rem;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-social {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .logo img {
        height: 30px;
    }
    
    .lang-btn {
        font-size: 0.75rem;
        padding: 0.3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.15em;
    }
    
    .label {
        font-size: 0.7rem;
    }
    
    .featured-text,
    .atelier-text {
        padding: 2rem 1rem;
    }
    
    .collection {
        padding: 3rem 1rem;
    }
    
    .item-image {
        height: 300px;
    }
    
    .item-badge {
        top: 0.8rem;
        right: 0.8rem;
        padding: 0.3rem 0.8rem;
        font-size: 0.6rem;
    }
    
    .item-info {
        padding: 1.2rem;
    }
    
    .item-price {
        font-size: 2rem;
    }
    
    .item-cta {
        padding: 0.6rem 1.8rem;
        font-size: 0.7rem;
    }
    
    .philosophy,
    .testimonials,
    .maison,
    .contact {
        padding: 3rem 1rem;
    }
    
    .testimonial {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}


/* Custom Cursor removed for better performance */

/* Loading Animation removed for better performance */


/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 300;
    padding: 0.5rem;
}

.lang-btn:hover {
    color: var(--dark);
}

.lang-btn.active {
    color: var(--gold);
    font-weight: 400;
}

.lang-divider {
    color: var(--gray);
    font-size: 0.85rem;
    opacity: 0.5;
}


/* Theme Toggle */
.theme-toggle {
    background: none;
    border: 1px solid var(--gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
    position: relative;
}

.theme-toggle:hover {
    border-color: var(--gold);
    transform: rotate(20deg);
}

.theme-toggle svg {
    position: absolute;
    transition: all 0.3s ease;
}

.sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-toggle svg {
    stroke: var(--dark);
}

/* Dark Theme Adjustments */
[data-theme="dark"] .hero::before {
    background: linear-gradient(135deg, rgba(36, 36, 36, 0.85) 0%, rgba(26, 26, 26, 0.85) 100%);
}

[data-theme="dark"] .scroll-indicator span {
    background: var(--gold-light);
}

[data-theme="dark"] .collection-item {
    background: #2a2a2a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .collection {
    background: #0a0a0a;
}

[data-theme="dark"] .section-header h2 {
    color: var(--cream);
}

[data-theme="dark"] .section-header p {
    color: var(--gray);
}

[data-theme="dark"] .item-info h3 {
    color: var(--cream);
}

[data-theme="dark"] .item-info p {
    color: var(--gray);
}

[data-theme="dark"] .philosophy-content h2 {
    color: var(--cream);
}

[data-theme="dark"] .philosophy-content p {
    color: var(--gray);
}

[data-theme="dark"] .featured {
    background: #1a1a1a;
}

[data-theme="dark"] .featured-text {
    background: #1a1a1a;
}

[data-theme="dark"] .featured-text h2 {
    color: var(--cream);
}

[data-theme="dark"] .featured-text p {
    color: var(--gray);
}

[data-theme="dark"] .atelier {
    background: #1a1a1a;
}

[data-theme="dark"] .atelier-text {
    background: #1a1a1a;
}

[data-theme="dark"] .atelier-text h2 {
    color: var(--cream);
}

[data-theme="dark"] .atelier-text p {
    color: var(--gray);
}

[data-theme="dark"] .testimonials {
    background: #1a1a1a;
}

[data-theme="dark"] .testimonial-text {
    color: var(--cream);
}

[data-theme="dark"] .testimonial-author {
    color: var(--gold-light);
}

[data-theme="dark"] .maison {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

[data-theme="dark"] .contact {
    background: #1a1a1a;
}

[data-theme="dark"] .contact-content h2 {
    color: var(--cream);
}

[data-theme="dark"] .info-block .label {
    color: var(--gold-light);
}

[data-theme="dark"] .info-block p {
    color: var(--gray);
}

[data-theme="dark"] .footer {
    background: #0a0a0a;
}

[data-theme="dark"] .item-badge {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

[data-theme="dark"] .navbar {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .hamburger span {
    background: var(--dark);
}


/* Product Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--cream);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 2rem;
    line-height: 1;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--gold);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--pearl);
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gold);
    color: white;
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.modal-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-info h2 {
    font-family: 'Cormorant', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--dark);
}

.modal-description {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.modal-price-section {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-price {
    font-family: 'Cormorant', serif;
    font-size: 3rem;
    color: var(--gold);
    font-weight: 300;
}

.modal-contact {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

.modal-btn {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    transition: all 0.3s ease;
}

.modal-btn.primary {
    background: var(--gold);
    color: white;
}

.modal-btn.primary:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.modal-btn.secondary {
    background: transparent;
    border: 1px solid var(--gray);
    color: var(--dark);
}

.modal-btn.secondary:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: var(--cream);
}

/* Dark Theme Modal */
[data-theme="dark"] .modal-content {
    background: #1a1a1a;
}

[data-theme="dark"] .modal-info h2 {
    color: var(--cream);
}

[data-theme="dark"] .modal-btn.secondary {
    color: var(--cream);
}

[data-theme="dark"] .modal-btn.secondary:hover {
    background: var(--cream);
    color: var(--dark);
    border-color: var(--cream);
}

/* Responsive Modal */
@media (max-width: 968px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-image {
        height: 300px;
    }
    
    .modal-info {
        padding: 2rem 1.5rem;
    }
    
    .modal-info h2 {
        font-size: 2rem;
    }
    
    .modal-price {
        font-size: 2.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}


/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    z-index: 10001;
    transition: width 0.1s ease;
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.fab.visible {
    opacity: 1;
    transform: translateY(0);
}

.fab:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.fab svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

[data-theme="dark"] .fab {
    background: var(--gold-light);
}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream) 0%, var(--pearl) 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-logo-wrapper {
    position: relative;
    display: inline-block;
}

.loader-logo {
    width: 200px;
    height: auto;
    display: block;
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

[data-theme="dark"] .page-loader {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

[data-theme="dark"] .loader-logo {
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.5));
}

/* Enhanced Animations removed for better performance */

/* Newsletter Section */
.newsletter {
    background: var(--gold);
    padding: 5rem 3rem;
    text-align: center;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter h3 {
    font-family: 'Cormorant', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1rem;
    font-weight: 300;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--gold);
    border: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter {
    background: var(--gold);
    padding: 5rem 3rem;
    text-align: center;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter h3 {
    font-family: 'Cormorant', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1rem;
    font-weight: 300;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--gold);
    border: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .fab-container {
        bottom: 1rem;
        right: 1rem;
    }
    
    .fab {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .newsletter {
        padding: 3rem 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}

/* Image Zoom Effect */
.zoom-container {
    overflow: hidden;
}

.zoom-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-container:hover .zoom-image {
    transform: scale(1.1);
}

/* Tooltip */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    padding: 0.5rem 1rem;
    background: var(--dark);
    color: white;
    font-size: 0.75rem;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.tooltip:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}


/* Toast Notification System */
.toast-container {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toast {
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(500px);
    animation: slideInToast 0.4s ease forwards;
    border-left: 4px solid var(--gold);
}

.toast.success {
    border-left-color: #4caf50;
}

.toast.error {
    border-left-color: #f44336;
}

.toast.info {
    border-left-color: var(--gold);
}

.toast-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.toast-icon svg {
    width: 100%;
    height: 100%;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.toast-message {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.5rem;
    line-height: 1;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.toast-close:hover {
    color: var(--dark);
}

@keyframes slideInToast {
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutToast {
    to {
        transform: translateX(500px);
        opacity: 0;
    }
}

.toast.removing {
    animation: slideOutToast 0.4s ease forwards;
}

[data-theme="dark"] .toast {
    background: #2a2a2a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .toast-title {
    color: var(--cream);
}

@media (max-width: 968px) {
    .toast-container {
        right: 1rem;
        left: 1rem;
        top: 80px;
    }
    
    .toast {
        min-width: auto;
        max-width: 100%;
    }
}


/* WhatsApp FAB */
.whatsapp-fab {
    background: #25D366 !important;
}

.whatsapp-fab:hover {
    background: #128C7E !important;
}

.whatsapp-fab svg {
    width: 28px;
    height: 28px;
}

/* Reservation Modal */
.reservation-modal-content {
    max-width: 700px;
    width: 90%;
}

.reservation-modal-body {
    padding: 3rem;
}

.reservation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reservation-header h2 {
    font-family: 'Cormorant', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.reservation-header p {
    color: var(--gray);
    font-size: 1rem;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 400;
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--pearl);
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
}

.form-group textarea {
    resize: vertical;
}

.reservation-submit {
    padding: 1.2rem 3rem;
    background: var(--gold);
    color: white;
    border: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.reservation-submit:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

[data-theme="dark"] .reservation-modal-content {
    background: #1a1a1a !important;
}

[data-theme="dark"] .reservation-header h2 {
    color: #FAF7F2 !important;
}

[data-theme="dark"] .reservation-header p {
    color: rgba(250, 247, 242, 0.7) !important;
}

[data-theme="dark"] .reservation-form label,
[data-theme="dark"] .form-group label {
    color: #FAF7F2 !important;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    background: #2a2a2a !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #FAF7F2 !important;
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
    background: #333 !important;
    border-color: var(--gold) !important;
    color: #FAF7F2 !important;
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
    color: rgba(250, 247, 242, 0.4) !important;
}

[data-theme="dark"] .form-group select option {
    background: #2a2a2a !important;
    color: #FAF7F2 !important;
}

/* Particle Canvas removed for better performance */

/* 3D Tilt Effect removed for better performance */

/* Responsive Reservation */
@media (max-width: 968px) {
    .reservation-modal-body {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reservation-header h2 {
        font-size: 2rem;
    }
}


/* Custom Context Menu */
.custom-context-menu {
    position: fixed;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0;
    min-width: 220px;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.2s ease;
}

.custom-context-menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.context-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    color: var(--dark);
}

.context-menu-item:hover {
    background: var(--pearl);
}

.context-menu-item svg {
    width: 20px;
    height: 20px;
    fill: var(--gray);
    flex-shrink: 0;
}

.context-menu-item:hover svg {
    fill: var(--gold);
}

.context-menu-item span {
    font-size: 0.9rem;
    color: inherit;
}

.context-menu-divider {
    height: 1px;
    background: var(--pearl);
    margin: 0.5rem 0;
}

[data-theme="dark"] .custom-context-menu {
    background: #2a2a2a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .context-menu-item {
    color: #f5f5f5;
}

[data-theme="dark"] .context-menu-item:hover {
    background: #1a1a1a;
}

[data-theme="dark"] .context-menu-item svg {
    fill: #b0b0b0;
}

[data-theme="dark"] .context-menu-item:hover svg {
    fill: var(--gold);
}

[data-theme="dark"] .context-menu-divider {
    background: rgba(255, 255, 255, 0.1);
}


/* Notification Animation */
@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* 2026 final delivery polish */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.header, .navbar { backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.hero-content { padding-inline: 24px; }
.hero-title { text-wrap: balance; text-shadow: 0 8px 34px rgba(0, 0, 0, .30); }
.hero-subtitle { text-wrap: pretty; }
.product-card, .gallery-item { overflow: hidden; border-radius: 18px; box-shadow: 0 20px 55px rgba(34, 28, 23, .11); }
.product-card img, .gallery-item img { transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.product-card:hover img, .gallery-item:hover img { transform: scale(1.045); }
.modal-btn, .cta-button { border-radius: 999px; }
@media (max-width: 768px) {
    .hero-content { padding-inline: 20px; }
    .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
    .product-card, .gallery-item { border-radius: 14px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* 2026 homepage refinement */
.hero::before {
    background:
        linear-gradient(90deg, rgba(19, 14, 11, .72) 0%, rgba(19, 14, 11, .32) 52%, rgba(19, 14, 11, .50) 100%),
        linear-gradient(180deg, rgba(19, 14, 11, .18), rgba(19, 14, 11, .42));
}

.hero-content {
    width: min(100%, 1180px);
    margin-inline: auto;
    text-align: left;
}

.hero-content::before {
    content: '';
    display: block;
    width: 74px;
    height: 1px;
    margin-bottom: 22px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-kicker {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .8);
    font-size: .7rem;
    letter-spacing: .23em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 760px;
    font-size: clamp(4.4rem, 8vw, 8rem);
    line-height: .82;
    letter-spacing: -.045em;
}

.hero-subtitle {
    max-width: 510px;
    margin-top: 24px;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .82);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-cta {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
    text-decoration: none;
    font-size: .68rem;
    font-weight: 400;
    letter-spacing: .13em;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.hero-cta-primary { border-color: #d9bd88; background: #d9bd88; color: #1d1713; }
.hero-cta:hover { transform: translateY(-3px); background: #fff; border-color: #fff; color: #1d1713; }

.experience-strip {
    position: relative;
    z-index: 4;
    width: min(calc(100% - 48px), 1180px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: -38px auto 0;
    padding: 0 24px;
    background: rgba(250, 247, 242, .96);
    border: 1px solid rgba(180, 145, 86, .24);
    box-shadow: 0 22px 65px rgba(32, 25, 20, .14);
    backdrop-filter: blur(14px);
}

.experience-item {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 24px;
}

.experience-item + .experience-item { border-left: 1px solid rgba(180, 145, 86, .2); }
.experience-number { color: var(--gold); font-family: 'Cormorant', serif; font-size: 1.35rem; }
.experience-item strong { color: var(--dark); font-size: .68rem; font-weight: 400; letter-spacing: .13em; text-transform: uppercase; }

.featured { padding-top: clamp(110px, 12vw, 165px); }
.featured-image { position: relative; }
.featured-image::after {
    content: '';
    position: absolute;
    inset: 18px -18px -18px 18px;
    z-index: -1;
    border: 1px solid rgba(180, 145, 86, .34);
}
.featured-text { padding-inline: clamp(34px, 6vw, 92px); }
.featured-text h2, .section-header h2, .philosophy-content h2, .testimonials-content h2, .atelier-text h2, .contact-content h2 { text-wrap: balance; }
.collection-item { border: 1px solid rgba(180, 145, 86, .13); box-shadow: 0 20px 55px rgba(34, 28, 23, .09); }
.collection-item:hover { box-shadow: 0 28px 75px rgba(34, 28, 23, .16); }
.testimonial-item { border: 1px solid rgba(180, 145, 86, .18); box-shadow: 0 18px 45px rgba(34, 28, 23, .07); }
.info-block a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(180, 145, 86, .35); transition: color .2s ease, border-color .2s ease; }
.info-block a:hover { color: var(--gold); border-color: var(--gold); }

[data-theme="dark"] .experience-strip { background: rgba(28, 25, 23, .95); }
[data-theme="dark"] .experience-item strong { color: #faf7f2; }

@media (max-width: 968px) {
    .hero-content { text-align: center; }
    .hero-content::before { margin-inline: auto; }
    .hero-title { margin-inline: auto; font-size: clamp(3.4rem, 14vw, 6rem); }
    .hero-subtitle { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .experience-strip { grid-template-columns: 1fr; width: min(calc(100% - 32px), 620px); margin-top: -24px; padding: 8px 20px; }
    .experience-item { min-height: 66px; padding: 12px 10px; }
    .experience-item + .experience-item { border-left: 0; border-top: 1px solid rgba(180, 145, 86, .2); }
    .featured-image::after { inset: 12px -10px -10px 12px; }
}

@media (max-width: 540px) {
    .hero-kicker { font-size: .6rem; letter-spacing: .16em; }
    .hero-title { font-size: clamp(3rem, 16vw, 4.5rem); }
    .hero-actions { display: grid; grid-template-columns: 1fr; width: min(100%, 310px); margin-inline: auto; }
    .hero-cta { width: 100%; }
    .experience-strip { margin-top: -16px; }
}

/* 2026 collection and reservation refinement */
#collection.collection {
    padding: clamp(6rem, 9vw, 9rem) clamp(1.4rem, 4vw, 4rem);
    background: radial-gradient(circle at 10% 10%, rgba(205,171,102,.1), transparent 26%), linear-gradient(180deg, #fff, #faf7f1);
    box-shadow: 0 0 0 100vmax #faf7f1;
    clip-path: inset(0 -100vmax);
}
#collection .section-header { margin-bottom: clamp(3.2rem, 6vw, 5.5rem); }
#collection .section-header::before {
    content: "MAISON LAPERLA";
    display: block;
    margin-bottom: 1.15rem;
    color: var(--gold);
    font: 400 .64rem/1 'Montserrat', sans-serif;
    letter-spacing: .4em;
}
#collection .section-header h2 { margin-bottom: .7rem; }
#collection .section-header p { max-width: 620px; margin-inline: auto; line-height: 1.8; }
#collection .collection-grid {
    gap: clamp(1.1rem, 2.3vw, 2rem);
    padding: 1rem .2rem 2rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}
#collection .collection-item {
    flex-basis: clamp(310px, 29vw, 390px);
    min-width: clamp(310px, 29vw, 390px);
    border: 1px solid rgba(180,145,86,.18);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(34,28,23,.09);
    scroll-snap-align: start;
    transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
}
#collection .collection-item:hover { transform: translateY(-7px); box-shadow: 0 30px 72px rgba(34,28,23,.15); }
#collection .item-image { height: clamp(410px, 38vw, 490px); }
#collection .item-image::after {
    content: "";
    position: absolute;
    inset: 55% 0 0;
    background: linear-gradient(180deg, transparent, rgba(28,22,17,.18));
    pointer-events: none;
}
#collection .item-image img { transition: transform .7s cubic-bezier(.2,.7,.2,1); }
#collection .collection-item:hover .item-image img { transform: scale(1.045); }
#collection .item-badge {
    top: 1.25rem;
    right: 1.25rem;
    padding: .55rem 1rem;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(34,28,23,.14);
    backdrop-filter: blur(7px);
}
#collection .item-info { min-height: 168px; padding: 1.65rem 1.75rem 1.8rem; }
#collection .item-info h3 { font-size: clamp(1.55rem, 2.2vw, 1.9rem); line-height: 1.08; }
#collection .item-info p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.7;
}

.reservation-modal-content {
    max-width: 780px;
    border: 1px solid rgba(180,145,86,.28);
    border-radius: 26px;
    background: radial-gradient(circle at 10% 5%, rgba(205,171,102,.12), transparent 30%), #fff;
    box-shadow: 0 35px 100px rgba(24,19,15,.28);
    max-height: min(90vh, 920px);
    overflow-x: hidden;
    overflow-y: auto;
}
.reservation-modal-body { padding: clamp(2rem, 5vw, 4rem); }
.reservation-header { margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(180,145,86,.2); }
.reservation-header::before {
    content: "LAPERLA RESERVATIONS";
    display: block;
    margin-bottom: 1rem;
    color: var(--gold);
    font: 400 .61rem/1 'Montserrat', sans-serif;
    letter-spacing: .34em;
}
.reservation-header h2 { font-size: clamp(2.35rem, 5vw, 3.25rem); line-height: 1; }
.reservation-form { gap: 1.15rem; }
.reservation-form .form-row { gap: 1.15rem; }
.reservation-form .form-group { gap: .42rem; }
.reservation-form .form-group label {
    margin: 0 0 .25rem .15rem;
    color: rgba(34,28,23,.72);
    font-size: .7rem;
    letter-spacing: .12em;
}
.reservation-form .form-group input, .reservation-form .form-group select, .reservation-form .form-group textarea {
    min-height: 52px;
    padding: .95rem 1rem;
    border: 1px solid rgba(34,28,23,.14);
    border-radius: 12px;
    background: rgba(250,247,241,.8);
}
.reservation-form .form-group input:focus, .reservation-form .form-group select:focus, .reservation-form .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(180,145,86,.09);
}
.reservation-submit { min-height: 56px; margin-top: .75rem; border-radius: 999px; box-shadow: 0 14px 32px rgba(180,145,86,.24); }

@media (max-width: 768px) {
    #collection .collection-item { flex-basis: min(82vw, 340px); min-width: min(82vw, 340px); }
    #collection .item-image { height: 410px; }
    .reservation-modal-content { width: calc(100% - 24px); max-height: calc(100vh - 24px); border-radius: 20px; }
    .reservation-modal-body { padding: 2rem 1.25rem 1.4rem; overflow-y: auto; }
    .reservation-form .form-row { grid-template-columns: 1fr; }
}

/* 2026 dark collection contrast and atelier performance */
[data-theme="dark"] #collection.collection {
    background:
        radial-gradient(circle at 12% 10%, rgba(180,145,86,.1), transparent 27%),
        linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
    box-shadow: 0 0 0 100vmax #080808;
}

[data-theme="dark"] #collection .section-header h2 { color: #faf7f2; }
[data-theme="dark"] #collection .section-header p { color: rgba(250,247,242,.58); }
[data-theme="dark"] #collection .collection-item {
    border-color: rgba(205,171,102,.2);
    background: #171717;
    box-shadow: 0 20px 55px rgba(0,0,0,.32);
}
[data-theme="dark"] #collection .item-info { background: #171717; }
[data-theme="dark"] #collection .item-info h3 { color: #faf7f2; }
[data-theme="dark"] #collection .item-info p { color: rgba(250,247,242,.58); }

.atelier {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
}

.atelier-image {
    contain: layout paint;
    background: #171717;
}

.atelier-image img {
    display: block;
    filter: none;
    transform: none;
    transition: none;
}

@media (max-width: 768px) {
    .atelier { contain-intrinsic-size: auto 1050px; }
    .atelier-image { height: min(62vh, 620px); }
}

/* Collection scrollbar — slim, dark and aligned with the gold brand palette */
#collection .collection-grid {
    padding-bottom: 18px;
    scrollbar-width: thin;
    scrollbar-color: #cda957 #151515;
}

#collection .collection-grid::-webkit-scrollbar { height: 7px; }
#collection .collection-grid::-webkit-scrollbar-track {
    background: #151515;
    border: 1px solid rgba(205,169,87,.12);
    border-radius: 999px;
}
#collection .collection-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #9f7c32, #e1c477, #9f7c32);
    border: 1px solid #151515;
    border-radius: 999px;
}
#collection .collection-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #b18a3a, #f0d58a, #b18a3a);
}
#collection .collection-grid::-webkit-scrollbar-button { display: none; width: 0; height: 0; }
