/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
    --rose:        #d4849e;
    --rose-light:  #eab0c0;
    --rose-dark:   #a05570;
    --dark:        #0c090b;
    --dark-mid:    #120d10;
    --dark-card:   #1c1219;
    --dark-hover:  #241620;
    --dark-border: rgba(212, 132, 158, 0.18);
    --text:        #f5eff2;
    --text-muted:  #907f86;
    --font-head:   'Cormorant Garamond', serif;
    --font-body:   'Raleway', sans-serif;
    --transition:  0.3s ease;
    --radius:      8px;
    --radius-lg:   12px;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.75;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--text); }

a { color: var(--rose); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose-light); }

img { display: block; max-width: 100%; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.py-section { padding-top: 6rem; padding-bottom: 6rem; }
.section-dark  { background-color: var(--dark); }
.section-mid   { background-color: var(--dark-mid); }

.section-dark,
.section-mid {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.section-dark::before,
.section-dark::after,
.section-mid::before,
.section-mid::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
}
@media (max-width: 767px) {
    .section-dark::before,
    .section-dark::after,
    .section-mid::before,
    .section-mid::after {
        width: 100px;
        height: 100px;
    }
}
/* Ornament — top-left corner */
.section-dark::before,
.section-mid::before {
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23d4849e' stroke-linecap='round'%3E%3Cpath stroke-opacity='0.5' stroke-width='1.5' d='M150,6 L12,6 Q6,6 6,12 L6,150'/%3E%3Cpath stroke-opacity='0.2' stroke-width='0.75' d='M150,11 L15,11 Q11,11 11,15 L11,150'/%3E%3Cpolygon fill='%23d4849e' fill-opacity='0.4' stroke='none' points='6,1 11,6 6,11 1,6'/%3E%3Cline stroke-opacity='0.3' stroke-width='1' x1='45' y1='6' x2='45' y2='11'/%3E%3Cline stroke-opacity='0.3' stroke-width='1' x1='85' y1='6' x2='85' y2='11'/%3E%3Cline stroke-opacity='0.3' stroke-width='1' x1='125' y1='6' x2='125' y2='11'/%3E%3Cline stroke-opacity='0.3' stroke-width='1' x1='6' y1='45' x2='11' y2='45'/%3E%3Cline stroke-opacity='0.3' stroke-width='1' x1='6' y1='85' x2='11' y2='85'/%3E%3Cline stroke-opacity='0.3' stroke-width='1' x1='6' y1='125' x2='11' y2='125'/%3E%3C/g%3E%3C/svg%3E");
}
/* Ornament — bottom-right corner */
.section-dark::after,
.section-mid::after {
    bottom: 0;
    right: 0;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23d4849e' stroke-linecap='round'%3E%3Cpath stroke-opacity='0.5' stroke-width='1.5' d='M10,154 L148,154 Q154,154 154,148 L154,10'/%3E%3Cpath stroke-opacity='0.2' stroke-width='0.75' d='M10,149 L145,149 Q149,149 149,145 L149,10'/%3E%3Cpolygon fill='%23d4849e' fill-opacity='0.4' stroke='none' points='154,159 159,154 154,149 149,154'/%3E%3Cline stroke-opacity='0.3' stroke-width='1' x1='35' y1='149' x2='35' y2='154'/%3E%3Cline stroke-opacity='0.3' stroke-width='1' x1='75' y1='149' x2='75' y2='154'/%3E%3Cline stroke-opacity='0.3' stroke-width='1' x1='115' y1='149' x2='115' y2='154'/%3E%3Cline stroke-opacity='0.3' stroke-width='1' x1='149' y1='35' x2='154' y2='35'/%3E%3Cline stroke-opacity='0.3' stroke-width='1' x1='149' y1='75' x2='154' y2='75'/%3E%3Cline stroke-opacity='0.3' stroke-width='1' x1='149' y1='115' x2='154' y2='115'/%3E%3C/g%3E%3C/svg%3E");
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-pre {
    font-size: 0.72rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.4rem;
    font-family: var(--font-body);
}
.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    font-style: italic;
}
.section-desc {
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    font-size: 1rem;
}
.rose-divider {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rose), transparent);
}
/* alias so HTML gold-divider class still works */
.gold-divider {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rose), transparent);
}
.text-muted-gold {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
    background: linear-gradient(135deg, var(--rose-dark), var(--rose));
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 2.2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all var(--transition);
}
.btn-gold:hover, .btn-gold:focus {
    background: linear-gradient(135deg, var(--rose), var(--rose-light));
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 132, 158, 0.4);
}
.btn-outline-gold {
    background: transparent;
    color: var(--rose);
    border: 1px solid var(--rose);
    border-radius: var(--radius);
    padding: 0.75rem 2.2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all var(--transition);
}
.btn-outline-gold:hover, .btn-outline-gold:focus {
    background: var(--rose);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 132, 158, 0.25);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
    padding: 1.4rem 0;
    background: transparent;
    transition: padding var(--transition), background var(--transition), border-color var(--transition);
    border-bottom: 1px solid transparent;
}
#mainNav.scrolled {
    padding: 0.7rem 0;
    background: rgba(12, 9, 11, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--dark-border);
}

