:root {
  --paper: #fbfbf7;
  --paper-soft: #f3f5ee;
  --ink: #1f302b;
  --muted: #5a6964;
  --leaf: #2f6d59;
  --teal: #1f7a83;
  --coral: #c64c31;
  --sun: #f5b33e;
  --plum: #573653;
  --line: rgba(31, 48, 43, 0.14);
  --white-line: rgba(255, 255, 255, 0.22);
  --shadow: 0 18px 52px rgba(31, 48, 43, 0.13);
  --max: 74rem;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  color: var(--ink);
  background: var(--paper);
  font-family: Avenir, "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 18% 9%, rgba(245, 179, 62, 0.18), transparent 27rem),
    radial-gradient(circle at 88% 18%, rgba(31, 122, 131, 0.12), transparent 30rem),
    linear-gradient(180deg, #fffefa 0%, #f3f6f0 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(31, 48, 43, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 48, 43, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.65rem 0.9rem;
  color: #fff;
  background: var(--ink);
  border-radius: 0.35rem;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.95rem;
  padding: 0.65rem clamp(1.2rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(31, 48, 43, 0.09);
  background: rgba(251, 251, 247, 0.88);
  backdrop-filter: blur(18px);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  width: min(52vw, 14.5rem);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.8vw, 1.25rem);
  color: #263a34;
  font-size: 0.88rem;
  font-weight: 800;
}

.site-nav a {
  padding: 0.6rem 0;
  text-decoration: none;
}

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

.breadcrumb {
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.breadcrumb li + li::before {
  color: rgba(31, 48, 43, 0.36);
  content: "/";
}

.breadcrumb a {
  color: var(--leaf);
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.22rem;
}

.nav-toggle,
.nav-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.72fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  min-height: calc(88svh - 4.95rem);
  overflow: hidden;
  padding: clamp(3rem, 5.5vw, 5.5rem) clamp(1.25rem, 6vw, 6rem);
  align-items: center;
}

.hero::after,
.page-hero::after,
.split-section::after {
  position: absolute;
  right: clamp(1rem, 6vw, 7rem);
  bottom: 0;
  left: clamp(1rem, 6vw, 7rem);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero::after {
  display: none;
}

.hero__art {
  position: absolute;
  top: 50%;
  left: clamp(-7rem, -4vw, -2rem);
  width: min(45vw, 34rem);
  opacity: 0.14;
  pointer-events: none;
  transform: translateY(-50%) rotate(-8deg);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 58rem);
}

.hero-photo,
.photo-feature,
.section-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 48, 43, 0.12);
  border-radius: 0.55rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-photo {
  z-index: 2;
  align-self: end;
  aspect-ratio: 4 / 5;
}

.photo-feature {
  aspect-ratio: 4 / 5;
  min-height: 30rem;
}

.section-photo {
  aspect-ratio: 4 / 3;
  margin-top: 1.6rem;
}

.section-photo--wide {
  aspect-ratio: 3 / 2;
}

.hero-photo img,
.photo-feature img,
.section-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.photo-link img {
  transition: transform 180ms ease, filter 180ms ease;
}

.photo-link:hover img,
.photo-link:focus img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.025);
}

.modal-open {
  overflow: hidden;
}

.image-modal[hidden] {
  display: none;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  padding: clamp(1rem, 3vw, 2rem);
  place-items: center;
}

.image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 28, 25, 0.82);
  backdrop-filter: blur(8px);
}

.image-modal__figure {
  position: relative;
  z-index: 1;
  width: min(100%, 72rem);
  max-height: calc(100svh - 2rem);
  margin: 0;
  color: #fff;
}

