:root {
    --bg: #090909;
    --bg-soft: #14110f;
    --panel: rgba(255, 248, 236, 0.06);
    --panel-strong: rgba(255, 248, 236, 0.1);
    --line: rgba(255, 244, 231, 0.12);
    --text: #f4ede3;
    --muted: #cdbfae;
    --accent: #d1a05b;
    --accent-soft: #f0d3a0;
    --shadow: rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #0a0908 0%, #060606 100%);
}

a,
button {
    transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.landing-page {
    overflow: hidden;
}

.landing-shell {
    position: relative;
    min-height: 100vh;
    isolation: isolate;
    --landing-shift-x: 0px;
    --landing-shift-y: 0px;
}

.landing-background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.56) 28%, rgba(0, 0, 0, 0.2) 56%, rgba(0, 0, 0, 0.06) 76%, rgba(0, 0, 0, 0.12) 100%),
        radial-gradient(circle at 88% 6%, rgba(255, 244, 217, 0.28), transparent 13%),
        radial-gradient(circle at 74% 24%, rgba(197, 160, 108, 0.18), transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 236, 204, 0.06), transparent 48%),
        url("assets/landing-background.png");
    background-position: center, 88% 6%, 74% 24%, center, 82% center;
    background-repeat: no-repeat;
    background-size: cover, auto, auto, auto, cover;
    z-index: -1;
    transform: translate3d(var(--landing-shift-x), var(--landing-shift-y), 0);
    transition: transform 500ms ease-out;
}

.landing-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 244, 217, 0.05), transparent 20%),
        radial-gradient(circle at 70% 65%, rgba(255, 223, 164, 0.04), transparent 18%),
        radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.03), transparent 8%);
    mix-blend-mode: screen;
    opacity: 0.42;
    pointer-events: none;
}

.landing-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(280px, 440px);
    justify-content: start;
    align-items: center;
    gap: 2rem;
    padding: 4rem clamp(1.4rem, 4vw, 4rem);
    position: relative;
}

.hero-copy {
    align-self: center;
    padding-bottom: 8vh;
    max-width: 25rem;
    position: relative;
    z-index: 1;
}

.hero-subtitle,
.hero-emotion {
    margin: 0;
}