.brand-name {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-style: italic;
    font-weight: 600;
    color: var(--text);
}
.brand-sub {
    font-family: var(--font-body);
    font-size: 0.58rem;
    letter-spacing: 0.4em;
    color: var(--rose);
    font-weight: 600;
}

.navbar-toggler {
    border: 1px solid var(--rose);
    padding: 0.35rem 0.6rem;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4849e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler:focus { box-shadow: 0 0 0 2px rgba(212, 132, 158, 0.25); }

.navbar-nav .nav-link {
    color: var(--text);
    font-size: 0.73rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0.5rem 0.9rem;
    transition: color var(--transition);
}
.navbar-nav .nav-link:hover { color: var(--rose); }

.navbar-nav .btn-book {
    color: var(--rose) !important;
    border: 1px solid var(--rose);
    padding: 0.4rem 1.2rem;
    transition: all var(--transition);
}
.navbar-nav .btn-book:hover {
    background: var(--rose);
    color: #fff !important;
}

@media (max-width: 991px) {
    .navbar-collapse.collapsing,
    .navbar-collapse.show {
        background: rgba(12, 9, 11, 0.97);
        padding: 1rem 0.5rem 1.5rem;
        margin-top: 0.5rem;
        border-top: 1px solid var(--dark-border);
    }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background-color: #0a0508;
    background-image: url('../images/hero-bg.jpg');
    background-image: image-set(url('../images/hero-bg.webp') type('image/webp'), url('../images/hero-bg.jpg') type('image/jpeg'));
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(12,4,9,0.75) 0%,
        rgba(12,4,9,0.42) 45%,
        rgba(12,4,9,0.85) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    max-width: 760px;
    margin: 0 auto;
}

.hero-pre {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--rose-light);
    margin-bottom: 0.8rem;
}
@keyframes shimmer {
    0%   { background-position: 100% center; }
    30%  { background-position: 0% center; }
    100% { background-position: 0% center; }
}
.hero-title {
    font-size: clamp(3.8rem, 12vw, 9rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    letter-spacing: -0.01em;
    padding-bottom: 0.28em;
    margin-bottom: -0.28em;
    background-image: linear-gradient(
        90deg,
        var(--text) 25%,
        rgba(255,255,255,0.9) 44%,
        var(--rose-light) 50%,
        rgba(255,255,255,0.9) 56%,
        var(--text) 75%
    );
    background-size: 400% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 7s ease-in-out infinite;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.78rem, 2vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.5em;
    color: var(--text-muted);
    margin: 0.4rem 0 1.4rem;
}
.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--rose);
    font-size: 1.1rem;
    opacity: 0.65;
    animation: bounceDown 2.2s infinite;
    transition: opacity var(--transition);
}
.hero-scroll:hover { color: var(--rose-light); opacity: 1; }

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(9px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-border);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 40px rgba(212, 132, 158, 0.1);
    transition: box-shadow var(--transition);
}
.about-photo-wrap:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 60px rgba(212, 132, 158, 0.28); }

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(15%);
    transition: filter var(--transition), transform 0.6s ease;
}
.about-photo-wrap:hover .about-photo {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.about-name {
    font-size: 2rem;
    font-style: italic;
    font-weight: 600;
}
.about-instrument {
    color: var(--rose);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    font-family: var(--font-body);
}
.about-bio { color: var(--text-muted); font-size: 0.96rem; line-height: 1.85; }

.about-badges { margin-top: 1rem; }
.badge-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    color: var(--text-muted);
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    cursor: default;
    transition: border-color var(--transition), color var(--transition);
}
.badge-item:hover { border-color: var(--rose); color: var(--rose); }