.image-modal__figure img {
  width: 100%;
  max-height: calc(100svh - 7rem);
  object-fit: contain;
  border-radius: 0.45rem;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.image-modal__figure figcaption {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.image-modal__figure figcaption:empty {
  display: none;
}

.image-modal__close {
  position: absolute;
  top: -0.85rem;
  right: -0.85rem;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  background: rgba(31, 48, 43, 0.92);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.hero-photo figcaption,
.photo-feature figcaption,
.section-photo figcaption {
  position: absolute;
  right: auto;
  bottom: 0.65rem;
  left: 0.65rem;
  max-width: calc(100% - 1.3rem);
  padding: 0.24rem 0.38rem;
  color: #fff;
  background: rgba(31, 48, 43, 0.44);
  border-radius: 0.22rem;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 0.72rem;
  color: var(--coral);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  max-width: 18ch;
  font-size: clamp(2.35rem, 5.4vw, 5.55rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(1.85rem, 3.6vw, 3.75rem);
}

h3 {
  font-size: clamp(1.25rem, 1.6vw, 1.6rem);
}

.intro,
.page-hero p,
.philosophy-band p {
  max-width: 43rem;
  margin: clamp(1rem, 2vw, 1.35rem) 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0.74rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.button--primary {
  color: #fff;
  background: var(--leaf);
  border-color: var(--leaf);
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(calc(100% - 2.4rem), var(--max));
  margin: clamp(-2.4rem, -4vw, -1rem) auto clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.feature-strip div {
  min-height: 8rem;
  padding: clamp(1rem, 2.1vw, 1.55rem);
  background: rgba(255, 255, 255, 0.78);
}

.feature-strip strong,
.feature-strip span {
  display: block;
}

.feature-strip strong {
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.feature-strip span {
  margin-top: 0.65rem;
  color: var(--muted);
  line-height: 1.55;
}

.performance-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(0.75rem, 1.6vw, 1rem);
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 0 auto clamp(1rem, 3vw, 2rem);
}

.performance-strip figure {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 48, 43, 0.12);
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 14px 45px rgba(31, 48, 43, 0.08);
}

.performance-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.performance-strip figcaption {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  left: 0.65rem;
  padding: 0.48rem 0.58rem;
  color: #fff;
  background: rgba(31, 48, 43, 0.76);
  border-radius: 0.35rem;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.32;
  backdrop-filter: blur(10px);
}

.split-section,
.music-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(15rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.4rem, 7vw, 7rem);
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 0 auto;
  padding: clamp(3rem, 6.5vw, 5.8rem) 0;
  align-items: start;
}

.split-section--reverse {
  grid-template-columns: minmax(14rem, 0.8fr) minmax(0, 1.2fr);
}

.section-heading {
  position: sticky;
  top: 7.4rem;
}

.section-heading::after {
  display: block;
  width: 9rem;
  height: 0.42rem;
  margin-top: 2rem;
  content: "";
  background: linear-gradient(90deg, var(--leaf), var(--sun), var(--coral), var(--plum));
  border-radius: 999px;
}

.rich-text {
  display: grid;
  gap: 1rem;
  color: #31423d;
  font-size: clamp(1rem, 1.18vw, 1.1rem);
  line-height: 1.72;
}

.rich-text p,
.rich-text h2 {
  margin: 0;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.5rem;
  color: var(--coral);
  font-weight: 850;
  text-decoration-thickness: 0.12rem;
  text-underline-offset: 0.26rem;
}

.philosophy-band {
  margin: clamp(1.5rem, 4vw, 3rem) 0;
  padding: clamp(3.4rem, 6.5vw, 5.8rem) clamp(1.25rem, 6vw, 6rem);
  color: #fff;
  background:
    linear-gradient(rgba(31, 48, 43, 0.86), rgba(31, 48, 43, 0.86)),
    url("assets/spiral-logo-web.jpg") right bottom / min(55rem, 84vw) auto no-repeat,
    var(--ink);
}

.philosophy-band__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.philosophy-band h2 {
  max-width: 15ch;
}

.philosophy-band p {
  color: rgba(255, 255, 255, 0.78);
}

.community-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.55fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 0 auto clamp(4rem, 8vw, 6rem);
  align-items: stretch;
}

.community-section__copy,
.community-note,
.tour-grid article,
.music-focus-grid article {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 45px rgba(31, 48, 43, 0.08);
}

.community-section__copy {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.community-section__copy h2 {
  max-width: 13ch;
}

.community-section__copy p,
.community-note span,
.tour-grid p,
.music-focus-grid p,
.quote-band p,
.quote-band cite {
  color: var(--muted);
  line-height: 1.68;
}

.community-section__copy p {
  margin: 1rem 0 0;
}

.region-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2.4rem, 7vw, 7rem);
  width: min(calc(100% - 2.4rem), var(--max));
  margin: clamp(1rem, 2.4vw, 1.8rem) auto clamp(3.2rem, 6.5vw, 5.8rem);
  align-items: start;
}

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

.logistics-grid article {
  position: relative;
  min-height: 10rem;
  padding: clamp(1.05rem, 2vw, 1.45rem);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 45px rgba(31, 48, 43, 0.08);
}

.logistics-icon {
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 0.85rem;
  color: var(--coral);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.logistics-grid h3 {
  color: var(--leaf);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

.logistics-grid p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.logistics-grid a,
.registration-panel a,
.chapter-event-card a {
  color: var(--coral);
  font-weight: 850;
  text-decoration-thickness: 0.11rem;
  text-underline-offset: 0.25rem;
  overflow-wrap: anywhere;
}

.community-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.4rem, 3vw, 2rem);
  min-height: clamp(19rem, 34vw, 29rem);
  border-color: rgba(198, 76, 49, 0.28);
  background:
    linear-gradient(rgba(251, 251, 247, 0.9), rgba(251, 251, 247, 0.9)),
    url("assets/spiral-logo-web.jpg") right -4rem bottom -5rem / 18rem auto no-repeat;
}

.community-note--photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(18, 28, 25, 0.04) 20%, rgba(18, 28, 25, 0.78) 100%),
    url("assets/wayfarers-ensemble-colour-2026.jpeg") center / cover no-repeat;
}

