:root {
    --bg: #070708;
    --bg-soft: #101012;
    --bg-panel: rgba(19, 19, 22, 0.92);
    --bg-card: rgba(255, 255, 255, 0.045);
    --text: #f6f0e7;
    --muted: #b9b0a4;
    --muted-strong: #d9d1c6;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.16);
    --gold: #c9a96f;
    --gold-2: #e4c58e;
    --gold-soft: rgba(201, 169, 111, 0.14);
    --accent: #8d2f40;
    --success: #2f8c62;
    --warning: #d1a64c;
    --danger: #c66d6d;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    --radius: 24px;
    --radius-lg: 34px;
    --container: min(1180px, calc(100% - 28px));
    --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(141, 47, 64, 0.18), transparent 24%),
        radial-gradient(circle at left bottom, rgba(201, 169, 111, 0.08), transparent 26%),
        var(--bg);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
main { overflow: clip; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3, h4 {
    margin: 0 0 0.75rem;
    line-height: 1.06;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: 0.01em;
}
.container { width: var(--container); margin: 0 auto; }
.narrow { width: min(780px, calc(100% - 28px)); }
.section { padding: 78px 0; position: relative; }
.section-dark {
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.012));
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}
.page-banner {
    padding: 126px 0 56px;
    background: linear-gradient(180deg, rgba(201, 169, 111, 0.08), transparent 65%);
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    font-size: 0.76rem;
    margin-bottom: 16px;
}
.eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: currentColor;
    opacity: 0.75;
}
.muted { color: var(--muted); }
.text-link { color: var(--gold); font-weight: 700; }
.text-link:hover { color: var(--gold-2); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(7, 7, 8, 0.78);
    border-bottom: 1px solid var(--line);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 82px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand > span { display: grid; min-width: 0; }
.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 15px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
}
.brand-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}
.brand-title {
    font-size: 1.08rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.site-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 14px;
    right: 14px;
    padding: 18px;
    gap: 12px;
    flex-direction: column;
    background: rgba(11, 11, 12, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
}
.site-nav.is-open { display: flex; }
.site-nav a { color: var(--muted); transition: color 0.2s ease, transform 0.2s ease; }
.site-nav a.active,
.site-nav a:hover { color: var(--text); }
.menu-toggle {
    width: 50px;
    height: 50px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    color: var(--text);
    border-radius: 14px;
    font-size: 1.1rem;
}

.hero-slider-section { padding: 0 0 42px; }
.hero-slider {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.hero-track { position: relative; min-height: clamp(720px, 92vh, 900px); }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease, transform 0.7s ease;
    transform: translateX(4%);
    background: var(--bg);
}
.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}
.hero-slide::before {
    content: '';
    position: absolute;
    inset: -4%;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    opacity: 0.34;
    transform: scale(1.05) translate3d(0, var(--parallax-shift, 0px), 0);
    transition: transform 0.8s var(--ease-luxury), opacity 0.8s var(--ease-luxury);
}
.hero-slide-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7,7,8,0.95) 0%, rgba(7,7,8,0.78) 42%, rgba(7,7,8,0.34) 100%),
        linear-gradient(180deg, rgba(201,169,111,0.08), rgba(7,7,8,0.2));
}
.hero-slide-inner,
.hero-grid,
.intro-grid,
.two-column-feature,
.cta-inner,
.booking-layout {
    display: grid;
    gap: 26px;
}
.hero-slide-inner {
    position: relative;
    z-index: 2;
    min-height: clamp(720px, 92vh, 900px);
    align-items: center;
    padding: 118px 0 88px;
}
.hero-copy-wrap { max-width: 720px; position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.9rem, 8vw, 6.2rem); max-width: 11ch; }
.hero-copy {
    max-width: 670px;
    font-size: 1.08rem;
    color: var(--muted-strong);
}
.hero-actions,
.cta-actions,
.social-links,
.meta-row,
.filter-row,
.hero-highlights { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions { margin-top: 26px; }
.hero-highlights { margin-top: 28px; gap: 16px; }
.hero-highlights div {
    min-width: 132px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.035);
    backdrop-filter: blur(6px);
}
.hero-highlights strong {
    display: block;
    font-size: 1.36rem;
    color: var(--text);
    margin-bottom: 2px;
}
.hero-visual { align-self: stretch; position: relative; z-index: 2; }
.hero-panel {
    height: 100%;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 26px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    box-shadow: var(--shadow);
    transform: perspective(1200px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
    transition: transform 0.4s var(--ease-luxury), border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-panel img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
}
.hero-panel-tag {
    display: inline-flex;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--gold);
}
.hero-slider-controls {
    position: absolute;
    inset: auto 0 22px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.hero-slider-dots { display: inline-flex; gap: 10px; }
.hero-slider-dot,
.hero-slider-arrow {
    border: 1px solid var(--line-strong);
    background: rgba(15,15,16,0.66);
    color: var(--text);
    backdrop-filter: blur(10px);
}
.hero-slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    padding: 0;
}
.hero-slider-dot.is-active {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    border-color: transparent;
}
.hero-slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    font-size: 1.5rem;
    line-height: 1;
}
.card-glow { position: relative; }
.card-glow::before {
    content: '';
    position: absolute;
    inset: 10% 6% auto;
    height: 34%;
    background: radial-gradient(circle, rgba(201, 169, 111, 0.28), transparent 70%);
    filter: blur(54px);
    z-index: -1;
}
.intro-section { padding-top: 36px; }

