/* ===== CSS Variables ===== */
:root {
    --sage-green: #8B9D83;
    --cream: #F5F3ED;
    --lavender: #D4C9DB;
    --text-dark: #2C2C2C;
    --text-light: #5A5A5A;
    --border-subtle: rgba(139, 157, 131, 0.2);
}

/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
    text-rendering: optimizeLegibility;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    line-height: 1.3;
    font-feature-settings: "liga" 1, "kern" 1;
}
h1 { font-size: 3.375rem; letter-spacing: -0.01em; }
h2 { font-size: 2.125rem; }
h3 { font-size: 1.5rem; }

a { color: var(--sage-green); text-decoration: none; transition: all 0.3s ease; }
a:hover { text-decoration: underline; }

/* ===== Header ===== */
header {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(245, 243, 237, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-subtle);
}
.header-content {
    max-width: 1200px; margin: 0 auto;
    padding: 1rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.logo { max-height: 80px; width: auto; }
nav ul { list-style: none; display: flex; gap: 2rem; }
nav a { font-family: 'EB Garamond', serif; font-size: 1rem; color: var(--text-dark); transition: color 0.3s ease, letter-spacing 0.2s ease; }
nav a:hover { color: var(--sage-green); text-decoration: none; letter-spacing: 0.02em; }
nav a.nav-active { color: var(--sage-green); border-bottom: 1px solid var(--sage-green); padding-bottom: 1px; }

/* ===== Mobile Nav Toggle ===== */
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.nav-toggle span {
    display: block; width: 24px; height: 1px;
    background: var(--text-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ===== Hero ===== */
#hero {
    min-height: 70vh; height: 70vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    background-image: url('waves2.png');
    background-size: cover; background-position: center; background-repeat: no-repeat;
    padding: 2rem; margin-top: 82px; position: relative;
}
#hero::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(245, 243, 237, 0.3);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
#hero h1 { margin-bottom: 1rem; animation: fadeUp 0.8s ease both; }
.hero-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 1.375rem; font-weight: 400;
    color: var(--text-light);
    animation: fadeUp 0.8s ease 0.2s both;
}

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

/* ===== Inner Page Hero ===== */
.page-hero {
    min-height: 40vh;
    display: flex; align-items: flex-end;
    padding-bottom: 3rem;
    background-image: url('waves2.png');
    background-size: cover; background-position: center;
    margin-top: 82px; position: relative;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(245, 243, 237, 0.55);
}
.page-hero-content {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.page-hero h1 { font-size: 3rem; letter-spacing: -0.01em; }
.page-hero--hills { background-image: url('3hills.png'); }

/* ===== Container & Layout ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

/* ===== Next Concert (homepage) ===== */
#next-concert { text-align: center; }
.concert-card {
    max-width: 600px; margin: 3rem auto 0;
    padding: 3rem; border: 1px solid var(--border-subtle); background: white;
}
.concert-card h3 { font-size: 2rem; margin-bottom: 1.5rem; }
.concert-details { margin-bottom: 2rem; color: var(--text-light); }
.concert-details p { margin: 0.5rem 0; }
.qr-block { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border-subtle); }
.qr-label { font-size: 0.875rem; color: var(--text-light); margin-bottom: 0.5rem; }
.qr-code { width: 150px; height: 150px; display: block; margin: 0 auto; }
.also-coming-up { margin-top: 1.5rem; font-size: 0.9375rem; color: var(--text-light); }
.ethos-second { margin-top: 1rem; }

/* ===== Buttons ===== */
.btn-primary {
    display: inline-block; padding: 14px 32px;
    background-color: var(--sage-green); color: var(--cream);
    border: none; border-radius: 0;
    font-family: 'EB Garamond', serif; font-size: 1.125rem;
    cursor: pointer; transition: background-color 0.3s ease; text-decoration: none;
}
.btn-primary:hover { background-color: #7a8c73; text-decoration: none; }
.btn-secondary {
    display: inline-block; padding: 12px 28px;
    background: transparent; color: var(--sage-green);
    border: 1px solid var(--sage-green); border-radius: 0;
    font-family: 'EB Garamond', serif; font-size: 1rem;
    cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
.btn-secondary:hover { background: var(--sage-green); color: var(--cream); text-decoration: none; }
.btn-submit { width: 100%; }

/* ===== Audio Player ===== */
#audio { background: white; padding: 2.5rem 0; }
#audio h2 { text-align: center; margin-bottom: 2rem; }
.audio-player { max-width: 700px; margin: 0 auto; }
.audio-intro { color: var(--text-light); font-size: 1rem; margin-bottom: 2rem; }
.track-list { margin-bottom: 2rem; }
.track-item { padding: 1rem; border-bottom: 1px solid var(--border-subtle); cursor: pointer; transition: background-color 0.3s ease; }
.track-item:hover { background-color: rgba(139, 157, 131, 0.05); }
.track-item.active { background-color: rgba(139, 157, 131, 0.1); }
.track-title { font-weight: 500; color: var(--text-dark); }
.track-source { font-size: 0.875rem; color: var(--text-light); margin-top: 0.25rem; }
.audio-controls { display: flex; align-items: center; gap: 1rem; padding: 1.5rem; border: 1px solid var(--border-subtle); }
.play-btn {
    width: 48px; height: 48px; border-radius: 50%;
    background-color: var(--sage-green); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: background-color 0.3s ease;
}
.play-btn:hover { background-color: #7a8c73; }
.play-icon { width: 0; height: 0; border-style: solid; border-width: 8px 0 8px 14px; border-color: transparent transparent transparent var(--cream); margin-left: 3px; }
.pause-icon { display: none; width: 14px; height: 16px; border-left: 4px solid var(--cream); border-right: 4px solid var(--cream); }
.play-btn.playing .play-icon { display: none; }
.play-btn.playing .pause-icon { display: block; }
.progress-container { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.progress-bar { width: 100%; height: 4px; background-color: var(--border-subtle); cursor: pointer; position: relative; }
.progress-fill { height: 100%; background-color: var(--sage-green); width: 0%; transition: width 0.1s linear; }
.time-display { font-size: 0.875rem; color: var(--text-light); }

/* ===== Reviews / Social Proof ===== */
#reviews { background: white; padding: 2.5rem 0; }
.reviews-container { max-width: 800px; margin: 0 auto; }
.review { margin-bottom: 2rem; }
.review:last-child { margin-bottom: 0; }
.review-text { font-style: italic; font-size: 1.125rem; line-height: 1.8; margin-bottom: 1rem; }
.review-attribution { text-align: right; color: var(--text-light); font-size: 0.9375rem; }
.accolade { text-align: center; margin-top: 2rem; color: var(--text-light); }

/* ===== Ethos (homepage section) ===== */
#ethos { text-align: center; }
.ethos-content { max-width: 700px; margin: 0 auto; }
#ethos h2 { margin-bottom: 2rem; }
#ethos p { margin-bottom: 2rem; font-size: 1.0625rem; line-height: 1.8; }
.ethos-link { font-family: 'EB Garamond', serif; font-size: 1.125rem; }
.history-note { margin-top: 3rem; font-size: 0.9375rem; color: var(--text-light); }

/* ===== Composers (homepage section) ===== */
#composers { background: white; }
#composers h2 { text-align: center; margin-bottom: 1rem; }
.composers-intro { text-align: center; color: var(--text-light); margin-bottom: 2rem; }
.composers-list { max-width: 600px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.composer-link { text-align: center; padding: 2rem; border: 1px solid var(--border-subtle); transition: border-color 0.3s ease; }
.composer-link:hover { border-color: var(--sage-green); text-decoration: none; }
.composer-name { font-family: 'EB Garamond', serif; font-size: 1.25rem; color: var(--text-dark); }

/* ===== Mailing List ===== */
#mailing-list { text-align: center; }
#mailing-list h2 { margin-bottom: 1rem; }
.mailing-list-benefit { color: var(--text-light); margin-bottom: 2rem; }
.mailing-form { max-width: 500px; margin: 0 auto; }
.form-group { margin-bottom: 1rem; text-align: left; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9375rem; }
.form-group input[type="email"],
.form-group input[type="text"] {
    width: 100%; padding: 12px;
    border: 1px solid var(--border-subtle); border-radius: 0;
    font-family: 'Lora', serif; font-size: 1rem; background: white;
}
.form-group input[type="email"]:focus,
.form-group input[type="text"]:focus {
    outline: none; border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(139, 157, 131, 0.15);
}
.checkbox-group { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 1.5rem; }
.checkbox-group input[type="checkbox"] { margin-top: 0.25rem; flex-shrink: 0; }
.checkbox-group label { font-size: 0.875rem; color: var(--text-light); }

/* ===== Footer ===== */
footer { background: white; border-top: 1px solid var(--border-subtle); padding: 3rem 0; }
.footer-content { max-width: 1200px; margin: 0 auto; padding: 0 2rem; text-align: center; }
.footer-nav { margin-bottom: 2rem; }
.footer-nav ul { list-style: none; display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.footer-nav a {
    font-family: 'EB Garamond', serif; color: var(--text-dark);
    font-variant: small-caps; letter-spacing: 0.05em; font-size: 0.8125rem;
    transition: color 0.3s ease;
}
.footer-nav a:hover { color: var(--sage-green); text-decoration: none; }
.copyright { color: var(--text-light); font-size: 0.875rem; }

/* ===== Focus States ===== */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--sage-green); outline-offset: 2px;
}

/* ===== About Page ===== */
.about-intro-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
    max-width: 1000px; margin: 0 auto;
}
.about-intro-grid img { width: 100%; height: auto; border: 1px solid var(--border-subtle); }
.about-intro-text p { font-size: 1.0625rem; line-height: 1.8; margin-bottom: 1.5rem; }
.people-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 800px; margin: 0 auto; }
.people-grid--single { grid-template-columns: 1fr; max-width: 400px; }
.accompanist-note { font-size: 0.875rem; color: var(--text-light); margin-top: 1rem; font-style: italic; }
.profile-card { text-align: center; padding: 2rem; border: 1px solid var(--border-subtle); background: white; }
.profile-initial {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--sage-green); color: var(--cream);
    font-family: 'EB Garamond', serif; font-size: 2rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}
.profile-card h3 { font-size: 1.375rem; margin-bottom: 0.25rem; }
.profile-role { font-variant: small-caps; font-size: 0.875rem; color: var(--text-light); letter-spacing: 0.05em; margin-bottom: 1rem; }
.profile-card p { font-size: 0.9375rem; color: var(--text-light); line-height: 1.7; }
.patron-block { text-align: center; max-width: 500px; margin: 0 auto; padding: 3rem 0; border-top: 1px solid var(--border-subtle); }
.patron-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-light); margin-bottom: 0.75rem; }
.patron-name { font-family: 'EB Garamond', serif; font-size: 1.5rem; font-style: italic; color: var(--text-dark); margin-bottom: 0.5rem; }
.patron-note { font-size: 0.9375rem; color: var(--text-light); }

