        @import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Space+Grotesk:wght@400;500;600&display=swap');

        :root {
            --bg: #f4f1ea;
            --ink: #1a1a1a;
            --muted: #5b5b5b;
            --brand: #b86a4b;
            --accent: #1f6f78;
            --gold: #c9a44a;
            --card: #ffffff;
            --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        }

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

        body {
            font-family: 'Space Grotesk', sans-serif;
            line-height: 1.6;
            color: var(--ink);
            background: var(--bg);
            overflow-x: hidden;
        }

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

        /* Announcement Bar */
        .announcement {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #111;
            color: #f4f1ea;
            z-index: 1100;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .announcement-track {
            display: flex;
            gap: 2rem;
            padding: 8px 0;
            white-space: nowrap;
            animation: marquee 30s linear infinite;
        }
        .announcement:hover .announcement-track {
            animation-play-state: paused;
        }
        .announcement a {
            color: inherit;
            text-decoration: underline;
        }

        .announcement span {
            font-size: 0.95rem;
            letter-spacing: 0.2px;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 40px;
            z-index: 1000;
            background: #ffffff;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
        }

        .logo {
            font-family: 'Fraunces', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--ink);
        }
        .logo img {
            display: block;
            height: 44px;
            width: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        .nav-links a {
            color: var(--ink);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-cta {
            display: inline-flex;
            gap: 0.6rem;
            align-items: center;
        }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}
.wa-icon svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.pill.primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 8px 18px rgba(31, 111, 120, 0.25);
}
.pill.primary.whatsapp-pill {
    background: #25D366;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
}

        .pill.secondary {
            background: white;
            color: var(--ink);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .pill:hover {
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            padding: 180px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(201,164,74,0.35), rgba(201,164,74,0));
            z-index: 0;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -160px;
            left: -120px;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(31,111,120,0.25), rgba(31,111,120,0));
            z-index: 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 2.5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Fraunces', serif;
            font-size: 3.2rem;
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--muted);
            margin-bottom: 1.8rem;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-card {
            background: var(--card);
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: var(--shadow);
        }

        .hero-card img {
            width: 100%;
            border-radius: 12px;
            height: 360px;
            object-fit: cover;
        }

        /* Sections */
        section {
            padding: 4.5rem 0;
        }

        .section-title {
            font-family: 'Fraunces', serif;
            text-align: center;
            font-size: 2.4rem;
            margin-bottom: 2.5rem;
            color: var(--ink);
        }

        .section-subtitle {
            text-align: center;
            color: var(--muted);
            max-width: 760px;
            margin: -1.5rem auto 2.5rem;
        }

        /* About */
        .about {
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
        }

        .about-text p {
            margin-bottom: 1rem;
        }

        .about-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: var(--shadow);
        }

        /* Collections */
        .collections {
            background: var(--bg);
        }

        .collection-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.6rem;
        }

.collection-card {
    background: white;
    padding: 1.6rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--brand);
}
.collection-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}
.collection-card a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 10px;
}

        /* Features */
        .features {
            background: white;
        }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}
.features-grid a {
    display: block;
    background: var(--card);
    padding: 1.2rem 1.4rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
}
.features-grid a:hover {
    color: var(--accent);
}

        .feature-card {
            background: var(--card);
            padding: 1.8rem;
            border-radius: 14px;
            box-shadow: var(--shadow);
        }

        .feature-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: rgba(31, 111, 120, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
        }

        /* Accessories */
        .accessories {
            background: var(--bg);
        }

        .accessories-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .accessory-item {
            background: white;
            padding: 1.2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        /* Masonry Gallery */
        .gallery {
            background: white;
        }

        .masonry-grid {
            column-count: 3;
            column-gap: 1.2rem;
        }

        .masonry-item {
            break-inside: avoid;
            margin-bottom: 1.2rem;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .masonry-item img {
            display: block;
            width: 100%;
            height: auto;
        }

        /* Featured Gallery */
        .featured {
            background: var(--bg);
        }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.2rem;
        }

        .featured-card {
            background: white;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

.featured-card img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* Instrument Detail */
.instrument-hero {
    padding: 180px 0 70px;
}
.instrument-hero h1 {
    font-family: 'Fraunces', serif;
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.instrument-hero p {
    color: var(--muted);
    max-width: 720px;
}
.instrument-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}
.instrument-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.instrument-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}
.cta-band {
    background: linear-gradient(135deg, #1f6f78, #0f3d41);
    color: white;
    padding: 2.5rem;
    border-radius: 18px;
    display: grid;
    gap: 1rem;
}
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}
.cta-button.primary {
    background: #25D366;
    color: white;
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
}
.cta-button.secondary {
    background: rgba(255, 255, 255, 0.14);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

        /* Contact */
        .contact {
            background: linear-gradient(135deg, #1f6f78, #0f3d41);
            color: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 2rem;
        }

        .contact-info h3 {
            color: var(--gold);
            margin-bottom: 0.8rem;
        }

        .whatsapp-contact {
            background: rgba(255,255,255,0.12);
            padding: 1.8rem;
            border-radius: 16px;
        }

        .whatsapp-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #25D366;
            color: white;
            padding: 14px 22px;
            text-decoration: none;
            border-radius: 999px;
            font-weight: 600;
            box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
        }

.phone-number {
    font-family: monospace;
    font-size: 0.9rem;
    opacity: 0.9;
}
.phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    margin-right: 0.4rem;
}
.phone-pill:hover {
    background: rgba(255, 255, 255, 0.22);
}

        /* Footer */
footer {
    background: #121212;
    color: #d6d6d6;
    text-align: center;
    padding: 2rem 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
}
.footer-grid h4 {
    color: #ffffff;
    margin-bottom: 0.6rem;
    font-family: 'Fraunces', serif;
}
.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-grid li {
    margin-bottom: 0.4rem;
}
.footer-grid a {
    color: #d6d6d6;
    text-decoration: none;
}
.footer-grid a:hover {
    color: #ffffff;
}
.footer-note {
    margin-top: 0.5rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    animation: whatsapp-bounce 2.4s ease-in-out infinite;
}
.floating-whatsapp svg {
    width: 26px;
    height: 26px;
    fill: #ffffff;
}
.floating-whatsapp:hover {
    transform: translateY(-2px);
    animation-play-state: paused;
}

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

        /* Animations */
        .fade-in {
            animation: fadeInUp 0.8s ease-out both;
        }

        .scroll-fade {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .scroll-fade.visible {
            opacity: 1;
            transform: translateY(0);
        }

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

        @keyframes marquee {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* Responsive */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

            .about-content {
                grid-template-columns: 1fr;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }

    .hero-card img {
        height: 280px;
    }

    .masonry-grid {
        column-count: 2;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .instrument-grid {
        grid-template-columns: 1fr;
    }

    .instrument-card img {
        height: 280px;
    }
}

@media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .nav-cta {
                gap: 0.4rem;
            }

            .hero {
                padding-top: 160px;
            }

    .hero h1 {
        font-size: 2.4rem;
    }

    .masonry-grid {
        column-count: 1;
    }

    .wa-label {
        display: none;
    }

    .pill.primary {
        padding: 10px 12px;
    }
}