/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    background: #0d0d0d;
    color: #f0f0f0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1e1e1e;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #c9a84c;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    flex-wrap: nowrap;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #bbb;
    transition: color 0.25s;
    white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: #c9a84c; }
/* Dropdown */
.nav-links .dropdown > a::after {
    content: ' ▾';
    font-size: 0.6rem;
    opacity: 0.6;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0f0f0f;
    border: 1px solid #222;
    border-top: 2px solid #c9a84c;
    min-width: 180px;
    list-style: none;
    padding: 0.5rem 0;
    z-index: 300;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.78rem;
    color: #bbb;
    letter-spacing: 0.08em;
    transition: all 0.2s;
}
.dropdown-menu li a:hover { color: #c9a84c; background: #161616; padding-left: 1.5rem; }
.dropdown-menu .guest-label {
    font-size: 0.6rem;
    color: #888;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-left: 0.4rem;
}
/* Book button in nav */
.nav-book {
    background: #c9a84c;
    color: #0d0d0d !important;
    font-weight: 700 !important;
    padding: 0.5rem 1.1rem !important;
    border-radius: 2px;
    transition: background 0.25s !important;
}
.nav-book:hover { background: #d4b55e !important; color: #0d0d0d !important; }
/* Nav phone */
.nav-phone {
    font-size: 0.78rem;
    color: #c9a84c;
    white-space: nowrap;
    flex-shrink: 0;
}
/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #f0f0f0; transition: all 0.3s; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 2px;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.btn-primary { background: #c9a84c; color: #0d0d0d; }
.btn-primary:hover { background: #d4b55e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.3); }
.btn-outline { background: transparent; color: #f0f0f0; border: 1px solid #555; }
.btn-outline:hover { border-color: #c9a84c; color: #c9a84c; }

/* ===== LAYOUT ===== */
.page-wrap { padding-top: 64px; }
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
iframe { max-width: 100%; width: 100%; border: 0; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 0.5rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.divider { width: 50px; height: 2px; background: #c9a84c; margin-bottom: 2.5rem; }

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
    background: linear-gradient(to bottom, #1a1410, #0d0d0d);
    padding: 4rem 2rem 3rem;
    text-align: center;
    border-bottom: 1px solid #1e1e1e;
}
.page-hero .section-label { margin-bottom: 0.5rem; }
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0;
}

/* ===== HOME HERO ===== */
#hero {
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem 3rem;
    background: radial-gradient(ellipse at center top, #1c1710 0%, #0d0d0d 60%);
    position: relative;
}
.hero-logo { height: 160px; margin: 0 auto 2rem; }
.hero-title {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 0.75rem;
}
.hero-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}
.hero-sub {
    color: #888;
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto 2.5rem;
}
.hero-award {
    display: inline-block;
    border: 1px solid #3a3020;
    background: rgba(201,168,76,0.06);
    color: #c9a84c;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    margin-bottom: 2.5rem;
    border-radius: 2px;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: #444;
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== HOME INTRO ===== */
#intro { background: #111; }
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.intro-text p { color: #bbb; margin-bottom: 1.25rem; font-size: 1.02rem; }
.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.stat-card {
    background: #0d0d0d;
    border: 1px solid #1e1e1e;
    border-radius: 4px;
    padding: 1.5rem;
    text-align: center;
}
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #c9a84c;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: #666; }

/* ===== ARTISTS GRID (home + roster page) ===== */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}
.artist-card {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: #f0f0f0;
    transition: all 0.3s;
    display: block;
}
.artist-card:hover { border-color: #c9a84c; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.artist-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
    filter: sepia(0.15) contrast(1.05);
    transition: filter 0.3s;
}
.artist-card:hover img { filter: sepia(0.05) contrast(1.1); }
.artist-card-info { padding: 1.25rem; }
.artist-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}
.artist-card-tag {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a84c;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 4px;
    padding: 1.75rem;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #c9a84c;
    opacity: 0.3;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    line-height: 1;
}
.testimonial-text {
    color: #bbb;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
}
.testimonial-author {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a84c;
}

/* ===== ARTIST PROFILE PAGE ===== */
.artist-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem 3rem;
    background: radial-gradient(ellipse at center top, #1c1710 0%, #0d0d0d 65%);
}
.artist-hero-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 3px solid #c9a84c;
    margin-bottom: 1.75rem;
    box-shadow: 0 0 40px rgba(201,168,76,0.15);
    filter: sepia(0.2) contrast(1.05);
}
.artist-hero-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 0.5rem;
}
.artist-hero-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0;
}
/* About section on artist page */
.artist-about { background: #111; padding-top: 3rem; }
.artist-bio { max-width: 740px; }
.artist-bio p { color: #bbb; margin-bottom: 1.5rem; font-size: 1.02rem; }
/* Portfolio CTA on artist page */
.portfolio-cta {
    background: linear-gradient(135deg, #1a1610, #1e1a12);
    border: 1px solid #3a3020;
    border-radius: 4px;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}
.portfolio-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.portfolio-cta p { color: #888; margin-bottom: 2rem; max-width: 400px; margin-left: auto; margin-right: auto; }
.btn-portfolio {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #c9a84c;
    color: #0d0d0d;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(201,168,76,0.3);
}
.btn-portfolio:hover { background: #d4b55e; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.5); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; }
.faq-item {
    border-bottom: 1px solid #1e1e1e;
    padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid #1e1e1e; }
.faq-q {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 0.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.faq-q::after { content: '+'; color: #c9a84c; font-size: 1.4rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { color: #bbb; font-size: 0.97rem; display: none; }
.faq-item.open .faq-a { display: block; }

/* ===== REVIEWS PAGE ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.review-cta {
    text-align: center;
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 4px;
    padding: 3rem 2rem;
    margin-top: 3rem;
}
.review-cta p { color: #888; margin-bottom: 1.5rem; max-width: 440px; margin-left: auto; margin-right: auto; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-info-block { margin-bottom: 2rem; }
.contact-info-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #c9a84c;
    margin-bottom: 0.75rem;
}
.contact-info-block p, .contact-info-block a { color: #bbb; font-size: 0.97rem; display: block; margin-bottom: 0.3rem; }
.contact-info-block a:hover { color: #c9a84c; }
.artist-emails { list-style: none; }
.artist-emails li { margin-bottom: 0.5rem; }
.artist-emails .name { color: #f0f0f0; font-weight: 700; font-size: 0.85rem; }
.artist-emails a { color: #888; font-size: 0.85rem; }
.artist-emails a:hover { color: #c9a84c; }
.contact-map {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.contact-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(1) invert(0.9) contrast(0.8); }

/* ===== BOOKING PAGE ===== */
.booking-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.booking-step {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 4px;
    padding: 2rem 1.5rem;
}
.step-num-lg {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #c9a84c;
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 0.75rem;
}
.booking-step h3 { font-size: 1rem; margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.booking-step p { color: #888; font-size: 0.9rem; }
.booking-cta-box {
    background: linear-gradient(135deg, #1a1610, #1e1a12);
    border: 1px solid #3a3020;
    border-radius: 4px;
    padding: 3rem;
    text-align: center;
}
.booking-cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}
.booking-cta-box p { color: #888; margin-bottom: 2rem; }

/* ===== FOOTER ===== */
footer {
    background: #080808;
    border-top: 1px solid #1a1a1a;
    padding: 3rem 2rem 2rem;
}
.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}
.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand p { color: #555; font-size: 0.85rem; max-width: 260px; }
.footer-col h4 {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: #666; font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: #c9a84c; }
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #444;
    font-size: 0.78rem;
}
.footer-bottom a { color: #555; }
.footer-bottom a:hover { color: #c9a84c; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-phone { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 64px; left: 0; right: 0;
        background: rgba(10,10,10,0.99);
        padding: 1.5rem 2rem 2rem;
        gap: 0.25rem;
        border-bottom: 1px solid #222;
    }
    .nav-links.open .dropdown-menu {
        display: block;
        position: static;
        border: none;
        border-top: none;
        padding: 0 0 0 1rem;
        background: transparent;
    }
    .hamburger { display: flex; }
    .intro-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .hours-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    section { padding: 3.5rem 1.25rem; }
    .artists-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .hero-award { font-size: 0.62rem; letter-spacing: 0.08em; padding: 0.4rem 0.75rem; }
    .intro-grid { gap: 2rem; }
    .stat-card { padding: 1rem; }
    .container { padding-left: 1.25rem; padding-right: 1.25rem; }
    .contact-map iframe { height: 250px; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.portfolio-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
}
.portfolio-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.portfolio-thumb:hover img { transform: scale(1.05); opacity: 0.85; }

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
    position: absolute; top: 1rem; right: 1.5rem;
    font-size: 2.5rem; color: #fff; cursor: pointer; line-height: 1;
}
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    font-size: 2rem; color: #c9a84c; cursor: pointer;
    padding: 0.5rem 1rem; user-select: none;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

@media (max-width: 600px) {
    .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}
