:root {
    --background: #e7edf3;
    --text: #0b1b2e;
    --accent: #1d5b96;
    --white: #ffffff;
    --muted: #5d6874;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: var(--background);
    color: var(--text);
}

img {
    max-width: 100%;
}


/* =================================
   HEADER
   ================================= */

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 5%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-name {
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 1.2rem;
}

nav {
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.82rem;
}

nav a:hover,
nav a.active {
    color: var(--accent);
}

nav a.active {
    border-bottom: 1px solid var(--accent);
    padding-bottom: 7px;
}


/* =================================
   GLOBAL TYPOGRAPHY
   ================================= */

h1,
h2,
h3,
p {
    font-family: Georgia, "Times New Roman", serif;
}

.button {
    display: inline-block;
    align-self: flex-start;
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid var(--accent);
    padding: 14px 20px;
    font-size: 0.85rem;
}

.button:hover {
    color: white;
    background: var(--accent);
}


/* =================================
   HOMEPAGE
   ================================= */

.hero {
    min-height: 650px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.hero-text {
    padding: 90px 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    margin: 0;
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: normal;
    line-height: 0.9;
    letter-spacing: -0.03em;
}

.accent-line {
    width: 76px;
    height: 3px;
    background: var(--accent);
    margin: 34px 0;
}

.roles {
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    margin: 0 0 24px;
}

.roles span {
    color: var(--accent);
    margin: 0 0.45rem;
}

.intro {
    max-width: 520px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 35px;
}

.hero-image {
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px 4% 0;
}

.hero-image img {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;

    transform: translateY(-40px);
    margin-bottom: -40px;
}


/* HOMEPAGE EVENTS */

.events-preview {
    background: var(--white);
    padding: 55px 7% 70px;
}

.events-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 38px;
}

.events-heading h2 {
    margin: 0;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.small-line {
    width: 52px;
    height: 2px;
    background: var(--accent);
    margin-top: 18px;
}

.events-heading a,
.event-link {
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.event {
    display: grid;
    grid-template-columns: 120px 1.6fr 1fr auto;
    align-items: center;
    gap: 40px;
}

.event-date {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.day {
    color: var(--accent);
    font-size: 2.5rem;
    line-height: 1;
}

.event-title h3 {
    font-weight: normal;
    font-size: 1.5rem;
    margin: 0 0 4px;
}

.event-title p,
.event-details p {
    margin: 3px 0;
}

.event-title p {
    color: var(--accent);
    font-style: italic;
}


/* =================================
   GENERAL INTERNAL PAGES
   ================================= */

.page-content {
    min-height: 75vh;
    max-width: 1050px;
    margin: 0 auto;
    padding: 80px 5%;
}

.page-title {
    font-size: 4rem;
    font-weight: normal;
    margin: 0 0 30px;
}

.page-intro {
    max-width: 700px;
    font-size: 1.35rem;
    line-height: 1.6;
}


/* =================================
   MUSIC PAGE
   ================================= */

.music-page {
    max-width: 1050px;
    margin: 0 auto;
    padding: 55px 40px 90px;
}

.music-heading {
    text-align: center;
    margin-bottom: 32px;
}

.music-heading h1 {
    font-size: 4.8rem;
    font-weight: normal;
    line-height: 1;
    margin: 0 0 18px;
}

.music-subtitle {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
}

.music-subtitle span {
    color: var(--accent);
    margin: 0 0.45rem;
}


/* MAIN CONDUCTING PHOTO */

.music-hero-image {
    width: 900px;
    max-width: 100%;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: 5px;
}

.music-hero-image img {
    display: block;
    width: 100%;
    height: auto;
    clip-path: inset(0 0 35% 0);
    margin-bottom: -23.33%;
}


/* BIOGRAPHY */

.music-biography {
    max-width: 900px;
    margin: 0 auto 70px;
}

.music-biography p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0 0 20px;
    text-align: justify;
}


/* ORGAN / CONDUCTING */

.music-feature {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-top: 1px solid rgba(11, 27, 46, 0.15);
}

.feature-image {
    overflow: hidden;
    border-radius: 5px;
}

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

.portrait-image {
    width: 360px;
    max-width: 100%;
}

.feature-text {
    max-width: 520px;
}

.feature-text h2,
.accompanying-section h2,
.music-link-card h2 {
    font-weight: normal;
    margin: 0;
}

.feature-text h2,
.accompanying-section h2 {
    font-size: 2.2rem;
}

.feature-text p,
.accompanying-section p {
    font-size: 1rem;
    line-height: 1.75;
    text-align: justify;
}

.section-line {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 14px 0 22px;
}

.text-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--text);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.text-link:hover {
    color: var(--accent);
}


/* CONDUCTING */

.conducting-section {
    grid-template-columns: 1fr 430px;
}

.conducting-section .feature-text {
    max-width: 470px;
}

.conducting-section .landscape-image {
    width: 430px;
    max-width: 100%;
}

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


/* ACCOMPANYING */

.accompanying-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
    border-top: 1px solid rgba(11, 27, 46, 0.15);
}