/* ===== Photography ===== */
.profile-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; object-position: center top; display: block; margin: 0 auto 0.5rem; }
.profile-photo-credit { font-size: 0.6875rem; color: var(--text-light); text-align: center; margin-bottom: 1.25rem; font-style: italic; }
.past-photo { max-width: 800px; margin: 0 auto 3rem; }
.past-photo img { width: 100%; height: auto; display: block; }
.listen-photo { max-width: 700px; margin: 0 auto 2.5rem; }
.listen-photo img { width: 100%; height: auto; display: block; }
.ethos-photo { max-width: 500px; margin: 0 auto 3rem; }
.ethos-photo img { width: 100%; height: auto; display: block; }
/* Shared photo credit caption */
.photo-fig figcaption { font-size: 0.6875rem; color: var(--text-light); text-align: right; margin-top: 0.375rem; font-style: italic; letter-spacing: 0.01em; }
.photo-handle { color: var(--sage-green); font-style: normal; }

/* ===== Timeline ===== */
.timeline { position: relative; max-width: 680px; margin: 0 auto; padding-left: 0; }
.timeline::before {
    content: ''; position: absolute;
    left: 72px; top: 0.6rem; bottom: 0;
    width: 1px; background: var(--border-subtle);
}
.timeline-entry { display: flex; gap: 0; margin-bottom: 3rem; position: relative; align-items: flex-start; }
.timeline-year {
    font-family: 'EB Garamond', serif; font-size: 1.75rem;
    color: var(--sage-green); opacity: 0.7;
    min-width: 72px; text-align: right; padding-top: 0; line-height: 1.3;
    padding-right: 1rem;
    flex-shrink: 0;
}
.timeline-dot {
    position: absolute; left: 68px; top: 0.55rem;
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--sage-green); flex-shrink: 0;
}
.timeline-text { padding-left: 2rem; }
.timeline-text h4 { font-family: 'EB Garamond', serif; font-size: 1.125rem; margin-bottom: 0.25rem; }
.timeline-text p { font-size: 0.9375rem; color: var(--text-light); }