.community-note--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(18, 28, 25, 0.26), transparent 58%);
}

.community-note strong {
  display: block;
  max-width: 12ch;
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 1.08;
}

.community-note span {
  display: block;
  margin-top: 1rem;
}

.community-note--photo strong {
  color: #fff;
  text-shadow: 0 0.12rem 0.6rem rgba(0, 0, 0, 0.45);
}

.community-note--photo span {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0.08rem 0.45rem rgba(0, 0, 0, 0.5);
}

.portrait-feature {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.portrait-feature img {
  width: 86%;
  opacity: 0.56;
}

.page-hero {
  position: relative;
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 0 auto;
  padding: clamp(3.4rem, 7vw, 6.2rem) 0 clamp(2.6rem, 5vw, 4.6rem);
}

.page-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
}

.timeline-section {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.4rem, 7vw, 7rem);
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 0 auto;
  padding: clamp(3rem, 6.5vw, 5.8rem) 0;
}

.tour-highlight-section {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.4rem, 7vw, 7rem);
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 0 auto;
  padding: 0 0 clamp(3rem, 6.5vw, 5.8rem);
}

.timeline {
  display: grid;
  gap: 0.78rem;
}

.timeline article,
.chapter-card,
.excerpt-card,
.registration-panel,
.chapter-event-card {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 45px rgba(31, 48, 43, 0.08);
}

.timeline article {
  position: relative;
  padding: 1.18rem 1.18rem 1.18rem 4.6rem;
}

.timeline article::before {
  position: absolute;
  top: 1.5rem;
  left: 2.3rem;
  width: 1px;
  height: calc(100% - 0.2rem);
  content: "";
  background: var(--line);
}

.timeline article:last-child::before {
  display: none;
}

.tour-grid,
.music-focus-grid {
  display: grid;
  gap: 0.85rem;
}

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

.tour-grid article,
.music-focus-grid article {
  padding: clamp(1.05rem, 2vw, 1.45rem);
}