/* MUSIC LINKS */

.music-links {
    display: flex;
    justify-content: center;

    padding-top: 45px;
    border-top: 1px solid rgba(11, 27, 46, 0.15);
}

.music-link-card {
    width: 100%;
    max-width: 520px;

    border: 1px solid rgba(11, 27, 46, 0.18);
    border-radius: 5px;
    padding: 30px;

    text-align: center;
}

.music-link-card h2 {
    font-size: 1.6rem;
    font-weight: normal;
    margin: 0;
}

.music-link-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted);
    margin: 15px 0 22px;
}


/* =================================
   COMPOSITIONS PAGE
   ================================= */

.compositions-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.compositions-heading {
    text-align: center;
    margin-bottom: 65px;
}

.compositions-heading h1 {
    font-size: 4.8rem;
    font-weight: normal;
    line-height: 1;
    margin: 0 0 20px;
}

.compositions-heading p {
    max-width: 680px;
    margin: 28px auto 0;
    font-size: 1.08rem;
    line-height: 1.8;
    text-align: left;
}

.landscape-frontispiece {
    max-width: 95%;
    max-height: 78%;
}


/* SECTION HEADING */

.section-heading {
    margin-bottom: 32px;
}

.section-heading h2 {
    font-size: 2rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

.section-heading p {
    font-size: 1rem;
    margin: 14px 0 0;
}


/* =================================
   HIGHLIGHTED COMPOSITIONS
   ================================= */

.highlighted-compositions {
    margin-bottom: 90px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.highlight-card {
    display: flex;
    flex-direction: column;
    min-width: 0;

    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(11, 27, 46, 0.14);
    border-radius: 5px;
    overflow: hidden;
}


/* FIXED FRONTISPIECE FRAME */

.highlight-image-link {
    height: 360px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 16px;

    background: white;
    border-bottom: 1px solid rgba(11, 27, 46, 0.12);
}

.highlight-image-link img {
    display: block;

    width: auto;
    height: auto;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
}


/* CARD TEXT */

.highlight-info {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 20px 22px 24px;
}

.highlight-info h3 {
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.22;
    margin: 0 0 8px;
}

.highlight-info h3 a {
    color: var(--text);
    text-decoration: none;
}

.highlight-info h3 a:hover {
    color: var(--accent);
}

.small-title {
    display: block;
    margin-top: 4px;
    font-size: 1rem;
    font-style: italic;
}

.highlight-duration {
    color: var(--accent);
    font-size: 1rem;
    margin: 0 0 12px;
}

.highlight-forces {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 18px;
}

.highlight-movements {
    margin: 0 0 18px;
    padding-left: 1.25rem;
    font-size: 0.85rem;
    line-height: 1.45;
}

.highlight-link {
    margin-top: auto;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
}

.highlight-link:hover {
    text-decoration: underline;
}


/* =================================
   COMPLETE CATALOGUE
   ================================= */

.catalogue-section {
    padding-top: 10px;
}

.catalogue-list {
    width: 100%;
    border-top: 1px solid rgba(11, 27, 46, 0.25);
}

.catalogue-entry {
    display: block;
    width: 100%;

    padding: 24px 0;

    border-bottom: 1px solid rgba(11, 27, 46, 0.12);
}


/* TITLE */

.catalogue-main {
    width: 100%;
}

.catalogue-main h3 {
    margin: 0 0 8px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 1.35;
}

.catalogue-main h3 a {
    color: var(--text);
    text-decoration: none;
}

.catalogue-main h3 a:hover {
    color: var(--accent);
}

/* FREE SCORE BUTTONS */

.catalogue-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.catalogue-title-row h3 {
    margin: 0 0 8px;
}

.catalogue-score-button {
    flex-shrink: 0;
    display: inline-block;

    padding: 6px 10px;

    border: 1px solid var(--accent);

    color: var(--accent);
    background: transparent;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.68rem;
    line-height: 1;

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.catalogue-score-button:hover {
    color: white;
    background: var(--accent);
}

.catalogue-score-note {
    margin-top: 12px !important;

    color: var(--muted);
    font-size: 0.82rem !important;
    line-height: 1.55 !important;
}

/* INSTRUMENTATION · DURATION · YEAR */

.catalogue-meta {
    margin: 0;

    color: var(--accent);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.9rem;
    line-height: 1.6;
}

.catalogue-meta span {
    margin: 0 0.4rem;
}


/* NOTES */

.catalogue-notes {
    max-width: 850px;
    margin-top: 14px;
}

.catalogue-notes p {
    margin: 0 0 8px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.93rem;
    line-height: 1.65;

    text-align: left;
}

.catalogue-premiere {
    color: var(--muted);
    font-size: 0.88rem !important;
}


/* MOBILE */

@media (max-width: 650px) {

    .catalogue-entry {
        padding: 20px 0;
    }

    .catalogue-main h3 {
        font-size: 1.15rem;
    }

}

/* =================================
   EVENTS PAGE
   ================================= */

.past-events {
    max-width: 900px;
    margin: 0 auto;
}

.past-events h2 {
    font-size: 3rem;
    font-weight: normal;
    margin: 0 0 40px;
}

.past-events h3 {
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--accent);
    margin: 0 0 28px;
}


/* INDIVIDUAL PAST EVENT */

.past-events .event {
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr);
    gap: 30px;
    align-items: start;

    padding: 17px 0;

    border-bottom: 1px solid rgba(11, 27, 46, 0.12);
}


/* DATE */

.past-events .event-date {
    display: block;

    color: var(--accent);

    font-size: 0.9rem;
    line-height: 1.5;

    text-transform: uppercase;
    letter-spacing: 0.06em;

    white-space: nowrap;
}


/* EVENT DESCRIPTION */

.past-events .event-details {
    font-size: 1rem;
    line-height: 1.6;
}

.past-events .event-details em {
    font-style: italic;
}

/* =================================
   EVENTS PAGE SPACING
   ================================= */

/* Space between Upcoming Events and Past Events */

.upcoming-events {
    margin-bottom: 80px;
}


/* Space before each new year */

.past-events h3 {
    margin-top: 55px;
    margin-bottom: 22px;
}


/* Don't create excessive space above the first year */

.past-events h2 + .section-line + h3,
.upcoming-events h2 + .section-line + h3 {
    margin-top: 30px;
}

/* MOBILE */

@media (max-width: 650px) {

    .past-events h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .past-events .event {
        grid-template-columns: 1fr;
        gap: 5px;

        padding: 18px 0;
    }

    .past-events .event-date {
        font-size: 0.82rem;
    }

}


/* =================================
   FOOTER
   ================================= */

footer {
    background: white;
    padding: 25px 7%;
    border-top: 1px solid #ddd;
    font-size: 0.8rem;
    color: var(--muted);
}


/* =================================
   TABLET
   ================================= */

@media (max-width: 1000px) {

    .site-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        gap: 14px 22px;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-text {
        padding: 70px 7% 40px;
    }

    .event {
        grid-template-columns: 90px 1fr;
        gap: 20px;
    }

    .music-feature,
    .conducting-section {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .portrait-image,
    .conducting-section .landscape-image {
        width: 100%;
    }

    .music-links {
        grid-template-columns: 1fr;
    }

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

}


/* =================================
   MOBILE
   ================================= */

@media (max-width: 650px) {

    nav {
        gap: 12px 16px;
    }

    nav a {
        font-size: 0.7rem;
    }

    .hero-text h1 {
        font-size: 3.7rem;
    }

    .roles {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .events-heading {
        flex-direction: column;
        gap: 25px;
    }

    .music-page,
    .compositions-page {
        padding: 40px 6% 70px;
    }

    .music-heading h1,
    .compositions-heading h1 {
        font-size: 3.5rem;
    }

    .music-subtitle {
        font-size: 0.65rem;
        line-height: 2;
    }

    .music-biography p,
    .feature-text p,
    .accompanying-section p {
        text-align: left;
    }

    .music-feature,
    .accompanying-section {
        padding: 45px 0;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .highlight-image-link {
        height: 330px;
    }

    .section-heading h2 {
        font-size: 1.55rem;
    }

}


/* =================================
   INDIVIDUAL COMPOSITION PAGES
   ================================= */

.work-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 55px 40px 90px;
}

.work-back {
    margin-bottom: 38px;
}

.work-back a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.95rem;
}

.work-back a:hover {
    text-decoration: underline;
}


/* MAIN TWO-COLUMN LAYOUT */

.work-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}


/* FRONTISPIECE */

.work-frontispiece {
    width: 300px;
    max-width: 100%;
    background: white;

    border: 1px solid rgba(11, 27, 46, 0.25);
    border-radius: 3px;

    padding: 12px;
}

.work-frontispiece img {
    display: block;
    width: 100%;
    height: auto;
}


/* LANDSCAPE EXCEPTION */

.work-frontispiece.landscape-work {
    width: 330px;
}


/* TEXT COLUMN */

.work-text {
    max-width: 720px;
}

.work-text h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 4.3rem);
    font-weight: normal;
    line-height: 1.05;

    margin: 0;
    letter-spacing: -0.025em;
}


