/* ─────────────────────────────────────────────
   Sian Sharp — Global Stylesheet
   Palette: near-black bg · off-white text · muted gold accents
   ───────────────────────────────────────────── */

/* ── Accessibility / SEO ── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* ── Base ── */
html { scroll-behavior: smooth; }

html, body {
    min-height: 100%;
    background: #070B12;
    color: #E8E6E1;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body.home {
    background: #000;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

@keyframes pageFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

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

main, .social-footer {
    animation: pageFadeIn 0.4s ease both;
}

/* ── Slideshow (homepage) ── */
#slideshow {
    position: fixed;
    inset: 0;
    background: #000;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active { opacity: 1; }

/* ── Header strip (inner pages) ── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    min-height: 6.5rem;
    background: rgba(7, 11, 18, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(196, 168, 130, 0.09);
    z-index: 19;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2rem 3.5vw 1.5rem;
}

/* ── Site title ── */
#site-title {
    position: fixed;
    top: 2rem;
    left: 3.5vw;
    z-index: 20;
    color: #E8E6E1;
    text-decoration: none;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 200;
    font-size: clamp(2.18rem, 2.55vw, 2.55rem);
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

header #site-title { position: static; }

body.home #site-title {
    text-shadow: 0 1px 24px rgba(0, 0, 0, 0.6);
}

/* ── Desktop nav — inner pages ── */
nav {
    position: fixed;
    top: 2rem;
    right: 10vw;
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 20;
}

header nav {
    position: static;
    margin-top: 0.7rem;
}

nav a {
    position: relative;
    color: rgba(232, 230, 225, 0.6);
    text-decoration: none;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 1.15rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

nav a:hover,
nav a.active { color: #C4A882; }

nav a:hover::after,
nav a.active::after { transform: scaleX(1); }

/* ── Desktop nav — homepage (vertical) ── */
#main-nav {
    position: fixed;
    right: 3.5vw;
    top: 28%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
    z-index: 10;
}

#main-nav a {
    color: rgba(232, 230, 225, 0.82);
    text-decoration: none;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 1.27rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
    transition: color 0.25s ease;
}

#main-nav a:hover { color: #C4A882; }

/* ── Mobile hamburger ── */
#hamburger {
    display: none;
    position: fixed;
    top: 1.4rem;
    right: 6vw;
    z-index: 25;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 7px;
}

body.home #hamburger { top: 1.5rem; right: 1.5rem; }

#hamburger span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: #E8E6E1;
}

body.home #hamburger span {
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* ── Mobile nav overlay ── */
#mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 21, 32, 0.98);
    z-index: 30;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

body.home #mobile-nav { background: rgba(13, 21, 32, 0.97); }

#mobile-nav.open { display: flex; }

#mobile-nav a {
    color: rgba(232, 230, 225, 0.85);
    text-decoration: none;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

#mobile-nav a:hover { color: #C4A882; }
body.home #mobile-nav a { font-size: 1.5rem; }

#mobile-nav-close {
    position: absolute;
    top: 1.4rem;
    right: 6vw;
    background: none;
    border: none;
    color: rgba(232, 230, 225, 0.55);
    font-size: 1.44rem;
    cursor: pointer;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
}

body.home #mobile-nav-close {
    top: 1.75rem;
    right: 1.9rem;
    font-size: 1.2rem;
    letter-spacing: 0;
}

/* ── Slideshow next arrow (homepage) ── */
#slide-next {
    position: fixed;
    right: 1.8rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(232, 230, 225, 0.5);
    padding: 1rem;
    transition: color 0.3s ease;
    line-height: 0;
}

#slide-next:hover { color: rgba(196, 168, 130, 0.9); }
#slide-next svg { width: 32px; height: 32px; }

