:root {
  --page-bg: #fbfaf7;
  --surface: #ffffff;
  --surface-muted: #f2efe8;
  --text: #222329;
  --muted: #6f727d;
  --accent: #5f62c2;
  --accent-deep: #404497;
  --line: #ddd7cb;
  --shadow: 0 20px 50px rgba(26, 28, 39, 0.08);
  --radius: 22px;
  --content: 760px;
  --wide: 1120px;
  --font-body: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-heading: "Source Serif 4", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

a:hover {
  color: var(--accent);
}

p,
ul,
ol,
blockquote {
  margin: 0 0 1.2rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

h4 {
  font-size: 1.1rem;
}

.shell {
  width: min(calc(100% - 2rem), var(--wide));
  margin: 0 auto;
}

.shell--page {
  width: min(calc(100% - 2rem), var(--content));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(221, 215, 203, 0.7);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 220px;
  max-width: 100%;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  font-size: 0.96rem;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
}

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

.hero {
  padding: 5rem 0 2.5rem;
}

.hero--home {
  padding-top: 4.5rem;
}

.page-title,
.hero__title {
  text-align: center;
}

.hero__lead,
.page-intro {
  max-width: 44rem;
  margin: 0 auto;
  color: var(--muted);
  text-align: center;
  font-size: 1.08rem;
}

.surface {
  background: var(--surface);
  border: 1px solid rgba(221, 215, 203, 0.75);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.poster {
  overflow: hidden;
  margin: 2.5rem auto 1.8rem;
}

.poster img {
  width: 100%;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(95, 98, 194, 0.08);
  color: var(--accent-deep);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.concert-meta {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0;
}

.concert-meta__item {
  padding: 1rem 1.1rem;
}

.concert-meta__item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.split {
  display: grid;
  gap: 2rem;
}

.split--image {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
}

.photo-frame {
  overflow: hidden;
}

.photo-frame img {
  width: 100%;
  object-fit: cover;
}

.section {
  padding: 2.5rem 0;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

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

.facts-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 1.35rem;
}

.card h3,
.card h4 {
  color: var(--text);
}

.eyebrow {
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #fff;
}

.button--ghost {
  background: transparent;
  color: var(--accent-deep);
}

.button--ghost:hover {
  background: rgba(95, 98, 194, 0.08);
  color: var(--accent-deep);
}

.subtle {
  color: var(--muted);
}

.prose > *:last-child,
.card > *:last-child,
.page-intro > *:last-child {
  margin-bottom: 0;
}

.prose ul {
  padding-left: 1.2rem;
}

.prose blockquote {
  margin-left: 0;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--accent);
  background: rgba(95, 98, 194, 0.06);
  color: var(--accent-deep);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.preview-banner {
  padding: 0.8rem 1rem;
  background: #1f234f;
  color: #fff;
  text-align: center;
  font-size: 0.94rem;
}

.section--tight {
  padding-top: 0.75rem;
}

.member-note,
.drive-panel {
  padding: 1.35rem;
}

.quick-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.quick-card {
  display: block;
  padding: 1.1rem 1.2rem;
  color: var(--text);
  text-decoration: none;
}

.quick-card:hover {
  border-color: rgba(95, 98, 194, 0.6);
  color: var(--text);
}

.quick-card__title {
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.drive-embed {
  overflow: hidden;
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.drive-embed iframe {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
}

.archive-year {
  margin-top: 2.5rem;
}

.archive-list {
  display: grid;
  gap: 1rem;
}

.archive-item {
  padding: 1.2rem 1.25rem;
}

.archive-item strong {
  font-size: 1.05rem;
}

.archive-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.6rem;
}

.profile-grid {
  display: grid;
  gap: 2rem;
}

.profile {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 1.6rem;
  align-items: start;
  padding: 1.4rem;
}

.profile img {
  width: 100%;
  border-radius: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-card {
  padding: 1.25rem;
}

.detail-header {
  padding-bottom: 1rem;
}

.detail-header .eyebrow {
  margin-bottom: 0.8rem;
}

.detail-image {
  margin: 1.75rem 0 2rem;
}

.detail-image img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(221, 215, 203, 0.75);
}

.media-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-card {
  overflow: hidden;
  padding: 0;
}

.media-card img {
  width: 100%;
}

.media-card figcaption {
  padding: 0.9rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  margin-top: 5rem;
  border-top: 1px solid rgba(221, 215, 203, 0.75);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0 2.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer__inner a {
  color: inherit;
}

.redirect-note {
  max-width: 36rem;
  margin: 9rem auto;
  padding: 1.5rem;
}

@media (max-width: 900px) {
  .split--image,
  .profile,
  .contact-grid,
  .card-grid--two,
  .facts-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .site-header__inner,
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3.6rem;
  }

  .profile {
    padding: 1.1rem;
  }

  .poster {
    margin-top: 2rem;
  }

  .drive-embed iframe {
    min-height: 540px;
  }
}