.feature-card,
.faq-card,
.package-summary {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
}
.feature-card {
    padding: 1.6rem;
    text-align: center;
    height: 100%;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover,
.faq-card:hover {
    border-color: var(--rose);
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.28);
}
.feature-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--rose);
    background: rgba(212, 132, 158, 0.12);
    font-size: 1.15rem;
}
.feature-card-title,
.faq-question {
    font-size: 1.15rem;
    font-family: var(--font-head);
    font-style: italic;
    margin-bottom: 0.85rem;
}
.feature-card-text,
.faq-answer {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
}

.faq-card {
    padding: 1.5rem;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.package-summary {
    padding: 1.4rem 1.6rem 1.3rem;
    margin-bottom: 1.5rem;
}
.package-label {
    color: var(--rose);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
    display: block;
}
.package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.package-card {
    padding: 0.7rem 0.9rem;
    border-left: 2px solid var(--dark-border);
    transition: border-color var(--transition);
}
.package-card:hover { border-left-color: var(--rose); }
.package-card--featured {
    border-left-color: var(--rose-dark);
    background: rgba(212, 132, 158, 0.05);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.package-card--featured:hover { border-left-color: var(--rose-light); }
.package-name {
    color: var(--text);
    font-size: 0.93rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}
.package-price {
    display: block;
    color: var(--rose);
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.35rem;
}
.package-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.55;
    margin: 0;
}
.package-addon {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--dark-border);
}
.addon-tag {
    flex-shrink: 0;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose-dark);
    background: rgba(160, 85, 112, 0.15);
    border: 1px solid rgba(160, 85, 112, 0.35);
    border-radius: 4px;
    padding: 0.2rem 0.45rem;
    margin-top: 0.15rem;
}

/* ============================================================
   VIDEO
   ============================================================ */
.video-facade {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-border);
    box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 48px rgba(212,132,158,0.08);
    background-color: #0a0508;
    background-image: url('../images/thumbnail.jpg');
    background-size: cover;
    background-position: center;
    transition: box-shadow 0.3s ease;
}
.video-facade::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12,4,9,0.55) 0%, rgba(12,4,9,0.72) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}
.video-facade:hover::before {
    background: linear-gradient(180deg, rgba(12,4,9,0.42) 0%, rgba(12,4,9,0.60) 100%);
}
.video-facade:hover {
    box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 72px rgba(212,132,158,0.2);
}
.video-facade-inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-align: center;
    padding: 1rem;
}
.facade-pre {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--rose);
    margin: 0;
}
.facade-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-style: italic;
    font-weight: 400;
    color: var(--text);
    margin: 0 0 0.6rem;
}
.video-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--rose);
    background: rgba(212, 132, 158, 0.12);
    color: var(--rose);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-left: 4px;
}
.video-facade:hover .video-play-btn {
    background: var(--rose);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(212,132,158,0.5);
}
.facade-hint {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0.3rem 0 0;
}

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-border);
    box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 48px rgba(212,132,158,0.08);
}
.video-wrap iframe,
.video-wrap video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
    background: #000;
}

/* ============================================================
   CUSTOM VIDEO CONTROLS
   ============================================================ */
.vc {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 10;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 2rem 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.video-wrap:hover .vc,
.vc.paused { opacity: 1; }

.vc-progress-area {
    padding: 0.6rem 1rem 0.3rem;
    cursor: pointer;
}
.vc-track {
    position: relative;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    transition: height 0.15s ease;
}
.vc-progress-area:hover .vc-track { height: 5px; }

.vc-fill {
    position: absolute;
    top: 0; left: 0; height: 100%;
    width: 0%;
    background: var(--rose);
    border-radius: 3px;
    pointer-events: none;
}
.vc-thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%) scale(0);
    width: 14px; height: 14px;
    background: var(--rose);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.15s ease;
    box-shadow: 0 0 6px rgba(212,132,158,0.6);
}
.vc-progress-area:hover .vc-thumb,
.vc-progress-area.dragging .vc-thumb { transform: translate(-50%, -50%) scale(1); }