.pulse-strip { padding: 0 0 12px; overflow: hidden; }
.pulse-strip-inner { border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.018); }
.pulse-track { display: flex; gap: 0; min-width: max-content; animation: pulseTrack 24s linear infinite; }
.pulse-track span { display: inline-flex; align-items: center; gap: 14px; padding: 16px 24px; color: var(--muted-strong); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.74rem; }
.pulse-track span::after { content: "✦"; color: var(--gold); opacity: 0.9; }
@keyframes pulseTrack { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #090909;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(201, 169, 111, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(201, 169, 111, 0.2); }
.button-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(201, 169, 111, 0.55);
    box-shadow: none;
}
.button-ghost {
    background: rgba(255,255,255,0.04);
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: none;
}
.button-small { padding: 10px 16px; font-size: 0.92rem; }
.tag {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
    font-size: 0.84rem;
    color: var(--text);
}
.tag-active {
    background: var(--gold-soft);
    color: var(--gold);
    border-color: rgba(201, 169, 111, 0.32);
}
.price-note { color: var(--gold); font-weight: 700; }
.social-links a {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    font-size: 0.92rem;
}
.form-note { color: var(--muted); margin: 0 0 18px; font-size: 0.94rem; }

.section-heading { margin-bottom: 32px; }
.split-heading { display: flex; justify-content: space-between; align-items: end; gap: 18px; }
.card-grid,
.gallery-grid,
.footer-grid,
.footer-bottom,
.form-grid,
.stack-card { display: grid; gap: 20px; }
.info-card,
.artist-card,
.testimonial-card,
.gallery-card,
.stack-card > .info-card,
.blog-card,
.site-form,
.cta-inner {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.028));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.info-card,
.testimonial-card,
.blog-card,
.stack-card > .info-card,
.site-form { padding: 24px; }
.artist-card {
    overflow: hidden;
    display: grid;
    gap: 0;
    padding: 0;
}
.artist-card > div { padding: 24px; }
.artist-card img { width: 100%; aspect-ratio: 4 / 4.2; object-fit: cover; }
.gallery-card {
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.gallery-card:hover { transform: translateY(-4px); border-color: rgba(201, 169, 111, 0.22); }
.gallery-card img { aspect-ratio: 1 / 1; object-fit: cover; }
.gallery-card-body { padding: 20px; }
.blog-card { display: grid; gap: 14px; }
.split-card { display: grid; gap: 20px; align-items: center; }
.section-soft-top { padding-top: 0; }
.blog-card img,
.rounded-image {
    border-radius: 22px;
    border: 1px solid var(--line);
    width: 100%;
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 12px; }
.meta-row { gap: 10px 14px; color: var(--muted); font-size: 0.92rem; }
.feature-list { margin: 0; padding-left: 18px; color: var(--muted); }
.feature-list li + li { margin-top: 10px; }
.faq-list details {
    background: rgba(255,255,255,0.032);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px 20px;
}
.faq-list details + details { margin-top: 14px; }
.faq-list summary { cursor: pointer; font-weight: 700; }
.cta-band { padding-top: 0; }
.cta-inner {
    padding: 30px;
    background: linear-gradient(135deg, rgba(201,169,111,0.14), rgba(141,47,64,0.18));
    border-color: rgba(201,169,111,0.18);
}

.site-form label { display: grid; gap: 8px; color: var(--muted); }
.site-form input,
.site-form textarea,
.site-form select {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    color: var(--text);
    border-radius: 16px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.site-form input:focus,
.site-form textarea:focus,
.site-form select:focus {
    border-color: rgba(201, 169, 111, 0.6);
    box-shadow: 0 0 0 4px rgba(201, 169, 111, 0.08);
    background: rgba(255,255,255,0.045);
}
.form-grid { margin-bottom: 20px; }
.form-grid .full { grid-column: 1 / -1; }
.form-actions { align-items: center; }
.checkbox { display: flex; align-items: center; gap: 10px; }
.checkbox input { width: auto; }
.map-card .map-placeholder,
.map-fallback {
    min-height: 240px;
    width: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px dashed rgba(255,255,255,0.18);
    display: grid;
    place-items: center;
    color: var(--muted);
}
.form-success-note,
.success-card { border-color: rgba(47,140,98,0.28); }

.alert { padding: 14px 0; border-bottom: 1px solid var(--line); }
.alert-success { background: rgba(47, 140, 98, 0.12); }
.alert-error { background: rgba(141, 47, 64, 0.18); }
.hp-field {
    position: absolute !important;
    left: -99999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    background: #25d366;
    color: #08140d;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 18px 44px rgba(37, 211, 102, 0.28);
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 56px 0 30px;
    background: rgba(0,0,0,0.24);
}
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 60;
    padding: 18px;
}
.modal.open { display: grid; place-items: center; }
.modal-content {
    width: min(920px, 100%);
    background: #0b0b0c;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    position: relative;
}
.modal-content img { width: 100%; max-height: 72vh; object-fit: cover; }
.modal-copy { padding: 22px; }
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 1.2rem;
}

