/* Cove Joggers: neutral base, brand accents (#7339b3, #3fdf2a) */
:root {
  /* Page chrome (mockup: warm light grey, not stark white) */
  --color-bg: #e9e9e4;
  --color-surface: #ffffff;
  --color-text: #1c1c1c;
  --color-text-muted: #4a4a46;
  --color-border: #e0e0dc;
  --color-focus: #7339b3;
  --brand-purple: #7339b3;
  --brand-purple-hover: #5c2d8f;
  --brand-purple-soft: rgba(115, 57, 179, 0.08);
  --brand-green: #3fdf2a;
  /* Darker green for text on light backgrounds (WCAG AA with white) */
  --brand-green-text: #237a16;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --max-width: 72rem;
  --header-height: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.nav-open {
  overflow: hidden;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--color-text);
  color: var(--color-surface);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

@media (max-width: 47.99em) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    padding: 0.75rem 0 0.5rem;
    border-top: 1px solid var(--color-border);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .site-nav__link {
    display: block;
    padding: 0.65rem 0.35rem;
    border-radius: var(--radius-sm);
  }
}

.site-logo {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0;
  background: transparent;
  line-height: 0;
  text-decoration: none;
}

.site-logo:focus-visible {
  outline-offset: 4px;
}

.site-logo img {
  display: block;
  width: auto;
  max-height: 3rem;
}

.site-header__end {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-header__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-purple);
  padding: 0.4rem;
  border-radius: 6px;
  text-decoration: none;
}

.site-header__social-link:hover {
  color: var(--brand-purple-hover);
  background: var(--brand-purple-soft);
}

.site-header__social-icon {
  display: block;
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  font: inherit;
  font-weight: 600;
  color: var(--color-text);
  background: #f4f4f2;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  cursor: pointer;
}

@media (max-width: 47.99em) {
  .nav-toggle {
    display: inline-flex;
  }
}

.nav-toggle:hover {
  border-color: var(--brand-purple);
}

.nav-toggle__icon {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.nav-toggle__icon::before {
  top: -6px;
}

.nav-toggle__icon::after {
  top: 6px;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  align-items: center;
  justify-content: center;
}

.site-nav__link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.35rem 0.15rem;
  border-radius: var(--radius-sm);
  border-bottom: 2px solid transparent;
}

.site-nav__link:hover {
  color: var(--brand-purple-hover);
  border-bottom-color: var(--brand-green);
}

.site-nav__link.is-current {
  color: var(--brand-purple);
  font-weight: 600;
  border-bottom-color: var(--brand-purple);
}

/* Layout utilities */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
}

/* About: centre title and prose under full-width figures (same column width, no heavy right gap) */
.wrap--about > .page-header,
.wrap--about > .content-block {
  max-width: 52rem;
  margin-inline: auto;
}

.wrap--about > .page-header {
  text-align: center;
}

/* Contact page */
.wrap--contact > .page-header.contact-page__header {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.contact-page__lead {
  margin-inline: auto;
}

.contact-page__alerts {
  max-width: 52rem;
  margin: 0 auto 1.25rem;
}

.wrap--contact > .media-figure {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  gap: 2rem;
  max-width: 60rem;
  margin: 2rem auto 0;
  align-items: start;
}

@media (min-width: 52em) {
  .contact-layout {
    grid-template-columns: minmax(0, 17.5rem) minmax(0, 1fr);
    gap: 2.5rem 3rem;
  }
}

.contact-aside {
  padding: 1.5rem 1.35rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-aside__title {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-purple);
}

.contact-aside__block {
  margin-bottom: 1.25rem;
}

.contact-aside__block:last-of-type {
  margin-bottom: 0;
}

.contact-aside__label {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.contact-aside__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.contact-aside__text a {
  color: var(--brand-purple-hover);
  font-weight: 600;
}

.contact-aside__email {
  font-size: 1.05rem;
  word-break: break-word;
}

.contact-aside__sep {
  color: var(--color-text-muted);
  font-weight: 400;
}

.contact-aside__hint {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.contact-main__title {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-purple);
}

.form--contact {
  max-width: none;
  width: 100%;
}

.form-hint--tight {
  margin-top: 0;
}

.alert__list {
  margin: 0;
  padding-left: 1.25rem;
}

.form-group--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.page-header {
  margin-bottom: 2rem;
}

.page-header h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 42rem;
  margin: 0;
}

/* Hero (home: full-bleed photo) */
.hero--cover {
  position: relative;
  min-height: 280px;
  max-height: 500px;
  height: min(48vh, 500px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #2a1f3d;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero--cover__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.42) 50%,
    rgba(0, 0, 0, 0.28) 100%
  );
  pointer-events: none;
}

.hero--cover__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.75rem 1.25rem 2rem;
  width: 100%;
}