.vc-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 0.75rem 0.6rem;
}
.vc-left, .vc-right { display: flex; align-items: center; gap: 0.25rem; }

.vc-btn {
    background: none;
    border: none;
    color: var(--text);
    font-size: 0.95rem;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: color var(--transition), background var(--transition);
    padding: 0;
}
.vc-btn:hover { color: var(--rose); background: rgba(255,255,255,0.08); }

.vc-time {
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    font-family: var(--font-body);
    letter-spacing: 0.05em;
    margin-left: 0.4rem;
    white-space: nowrap;
}

/* ============================================================
   REPERTOIRE
   ============================================================ */
.repertoire-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    height: 100%;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.repertoire-card:hover {
    border-color: var(--rose);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.repertoire-card-header {
    background: var(--dark-hover);
    color: var(--rose);
    padding: 1.1rem 1.6rem;
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-style: italic;
    border-bottom: 1px solid var(--dark-border);
}
.repertoire-list {
    list-style: none;
    padding: 1.4rem 1.6rem;
    margin: 0;
    columns: 2;
    column-gap: 1.5rem;
}
.repertoire-list li {
    color: var(--text-muted);
    font-size: 0.88rem;
    padding: 0.28rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    break-inside: avoid;
    transition: color 0.2s ease;
}
.repertoire-list li::before {
    content: '♩ ';
    color: var(--rose);
    opacity: 0.5;
    font-size: 0.72rem;
}
.repertoire-list li:hover { color: var(--text); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    height: 100%;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
    border-color: var(--rose);
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
#testimonialCarousel .testimonial-card {
    max-width: 760px;
    margin: 0 auto;
}
#testimonialCarousel .testimonial-card:hover { transform: none; }
#testimonialCarousel .carousel-item { padding: 0.75rem 0; }
#testimonialCarousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
}
#testimonialCarousel .carousel-indicators .active { background-color: var(--rose); }
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    filter: invert(100%) sepia(0%);
    background-color: rgba(212,132,158,0.2);
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
}
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next { width: 4rem; }
.quote-icon {
    color: var(--rose);
    opacity: 0.3;
    font-size: 1.8rem;
    margin-bottom: 0.9rem;
}
.testimonial-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.9;
    font-style: italic;
    font-family: var(--font-head);
    font-size: 1.15rem;
    margin-bottom: 1.4rem;
}
.stars {
    color: var(--rose);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.45rem;
}
.author-name { font-size: 1.05rem; font-family: var(--font-head); font-style: italic; margin-bottom: 0.2rem; }
.author-event {
    color: var(--rose);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--font-body);
    margin: 0;
}

/* ============================================================
   CONTACT / BOOKING FORM
   ============================================================ */
.booking-form .form-label {
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}
.booking-form .form-control,
.booking-form .form-select {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--text);
    border-radius: var(--radius);
    padding: 0.72rem 1rem;
    font-family: var(--font-body);
    font-size: 0.93rem;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.booking-form .form-control:focus,
.booking-form .form-select:focus {
    background: var(--dark-hover);
    border-color: var(--rose);
    color: var(--text);
    box-shadow: 0 0 0 3px rgba(212, 132, 158, 0.12);
}
.booking-form .form-control::placeholder { color: rgba(144,127,134,0.45); }
.booking-form .form-select option { background: var(--dark-card); color: var(--text); }

.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: rgba(212, 132, 158, 0.6);
    background-image: none;
}
.was-validated .form-control:invalid,
.was-validated .form-select:invalid { border-color: #c04040; }

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.6) sepia(0.8) saturate(1.5) hue-rotate(290deg);
    cursor: pointer;
}

.form-success-msg {
    background: rgba(212, 132, 158, 0.08);
    border: 1px solid rgba(212, 132, 158, 0.5);
    border-radius: var(--radius);
    color: var(--rose-light);
    padding: 1rem 1.4rem;
    font-size: 0.88rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.form-success-msg.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-info {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    height: 100%;
}
.contact-info-title {
    font-size: 1.55rem;
    font-style: italic;
    color: var(--rose);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--dark-border);
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
}
.contact-item > i {
    color: var(--rose);
    font-size: 0.95rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}