@media (min-width: 760px) {
    .experience-grid { grid-template-columns: 1.02fr 0.98fr; align-items: center; }
    .site-nav {
        display: flex !important;
        position: static;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 18px;
    }
    .menu-toggle { display: none; }
    .hero-slide-inner,
    .hero-grid,
    .intro-grid,
    .two-column-feature,
    .booking-layout { grid-template-columns: 1.02fr 0.98fr; align-items: center; }
    .split-card { grid-template-columns: 1.05fr 0.95fr; }
    .cta-inner { grid-template-columns: 1fr auto; align-items: center; }
    .card-grid.styles-grid,
    .card-grid.info-grid,
    .service-grid,
    .blog-grid,
    .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .artist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .footer-bottom { grid-template-columns: 1fr auto; align-items: center; }
}

@media (min-width: 1040px) {
    .experience-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .card-grid.styles-grid,
    .card-grid.info-grid,
    .service-grid,
    .blog-grid,
    .testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .artist-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .artist-grid.large { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
    .hero-slide-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 106px;
        padding-bottom: 78px;
    }
    .hero-track {
        min-height: auto;
    }
    .hero-copy-wrap,
    .banner-copy {
        max-width: none;
    }
    .hero-panel {
        width: min(100%, 720px);
        margin-inline: auto;
    }
    .hero-panel img {
        max-height: 360px;
        object-fit: cover;
    }
    .banner-grid,
    .artist-spotlight-grid,
    .gallery-focus-grid {
        grid-template-columns: 1fr;
    }
    .page-banner-rich {
        padding: 112px 0 64px;
    }
    .banner-visual-stack {
        min-height: 360px;
    }
    .banner-visual-panel img {
        min-height: 240px;
    }
    .banner-visual-secondary {
        width: 42%;
        bottom: -18px;
    }
    .portfolio-mosaic {
        min-height: 420px;
    }
}

