/* Manchester Choral Society — shared styles */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #1B1B1F;
  --wine: #6B1F2A;
  --wine-dark: #4A1620;
  --brass: #C79A3E;
  --paper: #FFFFFF;
  --paper-tint: #FAF8F6;
  --line: #E7E2DD;
  --muted: #6B6560;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

h1, h2, h3, .display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

/* Announcement bar */
.announce {
  background: var(--wine-dark);
  color: #F3E9DC;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.55rem 1rem;
}
.announce a { text-decoration: underline; text-underline-offset: 2px; }

/* Header / nav */
header.site {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.brand img.logo {
  height: 56px;
  width: auto;
  display: block;
}
body.home .brand img.logo {
  height: 88px;
}
.brand small {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 0.85rem;
}
nav.primary ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav.primary li + li { margin-left: 2rem; } /* fallback for browsers without flex gap support */
nav.primary a {
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}
nav.primary a:hover, nav.primary a[aria-current="page"] {
  border-bottom-color: var(--brass);
}

/* Hero */
.hero {
  background: var(--wine);
  color: #F6EFE6;
  padding: 4.5rem 0 5rem;
}
.hero .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  max-width: 16ch;
  color: #F6EFE6;
}
.hero p.lede {
  font-size: 1.15rem;
  max-width: 46ch;
  margin-top: 1.2rem;
  color: #E6D8C6;
}

.page-hero {
  background: var(--paper-tint);
  border-bottom: 1px solid var(--line);
  padding: 3.2rem 0;
}
.page-hero .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3rem); }
.page-hero p { max-width: 56ch; color: var(--muted); margin-top: 0.8rem; font-size: 1.05rem; }

/* SATB voice grid (signature element) */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.14);
  margin-top: 3rem;
  border: 1px solid rgba(255,255,255,0.14);
}
.voice-tile {
  background: var(--wine);
  padding: 1.8rem 1.4rem 1.6rem;
  display: block;
  transition: background 0.2s ease;
}
.voice-tile:hover { background: var(--wine-dark); }
.voice-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--brass);
  line-height: 1;
}
.voice-part {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9B79E;
  margin-top: 0.5rem;
}
.voice-action {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 0.7rem;
  color: #F6EFE6;
}
.voice-desc {
  font-size: 0.85rem;
  color: #D9C8B4;
  margin-top: 0.4rem;
}

@media (max-width: 800px) {
  .voice-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Photo band */
.photo-band {
  padding: 3.2rem 0;
  background: var(--paper);
}
.photo-band img {
  display: block;
  width: 100%;
  max-width: 717px;
  height: auto;
  margin: 0 auto;
  object-fit: cover;
}
.photo-caption {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* Sections */
section.block { padding: 4rem 0; }
section.block.tint { background: var(--paper-tint); }
.section-head { max-width: 60ch; margin-bottom: 2.2rem; }
.section-head .eyebrow {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--wine); font-weight: 600; margin-bottom: 0.5rem;
}
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  border: 1px solid var(--line);
  padding: 1.6rem;
  background: var(--paper);
}
.card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

.btn {
  display: inline-block;
  background: var(--wine);
  color: #FFF;
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--wine-dark); }
.btn.ghost {
  background: transparent;
  color: var(--wine);
  border: 1.5px solid var(--wine);
}
.btn.ghost:hover { background: var(--wine); color: #FFF; }

/* Testimonials */
.testimonial {
  border-left: 3px solid var(--brass);
  padding-left: 1.3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink);
}
.testimonial cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.8rem;
}

/* Timeline / list rows */
.info-row {
  display: flex;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: none; }
.info-row .date {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--wine);
  min-width: 9rem;
}
.info-row h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.02rem; margin: 0 0 0.3rem; }
.info-row p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Footer */
footer.site {
  background: var(--ink);
  color: #C9C4BD;
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}
footer.site .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
footer.site h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A847C;
  margin-bottom: 0.9rem;
  font-weight: 600;
}
footer.site a { display: block; font-size: 0.9rem; margin-bottom: 0.5rem; color: #E4DFD8; }
footer.site a:hover { color: var(--brass); }
footer.site .copy { font-size: 0.8rem; color: #6E6960; margin-top: 2rem; }

.placeholder-note {
  background: #FBF3D9;
  border: 1px solid #E8D68A;
  color: #6B5A1A;
  font-size: 0.85rem;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
}
