:root {
    --walnut-dark: #492e21;
    --walnut-primary: #492e21;
    --walnut-light: #5d3d2e;
    --white: #ffffff;
    --atelier-gold: #c9a84c;
    --atelier-gold-light: #e8d5a3;
    --atelier-cream: #f9f7f4;
    --atelier-ivory: #ffffff;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

.about-image {
    position: relative;
    height: 600px;
    border-radius: 15px;
    z-index: 1;
}

.about-image::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    right: 7px;
    bottom: 7px;
    border: 4px solid var(--atelier-gold);
    border-radius: 10px;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.about-image:hover::after {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
        border: 2.5px solid var(--atelier-gold);

}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--atelier-cream);
    color: var(--walnut-dark);
    line-height: 1.6;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
body.loaded { opacity: 1; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

/* Nav */
.atelier-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 0;
    transition: all 0.4s ease;
}

.atelier-nav.scrolled {
    background: linear-gradient(
        135deg,
        var(--walnut-dark) 0%,
        var(--walnut-primary) 100%
    );
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.4s ease;
    position: relative;
}

.atelier-nav.scrolled .nav-container {
    padding: 15px 20px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-left .logo {
    flex-shrink: 0;
    z-index: 1001;
}

.atelier-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin-left: auto;
}

.atelier-menu li:first-child {
    margin-right: auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 4;
    transition: opacity 0.3s ease;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--atelier-gold);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--atelier-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

.scroll-indicator p {
    color: var(--atelier-gold-light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
    flex-shrink: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    border-radius: 3px;
    background: var(--atelier-gold-light);
    transition: all 0.3s ease;
}

.atelier-menu a.nav-link {
    color: var(--atelier-cream);
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    font-weight: 500;
    position: relative;
    font-family: var(--font-body);
}

.atelier-menu a.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--atelier-gold), var(--atelier-gold-light));
    transition: width 0.3s ease;
}

.atelier-menu a.nav-link:hover::after,
.atelier-menu a.nav-link.active::after {
    width: 100%;
}