@media (max-width: 759px) {
    .nav-wrap {
        min-height: 74px;
    }
    .site-nav {
        top: 74px;
        max-height: calc(100vh - 92px);
        overflow-y: auto;
    }
    .site-nav a,
    .site-nav .button,
    .lang-switcher {
        width: 100%;
        justify-content: center;
    }
    .split-heading { align-items: start; flex-direction: column; }
    .pulse-track { animation-duration: 18s; }
    .hero-scroll-cue { display: none; }
    .hero-panel-topline { align-items: start; }
    .hero-floating-badge,
    .floating-badge { position: static; max-width: none; margin-top: 14px; }
    .experience-collage { min-height: auto; display: grid; gap: 16px; }
    .experience-shot { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 4 / 3; }
    .experience-metrics { grid-template-columns: 1fr; }
    .hero-track { min-height: auto; }
    .hero-slide-inner {
        min-height: auto;
        padding-top: 96px;
        padding-bottom: 70px;
        gap: 18px;
    }
    .hero-panel {
        order: 0;
        width: 100%;
    }
    .hero-panel img {
        min-height: 220px;
        max-height: 280px;
    }
    .hero-highlights {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .hero-actions,
    .cta-actions,
    .banner-copy .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .hero-actions .button,
    .cta-actions .button,
    .banner-copy .hero-actions .button {
        width: 100%;
        min-height: 48px;
    }
    .hero-slider-controls { justify-content: center; }
    .page-banner {
        padding: 108px 0 48px;
    }
    .page-banner-rich {
        padding-top: 102px;
        padding-bottom: 56px;
    }
    .banner-grid {
        gap: 20px;
    }
    .banner-copy h1 {
        max-width: none;
        font-size: clamp(2.2rem, 12vw, 3.8rem);
    }
    .banner-visual-stack {
        min-height: auto;
        display: grid;
        gap: 16px;
    }
    .banner-visual-panel,
    .banner-visual-secondary {
        border-radius: 22px;
    }
    .banner-visual-secondary {
        position: relative;
        width: 100%;
        right: auto;
        bottom: auto;
    }
    .banner-visual-panel img {
        min-height: 220px;
    }
    .portfolio-mosaic {
        min-height: auto;
        display: grid;
        gap: 16px;
    }
    .artist-card-topline,
    .gallery-card-meta {
        display: grid;
    }
    .whatsapp-float { left: 14px; right: 14px; bottom: 14px; justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
    .section {
        padding: 64px 0;
    }
    .brand-kicker {
        display: none;
    }
    .brand-title {
        font-size: 0.96rem;
    }
    .hero h1 {
        font-size: clamp(2.2rem, 13vw, 3.4rem);
        max-width: none;
    }
    .hero-copy {
        font-size: 0.98rem;
    }
    .hero-highlights {
        grid-template-columns: 1fr;
    }
    .hero-panel,
    .hero-floating-badge,
    .floating-badge {
        padding-inline: 16px;
    }
    .banner-visual-panel img {
        min-height: 200px;
    }
    .pulse-track span {
        padding-inline: 18px;
    }
}


.hero-ambient {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    pointer-events: none;
    opacity: 0.45;
    animation: ambientFloat 9s ease-in-out infinite;
}
.hero-ambient-one {
    width: 320px;
    height: 320px;
    top: 10%;
    right: 8%;
    background: radial-gradient(circle, rgba(201,169,111,0.3), transparent 68%);
}
.hero-ambient-two {
    width: 260px;
    height: 260px;
    left: -3%;
    bottom: 8%;
    background: radial-gradient(circle, rgba(141,47,64,0.24), transparent 70%);
    animation-delay: -3s;
}
.hero-slide.is-active .hero-copy-wrap > * {
    animation: revealLift 0.8s var(--ease-luxury) both;
}
.hero-slide.is-active .hero-copy-wrap > *:nth-child(2) { animation-delay: 0.08s; }
.hero-slide.is-active .hero-copy-wrap > *:nth-child(3) { animation-delay: 0.14s; }
.hero-slide.is-active .hero-copy-wrap > *:nth-child(4) { animation-delay: 0.2s; }
.hero-slide.is-active .hero-copy-wrap > *:nth-child(5) { animation-delay: 0.26s; }
.hero-slide.is-active .hero-copy-wrap > *:nth-child(6) { animation-delay: 0.32s; }
.hero-panel-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-status-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-strong);
    font-size: 0.88rem;
}
.hero-status-dot::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #35d07f;
    box-shadow: 0 0 0 8px rgba(53,208,127,0.14);
}
.hero-image-stack {
    position: relative;
    isolation: isolate;
}
.hero-image-stack::before {
    content: '';
    position: absolute;
    inset: auto 6% -8% 6%;
    height: 24%;
    background: radial-gradient(circle, rgba(201,169,111,0.24), transparent 72%);
    filter: blur(24px);
    z-index: -1;
}
.hero-floating-badge,
.floating-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    max-width: 220px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(10,10,12,0.78);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.34);
}
.hero-floating-badge strong,
.floating-badge strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}
.hero-scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    color: var(--muted);
}
.hero-scroll-cue span {
    width: 30px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
    position: relative;
}
.hero-scroll-cue span::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 10px;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    border-radius: 999px;
    background: var(--gold);
    animation: scrollCue 1.8s ease-in-out infinite;
}
.experience-section {
    overflow: clip;
}
.experience-grid,
.experience-metrics {
    display: grid;
    gap: 24px;
}
.experience-collage {
    position: relative;
    min-height: 560px;
}
.experience-shot {
    position: absolute;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    box-shadow: var(--shadow);
}
.experience-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.experience-shot-primary {
    inset: 0 14% 14% 0;
}
.experience-shot-secondary {
    width: 42%;
    height: 42%;
    right: 0;
    top: 7%;
}
.experience-shot-tertiary {
    width: 36%;
    height: 36%;
    right: 4%;
    bottom: 0;
}
.floating-badge {
    left: 8%;
    right: auto;
    bottom: 6%;
}
.experience-copy {
    align-self: center;
}
.experience-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 10px 0 6px;
}
.experience-metrics article {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
}
.experience-metrics strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
}
.media-hover {
    transition: transform 0.75s var(--ease-luxury), filter 0.5s ease;
    will-change: transform;
}
.artist-card,
.gallery-card,
.info-card,
.testimonial-card,
.blog-card,
.site-form,
.cta-inner {
    transition: transform 0.35s var(--ease-luxury), border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.artist-card:hover,
.gallery-card:hover,
.info-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.cta-inner:hover {
    transform: translateY(-6px);
    border-color: rgba(201,169,111,0.22);
    box-shadow: 0 38px 80px rgba(0,0,0,0.42);
}
.artist-card:hover .media-hover,
.gallery-card:hover .media-hover,
.hero-panel:hover .media-hover,
.experience-shot:hover .media-hover,
.blog-card:hover img {
    transform: scale(1.06);
    filter: saturate(1.05) contrast(1.03);
}
.gallery-card,
.artist-card,
.experience-shot,
.hero-panel {
    transform: perspective(1200px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}
.showcase-band {
    padding-top: 14px;
}
[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}
[data-reveal="left"] { transform: translate3d(-36px, 0, 0); }
[data-reveal="right"] { transform: translate3d(36px, 0, 0); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}
@keyframes revealLift {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes ambientFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -16px, 0) scale(1.06); }
}
@keyframes scrollCue {
    0% { opacity: 0; transform: translateY(0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translateY(18px); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    [data-reveal] { opacity: 1 !important; transform: none !important; }
    .pulse-track { animation: none; }
}


.form-note-security {
    color: var(--muted-strong);
    font-size: 0.9rem;
}

.page-banner-rich {
    position: relative;
    overflow: clip;
    padding: 124px 0 72px;
    background:
        radial-gradient(circle at top right, rgba(201,169,111,0.14), transparent 26%),
        linear-gradient(180deg, rgba(201,169,111,0.08), transparent 64%);
}
.page-banner-rich::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7,7,8,0.82), rgba(7,7,8,0.38));
    pointer-events: none;
}
.banner-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 28px;
    align-items: center;
}
.banner-copy {
    max-width: 680px;
}
.banner-copy h1 {
    font-size: clamp(2.8rem, 7vw, 5.4rem);
    max-width: 10.5ch;
}
.banner-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 0;
}
.banner-visual-stack {
    position: relative;
    min-height: 420px;
}
.banner-visual-panel {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}
.banner-visual-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}
.banner-visual-secondary {
    position: absolute;
    width: 46%;
    right: 0;
    bottom: -30px;
}
.banner-badge {
    max-width: 250px;
}
.artist-spotlight-grid,
.gallery-focus-grid {
    display: grid;
    gap: 24px;
}
.compact-metrics {
    margin: 0;
}
.compact-metrics article {
    min-height: 100%;
}
.portfolio-mosaic {
    position: relative;
    min-height: 540px;
}
.artist-grid-enhanced,
.gallery-grid-enhanced {
    gap: 24px;
}
.artist-card-media,
.gallery-card-media {
    position: relative;
    overflow: hidden;
}
.artist-card-overlay,
.gallery-card-overlay {
    position: absolute;
    inset: auto 16px 16px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}