@media (max-width: 768px) { #slide-next { display: none; } }

/* ── Main content ── */
main { padding: 9rem 10vw 6rem; }
body.about main { padding: 8.5rem 10vw 6rem; }
body.schedule main { padding: 8rem 10vw 6rem; }
body.media main { padding: 8rem 6vw 4rem; }

/* ── Inner page section cards ── */
body:not(.home) section {
    background: linear-gradient(
        160deg,
        rgba(20, 30, 46, 0.85) 0%,
        rgba(13, 21, 32, 0.78) 100%
    );
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(196, 168, 130, 0.1);
    border-top-color: rgba(196, 168, 130, 0.18);
    border-radius: 10px;
    padding: 4rem 5vw;
    margin-bottom: 2rem;
    box-shadow:
        0 2px 0 rgba(196, 168, 130, 0.06) inset,
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.3);
    animation: cardFadeIn 0.55s ease 0.3s both;
}

/* ── Section heading ── */
.section-heading {
    position: relative;
    font-weight: 300;
    font-size: clamp(1.2rem, 2.16vw, 1.8rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C4A882;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.8rem;
    height: 2px;
    background: rgba(196, 168, 130, 0.4);
}

body.schedule section + section {
    margin-top: 4rem;
}

body.schedule section,
body.about section {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    animation: none;
}

body.schedule .section-heading,
body.about .section-heading,
body.media .section-heading,
body.contact .section-heading {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    animation: cardFadeIn 0.55s ease 0.3s both;
}

body.schedule .section-heading::after,
body.about .section-heading::after,
body.media .section-heading::after,
body.contact .section-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ─────────────────────────────────────────────
   About page
   ───────────────────────────────────────────── */

.about-quote {
    border-left: 2px solid rgba(196, 168, 130, 0.45);
    padding: 0.4rem 0 0.4rem 2rem;
    margin: 0 0 3.5rem;
    animation: cardFadeIn 0.55s ease 0.5s both;
}

.about-quote p {
    font-size: clamp(1.28rem, 1.9vw, 1.78rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(232, 230, 225, 0.88);
    line-height: 1.5;
    margin-bottom: 0.7rem;
}

.about-quote cite {
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(196, 168, 130, 0.65);
}

body.about .bio-section { margin-bottom: 8rem; }

.repertoire-section { margin-bottom: 2rem; }

.repertoire-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.repertoire-label {
    font-weight: 300;
    font-size: 0.92rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(196, 168, 130, 0.7);
    margin-bottom: 1rem;
}

.repertoire-list {
    font-weight: 300;
    font-size: clamp(1.02rem, 1.2vw, 1.15rem);
    line-height: 2.1;
    color: rgba(232, 230, 225, 0.68);
}

.repertoire-list em {
    font-style: italic;
    color: rgba(232, 230, 225, 0.55);
}

.bio-layout {
    display: flex;
    gap: 6vw;
    align-items: flex-start;
}

.bio-image {
    flex: 0 0 36%;
    position: sticky;
    top: 6.5rem;
}

.bio-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bio-text { padding-top: 0.25rem; }

.bio-text h1 {
    font-weight: 400;
    font-size: clamp(2.16rem, 3.6vw, 3.12rem);
    letter-spacing: 0.05em;
    color: #E8E6E1;
    margin-bottom: 0.4rem;
}

.bio-text .subtitle {
    font-weight: 300;
    font-size: clamp(1.02rem, 1.32vw, 1.2rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C4A882;
    margin-bottom: 2.2rem;
}

.bio-text p {
    font-weight: 300;
    font-size: clamp(1.16rem, 1.38vw, 1.28rem);
    line-height: 1.85;
    color: #E8E6E1;
    margin-bottom: 1.4rem;
}

.bio-text p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────
   Schedule page
   ───────────────────────────────────────────── */

.performance {
    position: relative;
    display: grid;
    grid-template-columns: 5.5rem 1fr auto;
    gap: 0 4vw;
    padding: 2.6rem 4vw;
    align-items: center;
    background: linear-gradient(
        160deg,
        rgba(20, 30, 46, 0.85) 0%,
        rgba(13, 21, 32, 0.78) 100%
    );
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(196, 168, 130, 0.1);
    border-top-color: rgba(196, 168, 130, 0.18);
    border-radius: 10px;
    margin-bottom: 1.2rem;
    box-shadow:
        0 2px 0 rgba(196, 168, 130, 0.06) inset,
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.3);
    animation: cardFadeIn 0.55s ease 0.3s both;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.performance:hover {
    border-color: rgba(196, 168, 130, 0.22);
    border-top-color: rgba(196, 168, 130, 0.38);
    box-shadow:
        0 2px 0 rgba(196, 168, 130, 0.1) inset,
        0 28px 70px rgba(0, 0, 0, 0.55),
        0 6px 20px rgba(0, 0, 0, 0.35);
}

a.performance { cursor: pointer; }

a.performance::after {
    content: 'Click for More Info';
    position: absolute;
    bottom: 1.2rem;
    right: 4vw;
    font-size: 0.62rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(196, 168, 130, 0);
    white-space: nowrap;
    pointer-events: none;
    transition: color 0.35s ease;
}

a.performance:hover::after {
    color: rgba(196, 168, 130, 0.55);
}

.perf-year {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(232, 230, 225, 0.32);
    text-align: right;
    letter-spacing: 0.12em;
}

.perf-role {
    font-size: clamp(1.6rem, 2vw, 2.1rem);
    font-weight: 300;
    color: #E8E6E1;
    line-height: 1.1;
    margin-bottom: 0.45rem;
    letter-spacing: 0.01em;
}

.perf-work {
    font-size: clamp(1.05rem, 1.25vw, 1.22rem);
    font-weight: 300;
    font-style: italic;
    color: #C4A882;
    letter-spacing: 0.03em;
}

.perf-org { text-align: right; }

.perf-company {
    font-size: clamp(1.05rem, 1.2vw, 1.18rem);
    font-weight: 300;
    color: rgba(232, 230, 225, 0.65);
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
}

.perf-venue {
    font-size: clamp(0.95rem, 1.08vw, 1.06rem);
    font-weight: 300;
    color: rgba(232, 230, 225, 0.38);
    letter-spacing: 0.02em;
}


/* ─────────────────────────────────────────────
   Media page
   ───────────────────────────────────────────── */

body.media section {
    margin-bottom: 2rem;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

body.media .gallery-section {
    padding-left: 0;
    padding-right: 0;
}


/* Mosaic grid */
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 21vw;
    gap: 0.5rem;
    grid-auto-flow: dense;
}

.mosaic-item {
    overflow: hidden;
    position: relative;
    background: rgba(7, 11, 18, 0.6);
    min-height: 0;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.mosaic-item:hover img {
    transform: scale(1.04);
    opacity: 0.82;
}

.mosaic-item.large { grid-column: span 2; grid-row: span 2; }
.mosaic-item.wide  { grid-column: span 2; }
.mosaic-item.tall  { grid-row: span 2; }

.mosaic-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.2rem 1.1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.mosaic-item:hover .mosaic-caption {
    opacity: 1;
    transform: translateY(0);
}

.mosaic-role {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(0.88rem, 1.05vw, 1.05rem);
    color: rgba(232, 230, 225, 0.92);
    line-height: 1.2;
}

.mosaic-show {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(0.7rem, 0.82vw, 0.82rem);
    letter-spacing: 0.1em;
    color: #C4A882;
}

.mosaic-item.review-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.8rem;
    background: linear-gradient(135deg, rgba(18, 28, 44, 0.95) 0%, rgba(10, 16, 26, 0.95) 100%);
    border: 1px solid rgba(196, 168, 130, 0.1);
    border-top: 1px solid rgba(196, 168, 130, 0.24);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    z-index: 1;
}

.mosaic-item.review-tile:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(196, 168, 130, 0.3);
    border-top-color: rgba(196, 168, 130, 0.5);
    z-index: 2;
}

.mosaic-item.review-tile blockquote {
    border-left: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mosaic-item.review-tile blockquote p {
    font-size: clamp(1rem, 1.25vw, 1.32rem);
    font-weight: 350;
    line-height: 1.72;
    color: rgba(232, 230, 225, 0.84);
    font-style: normal;
    margin-bottom: 1rem;
}

.mosaic-item.review-tile blockquote footer {
    font-size: 0.82rem;
    font-weight: 350;
    letter-spacing: 0.08em;
    color: rgba(196, 168, 130, 0.72);
    font-style: normal;
}

.mosaic-item.review-tile .review-credit {
    margin-bottom: 0.85rem;
}
.mosaic-item.review-tile .review-role-name {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(232, 230, 225, 0.88);
    font-weight: 500;
    font-style: normal;
}
.mosaic-item.review-tile .review-show-name {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(196, 168, 130, 0.6);
    font-weight: 300;
    font-style: normal;
    margin-top: 0.18rem;
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 20, 33, 0.97);
    z-index: 50;
    align-items: center;
    justify-content: center;
}

#lightbox.open { display: flex; }

#lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
}

#lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #C4A882;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
}

#lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: rgba(232, 230, 225, 0.5);
    font-size: 1.68rem;
    cursor: pointer;
    font-weight: 300;
}

#lightbox-prev,
#lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(232, 230, 225, 0.4);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: color 0.2s ease;
    line-height: 1;
}

#lightbox-prev:hover,
#lightbox-next:hover { color: #C4A882; }

#lightbox-prev { left: 1.5rem; }
#lightbox-next { right: 1.5rem; }

.recordings-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.recording-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(196, 168, 130, 0.1);
    transition: background 0.25s ease;
}

.recording-card:first-child {
    border-top: 1px solid rgba(196, 168, 130, 0.1);
}

.recording-info {
    display: flex;
    align-items: baseline;
    gap: 1.8rem;
}

.recording-title {
    font-size: clamp(1rem, 1.4vw, 1.22rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    color: #E8E6E1;
}

.recording-year {
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    color: rgba(196, 168, 130, 0.55);
}

.recording-links {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.recording-link {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(196, 168, 130, 0.7);
    text-decoration: none;
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(196, 168, 130, 0.25);
    border-radius: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.recording-link:hover {
    color: #C4A882;
    border-color: rgba(196, 168, 130, 0.55);
}

.recording-card--video {
    justify-content: center;
    border-top: none;
    padding-bottom: 2rem;
}

.recording-card--video .video-embed {
    width: 55%;
    border-radius: 4px;
    overflow: hidden;
}

.recording-card--embed {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
}

.recording-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.spotify-embed {
    border-radius: 6px;
    display: block;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: rgba(232, 230, 225, 0.03);
    border: 1px dashed rgba(196, 168, 130, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(196, 168, 130, 0.25);
    font-size: 0.84rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.video-embed {
    aspect-ratio: 16/9;
    background: #000;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ─────────────────────────────────────────────
   Contact page
   ───────────────────────────────────────────── */

.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0;
    align-items: start;
}

.contact-layout > div:first-child {
    padding-right: 6vw;
    border-right: 1px solid rgba(196, 168, 130, 0.12);
}

.contact-layout > div:last-child {
    padding-left: 6vw;
}

.agent-block {
    margin-bottom: 2.5rem;
    text-align: center;
}

.agent-block h3 {
    font-weight: 200;
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
    color: #E8E6E1;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
}

.agent-block .agent-title {
    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(196, 168, 130, 0.6);
    margin-bottom: 1.4rem;
}

.agent-block .agent-company {
    font-weight: 300;
    font-size: clamp(1.1rem, 1.4vw, 1.28rem);
    font-style: normal;
    color: rgba(232, 230, 225, 0.55);
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
}

.agent-block .agent-company a,
.agent-block .agent-company a:hover {
    text-decoration: none;
    border-bottom: none;
    transition: color 0.2s;
}

.agent-block .agent-company a { color: rgba(232, 230, 225, 0.55); }
.agent-block .agent-company a:hover { color: #C4A882; }

.agent-block .agent-email {
    font-weight: 300;
    font-size: clamp(0.82rem, 1vw, 0.94rem);
    letter-spacing: 0.12em;
}

.agent-block a {
    color: rgba(196, 168, 130, 0.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(196, 168, 130, 0.2);
    transition: color 0.2s, border-color 0.2s;
}

.agent-block a:hover {
    color: #C4A882;
    border-color: #C4A882;
}

label {
    display: none;
}

input, textarea {
    width: 100%;
    background: rgba(232, 230, 225, 0.04);
    border: 1px solid rgba(196, 168, 130, 0.18);
    border-radius: 0;
    color: #E8E6E1;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

input:focus, textarea:focus {
    border-color: rgba(196, 168, 130, 0.5);
}

textarea {
    resize: vertical;
    min-height: 140px;
}

input::placeholder, textarea::placeholder {
    color: rgba(232, 230, 225, 0.22);
}

.form-group { margin-bottom: 1.5rem; }

.submit-btn {
    display: block;
    margin: 0 auto;
    background: none;
    border: 1px solid rgba(196, 168, 130, 0.35);
    color: rgba(232, 230, 225, 0.7);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.94rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 0.85rem 2.5rem;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.submit-btn:hover {
    background: rgba(196, 168, 130, 0.08);
    color: #E8E6E1;
    border-color: rgba(196, 168, 130, 0.65);
}

.form-success {
    display: none;
    font-weight: 300;
    font-size: 1.08rem;
    color: rgba(196, 168, 130, 0.75);
    margin-top: 1rem;
}

/* ─────────────────────────────────────────────
   Vocal Tuition page
   ───────────────────────────────────────────── */

.tuition-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 5.5rem);
    padding-top: 5.5rem;
}

.coming-soon {
    font-weight: 200;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(196, 168, 130, 0.4);
}

/* ─────────────────────────────────────────────
   Social footer
   ───────────────────────────────────────────── */

.social-footer {
    padding: 3rem 10vw 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    border-top: 1px solid rgba(196, 168, 130, 0.12);
}

.social-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.social-link {
    display: flex;
    color: rgba(196, 168, 130, 0.45);
    text-decoration: none;
    transition: color 0.25s ease;
}

.social-link:hover { color: #C4A882; }
.social-link svg { width: 24px; height: 24px; }

.tuition-btn {
    display: inline-block;
    background: none;
    border: 1px solid rgba(196, 168, 130, 0.3);
    color: rgba(232, 230, 225, 0.65);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 0.84rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.8rem 2.4rem;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.tuition-btn:hover {
    background: rgba(196, 168, 130, 0.08);
    color: #E8E6E1;
    border-color: rgba(196, 168, 130, 0.65);
}

.footer-credit {
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(196, 168, 130, 0.3);
}
.footer-credit a {
    color: inherit;
    text-decoration: none;
}
.footer-credit a:hover {
    text-decoration: underline;
}

/* ─────────────────────────────────────────────
   Mobile breakpoints
   ───────────────────────────────────────────── */

@media (max-width: 768px) {
    body.home { height: 100dvh; }

    header { min-height: 5rem; padding: 1.5rem 1.5rem 1rem; }

    #site-title {
        top: 1.5rem;
        left: 1.5rem;
        font-size: clamp(1.7rem, 4.4vw, 1.9rem);
        letter-spacing: 0.16em;
    }

    nav { display: none; }
    #main-nav { display: none; }
    #hamburger { display: flex; top: 1.5rem; right: 1.5rem; }

    main { padding: 7rem 4vw 4rem; }
    body.about main  { padding: 6.5rem 4vw 4rem; }
    body.media main  { padding: 7rem 3vw 4rem; }

    body:not(.home) section {
        padding: 2.5rem 4vw;
        border-radius: 8px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    }

    /* About */
    .bio-layout {
        flex-direction: column;
        gap: 2.5rem;
    }

    .bio-image {
        flex: none;
        width: 100%;
        position: static;
    }

    .bio-text h1 { font-size: 2.4rem; }

    .about-quote {
        padding-left: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .about-quote p { font-size: 1.18rem; }

    body.about .bio-section { margin-bottom: 3rem; }

    /* Reset section wrapper styles for schedule, about + media (cascade override fix) */
    body.schedule section,
    body.about section,
    body.media section {
        padding: 0;
        border-radius: 0;
        box-shadow: none;
    }

    /* Section headings — higher on mobile */
    body.schedule .section-heading,
    body.media .section-heading,
    body.contact .section-heading,
    body.about .section-heading {
        margin-top: 0.75rem;
        margin-bottom: 1.5rem;
    }

    /* Schedule — cards nearly full width */
    body.schedule main { padding: 7rem 2vw 4rem; }

    .performance {
        grid-template-columns: 3rem 1fr;
        gap: 0 3vw;
        padding: 1.8rem 3vw;
        border-radius: 8px;
    }

    .perf-org {
        grid-column: 2;
        text-align: left;
        margin-top: 0.7rem;
    }

    .perf-year { align-self: start; padding-top: 0.4rem; }

    /* Media */
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 44vw;
        gap: 0.4rem;
    }

    .mosaic-item.large { grid-column: span 2; grid-row: span 2; }
    .mosaic-item.wide  { grid-column: span 2; }
    .mosaic-item.tall  { grid-row: span 2; }
    .mosaic-item.review-tile { padding: 1.4rem 1.2rem; }
    .mosaic-item.review-tile blockquote p { font-size: 0.92rem; }
    .mosaic-item.review-tile blockquote footer { font-size: 0.72rem; }

    /* Mobile mosaic order (desktop HTML positions → mobile visual order) */
    .mosaic-grid .mosaic-item:nth-child(1)  { order: 1; }
    .mosaic-grid .mosaic-item:nth-child(2)  { order: 2; }
    .mosaic-grid .mosaic-item:nth-child(3)  { order: 3; }
    .mosaic-grid .mosaic-item:nth-child(4)  { order: 5; }
    .mosaic-grid .mosaic-item:nth-child(5)  { order: 6;  grid-column: span 2; grid-row: span 1; } /* Dodo: 1×1→wide */
    .mosaic-grid .mosaic-item:nth-child(6)  { order: 7; }
    .mosaic-grid .mosaic-item:nth-child(7)  { order: 4; }
    .mosaic-grid .mosaic-item:nth-child(8)  { order: 8; }
    .mosaic-grid .mosaic-item:nth-child(9)  { order: 9; }
    .mosaic-grid .mosaic-item:nth-child(10) { order: 11; }
    .mosaic-grid .mosaic-item:nth-child(11) { order: 12; }
    .mosaic-grid .mosaic-item:nth-child(12) { order: 13; }
    .mosaic-grid .mosaic-item:nth-child(13) { order: 10; }
    .mosaic-grid .mosaic-item:nth-child(14) { order: 14; }
    .mosaic-grid .mosaic-item:nth-child(15) { order: 15; grid-column: span 1; grid-row: span 1; } /* Kitchen Boy: large→1×1 */
    .mosaic-grid .mosaic-item:nth-child(16) { order: 16; }
    .mosaic-grid .mosaic-item:nth-child(17) { order: 17; }
    .mosaic-grid .mosaic-item:nth-child(18) { order: 18; }

    /* YouTube embed full width on mobile */
    .recording-card--video .video-embed { width: 100%; }

    #lightbox-caption {
        white-space: normal;
        text-align: center;
        width: 90%;
        font-size: 0.78rem;
        letter-spacing: 0.12em;
        bottom: 1.2rem;
    }

    /* Contact */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-layout > div:first-child {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(196, 168, 130, 0.12);
        padding-bottom: 3rem;
        margin-bottom: 3rem;
    }

    .contact-layout > div:last-child {
        padding-left: 0;
    }
}