.tour-grid h3,
.music-focus-grid h2 {
  max-width: none;
  color: var(--leaf);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

.tour-grid p,
.music-focus-grid p {
  margin: 0.75rem 0 0;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(14rem, 0.6fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 0 auto clamp(3.2rem, 6.5vw, 5.8rem);
  padding: clamp(1.3rem, 3.4vw, 2.2rem);
  border: 1px solid var(--line);
  border-left: 0.45rem solid var(--sun);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.76);
}

.quote-band h2 {
  max-width: 12ch;
  font-size: clamp(1.7rem, 2.8vw, 3rem);
}

.quote-band blockquote {
  margin: 0;
}

.quote-band p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
}

.quote-band cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.92rem;
}

.timeline span {
  position: absolute;
  top: 1.25rem;
  left: 1.05rem;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  color: #fff;
  background: var(--leaf);
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 900;
}

.timeline p,
.chapter-card p,
.chapter-event-card p,
.person-card p,
.excerpt-card p,
.registration-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.timeline p,
.chapter-card p,
.chapter-event-card p,
.person-card p,
.excerpt-card p,
.registration-panel p {
  margin: 0.7rem 0 0;
}

.registration-panel {
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 0 auto clamp(3.2rem, 6.5vw, 5.8rem);
  padding: clamp(1.2rem, 2.5vw, 1.7rem);
  border-left: 0.45rem solid var(--coral);
}

.registration-panel h2 {
  max-width: none;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.chapter-grid,
.people-grid,
.excerpt-grid,
.music-focus-grid {
  display: grid;
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 0 auto clamp(3.2rem, 6.5vw, 5.8rem);
  gap: clamp(0.8rem, 1.6vw, 1.1rem);
}

.chapter-grid {
  grid-template-columns: repeat(3, 1fr);
}

.chapter-card {
  display: flex;
  min-height: 17rem;
  flex-direction: column;
  padding: clamp(1.25rem, 2.8vw, 1.8rem);
}

.chapter-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.8rem;
}

.city-icon {
  width: 5.4rem;
  height: 3.5rem;
  object-fit: contain;
  opacity: 0.84;
}

.chapter-events {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2.4rem, 7vw, 7rem);
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 0 auto clamp(3.2rem, 6.5vw, 5.8rem);
  align-items: start;
}

.chapter-events-list {
  display: grid;
  gap: 0.85rem;
}

.chapter-event-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  min-height: 9.5rem;
  padding: clamp(1.05rem, 2vw, 1.45rem);
  align-items: end;
}

