/* Dalston Male Voice Choir — plain CSS, no build step required. */

:root {
  --bg: #fbf9f4;
  --fg: #332821;
  --card: #ffffff;
  --primary: #6f1530;
  --primary-dark: #5f1129;
  --muted-bg: #f4efe8;
  --muted-fg: #6b5d51;
  --muted-fg-2: #5f554d;
  --border: #e4dccf;
  --border-2: #d8cabc;
  --dark-bg: #10222b;
  --header-bg: #243741;
  --hero-bg: #561328;
  --accent-terracotta: #b7654c;
  --accent-terracotta-dark: #a3553d;
  --radius-lg: 2rem;
  --radius-md: 1.5rem;
  --radius-sm: 1rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 5rem 0; }
.section--tint { background: var(--muted-bg); }
.section--dark { background: var(--dark-bg); color: #fff; }

.section-kicker {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.section-kicker--light { color: rgba(255,255,255,0.6); }
.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 1.25rem;
}
.section-title--light { color: #fff; }
.section-body {
  color: var(--muted-fg);
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 0 0 1rem;
  max-width: 46rem;
}
.section-body--light { color: rgba(255,255,255,0.78); }
.section-intro { max-width: 48rem; margin-bottom: 2.5rem; }
.section-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.subhead { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 0.5rem; }
.muted-text { color: var(--muted-fg-2); font-size: 0.95rem; line-height: 1.8; margin: 0.5rem 0 0; }
.muted-text-sm { color: var(--muted-fg); font-size: 0.9rem; margin: 0.35rem 0 0; }
.eyebrow { color: var(--primary); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; margin: 0 0 0.5rem; }
.eyebrow-light { color: rgba(255,255,255,0.6); }
.eyebrow--principal { color: rgba(255,255,255,0.55); }
.eyebrow--tint { color: #8a5d4d; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 150ms ease, opacity 150ms ease;
}
.btn-lg { padding: 0.9rem 1.75rem; }
.btn-primary { background: var(--accent-terracotta); color: #fff; }
.btn-primary:hover { background: var(--accent-terracotta-dark); }
.btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.15); }
.btn-secondary:hover { background: rgba(255,255,255,0.18); }
.btn-outline { background: var(--card); color: var(--fg); border-color: var(--border); }
.btn-outline:hover { background: var(--card); opacity: 0.85; }
.btn-tint-solid { background: var(--primary); color: #fff; }
.btn-tint-solid:hover { background: var(--primary-dark); }
.btn-tint-outline { background: #fff; color: #3a312b; border-color: var(--border-2); }
.btn-tint-outline:hover { opacity: 0.85; }

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(36, 55, 65, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}
.header-inner {
  min-height: 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand { display: flex; align-items: center; gap: 1rem; min-width: 0; }
.logo-badge {
  flex-shrink: 0;
  width: 6rem;
  height: 6rem;
  border-radius: 999px;
  background: var(--primary);
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.logo-badge img { width: 100%; height: 100%; border-radius: 999px; background: rgba(255,255,255,0.95); object-fit: cover; padding: 0.25rem; }
.logo-badge--sm { width: 3.5rem; height: 3.5rem; }
.brand-text { min-width: 0; }
.brand-kicker { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.34em; color: rgba(255,255,255,0.7); }
.brand-title { display: block; font-size: 1.7rem; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.nav-desktop { display: none; }
.header-actions { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 640px) { .header-actions { display: flex; } }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.dropdown { position: relative; }
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.88);
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  cursor: pointer;
}
.dropdown-toggle:hover { background: rgba(255,255,255,0.16); }
.dropdown-toggle .chevron { transition: transform 150ms ease; font-size: 0.7rem; }
.dropdown-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.75rem);
  width: 16rem;
  background: var(--header-bg);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.3);
  padding: 0.5rem;
}
.dropdown-menu.open { display: grid; gap: 0.15rem; }
.dropdown-menu a {
  display: block;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.1); color: #fff; }

.nav-mobile-toggle {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}
@media (min-width: 1024px) { .nav-mobile-toggle { display: none; } }

.nav-mobile { display: none; border-top: 1px solid rgba(255,255,255,0.1); background: var(--header-bg); }
.nav-mobile.open { display: block; }
.nav-mobile-links { display: grid; gap: 0.75rem; padding: 1rem 0; }
.nav-mobile-links a { font-size: 0.95rem; color: rgba(255,255,255,0.85); }
@media (min-width: 1024px) { .nav-mobile { display: none !important; } }

/* hero */
.hero { position: relative; overflow: hidden; background: var(--hero-bg); color: #fff; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(183,101,76,0.38), transparent 28%),
              linear-gradient(135deg, rgba(111,21,48,0.9), rgba(62,15,31,0.92));
}
.hero-inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: 4.5rem 0 5rem;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.2fr 0.8fr; padding: 7rem 0; }
}
.hero-title { font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 1; margin: 0.75rem 0 1.25rem; max-width: 42rem; }
.hero-lead { font-size: 1.15rem; line-height: 1.75; color: rgba(255,255,255,0.78); max-width: 38rem; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.highlight-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .highlight-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .highlight-grid { grid-template-columns: repeat(4, 1fr); } }
.highlight-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.08);
  padding: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.highlight-title { font-weight: 600; color: #fff; margin: 0 0 0.5rem; }
.highlight-body { color: rgba(255,255,255,0.72); margin: 0; }

.hero-side { display: flex; flex-direction: column; justify-content: flex-end; gap: 1rem; }
.hero-photo { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 25px 50px rgba(0,0,0,0.2); }
.hero-photo img { width: 100%; height: 380px; object-fit: cover; }
.hero-principals { border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.08); padding: 1.5rem; }
.hero-principals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.hero-principals-role { font-weight: 600; color: #fff; margin: 0; }

/* generic two-column layout */
.two-col { display: grid; gap: 3rem; }
@media (min-width: 1024px) {
  .two-col { align-items: center; }
  .two-col--choir { grid-template-columns: 0.95fr 1.05fr; }
  .two-col--repertoire { grid-template-columns: 0.9fr 1.1fr; }
  .two-col--recordings { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
  .two-col--diary { grid-template-columns: 1.15fr 0.85fr; }
  .two-col--community { grid-template-columns: 0.95fr 1.05fr; }
  .two-col--join { grid-template-columns: 1.08fr 0.92fr; }
  .two-col--constitution { grid-template-columns: 0.88fr 1.12fr; align-items: start; }
  .two-col--contact { grid-template-columns: 0.9fr 1.1fr; }
}

.info-grid { display: grid; gap: 0.75rem; grid-template-columns: 1fr; margin-top: 1.5rem; }
@media (min-width: 640px) { .info-grid { grid-template-columns: 1fr 1fr; } }
.info-card { border: 1px solid var(--border); border-radius: 1.5rem; background: var(--card); padding: 1rem 1.25rem; font-size: 0.9rem; line-height: 1.8; color: var(--muted-fg-2); box-shadow: 0 2px 10px rgba(0,0,0,0.03); }

.choir-photo-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.choir-photo { width: 100%; height: 16rem; border-radius: 1.75rem; border: 1px solid var(--border); object-fit: cover; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.choir-photo--wide { height: 18rem; grid-column: 1 / -1; }

/* principals */
.section-intro { max-width: 48rem; }
.principals-grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 1024px) { .principals-grid { grid-template-columns: 1fr 1fr; } }
.principal-card { border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.08); overflow: hidden; box-shadow: 0 20px 45px rgba(0,0,0,0.1); }
.principal-photo { width: 100%; height: 20rem; object-fit: cover; }
.principal-photo--deakin { object-position: 52% 22%; }
.principal-photo--gash { object-position: 50% 18%; }
.principal-body { padding: 1.75rem; }
.principal-name { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; margin: 0.75rem 0 1rem; }
.principal-text { line-height: 1.85; color: rgba(255,255,255,0.76); margin: 0; }

/* repertoire */
.repertoire-photo { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 15px 35px rgba(0,0,0,0.05); min-height: 22rem; }
.repertoire-photo img { width: 100%; height: 100%; min-height: 22rem; object-fit: cover; }
.repertoire-list { max-height: 22rem; overflow: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); padding: 1rem; box-shadow: inset 0 2px 8px rgba(0,0,0,0.04); display: grid; gap: 1rem; margin-top: 1.5rem; }
.repertoire-item { border-radius: 1.5rem; background: #f8f4ef; padding: 1.25rem; color: var(--muted-fg-2); line-height: 1.8; }

/* recordings */
.recording-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.recording-card { border-radius: 1.75rem; border: 1px solid var(--border-2); background: #fff; padding: 1.25rem; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.recording-title { font-weight: 600; letter-spacing: -0.01em; color: #231b17; margin: 0 0 0.5rem; }
.recording-note { font-size: 0.9rem; color: var(--muted-fg-2); line-height: 1.7; margin: 0; }
.media-card { border-radius: var(--radius-lg); border: 1px solid var(--border-2); background: #fff; padding: 1.5rem; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.media-card-title { font-size: 1.4rem; font-weight: 600; letter-spacing: -0.01em; color: #231b17; margin: 0.5rem 0 0.75rem; }
.media-card-text { font-size: 0.9rem; color: var(--muted-fg-2); line-height: 1.7; margin: 0 0 1.25rem; }
.media-card-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* concert diary */
.event-list { display: grid; gap: 1.25rem; }
.event-card { border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.event-card-top { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; }
.badge { display: inline-flex; border-radius: 999px; background: #f8f1ec; color: #8a2748; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; padding: 0.35rem 0.75rem; margin-bottom: 0.75rem; }
.event-title { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 0.75rem; }
.event-meta { display: grid; gap: 0.4rem; font-size: 0.9rem; color: var(--muted-fg-2); }
.event-ticket { max-width: 20rem; font-size: 0.9rem; line-height: 1.7; color: var(--muted-fg-2); }
.event-desc { margin-top: 1.25rem; font-size: 0.9rem; line-height: 1.8; color: var(--muted-fg-2); }
.empty-card { border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); padding: 2rem; color: var(--muted-fg-2); }

.reviews-col { display: grid; gap: 1.25rem; }
.reviews-photo-card { border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.reviews-photo-card img { width: 100%; height: 14rem; object-fit: cover; }
.reviews-photo-body { padding: 1.5rem; }
.reviews-note-card { border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }

/* updates */
.news-grid { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .news-grid { grid-template-columns: 1fr 1fr; } }
.news-card { border-radius: var(--radius-lg); border: 1px solid var(--border-2); background: #fff; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.news-card img { width: 100%; height: 16rem; object-fit: cover; }
.news-card-body { padding: 1.75rem; display: grid; gap: 1rem; }
.news-title { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; color: #231b17; }
.news-summary { font-size: 1rem; line-height: 1.8; color: var(--muted-fg-2); }
.news-content { font-size: 0.9rem; line-height: 1.8; color: var(--muted-fg-2); }
.history-card { margin-top: 2.5rem; border-radius: var(--radius-lg); border: 1px solid var(--border-2); background: #fff; padding: 1.75rem; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.history-grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 1024px) { .history-grid { grid-template-columns: 1fr 1fr; } }
.history-item { border-radius: 1.25rem; background: #f8f4ef; padding: 1.25rem; }
.history-item-title { font-weight: 600; letter-spacing: -0.01em; color: #231b17; margin: 0 0 0.5rem; }
.history-item-meta { font-size: 0.9rem; color: var(--muted-fg-2); margin: 0; }
.history-item-desc { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.8; color: var(--muted-fg-2); }

/* community */
.quote-block { border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.08); padding: 1.5rem; font-size: 1.15rem; line-height: 1.75; color: rgba(255,255,255,0.8); margin-top: 1.5rem; }
.quote-mark { display: block; color: var(--accent-terracotta); font-size: 2rem; margin-bottom: 0.75rem; font-family: var(--font-display); }
.community-photo-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.community-photo { width: 100%; height: 18rem; border-radius: 1.75rem; border: 1px solid rgba(255,255,255,0.1); object-fit: cover; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.community-photo--offset { margin-top: 2rem; }
@media (min-width: 640px) { .community-photo--offset { margin-top: 3.5rem; } }

/* join us */
.voice-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; margin: 1.5rem 0; }
.voice-card { border: 1px solid var(--border); border-radius: 1.5rem; background: var(--card); padding: 1rem 1.25rem; font-size: 0.9rem; font-weight: 500; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.membership-card { border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); padding: 1.5rem; box-shadow: 0 10px 25px rgba(0,0,0,0.05); display: grid; gap: 1.25rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .membership-card { grid-template-columns: 0.7fr 1.3fr; align-items: center; } }
.membership-price { font-size: 2.5rem; font-weight: 600; letter-spacing: -0.02em; margin: 0.5rem 0 0; }
.membership-text { display: grid; gap: 0.5rem; font-size: 0.9rem; line-height: 1.8; color: var(--muted-fg-2); }
.join-contacts { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .join-contacts { grid-template-columns: repeat(3, 1fr); } }
.contact-card { border: 1px solid var(--border); border-radius: 1.75rem; background: var(--card); padding: 1.25rem; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.contact-name { font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.contact-role { color: var(--primary); font-size: 0.9rem; margin: 0.25rem 0 0.75rem; }
.contact-line { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--muted-fg-2); margin: 0.3rem 0 0; }
.contact-line a:hover { color: var(--fg); }
.join-photo { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.join-photo img { width: 100%; height: 500px; object-fit: cover; }
@media (min-width: 1024px) { .join-photo img { height: 700px; } }

/* gallery */
.gallery-grid { display: grid; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
.gallery-card { border-radius: var(--radius-lg); border: 1px solid var(--border-2); background: #fff; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.gallery-card img { width: 100%; height: 18rem; object-fit: cover; }
.gallery-card-body { padding: 1.75rem; }
.gallery-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

/* constitution */
.pull-quote { border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); padding: 1.5rem; font-size: 1.15rem; line-height: 1.8; box-shadow: 0 2px 10px rgba(0,0,0,0.03); margin-top: 1.5rem; }
.constitution-box { border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); padding: 1.5rem; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.constitution-box-head { border-bottom: 1px solid var(--border); padding-bottom: 1.25rem; margin-bottom: 1.5rem; }
.constitution-body { max-height: 34rem; overflow: auto; display: grid; gap: 1rem; padding-right: 0.5rem; }
.constitution-paragraph { border-radius: 1.5rem; background: #f8f4ef; padding: 1rem; font-size: 0.9rem; line-height: 1.8; color: var(--muted-fg-2); white-space: pre-line; }

/* contact */
.venue-card { border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); padding: 1.5rem; box-shadow: 0 10px 25px rgba(0,0,0,0.05); margin-top: 1.5rem; }
.venue-name { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; margin: 1rem 0 0.5rem; }
.venue-line { font-size: 0.9rem; color: var(--muted-fg-2); margin: 0.35rem 0 0; }
.contact-grid { display: grid; gap: 1.25rem; }
.contact-card--lg { padding: 1.5rem; border-radius: var(--radius-lg); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.contact-card--lg .subhead { margin-top: 0.75rem; }

/* footer */
.site-footer { background: var(--header-bg); color: #fff; padding: 2rem 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-title { font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.footer-text { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin: 0.2rem 0 0; max-width: 26rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: #fff; }