.artist-card-immersive img {
    aspect-ratio: 4 / 4.6;
}
.artist-card-topline,
.gallery-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: start;
}
.artist-card-actions {
    margin-top: 16px;
}
.stat-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(201,169,111,0.24);
    background: rgba(201,169,111,0.1);
    color: var(--gold-2);
    font-size: 0.82rem;
    font-weight: 700;
}
.gallery-card-immersive .gallery-card-body {
    display: grid;
    gap: 10px;
}
.category-summary-card {
    padding: 26px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.028));
    box-shadow: var(--shadow);
}
.gallery-card::before,
.artist-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,0.18));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.gallery-card:hover::before,
.artist-card:hover::before {
    opacity: 1;
}

@media (min-width: 760px) {
    .banner-grid,
    .artist-spotlight-grid,
    .gallery-focus-grid {
        grid-template-columns: 1.02fr 0.98fr;
    }
}

@media (max-width: 759px) {
    .page-banner-rich {
        padding-top: 116px;
    }
    .banner-visual-stack {
        min-height: auto;
        display: grid;
        gap: 16px;
    }
    .banner-visual-secondary {
        position: relative;
        width: 100%;
        right: auto;
        bottom: auto;
    }
    .portfolio-mosaic {
        min-height: auto;
        display: grid;
        gap: 16px;
    }
}