.hero-subtitle {
    display: grid;
    gap: 0.26rem;
    margin-top: 0.9rem;
    color: rgba(244, 237, 227, 0.72);
    font-size: 0.88rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-subtitle-line {
    display: flex;
    align-items: center;
    gap: 0.58rem;
    white-space: nowrap;
}

.hero-subtitle-sep {
    display: inline-block;
    margin: 0;
}

.hero-emotion {
    margin-top: 1.05rem;
    max-width: 22rem;
    color: rgba(227, 215, 196, 0.86);
    font-size: 1.02rem;
    line-height: 1.6;
}

.eyebrow,
.section-tag {
    margin: 0 0 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.73rem;
    color: var(--accent-soft);
}

.marc-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: #fbf5eb;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.4rem, 9vw, 7.5rem);
    line-height: 0.9;
    text-align: left;
    cursor: pointer;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.marc-link:hover,
.marc-link:focus-visible {
    color: #f5d497;
    text-shadow:
        0 0 16px rgba(243, 203, 122, 0.42),
        0 0 34px rgba(222, 172, 72, 0.24),
        0 14px 34px rgba(0, 0, 0, 0.42);
    transform: translateY(-2px);
    outline: none;
}

.hero-note {
    margin: 1.35rem 0 0;
    max-width: 24rem;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    line-height: 1.08;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    letter-spacing: 0.01em;
    color: #dfd1bf;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.hero-note-accent {
    color: #e0b56a;
    font-weight: 600;
}

@media (min-width: 1025px) {
    .landing-hero {
        align-items: start;
        align-content: start;
        padding-top: clamp(2.2rem, 7vh, 4.8rem);
    }

    .hero-copy {
        align-self: start;
        padding-bottom: 0;
        max-width: 27rem;
    }

    .hero-note {
        max-width: 24rem;
        font-size: clamp(1.8rem, 3.1vw, 2.35rem);
        line-height: 1.05;
        white-space: nowrap;
    }
}

.hero-note-button {
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.hero-note-button:hover,
.hero-note-button:focus-visible {
    color: #f0d09a;
    text-shadow:
        0 0 12px rgba(240, 204, 126, 0.36),
        0 0 24px rgba(220, 170, 70, 0.18),
        0 8px 22px rgba(0, 0, 0, 0.3);
    outline: none;
}

.hero-note-button:hover .hero-note-accent,
.hero-note-button:focus-visible .hero-note-accent {
    font-weight: 700;
}


.landing-audio-player {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.landing-audio-toggle {
    position: absolute;
    left: clamp(1rem, 2vw, 2rem);
    bottom: clamp(1rem, 2vw, 2rem);
    z-index: 2;
    border: 1px solid rgba(242, 217, 168, 0.42);
    background: rgba(15, 11, 8, 0.58);
    color: #f2d9a8;
    font: inherit;
    font-size: 0.82rem;
    letter-spacing: 0;
    padding: 0.62rem 0.8rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.landing-audio-toggle:hover,
.landing-audio-toggle:focus-visible {
    border-color: rgba(242, 217, 168, 0.78);
    background: rgba(15, 11, 8, 0.78);
    outline: none;
}

.note-trail {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.music-note {
    position: absolute;
    right: 24%;
    bottom: 27%;
    color: rgba(242, 217, 168, 0.88);
    font-family: "Cormorant Garamond", serif;
    text-shadow: 0 0 24px rgba(240, 209, 153, 0.22);
    opacity: 0;
}

.note-a {
    font-size: 2rem;
}

.note-b {
    font-size: 2.35rem;
}

.note-c {
    font-size: 1.7rem;
}

.note-d {
    font-size: 1.95rem;
}

.note-e {
    font-size: 2.2rem;
}

.feature-link,
.footer-link {
    color: var(--accent-soft);
    text-decoration: none;
}

.link-stack,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.feature-link:hover,
.feature-link:focus-visible,
.footer-link:hover,
.footer-link:focus-visible {
    color: var(--text);
    outline: none;
}

.footer-link-email strong {
    font-weight: 700;
}

.site-page {
    padding: 0 clamp(1.2rem, 3vw, 3rem) 2rem;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
}

.brand-mark {
    color: var(--text);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-decoration: none;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.96rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.brand-mark:hover,
.brand-mark:focus-visible {
    color: var(--accent-soft);
    outline: none;
}

.standard-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.78fr);
    gap: 2.4rem;
    align-items: center;
    padding: 2.8rem 0 1.4rem;
}

.future-panel {
    backdrop-filter: blur(8px);
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: 0 20px 45px var(--shadow);
}

.standard-copy {
    padding: 0;
}

.standard-copy h1,
.future-panel h2,
.future-item h3,
.section-heading h2,
.recordings-panel h1,
.collaboration-card h3,
.recording-card h3,
.archive-note-card h3,
.timeline-item h3 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
}

.standard-copy h1 {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.92;
}

.standard-copy p {
    max-width: 38rem;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.primary-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
}

.primary-action {
    background: var(--accent);
    color: #1b1207;
    font-weight: 700;
}

.secondary-action {
    border: 1px solid var(--line);
    color: var(--text);
}

.primary-action:hover,
.secondary-action:hover,
.primary-action:focus-visible,
.secondary-action:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.quote-card {
    border-radius: 26px;
    padding: 0;
    overflow: hidden;
    min-height: 38rem;
    align-self: start;
    margin-top: -0.65rem;
}

.hero-photo-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-photo-frame {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 248, 236, 0.03);
    border: 1px solid rgba(255, 244, 231, 0.08);
}

.hero-photo {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    flex: 1 1 auto;
    object-fit: cover;
    object-position: center top;
}

.hero-photo-frame-secondary {
    max-width: 92%;
    margin-left: auto;
}

.hero-photo-secondary {
    object-position: center center;
}

.hero-photo-desktop-only,
.archive-card-mobile-only {
    display: block;
}

.hero-photo-caption {
    margin: 0;
    padding: 0.9rem 1rem 1rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    font-style: italic;
}

.section-heading h2,
.recordings-panel h1 {
    margin: 0 0 0.8rem;
    font-size: clamp(2rem, 3vw, 2.9rem);
    line-height: 0.98;
}

.section-heading p:last-child {
    color: var(--muted);
    max-width: 48rem;
}

.testimonials-panel {
    margin-top: 1.6rem;
    padding: clamp(1.6rem, 4vw, 2.4rem);
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(209, 160, 91, 0.1), transparent 28%),
        rgba(10, 9, 9, 0.78);
    border: 1px solid rgba(255, 244, 231, 0.08);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.34);
}