/* ===== Events Page ===== */
.events-list { max-width: 800px; margin: 0 auto; }
.event-card {
    display: grid; grid-template-columns: 100px 1fr auto;
    gap: 2rem; align-items: center;
    padding: 2rem; border: 1px solid var(--border-subtle); background: white;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease, transform 0.25s ease;
}
.event-card:hover { border-color: var(--sage-green); transform: translateY(-2px); }
.event-date { text-align: center; border-right: 1px solid var(--border-subtle); padding-right: 2rem; }
.event-date-num { font-family: 'EB Garamond', serif; font-size: 2.5rem; line-height: 1; color: var(--sage-green); }
.event-date-month { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-top: 0.25rem; }
.event-date-year { font-size: 0.8rem; color: var(--text-light); }
.event-details h3 { font-size: 1.375rem; margin-bottom: 0.25rem; }
.event-venue { font-style: italic; color: var(--text-light); font-size: 0.9375rem; margin-top: 0.25rem; }
.event-desc { font-size: 0.9375rem; margin-top: 0.5rem; color: var(--text-light); }
.event-cta { flex-shrink: 0; }
.featured-concert { max-width: 800px; margin: 0 auto; }
.past-performances { max-width: 680px; margin: 0 auto; color: var(--text-light); font-size: 1rem; line-height: 1.8; }

