:root {
    --header-bg: #9a9090;
    --accent: #8b1a1a;
    --heading-blue: #2d3a6b;
    --text: #333;
    --card-bg: #f5f5f8;
    --max-width: 1200px;
}

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

body {
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: #fff;
}

/* ── Header ── */
header {
    background: var(--header-bg);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title {
    color: #fff;
    font-family: Georgia, serif;
    font-size: 1.4rem;
    text-decoration: none;
    font-weight: normal;
    letter-spacing: 0.02em;
}

nav a {
    color: var(--accent);
    text-decoration: none;
    margin-left: 28px;
    font-size: 0.95rem;
}

nav a:hover { text-decoration: underline; }
nav a.active { font-weight: bold; }

/* ── Hero (home page) ── */
.hero {
    display: flex;
    min-height: 500px;
}

.hero-image {
    width: 56%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-quotes {
    width: 44%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.quote { text-align: center; }

.quote blockquote {
    font-family: Georgia, serif;
    font-size: 1.15rem;
    font-style: italic;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.55;
}

.quote cite {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* ── Three cards ── */
.cards {
    display: flex;
    gap: 20px;
    padding: 50px 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.card {
    flex: 1;
    background: var(--card-bg);
    padding: 40px 30px;
    text-align: center;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    color: #555;
}

.card h2 {
    font-family: Georgia, serif;
    color: var(--heading-blue);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.card p { color: #555; }

/* ── Text sections ── */
.section {
    padding: 60px 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section h2 {
    font-family: Georgia, serif;
    font-size: 2rem;
    margin-bottom: 18px;
    color: #222;
}

.section p {
    font-size: 1.05rem;
    color: #444;
    max-width: 820px;
}

/* ── Full-width image band ── */
.image-band {
    height: 380px;
    overflow: hidden;
}

.image-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Page hero banner ── */
.page-banner {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.38);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner-overlay h1 {
    font-family: Georgia, serif;
    font-size: 3rem;
    color: #fff;
    letter-spacing: 0.04em;
}

/* ── Content grid (image + text alternating) ── */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.content-grid .text-block {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-grid .image-block { overflow: hidden; }

.content-grid .image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-grid h2 {
    font-family: Georgia, serif;
    font-size: 1.8rem;
    margin-bottom: 14px;
    color: #222;
}

.content-grid h3 {
    font-family: Georgia, serif;
    font-size: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.content-grid p { color: #444; line-height: 1.75; }

/* ── About bio ── */
.about-wrap {
    display: flex;
    gap: 60px;
    padding: 70px 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: flex-start;
}

.about-photo {
    flex-shrink: 0;
    width: 340px;
}

.about-photo img {
    width: 100%;
    display: block;
}

.about-text h2 {
    font-family: Georgia, serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
}

.about-text p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 1.05rem;
}

/* ── Ensembles ── */
.ensembles {
    padding: 60px 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.ensembles h2 {
    font-family: Georgia, serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #222;
}

.ensemble-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ensemble-item {
    border-left: 3px solid var(--accent);
    padding: 12px 20px;
    background: #fafafa;
}

.ensemble-item strong {
    font-family: Georgia, serif;
    font-size: 1.05rem;
    color: #222;
}

.ensemble-item span {
    color: #666;
    font-size: 0.9rem;
    margin-left: 8px;
}

/* ── Contact / mailto section ── */
.contact-cta {
    background: #f5f5f5;
    text-align: center;
    padding: 60px 40px;
}

.contact-cta h2 {
    font-family: Georgia, serif;
    font-size: 1.8rem;
    margin-bottom: 14px;
    color: #222;
}

.contact-cta p { color: #555; margin-bottom: 20px; }

.contact-cta a.email-link {
    display: inline-block;
    color: var(--accent);
    font-size: 1.1rem;
    border: 1px solid var(--accent);
    padding: 10px 28px;
    text-decoration: none;
}

.contact-cta a.email-link:hover { background: var(--accent); color: #fff; }

/* ── Footer ── */
footer {
    background: var(--header-bg);
    color: #eee;
    text-align: center;
    padding: 18px 40px;
    font-size: 0.85rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    header { flex-direction: column; gap: 12px; text-align: center; padding: 16px 20px; }
    nav a { margin: 0 10px; }
    .hero { flex-direction: column; }
    .hero-image, .hero-quotes { width: 100%; }
    .hero-quotes { padding: 30px 24px; gap: 28px; }
    .cards { flex-direction: column; padding: 30px 20px; }
    .content-grid { grid-template-columns: 1fr; }
    .content-grid .image-block { height: 250px; }
    .about-wrap { flex-direction: column; padding: 40px 20px; }
    .about-photo { width: 100%; }
    .section { padding: 40px 20px; }
    .ensembles { padding: 40px 20px; }
    .page-banner-overlay h1 { font-size: 2rem; }
}