.testimonials-header h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    line-height: 0.98;
}

.testimonials-header {
    text-align: center;
}

.testimonials-stage {
    position: relative;
    min-height: 16rem;
    margin-top: 1.5rem;
    overflow: hidden;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.4rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    border-radius: 24px;
    background: rgba(18, 16, 15, 0.84);
    border: 1px solid rgba(255, 244, 231, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 244, 231, 0.04);
    opacity: 0;
    width: min(100%, 58rem);
    margin: 0 auto;
}

.testimonial-card-one {
    opacity: 1;
}

.testimonial-quote {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.3rem, 2.1vw, 1.8rem);
    line-height: 1.04;
    font-style: italic;
    color: #f3e7d5;
}

.testimonial-meta p {
    margin: 0;
}

.testimonial-meta {
    text-align: center;
}

.testimonial-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f4ede3;
}

.testimonial-role,
.testimonial-context {
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.future-panel h2 {
    margin: 0 0 0.8rem;
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 0.98;
}

.future-panel p,
.future-item p {
    color: var(--muted);
}

.feature-link {
    display: inline-flex;
    margin-top: 0.8rem;
    font-size: 0.95rem;
}

.inline-link {
    display: inline;
    margin-top: 0;
    font-size: inherit;
}

.recording-title-link {
    color: inherit;
    text-decoration: none;
}

.future-panel {
    margin-top: 1.2rem;
    border-radius: 30px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.collaboration-grid,
.recordings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.archive-grid {
    columns: 2 18rem;
    column-gap: 1rem;
    margin-top: 1.5rem;
}

.collaboration-card,
.recording-card,
.archive-note-card {
    padding: 1.2rem;
    border-radius: 24px;
    background: rgba(18, 16, 15, 0.64);
    border: 1px solid rgba(255, 244, 231, 0.08);
}

.collaboration-label {
    margin: 0 0 0.6rem;
    color: var(--accent-soft);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

.collaboration-card h3,
.recording-card h3,
.archive-note-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.65rem;
}

.compact-panel .section-heading h2 {
    font-size: clamp(1.5rem, 1.9vw, 2rem);
}

.compact-panel .section-heading p:last-child {
    max-width: 32rem;
    font-size: 0.88rem;
}

.compact-panel.future-panel {
    padding: 1rem 1.15rem 1.2rem;
}

.compact-panel .collaboration-card,
.compact-panel .recording-card {
    padding: 0.9rem 1rem;
    border-radius: 18px;
}

.compact-panel .collaboration-card h3,
.compact-panel .timeline-item h3 {
    font-size: 1.02rem;
}

.compact-panel .collaboration-card p,
.compact-panel .timeline-item p {
    font-size: 0.82rem;
    line-height: 1.55;
}

.compact-panel .timeline-item {
    gap: 0.65rem;
    padding-top: 0.75rem;
}

.compact-panel .collaboration-grid,
.compact-panel .timeline-list {
    margin-top: 1rem;
}

.compact-panel .collaboration-grid {
    gap: 0.75rem;
}

.compact-panel .collaboration-detail {
    margin-top: 0.45rem;
}

.page-panel .section-heading h1 {
    margin: 0 0 0.8rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 0.96;
}

.collaboration-card p,
.recording-card p,
.archive-note-card p {
    color: var(--muted);
}

.collaboration-detail {
    margin-top: 0.85rem;
    font-size: 0.96rem;
}

.timeline-list {
    display: grid;
    gap: 0.95rem;
    margin-top: 1.5rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 1.1rem;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(255, 244, 231, 0.08);
}

.timeline-year {
    margin: 0;
    color: var(--accent-soft);
    font-size: 0.88rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.timeline-item h3,
.timeline-item p {
    margin: 0;
}

.timeline-item p {
    margin-top: 0.35rem;
    color: var(--muted);
    line-height: 1.65;
}

.archive-card {
    break-inside: avoid;
    display: inline-block;
    width: 100%;
    margin: 0 0 1rem;
    border-radius: 24px;
    background: rgba(18, 16, 15, 0.64);
    border: 1px solid rgba(255, 244, 231, 0.08);
    overflow: hidden;
}

.archive-photo {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    background: rgba(8, 8, 8, 0.35);
}

.archive-card figcaption,
.archive-note-card {
    padding: 1rem 1.1rem 1.1rem;
}

.archive-card figcaption {
    color: var(--muted);
    line-height: 1.55;
}

.archive-note-card {
    break-inside: avoid;
    display: inline-block;
    width: 100%;
    margin: 0 0 1rem;
}

.bio-copy {
    max-width: 62rem;
    margin-top: 1.4rem;
}

.bio-copy p {
    margin: 0 0 1rem;
    color: var(--muted);
    line-height: 1.75;
}

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

.future-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.future-item {
    padding: 0.85rem 0 0;
    border-top: 1px solid var(--line);
}

.future-item h3 {
    margin: 0 0 0.4rem;
    font-size: 1.8rem;
}

.future-item p {
    margin: 0;
    max-width: 38rem;
    line-height: 1.5;
}

#future .future-list {
    gap: 0.8rem 1.2rem;
    margin-top: 0.6rem;
}

#future .future-item {
    align-self: start;
}

#future .future-item h3 {
    margin-bottom: 0.35rem;
}