.atelier-menu a.nav-link:hover {
    color: var(--white);
}
.atelier-menu a.nav-link.unified-btn {
    font-weight: bold;
    font-family: "Google Sans Flex", sans-serif;
    color: var(--walnut-dark);
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.atelier-menu a.nav-link.unified-btn::after,
.atelier-menu a.nav-link.unified-btn:hover::after {
    display: none;
}

.atelier-menu a.nav-link.unified-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 35px rgba(201, 168, 76, 0.45);
    background: linear-gradient(135deg, #e8d5a3, var(--atelier-gold));
    color: var(--walnut-dark);
}

.back-link:hover { color: #fff; }

.nav-logo {
    height: 50px;
    transition: transform 0.3s;
}

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

.btn-order {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--atelier-gold), #b8941e);
    border-radius: 50px;
    color: var(--walnut-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    margin-left: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-order:hover {
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.25);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(
        135deg,
        var(--walnut-dark) 0%,
        #3d261c 50%,
        var(--walnut-light) 100%
    );
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
    animation: atelierShimmer 8s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(201,168,76,0.07)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.22;
    z-index: 2;
}

@keyframes atelierShimmer {
    0%,
    100% {
        opacity: 0.55;
    }
    50% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 980px;
    padding: 0 20px;
    animation: atelierFadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.hero-title span {
    display: block;
    color: var(--white);
    background: linear-gradient(135deg, var(--white), var(--atelier-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.btn-discover {
    display: inline-block;
    padding: 15px 40px;
    background: var(--atelier-gold);
    color: var(--walnut-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    font-family: var(--font-body);
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-discover:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.25);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General Sections */
section { padding: 100px 0; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.label {
    display: block;
    color: var(--walnut-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding: 0 30px;
}

.label::before,
.label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--atelier-gold);
}

.label::before {
    left: 0;
}

.label::after {
    right: 0;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--walnut-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

/* About */
.about {
    background: linear-gradient(180deg, var(--atelier-cream) 0%, var(--white) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.dropcap {
    float: left;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 0.8;
    padding-top: 4px;
    padding-right: 15px;
    color: var(--atelier-gold);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.image-placeholder {
    width: 100%;
    height: 600px;
    background: var(--walnut-primary);
    position: relative;
}
.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid var(--atelier-gold);
    opacity: 0.5;
}

/* Collections */
.collections {
    background: linear-gradient(180deg, var(--white) 0%, var(--atelier-cream) 100%);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.collection-card {
    background: var(--atelier-ivory);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid rgba(73, 46, 33, 0.05);
}
.collection-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 10px 30px rgba(73, 46, 33, 0.1);
    border-color: var(--atelier-gold);
}

.card-img-wrapper {
    height: 400px;
    overflow: hidden;
    background: var(--walnut-light);
    border-radius: 12px;
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.collection-card:hover .collection-image { transform: scale(1.05); }

.card-content {
    padding: 30px;
    text-align: center;
}

.card-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Bespoke Banner Update */
.bespoke-banner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 0;
    text-align: left;
    overflow: hidden;
    padding: 0;
    background: var(--walnut-dark);
    border-radius: 15px;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.bespoke-image-wrapper {
    height: 100%;
    min-height: 500px;
}

.bespoke-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1); /* Horizontally Flip Image */
}

.bespoke-content {
    padding: 60px;
    max-width: none;
    margin: 0;
}

.bespoke-specs-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.spec-item-inline {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-item-inline strong {
    color: var(--atelier-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-item-inline span {
    color: #ccc;
    font-size: 14px;
}

/* Unified Button Style */
.unified-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--atelier-gold), #b8941e);
    color: var(--walnut-dark);
    text-decoration: none;
    font-family: "Google Sans Flex", sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-align: center;
}

.unified-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
    background: linear-gradient(135deg, #e8d5a3, var(--atelier-gold));
    text-decoration: none;
}

@media (max-width: 968px) {
    .bespoke-banner {
        grid-template-columns: 1fr;
    }
    .bespoke-specs-inline {
        grid-template-columns: 1fr;
    }
}

.bespoke-content h3 {
    color: var(--atelier-gold-light);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.bespoke-content p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--atelier-gold);
    color: var(--atelier-gold-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-outline:hover {
    background: var(--atelier-gold);
    color: var(--walnut-dark);
}

/* Gallery */
.atelier-gallery {
    background: var(--atelier-cream);
    border-top: 1px solid rgba(73, 46, 33, 0.08);
    border-bottom: 1px solid rgba(73, 46, 33, 0.08);
}

.gallery-stage {
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    align-items: center;
    gap: 18px;
    margin: 0 auto;
    max-width: 980px;
}

.gallery-viewport {
    border-radius: 15px;
    overflow: hidden;
    background: var(--walnut-light);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.gallery-viewport img {
    width: 100%;
    height: min(68vh, 640px);
    object-fit: cover;
    display: block;
}

.gallery-nav {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.5);
    background: rgba(255, 255, 255, 0.8);
    color: var(--walnut-dark);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.gallery-nav:hover {
    background: var(--atelier-gold);
    border-color: var(--atelier-gold);
    transform: translateY(-2px);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.gallery-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(73, 46, 33, 0.28);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-dots button.active {
    background: var(--atelier-gold);
    transform: scale(1.22);
}

.catalogue-download {
    margin: 40px auto 0;
    max-width: 780px;
    text-align: center;
    background: var(--walnut-dark);
    color: #fff;
    border-radius: 16px;
    padding: 36px 24px;
    border: 1px solid rgba(201, 168, 76, 0.28);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.catalogue-download h3 {
    color: var(--atelier-gold-light);
    font-size: 2rem;
    margin-bottom: 10px;
}

.catalogue-download p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 22px;
}

/* Contact */
.contact {
    background: var(--atelier-cream);
    position: relative;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            circle at 20% 80%,
            rgba(201, 168, 76, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(201, 168, 76, 0.08) 0%,
            transparent 50%
        );
}

.contact .section-header {
    position: relative;
    z-index: 1;
}

.contact .label,
.contact .section-header h2 {
    color: var(--atelier-gold);
}

.contact .section-header p {
    color: var(--walnut-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    position: relative;
}

.contact-info {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--walnut-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--walnut-light);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--atelier-gold);
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--atelier-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Email Reveal Button - Minimal Style */
.email-reveal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    color: var(--walnut-dark);
    border: 1px solid rgba(73, 46, 33, 0.3);
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 8px;
}

.email-reveal-btn:hover {
    border-color: var(--atelier-gold);
    color: var(--atelier-gold);
    background: rgba(201, 168, 76, 0.05);
}

.email-reveal-btn .email-hidden {
    display: none;
}

.email-reveal-btn.revealed .email-text {
    display: none;
}

.email-reveal-btn.revealed .email-hidden {
    display: inline;
    font-family: inherit;
    letter-spacing: 0;
}

.email-reveal-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.email-reveal-btn:hover svg {
    transform: scale(1.1);
}

.contact-item p {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--walnut-dark);
    font-size: 16px;
    margin: 0;
}

.email-link {
    color: var(--walnut-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--atelier-gold);
}

/* Phone Link */
.phone-link {
    color: var(--walnut-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--atelier-gold);
}

.contact-form-wrapper form {
    background: rgba(73, 46, 33, 0.72);
    padding: 40px;
    box-shadow: 0 0 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 15px;
}

.form-group { margin-bottom: 25px; }

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--atelier-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.75);
}

.form-group select option {
    background: var(--walnut-dark);
    color: #fff;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--atelier-gold), #b8941e);
    color: var(--walnut-dark);
    border: none;
    font-weight: 600;
    font-size: 16px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-submit:hover {
    box-shadow: 0 0 15px rgba(201,168,76,0.25);
}

/* Scroll Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer {
    background: var(--walnut-dark);
    padding: 60px 0 10px;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 10px;
}

.footer-col h4 {
    color: var(--atelier-gold-light);
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--atelier-gold-light);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,168,76,0.12);
    color: var(--atelier-gold-light);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--atelier-gold);
    color: var(--walnut-dark);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-logo {
    width: 150px;
    max-width: 150px;
    height: auto;
    opacity: 1;
    margin-bottom: 20px;
    display: block;
}

.footer-col p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6px;
    padding-bottom: 2px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-body);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-container {
        padding: 15px 20px;
    }
    
    .nav-logo {
        height: 40px;
    }
    
    .hamburger {
        display: flex;
        margin-left: 20px;
    }

    .atelier-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        width: 100%;
        flex-direction: column;
        background: var(--walnut-dark);
        padding: 30px 0;
        gap: 0;
        transition: left 0.3s ease;
        margin-left: 0;
    }
    .atelier-menu li {
        margin: 14px 0;
    }
    .atelier-menu li:first-child {
        margin-right: 0;
    }
    .atelier-menu.active {
        left: 0;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .btn-order {
        display: none;
    }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 3.5rem; }
    .gallery-stage {
        grid-template-columns: 42px 1fr 42px;
        gap: 12px;
    }
    .gallery-nav {
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
    }
    .gallery-viewport img {
        height: min(46vh, 420px);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 20px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 90%;
    }
    
    /* Reduce dropcap size on mobile */
    .dropcap {
        font-size: 3rem;
        padding-right: 10px;
    }
    
    /* Disable fixed background on mobile */
    .hero {
        background-attachment: scroll !important;
    }
    
    /* Reduce scroll indicator size */
    .scroll-indicator {
        bottom: 15px;
        transform: translateX(-50%) scale(0.85);
    }
    
    .scroll-indicator p {
        font-size: 10px;
    }
    
    .mouse {
        width: 20px;
        height: 32px;
    }
}

/* Music Control Button (shared across pages) */
.music-control {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--atelier-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.music-control:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--atelier-gold);
    transform: scale(1.05);
}

.music-control svg {
    width: 20px;
    height: 20px;
}

.music-control .play-icon,
.music-control.playing .pause-icon {
    display: block;
}

.music-control .pause-icon,
.music-control.playing .play-icon {
    display: none;
}

/* Music Credits Tooltip */
.music-credits {
    position: absolute;
    bottom: 55px;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    pointer-events: none;
}

.music-credits::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 20px;
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.7) transparent transparent;
}

.music-control:hover .music-credits {
    opacity: 1;
    visibility: visible;
}