.hero--cover__title {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.12;
  max-width: 18ch;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero--cover__subtitle {
  margin: 0 0 1.5rem;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  max-width: 36ch;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.btn--hero {
  border-radius: 6px;
  padding: 0.7rem 1.6rem;
  font-size: 1rem;
}

/* Quick links bar */
.quick-bar {
  background: #ecece8;
  border-bottom: 1px solid var(--color-border);
}

.quick-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 48em) {
  .quick-bar__inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    padding: 1.25rem 1.25rem;
  }
}

.quick-bar__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  text-decoration: none;
  color: var(--color-text);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  min-width: 0;
}

@media (min-width: 48em) {
  .quick-bar__item {
    justify-content: center;
  }
}

.quick-bar__item:hover {
  background: rgba(255, 255, 255, 0.55);
}

.quick-bar__icon {
  color: var(--brand-purple);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-bar__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
}

@media (min-width: 48em) {
  .quick-bar__text {
    text-align: center;
  }
}

.quick-bar__title {
  font-weight: 700;
  color: var(--brand-purple);
  font-size: 1rem;
}

.quick-bar__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.quick-bar__divider {
  display: none;
  width: 1px;
  background: #d6d6d0;
  align-self: stretch;
  flex-shrink: 0;
}

@media (min-width: 48em) {
  .quick-bar__divider {
    display: block;
  }
}

/* Home: about split, news, gallery */
.wrap--home {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.home-about {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

@media (min-width: 48em) {
  .home-about {
    grid-template-columns: 1fr 1fr;
    gap: 2.75rem;
  }
}

.home-about__text p {
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
}

.section-title--brand {
  color: var(--brand-purple);
}

.home-news {
  margin-bottom: 3.5rem;
}

.home-news__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 48em) {
  .home-news__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Full-bleed image with left-to-right fade; text limited to left half (readable scrim) */
.news-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 15.5rem;
}

.news-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.news-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 15.5rem;
}

.news-card__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(255, 255, 255, 0.94) 22%,
    rgba(255, 255, 255, 0.82) 38%,
    rgba(255, 255, 255, 0.5) 55%,
    rgba(255, 255, 255, 0.18) 72%,
    rgba(255, 255, 255, 0) 92%
  );
}

.news-card__body {
  position: relative;
  z-index: 2;
  max-width: 50%;
  width: 100%;
  min-height: 15.5rem;
  padding: 1.5rem 1.25rem 1.5rem 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  box-sizing: border-box;
}

@media (min-width: 40em) {
  .news-card {
    min-height: 17rem;
  }

  .news-card__img {
    min-height: 17rem;
  }

  .news-card__body {
    min-height: 17rem;
    padding: 1.75rem 2rem 1.75rem 2.25rem;
  }
}

.news-card__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.news-card__title a {
  color: var(--brand-purple);
  text-decoration: none;
}

.news-card__title a:hover {
  text-decoration: underline;
}