/* ===== Listen / Composers Page ===== */
.listen-intro { max-width: 680px; margin: 0 auto 3rem; color: var(--text-light); font-size: 1.0625rem; line-height: 1.8; text-align: center; }
.composer-profile {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start;
    margin-bottom: 5rem; padding-bottom: 5rem;
    border-bottom: 1px solid var(--border-subtle);
}
.composer-profile:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.composer-profile--reverse { direction: rtl; }
.composer-profile--reverse > * { direction: ltr; }
.composer-image-placeholder {
    width: 100%; aspect-ratio: 3/4;
    background: var(--border-subtle);
    display: flex; align-items: center; justify-content: center;
}
.composer-name-heading { font-size: 2rem; margin-bottom: 0.25rem; }
.composer-location { font-style: italic; color: var(--text-light); font-size: 0.9375rem; margin-bottom: 1.5rem; }
.composer-quote {
    border-left: 2px solid var(--sage-green); padding-left: 1.5rem;
    margin: 2rem 0; font-style: italic; color: var(--text-light); line-height: 1.7;
}
.composer-quote cite { display: block; font-style: normal; font-size: 0.875rem; margin-top: 0.5rem; }
.accolade-badge {
    display: inline-block; border: 1px solid var(--sage-green);
    color: var(--sage-green); padding: 4px 12px;
    font-size: 0.8rem; font-family: 'EB Garamond', serif;
    letter-spacing: 0.05em; margin-bottom: 1.5rem;
}
.composer-works { margin: 1.5rem 0; }
.composer-works h4 { font-family: 'EB Garamond', serif; font-size: 1rem; color: var(--text-light); font-style: italic; margin-bottom: 0.5rem; }
.composer-works ul { list-style: none; }
.composer-works li { font-size: 0.9375rem; color: var(--text-light); padding: 0.25rem 0; border-bottom: 1px solid var(--border-subtle); }
.composer-ext-link { display: inline-block; margin-top: 1.5rem; font-family: 'EB Garamond', serif; font-size: 1rem; }
.composer-ext-link::after { content: ' →'; }