/* DECORATIVE LINE */

.work-title-line {
    display: flex;
    align-items: center;
    gap: 10px;

    margin: 28px 0 30px;
}

.work-title-line::before,
.work-title-line::after {
    content: "";
    width: 90px;
    height: 1px;
    background: var(--accent);
}

.work-title-line span {
    width: 7px;
    height: 7px;

    border: 1px solid var(--accent);
    transform: rotate(45deg);
}


/* SUBTITLE */

.work-subtitle {
    font-size: 1.3rem;
    font-style: italic;

    margin: 10px 0 20px;
}


/* FORCES AND DURATION */

.work-meta {
    color: var(--accent);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    line-height: 1.6;

    margin: 0 0 32px;
}

.work-duration {
    display: block;

    margin-top: 8px;

    font-size: 1.1rem;
}


/* MOVEMENTS */

.work-movements {
    margin: 20px 0 30px;
    padding-left: 1.5rem;
}

.work-movements li {
    margin-bottom: 7px;
    line-height: 1.5;
}


/* BODY TEXT */

.work-text p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    line-height: 1.78;

    text-align: justify;

    margin: 0 0 22px;
}


/* PREMIERE / COMMISSION DETAILS */

.work-details {
    margin-top: 35px;
    padding-top: 22px;

    border-top: 1px solid rgba(11, 27, 46, 0.18);
}