.production-showcase {
    padding-top: 12px;
}
.production-grid {
    display: grid;
    gap: 22px;
}
.production-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
    box-shadow: var(--shadow);
}
.production-card-media {
    position: relative;
    overflow: hidden;
}
.production-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}
.production-card-copy {
    padding: 22px;
    display: grid;
    gap: 10px;
}
.production-card-copy h3 {
    margin-bottom: 0;
}
.production-card-copy p {
    margin: 0;
    color: var(--muted);
}
@media (min-width: 900px) {
    .production-grid {
        grid-template-columns: 1.15fr 0.85fr 0.85fr;
        align-items: start;
    }
    .production-card:first-child {
        grid-row: span 2;
    }
    .production-card:first-child img {
        aspect-ratio: 4 / 4.45;
    }
}


.production-service-media img {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
    margin-bottom: 16px;
}


.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
}
.lang-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.lang-pill:hover,
.lang-pill.is-active {
    color: var(--text);
    background: rgba(209,163,92,0.16);
}
@media (min-width: 1100px) {
    .site-nav {
        display: flex;
        position: static;
        padding: 0;
        gap: 18px;
        flex-direction: row;
        align-items: center;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }
    .site-nav .lang-switcher {
        margin-left: 10px;
    }
}
@media (max-width: 1099px) {
    .site-nav .lang-switcher {
        order: -1;
        align-self: flex-start;
    }
}


/* Demo version helpers */
.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(209, 163, 92, 0.38);
    background: rgba(209, 163, 92, 0.12);
    color: #f3d6a4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.demo-badge-site {
    margin-right: 14px;
}
.demo-footnote {
    color: #f3d6a4;
}
@media (max-width: 980px) {
    .demo-badge-site {
        order: -1;
        margin: 0 0 10px;
    }
}