.news-card__date {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.news-card__excerpt {
  margin: 0;
  flex: 0 1 auto;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  max-width: 100%;
  overflow-wrap: break-word;
}

.news-card__more {
  font-weight: 600;
  color: var(--brand-purple);
  text-decoration: none;
  margin-top: 0.35rem;
}

.news-card__more:hover {
  text-decoration: underline;
}

.inline-code {
  font-family: ui-monospace, monospace;
  font-size: 0.85em;
  background: var(--color-bg);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.home-gallery-section {
  margin-bottom: 1rem;
}

.home-gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 40em) {
  .home-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-gallery-grid .media-figure {
  margin: 0;
}

.home-gallery-grid .media-figure__cap {
  font-size: 0.75rem;
  padding: 0.5rem 0.65rem;
}

.home-gallery__cta {
  margin: 1.5rem 0 0;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 40em) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 56em) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-grid .media-figure {
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--primary {
  background: var(--brand-purple);
  color: #fff;
}

.btn--primary:hover {
  background: var(--brand-purple-hover);
  color: #fff;
}

/* Anchor buttons: beat .content-block a and :visited so text stays readable on purple */
a.btn--primary,
a.btn--primary:visited {
  color: #fff;
}

a.btn--primary:hover,
a.btn--primary:focus-visible {
  color: #fff;
}

.btn--secondary {
  background: transparent;
  color: var(--brand-purple-hover);
  border-color: var(--color-border);
}

.btn--secondary:hover {
  border-color: var(--brand-green-text);
  color: var(--brand-green-text);
}

.btn--accent {
  background: transparent;
  color: var(--brand-green-text);
  border: 2px solid var(--brand-green);
}

.btn--accent:hover {
  background: rgba(63, 223, 42, 0.12);
}

/* Cards / sections */
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 40em) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background: var(--brand-purple-soft);
  color: var(--brand-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.card a {
  color: var(--brand-purple-hover);
  font-weight: 600;
}

.card a:hover {
  text-decoration: underline;
}

/* Content pages */
.content-block {
  max-width: 48rem;
}

.content-block h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block p,
.content-block ul {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.content-block ul {
  padding-left: 1.25rem;
}

.content-block li {
  margin-bottom: 0.35rem;
}

.content-block a {
  color: var(--brand-purple-hover);
  font-weight: 500;
}

.content-block a.btn {
  font-weight: 600;
}

.content-block a.btn--primary,
.content-block a.btn--primary:visited {
  color: #fff;
}

.content-block a.btn--primary:hover,
.content-block a.btn--primary:focus-visible {
  color: #fff;
}

.content-block a.btn--secondary {
  color: var(--brand-purple-hover);
}

.content-block a.btn--accent {
  color: var(--brand-green-text);
}

/* Events list */
.event-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: grid;
  gap: 0.5rem 1.5rem;
  box-shadow: var(--shadow);
}

@media (min-width: 40em) {
  .event-item {
    grid-template-columns: auto 1fr;
    align-items: start;
  }
}

.event-item__date {
  font-weight: 700;
  color: var(--brand-purple);
  font-size: 0.9375rem;
  min-width: 7rem;
}

.event-item h2 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.event-item p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  grid-column: 1 / -1;
}

@media (min-width: 40em) {
  .event-item p {
    grid-column: 2;
  }
}

/* Forms */
.form {
  max-width: 32rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font: inherit;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 3px var(--brand-purple-soft);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-hint {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.alert--success {
  background: rgba(63, 223, 42, 0.15);
  border: 1px solid var(--brand-green);
  color: var(--brand-green-text);
}

.alert--error {
  background: #fde8e8;
  border: 1px solid #c53030;
  color: #742a2a;
}

/* Footer */
.site-footer {
  background: #2a2a28;
  color: #e8e8e4;
  margin-top: auto;
}

.site-footer a {
  color: #e8e8e4;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 48em) {
  .site-footer__inner {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.site-footer__name {
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 0.35rem;
}

.site-footer__tag {
  margin: 0;
  color: #b0b0a8;
  font-size: 0.9375rem;
}

.site-footer__heading {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--brand-green);
}

.site-footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li {
  margin-bottom: 0.5rem;
}

.site-footer__note {
  margin: 0;
  font-size: 0.9375rem;
  color: #b0b0a8;
}

.site-footer__bottom {
  border-top: 1px solid #40403c;
  padding: 1rem 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #b0b0a8;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__social-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__social-list li {
  margin-bottom: 0.5rem;
}

/* Placeholder photos + figures */
.media-figure {
  margin: 1.5rem 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 675;
  object-fit: cover;
  background: var(--color-bg);
}

.media-figure__cap {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}

.media-figure__id {
  font-weight: 600;
  color: var(--brand-purple);
  font-family: ui-monospace, monospace;
  font-size: 0.8125rem;
}

.photo-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

@media (min-width: 40em) {
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-grid .media-figure {
    margin: 0;
  }
}

.member-quotes {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.member-quotes li {
  margin: 0;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border-left: 4px solid var(--brand-purple);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow);
}

.member-quotes blockquote {
  margin: 0;
  font-style: italic;
  color: var(--color-text-muted);
}

.split-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