#future .future-item p {
    max-width: 34rem;
    font-size: 0.98rem;
    line-height: 1.45;
}

#future .future-item:nth-child(2) p {
    max-width: 32rem;
}

#future .feature-link {
    margin-top: 0.7rem;
}

.booking-panel .section-heading p:last-child {
    max-width: 42rem;
}

.booking-form {
    margin-top: 1.45rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.booking-form label {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    color: var(--accent-soft);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 244, 231, 0.16);
    border-radius: 14px;
    background: rgba(8, 8, 8, 0.35);
    color: var(--text);
    font: inherit;
    font-size: 0.96rem;
    letter-spacing: 0;
    padding: 0.82rem 0.9rem;
    text-transform: none;
}

.booking-form textarea {
    min-height: 9rem;
    resize: vertical;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: rgba(205, 191, 174, 0.58);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: rgba(240, 211, 160, 0.76);
    outline: none;
    box-shadow: 0 0 0 3px rgba(209, 160, 91, 0.14);
}

.time-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
    align-items: end;
}

.period-toggle {
    display: grid;
    grid-template-columns: repeat(2, 3.2rem);
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    border: 0;
}

.period-toggle legend {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.period-option {
    display: block;
    color: var(--accent-soft);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-align: center;
    cursor: pointer;
}

.period-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.period-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.95rem;
    border: 1px solid rgba(255, 244, 231, 0.16);
    border-radius: 14px;
    background: rgba(8, 8, 8, 0.35);
}

.period-option input:checked + span {
    border-color: rgba(240, 211, 160, 0.76);
    background: rgba(209, 160, 91, 0.2);
    color: var(--text);
}

.period-option input:focus-visible + span {
    outline: none;
    box-shadow: 0 0 0 3px rgba(209, 160, 91, 0.14);
}

.form-wide {
    grid-column: 1 / -1;
}

.hidden-field {
    display: none;
}

.booking-submit {
    border: 0;
    margin-top: 1.1rem;
    cursor: pointer;
}

.calendar-frame {
    margin-top: 1.45rem;
    border: 1px solid rgba(255, 244, 231, 0.12);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(8, 8, 8, 0.35);
}

.calendar-frame iframe {
    display: block;
    width: 100%;
    height: min(72vh, 42rem);
    min-height: 34rem;
    border: 0;
    background: #fff;
}

.calendar-frame-week iframe {
    height: min(58vh, 30rem);
    min-height: 24rem;
}

@media (max-width: 1100px) {
    .booking-panel.page-panel {
        padding: clamp(1.2rem, 3vw, 2rem);
    }

    .calendar-frame iframe {
        min-height: 30rem;
    }

    .calendar-frame-week iframe {
        min-height: 22rem;
    }
}

@media (min-width: 901px) {
    #future .future-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    #future .future-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    #future .future-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    #future .future-item:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }

    #future .future-item:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }
}

.gig-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}

.gig-item {
    display: grid;
    grid-template-columns: 5.5rem 1fr;
    gap: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 244, 231, 0.08);
}

.gig-date,
.gig-title,
.gig-location {
    margin: 0;
}

.gig-date {
    color: #f0d3a0;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gig-title {
    color: #f4ede3;
    font-size: 1rem;
    font-weight: 700;
}