.work-details p {
    font-size: 0.93rem;
    color: var(--muted);

    margin-bottom: 10px;
}

.work-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

/* SCORE DOWNLOAD */

.work-score {
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid rgba(11, 27, 46, 0.18);
}

.work-score h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: normal;

    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.work-score .section-line {
    width: 40px;
    height: 2px;

    background: var(--accent);

    margin: 14px 0 20px;
}

.work-text .work-score p {
    max-width: 580px;

    margin: 0 0 22px;

    font-size: 0.95rem;
    line-height: 1.65;

    color: var(--muted);
    text-align: left;
}


.score-button {
    display: inline-block;

    padding: 12px 18px;

    border: 1px solid var(--accent);

    color: var(--accent);
    background: transparent;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.78rem;

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.score-button:hover {
    color: white;
    background: var(--accent);
}


/* TABLET */

@media (max-width: 900px) {

    .work-layout {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 45px;
    }

    .work-frontispiece,
    .work-frontispiece.landscape-work {
        width: 240px;
    }

}


/* MOBILE */

/* MOBILE */

@media (max-width: 700px) {

    .work-page {
        padding: 40px 6% 70px;
    }

    .work-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .work-frontispiece,
    .work-frontispiece.landscape-work {
        width: 260px;
        margin: 0 auto;
    }

    .work-text h1 {
        font-size: 2.6rem;
    }

    .work-text p {
        text-align: left;
    }

    .work-title-line {
        margin: 22px 0 26px;
    }

}


/* =================================
   TUTORING PAGE
   ================================= */

.tutoring-section {
    max-width: 1000px;
}

.tutoring-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 60px;
    align-items: start;
    margin-top: 38px;
}