.chapter-event-card h3 {
  max-width: none;
  color: var(--leaf);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.chapter-event-card a {
  align-self: end;
  white-space: nowrap;
}

.chapter-event-date {
  width: fit-content;
  margin: 0 0 0.72rem !important;
  padding: 0.35rem 0.55rem;
  color: #fff !important;
  background: var(--plum);
  border-radius: 0.3rem;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.35 !important;
}

.chapter-event-subtitle {
  margin-top: 0.45rem !important;
  color: var(--coral) !important;
  font-weight: 850;
}

.chapter-event-card--empty {
  grid-template-columns: 1fr;
  min-height: 0;
}

.chapter-events-list--card {
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.chapter-event-item {
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.chapter-event-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.chapter-event-item h4,
.chapter-event-item h3 {
  margin: 0;
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.12;
}

.chapter-event-item p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.chapter-event-item a {
  display: inline-block;
  margin-top: 0.5rem;
}

.chapter-card span {
  width: fit-content;
  padding: 0.35rem 0.55rem;
  color: #fff;
  background: var(--plum);
  border-radius: 0.3rem;
  font-size: 0.72rem;
  font-weight: 900;
}

.chapter-card h2,
.excerpt-card h2 {
  max-width: none;
  margin-top: 1.1rem;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

.chapter-card a {
  margin-top: 1.2rem;
  overflow-wrap: anywhere;
  color: var(--coral);
  font-weight: 850;
  text-decoration-thickness: 0.11rem;
  text-underline-offset: 0.25rem;
}

.chapter-card__link {
  margin-top: auto !important;
  padding-top: 1.4rem;
  color: var(--leaf) !important;
}

.events-section {
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 0 auto clamp(3.2rem, 6.5vw, 5.8rem);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 45px rgba(31, 48, 43, 0.08);
}

.filter-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.time-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.time-filter-btn,
.location-select {
  min-height: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  color: var(--ink);
  background: rgba(251, 251, 247, 0.92);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
}

.time-filter-btn {
  padding: 0.45rem 0.75rem;
  cursor: pointer;
}

.time-filter-btn.active,
.time-filter-btn:hover,
.time-filter-btn:focus {
  color: #fff;
  background: var(--leaf);
}

.filter-sep {
  width: 1px;
  height: 2rem;
  background: var(--line);
}

.location-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.location-select {
  min-width: 11rem;
  padding: 0.45rem 2rem 0.45rem 0.7rem;
  appearance: none;
}

.select-chevron {
  position: absolute;
  right: 0.7rem;
  color: var(--muted);
  font-size: 0.62rem;
  pointer-events: none;
}

.events-grid {
  display: grid;
  gap: 1rem;
}

.event-card-item {
  display: grid;
  grid-template-columns: minmax(24rem, 1.15fr) minmax(20rem, 0.85fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 45px rgba(31, 48, 43, 0.08);
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  background: var(--event-card-background, var(--plum));
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-img--contain {
  object-fit: contain;
  padding: 0.85rem;
}

.card-status {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.35rem 0.55rem;
  color: #fff;
  background: rgba(31, 48, 43, 0.84);
  border-radius: 0.3rem;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-body {
  padding: clamp(1.05rem, 2vw, 1.45rem);
}

.card-date,
.card-location,
.card-subtitle,
.card-synopsis {
  color: var(--muted);
  line-height: 1.58;
}

.card-date {
  margin: 0 0 0.75rem;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-date-list {
  padding-left: 1.1rem;
}

.card-title {
  max-width: none;
  color: var(--leaf);
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
}

.card-subtitle {
  margin: 0.4rem 0 0;
  color: var(--plum);
  font-weight: 850;
}

.card-synopsis {
  margin: 0.75rem 0 0;
}

.card-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.2rem;
  align-items: center;
}

.card-location {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 850;
}

.card-link {
  color: var(--coral);
  font-weight: 900;
  text-decoration-thickness: 0.11rem;
  text-underline-offset: 0.25rem;
  text-transform: uppercase;
}

.card-link--disabled {
  border: 0;
  color: var(--muted);
  background: none;
  cursor: default;
  font: inherit;
  font-weight: 900;
}

.empty-state {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.74);
}

.people-grid {
  grid-template-columns: 1fr;
}

.person-card {
  display: grid;
  grid-template-columns: minmax(12rem, 18rem) minmax(0, 1fr);
  gap: clamp(1.3rem, 4vw, 3rem);
  padding: clamp(1.1rem, 2.8vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.76);
}

.person-card h2 {
  max-width: none;
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.person-photo {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 5;
  min-height: 15rem;
  place-items: center;
  overflow: hidden;
  border-radius: 0.5rem;
  background:
    linear-gradient(rgba(31, 48, 43, 0.12), rgba(31, 48, 43, 0.12)),
    linear-gradient(150deg, rgba(31, 122, 131, 0.96), rgba(87, 54, 83, 0.9)),
    var(--teal);
}

.person-photo--judy {
  background:
    linear-gradient(rgba(31, 48, 43, 0.1), rgba(31, 48, 43, 0.1)),
    linear-gradient(150deg, rgba(47, 109, 89, 0.96), rgba(198, 76, 49, 0.9)),
    var(--leaf);
}

.person-photo--gwain {
  background:
    linear-gradient(rgba(31, 48, 43, 0.1), rgba(31, 48, 43, 0.1)),
    linear-gradient(150deg, rgba(87, 54, 83, 0.94), rgba(245, 179, 62, 0.88)),
    var(--plum);
}

.person-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 1;
  transform: none;
}

.person-photo--gwain img {
  object-position: center;
}

.person-photo span {
  position: relative;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 700;
}

.excerpt-grid {
  grid-template-columns: repeat(4, 1fr);
}

.music-focus-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.excerpt-card {
  min-height: 17rem;
  padding: 1.2rem;
}

.excerpt-wave {
  display: flex;
  height: 5.6rem;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--paper-soft);
}

.excerpt-wave span {
  display: block;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--teal), var(--leaf));
}

.excerpt-wave span:nth-child(1) {
  height: 38%;
}

.excerpt-wave span:nth-child(2) {
  height: 78%;
  background: linear-gradient(180deg, var(--coral), var(--sun));
}

.excerpt-wave span:nth-child(3) {
  height: 54%;
}

.excerpt-wave span:nth-child(4) {
  height: 88%;
  background: linear-gradient(180deg, var(--plum), var(--coral));
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(18rem, 1.15fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3.2rem) clamp(1.25rem, 6vw, 6rem);
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(31, 48, 43, 0.98), rgba(31, 48, 43, 0.92)),
    var(--ink);
}

.footer-brand img {
  width: min(100%, 14rem);
  padding: 0;
  background: transparent;
}

.footer-brand p {
  max-width: 27rem;
  margin: 1rem 0 0;
  line-height: 1.65;
}

.footer-brand .footer-legal {
  margin-top: 0.48rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  line-height: 1.45;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1.4rem;
  align-content: start;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--sun);
}

@media (max-width: 920px) {
  .site-header {
    min-height: 4.8rem;
  }

  .nav-button {
    position: relative;
    z-index: 12;
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 0.35rem;
    background: rgba(255, 255, 255, 0.76);
  }

  .nav-button span,
  .nav-button::before,
  .nav-button::after {
    display: block;
    width: 1.2rem;
    height: 2px;
    content: "";
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-button::before {
    position: absolute;
    transform: translateY(-0.42rem);
  }

  .nav-button::after {
    position: absolute;
    transform: translateY(0.42rem);
  }

  .site-nav {
    position: fixed;
    top: 4.8rem;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    background: rgba(251, 251, 247, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    padding: 0.9rem 1rem;
    border-radius: 0.35rem;
  }

  .site-nav a:hover,
  .site-nav a:focus,
  .site-nav a[aria-current="page"] {
    background: var(--paper-soft);
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .nav-toggle:checked + .nav-button span {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-button::before {
    transform: rotate(45deg);
  }

  .nav-toggle:checked + .nav-button::after {
    transform: rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-photo {
    aspect-ratio: 16 / 10;
    align-self: auto;
  }

  .hero__art {
    top: 14rem;
    left: -8rem;
    width: 30rem;
    opacity: 0.1;
  }

  .feature-strip,
  .performance-strip,
  .chapter-grid,
  .excerpt-grid,
  .community-section,
  .tour-grid,
  .music-focus-grid,
  .quote-band,
  .region-layout,
  .chapter-events,
  .chapter-event-card,
  .events-section,
  .event-card-item,
  .logistics-grid {
    grid-template-columns: 1fr;
  }

  .split-section,
  .split-section--reverse,
  .music-layout,
  .timeline-section,
  .tour-highlight-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-heading {
    position: static;
  }

  .person-card {
    grid-template-columns: 1fr;
  }

  .person-photo {
    max-width: 22rem;
  }

  .photo-feature,
  .section-photo {
    min-height: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .card-img-wrap {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .logo-link {
    width: min(64vw, 13.6rem);
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 3rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .timeline article {
    padding-left: 1.25rem;
  }

  .timeline article::before,
  .timeline span {
    position: static;
  }

  .timeline span {
    margin-bottom: 0.8rem;
  }

  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .filter-bar,
  .location-select-wrap {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-sep {
    display: none;
  }

  .time-filters,
  .time-filter-btn,
  .location-select {
    width: 100%;
  }

  .image-modal__close {
    top: 0.4rem;
    right: 0.4rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__art img,
  .portrait-feature img {
    animation: drift 18s ease-in-out infinite alternate;
  }

  @keyframes drift {
    from {
      transform: translate3d(0, 0, 0) rotate(0deg);
    }

    to {
      transform: translate3d(-1.4rem, -0.8rem, 0) rotate(3deg);
    }
  }
}