.gig-location {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.carousel-panel {
    overflow: hidden;
}

.carousel-shell {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.archive-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(16rem, 28rem);
    gap: 1rem;
    overflow-x: auto;
    padding: 0.2rem 0.1rem 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    flex: 1;
}

.archive-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    scroll-snap-align: start;
    margin: 0;
    min-width: 0;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(18, 16, 15, 0.78);
    border: 1px solid rgba(255, 244, 231, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.carousel-image {
    display: block;
    width: 100%;
    height: 16.5rem;
    object-fit: cover;
    object-position: center;
}

.carousel-slide figcaption {
    padding: 0.9rem 1rem 1rem;
    color: var(--muted);
    line-height: 1.5;
}

.carousel-control {
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 auto;
    border-radius: 999px;
    border: 1px solid rgba(255, 244, 231, 0.12);
    background: rgba(18, 16, 15, 0.86);
    color: var(--accent-soft);
    font-size: 1.8rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.carousel-control:hover,
.carousel-control:focus-visible {
    background: rgba(34, 28, 23, 0.96);
    color: #f5dfb8;
    outline: none;
}

.site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    padding: 2.6rem 0 0.75rem;
    border-top: 1px solid rgba(255, 244, 231, 0.08);
    color: var(--muted);
    font-size: 0.95rem;
    text-align: center;
}

.site-footer-credit p {
    margin: 0;
}

.site-footer-credit p:first-child {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    color: rgba(244, 237, 227, 0.68);
}

.site-footer-credit p:last-child {
    margin-top: 0.8rem;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    color: rgba(244, 237, 227, 0.6);
}

@media (max-width: 900px) {
    .landing-hero,
    .standard-hero,
    .future-list,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .landing-hero {
        align-items: start;
        align-content: start;
        min-height: 100svh;
        padding: 0.9rem 1rem 2.5rem;
    }

    .landing-background {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.24) 20%, rgba(0, 0, 0, 0.42) 100%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.44) 34%, rgba(0, 0, 0, 0.14) 58%, rgba(0, 0, 0, 0.06) 100%),
            radial-gradient(circle at 84% 7%, rgba(255, 244, 217, 0.24), transparent 14%),
            url("assets/landing-background.png");
        background-position: center, center, 84% 7%, 62% center;
        background-repeat: no-repeat;
        background-size: cover, cover, auto, cover;
        transform: none;
    }

    .hero-copy {
        padding-bottom: 0;
        max-width: 10.5rem;
        margin-top: 0;
        margin-left: 0;
        align-self: start;
        position: static;
    }

    .marc-link {
        font-size: clamp(2.3rem, 13vw, 3.8rem);
        line-height: 0.92;
    }

    .hero-subtitle {
        margin-top: 0.7rem;
        font-size: 0.62rem;
        letter-spacing: 0.14em;
        display: flex;
        flex-direction: column;
        gap: 0.16rem;
        align-items: flex-start;
    }

    .hero-subtitle-line {
        display: contents;
    }

    .hero-subtitle-sep {
        display: none;
    }

    .hero-emotion {
        margin-top: 0.8rem;
        max-width: 11rem;
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .hero-note {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0.3rem;
        max-width: none;
        width: auto;
        margin-top: 0;
        font-size: clamp(1rem, 4.2vw, 1.35rem);
        line-height: 1;
        white-space: nowrap;
        text-align: center;
        transform: translateX(-0.35rem);
    }

    .hero-note-button:hover,
    .hero-note-button:focus-visible {
        transform: translateX(-0.35rem);
    }



    .note-trail {
        inset: 8% -2% 0 0;
    }

    .music-note {
        right: 6%;
        bottom: 33%;
    }

    .site-header,
    .site-footer {
        flex-direction: column;
        align-items: center;
    }

    .standard-hero {
        gap: 1.2rem;
        padding-top: 1.4rem;
    }

    .testimonials-panel {
        margin-top: 1rem;
        padding: 1rem;
    }

    .testimonials-stage {
        min-height: 20rem;
        margin-top: 1.45rem;
        display: block;
        overflow: hidden;
    }

    .testimonial-card {
        position: absolute;
        inset: 0;
        width: 100%;
        margin: 0;
        opacity: 0;
        padding: 1rem;
        justify-content: flex-start;
        gap: 1.1rem;
    }

    .testimonial-meta {
        margin-top: 0.9rem;
    }

    .testimonials-header h2 {
        font-size: clamp(1.55rem, 6.2vw, 2rem);
    }

    .testimonial-quote {
        font-size: clamp(1.05rem, 4.8vw, 1.35rem);
        line-height: 1.08;
    }

    .testimonial-card + .testimonial-card {
        margin-top: 0;
    }

    .testimonial-card-one,
    .testimonial-card-two {
        animation: none;
    }

    .quote-card {
        order: 1;
        min-height: 0;
    }

    .hero-photo {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .standard-copy {
        order: 2;
    }

    .standard-copy,
    .future-panel,
    .future-item,
    .testimonials-header {
        text-align: center;
    }

    .standard-copy h1,
    .future-panel h2,
    .future-item h3,
    .section-tag {
        text-align: center;
    }

    .calendar-frame iframe {
        min-height: 27rem;
    }

    .calendar-frame-week iframe {
        min-height: 21rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .booking-form label {
        text-align: left;
    }

    .booking-submit {
        width: 100%;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        font-size: 0.92rem;
        padding: 0.78rem 0.82rem;
    }

    .collaboration-grid,
    .recordings-grid {
        grid-template-columns: 1fr;
    }

    .carousel-shell {
        gap: 0.55rem;
    }

    .archive-carousel {
        grid-auto-columns: 85%;
    }

    .carousel-image {
        height: 14rem;
    }

    .carousel-control {
        width: 2.35rem;
        height: 2.35rem;
        font-size: 1.45rem;
    }

    .archive-grid {
        columns: 1;
    }

    .hero-photo-desktop-only {
        display: none;
    }

    .archive-card-mobile-only {
        display: inline-block;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }
}

@media (max-width: 560px) {
    .site-page {
        padding-inline: 0.85rem;
    }

    .booking-panel.page-panel,
    .gigs-panel {
        padding: 1rem;
        border-radius: 20px;
    }

    .booking-panel .section-heading h1,
    .gigs-panel .section-heading h2 {
        font-size: clamp(2rem, 11vw, 2.85rem);
    }

    .calendar-frame {
        margin-inline: -0.25rem;
        border-radius: 14px;
    }

    .calendar-frame iframe {
        height: 32rem;
        min-height: 32rem;
    }

    .calendar-frame-week iframe {
        height: 24rem;
        min-height: 24rem;
    }

    .time-field {
        grid-template-columns: 1fr;
    }

    .period-toggle {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (min-width: 700px) and (max-width: 900px) {
    .hero-copy {
        max-width: 18rem;
    }

    .marc-link {
        font-size: clamp(5.2rem, 11vw, 6.8rem);
    }

    .music-note {
        right: 14%;
        bottom: 31%;
    }

    .archive-carousel {
        grid-auto-columns: 68%;
    }
}

@media (min-width: 1200px) {
    .archive-carousel {
        grid-auto-columns: minmax(18rem, 24rem);
    }
}

@media (min-width: 901px) {
    .archive-card-mobile-only {
        display: none;
    }
}

@media (max-width: 900px) and (max-height: 480px) and (orientation: landscape) {
    .landing-hero {
        padding: 0.85rem 1rem 1rem;
    }

    .landing-background {
        background-position: center, center, 84% 7%, 58% center;
    }

    .hero-copy {
        max-width: 9rem;
    }

    .marc-link {
        font-size: clamp(2.2rem, 8vw, 3.4rem);
        line-height: 0.9;
    }

    .hero-note {
        left: 0;
        right: 0;
        bottom: 0.45rem;
        width: auto;
        font-size: clamp(0.95rem, 2.6vw, 1.15rem);
        transform: none;
    }

    .hero-note-button:hover,
    .hero-note-button:focus-visible {
        transform: none;
    }

    .note-trail {
        inset: 0;
    }

    .music-note {
        right: 16%;
        bottom: 27%;
    }
}

@media (min-width: 901px) and (max-width: 1024px) {
    .landing-hero {
        align-items: start;
        align-content: start;
        min-height: 100svh;
        padding: 1.2rem 1.25rem 2.5rem;
    }

    .landing-background {
        background-position: center, 88% 6%, 74% 24%, center, 70% center;
    }

    .hero-copy {
        padding-bottom: 0;
        max-width: 19rem;
        margin-top: 0;
        margin-left: 0;
        align-self: start;
        position: static;
    }

    .marc-link {
        font-size: clamp(6.6rem, 11.5vw, 8rem);
        line-height: 0.92;
    }

    .hero-note {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0.9rem;
        max-width: none;
        width: auto;
        margin-top: 0;
        font-size: clamp(1.25rem, 2.9vw, 1.7rem);
        line-height: 1;
        white-space: nowrap;
        text-align: center;
        transform: none;
    }

    .hero-note-button:hover,
    .hero-note-button:focus-visible {
        transform: none;
    }

    .note-trail {
        inset: 0;
    }

    .music-note {
        right: 22%;
        bottom: 30%;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .landing-background::after {
        animation: drift-grain 24s ease-in-out infinite alternate;
    }

    .marc-link,
    .standard-copy,
    .quote-card,
    .future-panel,
    .testimonials-panel {
        animation: rise-in 900ms ease both;
    }

    .testimonial-card-one {
        animation: testimonial-cycle-one 42s ease-in-out infinite;
    }

    .testimonial-card-two {
        animation: testimonial-cycle-two 42s ease-in-out infinite;
    }

    .testimonial-card-three {
        animation: testimonial-cycle-three 42s ease-in-out infinite;
    }

    .note-a {
        animation: float-note-a 4.8s ease-in-out infinite;
    }

    .note-b {
        animation: float-note-b 5.5s ease-in-out 0.8s infinite;
    }

    .note-c {
        animation: float-note-c 4.4s ease-in-out 1.2s infinite;
    }

    .note-d {
        animation: float-note-d 5.1s ease-in-out 1.9s infinite;
    }

    .note-e {
        animation: float-note-e 5.8s ease-in-out 2.4s infinite;
    }

    .quote-card {
        animation-delay: 120ms;
    }

}

@media (max-width: 900px) and (prefers-reduced-motion: no-preference) {
    .testimonial-card-one {
        animation: testimonial-cycle-one 42s ease-in-out infinite;
    }

    .testimonial-card-two {
        animation: testimonial-cycle-two 42s ease-in-out infinite;
    }

    .testimonial-card-three {
        animation: testimonial-cycle-three 42s ease-in-out infinite;
    }
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drift-grain {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.34;
    }
    100% {
        transform: translate3d(10px, -12px, 0) scale(1.02);
        opacity: 0.44;
    }
}

@keyframes testimonial-cycle-one {
    0%,
    24% {
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
    84% {
        opacity: 0;
    }
    90%,
    100% {
        opacity: 1;
    }
}

@keyframes testimonial-cycle-two {
    0%,
    24% {
        opacity: 0;
    }
    30%,
    54% {
        opacity: 1;
    }
    60%,
    100% {
        opacity: 0;
    }
}

@keyframes testimonial-cycle-three {
    0%,
    54% {
        opacity: 0;
    }
    60%,
    84% {
        opacity: 1;
    }
    90%,
    100% {
        opacity: 0;
    }
}

@keyframes float-note-a {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.76) rotate(-6deg);
    }
    14% {
        opacity: 0.92;
    }
    72% {
        opacity: 0.72;
    }
    100% {
        opacity: 0;
        transform: translate(-72px, 96px) scale(1.02) rotate(8deg);
    }
}

@keyframes float-note-b {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.8) rotate(4deg);
    }
    16% {
        opacity: 0.9;
    }
    75% {
        opacity: 0.68;
    }
    100% {
        opacity: 0;
        transform: translate(-104px, 132px) scale(1.04) rotate(-4deg);
    }
}

@keyframes float-note-c {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.7) rotate(-4deg);
    }
    18% {
        opacity: 0.86;
    }
    76% {
        opacity: 0.64;
    }
    100% {
        opacity: 0;
        transform: translate(-60px, 74px) scale(1) rotate(6deg);
    }
}

@keyframes float-note-d {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.74) rotate(10deg);
    }
    20% {
        opacity: 0.88;
    }
    78% {
        opacity: 0.66;
    }
    100% {
        opacity: 0;
        transform: translate(-90px, 116px) scale(1.03) rotate(-8deg);
    }
}

@keyframes float-note-e {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.78) rotate(-10deg);
    }
    22% {
        opacity: 0.92;
    }
    78% {
        opacity: 0.7;
    }
    100% {
        opacity: 0;
        transform: translate(-118px, 154px) scale(1.06) rotate(10deg);
    }
}