/* TEXT */

.tutoring-section .page-title {
    text-align: center;
    margin-bottom: 45px;
}

.tutoring-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0 0 22px;
}

/* GRADUATION PHOTO */

.tutoring-image {
    width: 340px;
    max-width: 100%;
    justify-self: end;
}

.tutoring-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
}


/* SUPERPROF BUTTON */

.tutoring-actions {
    margin-top: 35px;
}


/* TUTORING MOBILE */

@media (max-width: 800px) {

    .tutoring-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .tutoring-image {
        width: 300px;
        justify-self: center;
    }

}


/* =================================
   CONTACT PAGE
   ================================= */

.contact-section {
    max-width: 760px;
    margin: 0 auto;
}


/* PAGE TITLE */

.contact-section .page-title {
    text-align: center;
    margin-bottom: 28px;
}


/* INTRODUCTION */

.contact-intro {
    max-width: 620px;
    margin: 0 auto 50px;

    font-size: 1.05rem;
    line-height: 1.75;

    text-align: center;
    color: var(--muted);
}


/* FORM */

.contact-form {
    max-width: 680px;
    margin: 0 auto;
}


/* FORM FIELDS */

.contact-field {
    margin-bottom: 26px;
}

.contact-field label {
    display: block;

    margin-bottom: 9px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.8rem;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    color: var(--text);
}


/* INPUTS AND MESSAGE BOX */

.contact-field input,
.contact-field textarea {
    display: block;
    width: 100%;

    padding: 13px 14px;

    border: 1px solid rgba(11, 27, 46, 0.25);
    border-radius: 3px;

    background: rgba(255, 255, 255, 0.45);
    color: var(--text);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;

    outline: none;
}

.contact-field textarea {
    min-height: 180px;
    resize: vertical;
}


/* FOCUS STATE */

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--accent);
    background: var(--white);
}


/* SEND BUTTON */

.contact-actions {
    margin-top: 35px;
}

.contact-actions .button {
    cursor: pointer;

    background: transparent;

    font-family: Georgia, "Times New Roman", serif;
}

.contact-actions .button:hover {
    color: var(--white);
    background: var(--accent);
}


/* =================================
   CONTACT PAGE — MOBILE
   ================================= */

@media (max-width: 650px) {

    .contact-section .page-title {
        font-size: 3rem;
    }

    .contact-intro {
        margin-bottom: 40px;
        text-align: left;
    }

    .contact-field {
        margin-bottom: 22px;
    }

    .contact-actions {
        margin-top: 30px;
    }

}

/* =================================
   ABOUT PAGE
   ================================= */

.about-section {
    max-width: 1200px;
    margin: 0 auto;
}


/* PAGE TITLE */

.about-section .page-title {
    text-align: center;
    margin-bottom: 50px;
}


/* =================================
   PHOTO + FIRST PARAGRAPH
   ================================= */

.about-intro {
    display: grid;

    /* Larger photograph, but plenty of room for text */
    grid-template-columns: 420px minmax(0, 1fr);

    gap: 55px;
    align-items: center;

    margin-bottom: 42px;
}


/* PHOTO */

.about-image {
    width: 420px;
    max-width: 100%;
}

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


/* FIRST PARAGRAPH */

.about-intro-text {
    min-width: 0;
}

.about-intro-text p {
    margin: 0;

    font-size: 1.05rem;
    line-height: 1.75;

    text-align: justify;
}


/* =================================
   FULL-WIDTH BIOGRAPHY
   ================================= */

.about-body {
    width: 100%;

    /* deliberately no border or divider */
    border: none;
    padding: 0;
}

.about-body p {
    width: 100%;

    margin: 0 0 26px;

    font-size: 1.05rem;
    line-height: 1.75;

    text-align: justify;
}

.about-body p:last-child {
    margin-bottom: 0;
}


/* =================================
   ABOUT PAGE — TABLET
   ================================= */

@media (max-width: 950px) {

    .about-intro {
        grid-template-columns: 340px minmax(0, 1fr);
        gap: 40px;
        align-items: start;
    }

    .about-image {
        width: 340px;
    }

}