.contact-label {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.18rem;
}
.contact-link { color: var(--text); font-size: 0.93rem; }
.contact-link:hover { color: var(--rose); }
.contact-value { color: var(--text); font-size: 0.93rem; margin: 0; }
.pricing-highlight { color: var(--rose); font-family: var(--font-head); font-size: 1.2rem; font-style: italic; }
.contact-note { font-size: 0.75rem; color: var(--text-muted); margin: 0.25rem 0 0; line-height: 1.4; }

.social-links { display: flex; gap: 0.6rem; }
.social-link {
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all var(--transition);
}
.social-link:hover {
    border-color: var(--rose);
    color: var(--rose);
    background: rgba(212, 132, 158, 0.08);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    padding: 1.8rem 0;
}
.footer-brand .brand-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 600;
    color: var(--text);
}
.footer-copy { color: var(--text-muted); font-size: 0.78rem; }
.footer-links a {
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--rose); }

.sticky-booking-bar { display: none; }
@media (max-width: 991px) {
    .sticky-booking-bar {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        padding: calc(0.8rem + env(safe-area-inset-bottom, 0)) 1rem 1rem;
        background: rgba(12, 9, 11, 0.92);
        backdrop-filter: blur(14px);
    }
    .sticky-booking-bar .btn {
        width: 100%;
        padding: 0.95rem 1rem;
        font-size: 0.95rem;
    }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   SECTION WAVE DIVIDERS
   ============================================================ */
.wave-divider {
    display: block;
    line-height: 0;
    position: relative;
    z-index: 1;
    margin: -2px 0;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: 48px;
}

/* ============================================================
   TESTIMONIAL AUTHOR AVATAR
   ============================================================ */
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--rose);
    background: rgba(212, 132, 158, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.65rem;
    font-family: var(--font-head);
    font-style: italic;
    font-size: 0.82rem;
    color: var(--rose);
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

/* ============================================================
   FONT AWESOME FONT-DISPLAY OVERRIDE
   ============================================================ */
@font-face { font-family: "Font Awesome 6 Free"; font-display: swap; font-weight: 900; src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-solid-900.woff2") format("woff2"); }
@font-face { font-family: "Font Awesome 6 Brands"; font-display: swap; font-weight: 400; src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-brands-400.woff2") format("woff2"); }

/* ============================================================
   GRAIN TEXTURE OVERLAY
   ============================================================ */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 998;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
    background-size: 180px 180px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 767px) {
    .py-section { padding-top: 4rem; padding-bottom: 4rem; }
    .repertoire-list { columns: 1; }
    .footer-inner { text-align: center; }
    .hero-title {
        transform: translateZ(0);
        will-change: background-position;
        -webkit-text-fill-color: transparent;
    }
    .about-photo-wrap { max-width: 240px; }
    .hero-subtitle { letter-spacing: 0.06em; }
}

/* ============================================================
   GIGS SECTION
   ============================================================ */
.gig-card {
    display: flex;
    align-items: stretch;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-top: 3px solid var(--rose);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 0;
    height: 100%;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.gig-card:hover {
    border-color: rgba(212,132,158,0.5);
    border-top-color: var(--rose);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.gig-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    background: rgba(212,132,158,0.07);
    border-right: 1px solid var(--dark-border);
    padding: 1.25rem 0.65rem;
    text-align: center;
    flex-shrink: 0;
}
.gig-day-name {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    color: var(--rose-light);
    text-transform: uppercase;
    font-weight: 700;
}
.gig-day-num {
    font-family: var(--font-head);
    font-style: italic;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1;
    margin: 0.15rem 0;
}
.gig-month-year {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}
.gig-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    padding: 1.1rem 1.25rem;
    flex: 1;
    min-width: 0;
}
.gig-venue {
    font-family: var(--font-head);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text);
    margin: 0;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gig-time {
    font-size: 0.8rem;
    color: var(--rose-light);
    margin: 0;
}
.gig-details {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}
.gigs-empty {
    color: var(--text-muted);
    font-style: italic;
}
.act-badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 0.18rem 0.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.act-badge.duo { background: rgba(201,169,110,0.15); color: #c9a96e; }
.act-badge.joy { background: rgba(212,132,158,0.15); color: var(--rose); }