/* ===== Ethos Page ===== */
.ethos-page-header {
    text-align: center; padding: 8rem 2rem 5rem;
    margin-top: 82px; background: var(--cream);
}
.ethos-title { font-size: 5rem; font-weight: 400; line-height: 1.1; margin-bottom: 2rem; letter-spacing: -0.02em; }
.ethos-rule { width: 60px; height: 1px; background: var(--sage-green); margin: 0 auto; }
.ethos-body { max-width: 680px; margin: 0 auto; padding: 0 2rem; }
.ethos-opening {
    font-family: 'EB Garamond', serif; font-size: 1.875rem;
    font-style: italic; text-align: center; line-height: 1.5;
    margin-bottom: 1rem;
}
.ethos-attribution { text-align: center; color: var(--text-light); font-size: 0.9375rem; margin-bottom: 4rem; }
.ethos-section { padding: 4rem 0; border-top: 1px solid var(--border-subtle); }
.ethos-section h2 { margin-bottom: 2rem; }
.ethos-section p { font-size: 1.0625rem; line-height: 1.85; margin-bottom: 1.5rem; }
.drop-cap::first-letter {
    font-family: 'EB Garamond', serif; font-size: 4.5rem;
    float: left; line-height: 0.8;
    margin-right: 0.08em; margin-top: 0.05em;
    color: var(--sage-green);
}
.ethos-pull-quote {
    border-left: 2px solid var(--sage-green);
    padding: 0.5rem 0 0.5rem 2rem;
    margin: 3rem 0;
    font-family: 'EB Garamond', serif; font-size: 1.5rem;
    font-style: italic; line-height: 1.5;
    color: var(--text-dark);
}
.ethos-closing { font-size: 1.0625rem; line-height: 1.8; color: var(--text-light); }

/* ===== Contact Page ===== */
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 5rem; max-width: 900px; margin: 0 auto; }
.contact-form-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 1.5rem; display: block; }
.form-row { margin-bottom: 1.25rem; }
.form-row label { display: block; margin-bottom: 0.4rem; font-size: 0.9375rem; }
.form-row input[type="text"],
.form-row input[type="email"] {
    width: 100%; padding: 12px;
    border: 1px solid var(--border-subtle); border-radius: 0;
    font-family: 'Lora', serif; font-size: 1rem; background: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-row input[type="text"]:focus,
.form-row input[type="email"]:focus {
    outline: none; border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(139, 157, 131, 0.15);
}
.form-select {
    width: 100%; padding: 12px;
    border: 1px solid var(--border-subtle); border-radius: 0;
    font-family: 'Lora', serif; font-size: 1rem; background: white;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B9D83' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-select:focus {
    outline: none; border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(139, 157, 131, 0.15);
}
textarea {
    width: 100%; padding: 12px;
    border: 1px solid var(--border-subtle); border-radius: 0;
    font-family: 'Lora', serif; font-size: 1rem; background: white;
    resize: vertical; min-height: 160px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
textarea:focus {
    outline: none; border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(139, 157, 131, 0.15);
}
.contact-aside { padding-top: 0.5rem; }
.contact-aside p { font-size: 1rem; line-height: 1.8; color: var(--text-light); margin-bottom: 1rem; }
.contact-divider { height: 1px; background: var(--border-subtle); margin: 2rem 0; }
.contact-aside h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }
    .header-content { position: relative; }
    nav ul {
        display: none; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(245, 243, 237, 0.98);
        border-bottom: 1px solid var(--border-subtle);
        padding: 1rem 2rem 2rem; gap: 0.75rem;
    }
    nav ul.open { display: flex; }
    .nav-toggle { display: flex; }
    section { padding: 4rem 0; }
    .concert-card { padding: 2rem; }
    .composers-list { grid-template-columns: 1fr; }
    .footer-nav ul { flex-direction: column; gap: 0.5rem; }
    .about-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
    .people-grid { grid-template-columns: 1fr; }
    .composer-profile { grid-template-columns: 1fr; gap: 2rem; }
    .composer-profile--reverse { direction: ltr; }
    .event-card { grid-template-columns: 1fr; }
    .event-date { border-right: none; border-bottom: 1px solid var(--border-subtle); padding-right: 0; padding-bottom: 1rem; text-align: left; display: flex; gap: 0.5rem; align-items: baseline; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .ethos-title { font-size: 3.5rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .container { padding: 0 1rem; }
    .concert-card { padding: 1.5rem; }
    section { padding: 3rem 0; }
    .page-hero h1 { font-size: 2.25rem; }
    .ethos-title { font-size: 2.75rem; }
    .ethos-opening { font-size: 1.375rem; }
}