/* =================================
   ABOUT PAGE — MOBILE
   ================================= */

@media (max-width: 750px) {

    .about-section .page-title {
        margin-bottom: 35px;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 30px;

        margin-bottom: 30px;
    }

    .about-image {
        width: 360px;
        max-width: 100%;
        margin: 0 auto;
    }

    .about-intro-text p,
    .about-body p {
        text-align: left;
    }

}

/* =================================
   ABOUT PAGE — BIOGRAPHY LABELS
   ================================= */

.bio-label {
    margin: 0 0 24px;

    color: var(--accent);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: normal;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bio-label span {
    color: var(--muted);
    font-size: 0.8rem;

    text-transform: none;
    letter-spacing: 0.02em;
}
/* SHORT BIOGRAPHY */

.short-biography {
    margin-bottom: 75px;
}

.short-biography .about-intro {
    align-items: center;
    margin-bottom: 0;
}

.short-biography .about-intro-text p {
    margin: 0 0 20px;

    font-size: 1.05rem;
    line-height: 1.75;

    text-align: justify;
}

.short-biography .about-intro-text p:last-child {
    margin-bottom: 0;
}


/* LONG BIOGRAPHY */

.long-biography {
    padding-top: 45px;
    border-top: 1px solid rgba(11, 27, 46, 0.15);
}

.long-biography .bio-label {
    margin-bottom: 30px;
}


/* MOBILE */

@media (max-width: 750px) {

    .short-biography {
        margin-bottom: 55px;
    }

    .short-biography .about-intro-text p {
        text-align: left;
    }

    .long-biography {
        padding-top: 35px;
    }

}

/* =================================
   ORGAN REPERTOIRE PAGE
   ================================= */

.repertoire-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 55px 40px 100px;
}


/* BACK LINK */

.repertoire-back {
    margin-bottom: 42px;
}

.repertoire-back a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.95rem;
}

.repertoire-back a:hover {
    text-decoration: underline;
}


/* HEADING */

.repertoire-heading {
    text-align: center;
    margin-bottom: 65px;
}

.repertoire-heading h1 {
    margin: 0 0 22px;
    font-size: 4.8rem;
    line-height: 1;
    font-weight: normal;
}

.repertoire-heading p {
    max-width: 560px;
    margin: 0 auto;

    color: var(--muted);

    font-size: 1rem;
    line-height: 1.7;
}


/* TWO-COLUMN REPERTOIRE */

.repertoire-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 70px;
    align-items: start;
}


/* COMPOSER BLOCK */

.repertoire-composer {
    padding: 26px 0 30px;
    border-top: 1px solid rgba(11, 27, 46, 0.15);
    break-inside: avoid;
}

.repertoire-composer h2 {
    margin: 0 0 15px;

    color: var(--accent);

    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.3;
}


/* WORK LIST */

.repertoire-composer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.repertoire-composer li {
    margin: 0 0 8px;

    font-size: 0.98rem;
    line-height: 1.55;
}

.repertoire-composer li:last-child {
    margin-bottom: 0;
}


/* SECONDARY NOTES */

.repertoire-note {
    color: var(--muted);
    font-size: 0.88rem;
}

.repertoire-note::before {
    content: " — ";
}


/* NESTED MOVEMENT LIST */

.repertoire-sublist {
    margin-top: 8px !important;
    padding-left: 20px !important;
}

.repertoire-sublist li {
    margin-bottom: 4px;
}


/* =================================
   REPERTOIRE — TABLET
   ================================= */

@media (max-width: 900px) {

    .repertoire-page {
        padding: 50px 6% 80px;
    }

    .repertoire-grid {
        column-gap: 45px;
    }

    .repertoire-heading h1 {
        font-size: 4rem;
    }

}


/* =================================
   REPERTOIRE — MOBILE
   ================================= */

@media (max-width: 700px) {

    .repertoire-page {
        padding: 40px 6% 70px;
    }

    .repertoire-heading {
        margin-bottom: 45px;
    }

    .repertoire-heading h1 {
        font-size: 3.4rem;
    }

    .repertoire-grid {
        grid-template-columns: 1fr;
    }

    .repertoire-composer {
        padding: 22px 0 25px;
    }

    .repertoire-composer h2 {
        font-size: 1.2rem;
    }

}