:root {
  --site-bg: #111214;
  --site-surface: #1c1d21;
  --site-surface-soft: #26272d;
  --site-surface-muted: #f4f0e8;
  --site-border: rgba(255, 255, 255, 0.12);
  --site-text: #f5f2eb;
  --site-text-dark: #17181b;
  --site-text-muted: rgba(245, 242, 235, 0.72);
  --site-text-soft: #5b5d66;
  --site-gold: #d6b25e;
  --site-gold-deep: #b99136;
  --site-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  --site-radius: 1.5rem;
  --site-radius-sm: 1rem;
  --site-nav-height: 5.25rem;
  --history-poster-1: linear-gradient(160deg, #882f2d 0%, #4f1418 48%, #150d0e 100%);
  --history-poster-2: linear-gradient(160deg, #1f5064 0%, #123245 50%, #0d141a 100%);
  --history-poster-3: linear-gradient(160deg, #7b5a22 0%, #4f3913 52%, #18130d 100%);
  --history-poster-4: linear-gradient(160deg, #3d325f 0%, #251c41 50%, #110f16 100%);
  --history-poster-5: linear-gradient(160deg, #3f5d34 0%, #24361d 52%, #10140f 100%);
  --history-poster-6: linear-gradient(160deg, #765046 0%, #452923 52%, #161010 100%);
  --bs-body-font-family: "Manrope", sans-serif;
  --bs-body-bg: var(--site-bg);
  --bs-body-color: var(--site-text);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top, rgba(56, 63, 91, 0.35), transparent 30%),
    linear-gradient(180deg, #111214 0%, #17181c 100%);
  color: var(--site-text);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

img {
  max-width: 100%;
}

.btn:focus-visible,
.form-control:focus-visible,
.form-check-input:focus-visible,
.navbar-toggler:focus-visible,
.btn-close:focus-visible {
  outline: 3px solid rgba(214, 178, 94, 0.5);
  outline-offset: 3px;
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.site-navbar {
  min-height: var(--site-nav-height);
  background: rgba(17, 18, 20, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.is-scrolled .site-navbar {
  border-color: var(--site-border);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
}

.site-brand:hover,
.site-brand:focus,
.site-brand:active,
.navbar-brand.site-brand:hover,
.navbar-brand.site-brand:focus {
  color: #fff;
}

.site-brand__crest {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.site-brand__text {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

.site-brand__text span {
  color: var(--site-gold);
}

.site-navbar .nav-link {
  position: relative;
  padding: 0.6rem 0.95rem;
  color: rgba(245, 242, 235, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: #fff;
}

.site-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  right: 0.95rem;
  bottom: 0.2rem;
  left: 0.95rem;
  height: 2px;
  background: var(--site-gold);
}

.site-navbar__toggle {
  border: 1px solid var(--site-border);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: var(--site-text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-offcanvas {
  background:
    radial-gradient(circle at top, rgba(214, 178, 94, 0.16), transparent 28%),
    linear-gradient(180deg, #17181b 0%, #101114 100%);
  color: var(--site-text);
  width: min(26rem, 92vw);
}

.site-brand--mobile .site-brand__text {
  font-size: 1.75rem;
}

.offcanvas-links {
  display: grid;
  gap: 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offcanvas-link:hover,
.offcanvas-link.active {
  color: var(--site-gold);
}

.site-offcanvas__footer {
  border-top: 1px solid var(--site-border);
  padding-top: 1.5rem;
}

.site-offcanvas__footer p {
  color: var(--site-text-muted);
  line-height: 1.7;
}

.site-btn {
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.site-btn:hover {
  transform: translateY(-1px);
}

.site-btn--gold {
  background: var(--site-gold);
  border: 1px solid var(--site-gold);
  color: #17181b;
}

.site-btn--gold:hover {
  background: var(--site-gold-deep);
  border-color: var(--site-gold-deep);
  color: #17181b;
}

.site-btn--outline,
.site-btn--outline-light {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--site-text);
}

.site-btn--outline:hover,
.site-btn--outline-light:hover {
  border-color: var(--site-gold);
  color: #fff;
}

.site-inline-form {
  margin: 0;
}

.hero-section {
  position: relative;
  overflow: clip;
  min-height: calc(100vh - var(--site-nav-height));
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.hero-section__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.68) 0%, rgba(8, 9, 12, 0.4) 44%, rgba(8, 9, 12, 0.6) 100%),
    linear-gradient(180deg, rgba(8, 9, 12, 0.18) 0%, rgba(8, 9, 12, 0.56) 100%),
    url("/images/hero-stage.png") center right/cover no-repeat;
  transform: scale(1.02);
}

.hero-section__content {
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  margin-bottom: 1rem;
  color: var(--site-gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-section__title,
.section-title,
.inner-page__intro h1,
.site-footer__title,
.cta-panel h2,
.auth-panel h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.96;
}

.hero-section__title {
  max-width: 12ch;
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  text-wrap: balance;
}

.hero-section__copy {
  max-width: 40rem;
  margin-top: 1.75rem;
  color: var(--site-text-muted);
  font-size: 1.1rem;
  line-height: 1.9;
}

.hero-section__motto {
  margin-top: 1.1rem;
  margin-bottom: 0;
  color: var(--site-gold);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-style: italic;
}

.hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-band,
.content-section,
.cta-section,
.inner-page,
.auth-page {
  padding: 5rem 0;
}

.feature-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.section-title {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.02;
  margin-bottom: 1rem;
}

.section-copy,
.inner-page__intro p,
.inner-page__content p,
.auth-panel__intro,
.cta-panel p {
  color: var(--site-text-muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.feature-card,
.spotlight-card,
.history-card,
.auth-panel,
.detail-panel,
.cta-panel {
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--site-shadow);
}

.feature-card {
  padding: 2rem;
}

.feature-card__label {
  margin-bottom: 0.85rem;
  color: var(--site-gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-card h3,
.spotlight-card h3,
.history-card h3,
.detail-panel h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: 0.85rem;
}

.feature-card p,
.spotlight-card p,
.history-card p,
.detail-panel p {
  color: var(--site-text-muted);
  line-height: 1.8;
}

.feature-card a,
.spotlight-card a,
.history-card a,
.detail-panel a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--site-gold);
  font-weight: 800;
}

.spotlight-card,
.history-card,
.detail-panel {
  height: 100%;
  padding: 1.75rem;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(214, 178, 94, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.cta-panel h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 0.9rem;
}

.inner-page,
.auth-page {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.inner-page__intro,
.auth-panel {
  max-width: 50rem;
}

.inner-page__intro {
  margin-bottom: 2.5rem;
}

.inner-page__intro h1,
.auth-panel h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  margin-bottom: 1.2rem;
}

.inner-page__content {
  color: var(--site-text);
}

.history-card__meta,
.detail-panel__meta {
  color: var(--site-gold);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.archive-intro {
  max-width: 58rem;
}

.archive-hero-panel,
.archive-story-strip__item,
.archive-next-step,
.archive-poster-card {
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--site-shadow);
}

.archive-hero-panel {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(214, 178, 94, 0.18), transparent 26%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.archive-hero-panel__content h2,
.archive-story-strip__item h3,
.archive-poster-card__poster h3 {
  font-family: "Cormorant Garamond", serif;
}

.archive-hero-panel__content h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.archive-hero-panel__content p:last-child {
  margin-bottom: 0;
}

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

.archive-stat {
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.15rem;
  background: rgba(7, 8, 10, 0.32);
}

.archive-stat__value {
  display: block;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.archive-stat__label {
  display: block;
  margin-top: 0.4rem;
  color: var(--site-text-muted);
  line-height: 1.6;
}

.archive-stat__label em {
  color: var(--site-text);
  font-style: normal;
}

.archive-story-strip {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.archive-story-strip__item {
  padding: 1.6rem;
}

.archive-story-strip__item h3 {
  margin-bottom: 0.85rem;
  font-size: 2rem;
}

.archive-story-strip__item p:last-child {
  margin-bottom: 0;
  color: var(--site-text-muted);
  line-height: 1.8;
}

.archive-wall-section__heading {
  display: grid;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.archive-wall {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.archive-decade-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.archive-decade-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--site-text);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.archive-decade-nav__link:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 178, 94, 0.45);
  color: var(--site-gold);
}

.archive-decade-sections {
  display: grid;
  gap: 1.75rem;
  margin-top: 2rem;
}

.archive-decade-panel {
  padding: 1.6rem;
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius);
  scroll-margin-top: calc(var(--site-nav-height) + 1.5rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--site-shadow);
}

.archive-decade-panel__header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.archive-production-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.archive-production-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.archive-production-card {
  height: 100%;
  overflow: hidden;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(10, 11, 14, 0.3);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.archive-production-link:hover .archive-production-card,
.archive-production-link:focus-visible .archive-production-card {
  transform: translateY(-4px);
  border-color: rgba(214, 178, 94, 0.35);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.18);
}

.archive-production-link:focus-visible {
  outline: none;
}

.archive-production-card--poster {
  padding: 0;
}

.archive-production-card__poster {
  aspect-ratio: 210 / 297;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.archive-production-card__poster--placeholder {
  background:
    linear-gradient(180deg, rgba(214, 178, 94, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.archive-production-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.archive-production-card__content {
  padding: 1rem 1.05rem;
}

.archive-production-card__year {
  margin-bottom: 0.55rem;
  color: var(--site-gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-production-card h3 {
  margin-bottom: 0;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  line-height: 1.08;
}

.archive-next-step {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 2rem;
}

.archive-notes {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.archive-notes__grid {
  display: grid;
  gap: 0.75rem;
  color: var(--site-text-muted);
}

.archive-notes__grid p {
  margin-bottom: 0;
}

.archive-detail-back {
  margin-bottom: 1.5rem;
}

.archive-detail-back__link {
  color: var(--site-gold);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.archive-detail {
  display: grid;
  gap: 1.75rem;
  padding: 1.75rem;
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius);
  background:
    radial-gradient(circle at top right, rgba(214, 178, 94, 0.16), transparent 28%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--site-shadow);
}

.archive-detail__poster {
  aspect-ratio: 210 / 297;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
}

.archive-detail__poster--placeholder {
  background:
    linear-gradient(180deg, rgba(214, 178, 94, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.archive-detail__poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.archive-detail__content h1,
.archive-detail__notes h2 {
  font-family: "Cormorant Garamond", serif;
}

.archive-detail__content h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.95;
}

.archive-detail__lede {
  margin-bottom: 1.5rem;
  color: var(--site-gold);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-detail__facts {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.75rem;
}

.archive-detail__facts div {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(7, 8, 10, 0.24);
}

.archive-detail__facts dt {
  margin-bottom: 0.35rem;
  color: var(--site-gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.archive-detail__facts dd {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.6;
}

.archive-detail__notes {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.archive-detail__notes h2 {
  margin-bottom: 0.85rem;
  font-size: 1.9rem;
}

.archive-detail__notes ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--site-text-muted);
}

.auth-panel {
  padding: 2rem;
}

.auth-panel__note {
  margin-bottom: 1.5rem;
  color: var(--site-gold);
  font-size: 0.92rem;
  font-weight: 700;
}

.auth-panel__actions {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-panel__helper {
  margin-bottom: 1.25rem;
  color: var(--site-text-muted);
  line-height: 1.7;
}

.site-alert,
.site-validation-summary {
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 1rem;
}

.site-alert--success {
  border-color: rgba(84, 173, 124, 0.45);
  background: rgba(84, 173, 124, 0.14);
  color: #d9f3e1;
}

.site-alert--danger,
.site-validation-summary {
  border-color: rgba(215, 96, 96, 0.4);
  background: rgba(215, 96, 96, 0.14);
  color: #ffd8d8;
}

.site-validation-summary ul {
  margin: 0;
  padding-left: 1.2rem;
}

.site-field-error {
  display: block;
  margin-top: 0.5rem;
  color: #ffd8d8;
  font-size: 0.9rem;
}

.password-checklist {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.password-checklist__title {
  margin-bottom: 0.85rem;
  color: var(--site-text);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.password-checklist__items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.password-checklist__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--site-text-muted);
  transition: color 0.2s ease;
}

.password-checklist__item.is-met {
  color: #d9f3e1;
}

.password-checklist__item.is-unmet {
  color: var(--site-text-muted);
}

.password-checklist__icon {
  width: 1.15rem;
  height: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.02);
}

.password-checklist__item.is-met .password-checklist__icon {
  border-color: rgba(84, 173, 124, 0.65);
  background: rgba(84, 173, 124, 0.2);
}

.password-checklist__item.is-met .password-checklist__icon::before {
  content: "";
  width: 0.4rem;
  height: 0.7rem;
  border-right: 2px solid #d9f3e1;
  border-bottom: 2px solid #d9f3e1;
  transform: rotate(45deg) translate(-1px, -1px);
}

.site-form-label {
  margin-bottom: 0.45rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-form-control {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 0.95rem 1rem;
}

.site-form-control::placeholder {
  color: rgba(245, 242, 235, 0.4);
}

.site-form-control:focus {
  border-color: rgba(214, 178, 94, 0.6);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow: none;
}

.site-form-control.input-validation-error {
  border-color: rgba(215, 96, 96, 0.55);
}

.members-dashboard {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.members-dashboard__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.75rem;
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius);
  background:
    radial-gradient(circle at top right, rgba(214, 178, 94, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--site-shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.members-dashboard__card:hover,
.members-dashboard__card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(214, 178, 94, 0.4);
  color: inherit;
}

.members-dashboard__meta {
  color: var(--site-gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.members-dashboard__card h2,
.members-form-section h2 {
  margin: 0.85rem 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.members-dashboard__card p,
.members-form-section p,
.members-content-panel p {
  color: var(--site-text-muted);
  line-height: 1.8;
}

.members-dashboard__action {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--site-gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.members-dashboard__footer {
  margin-top: 1.5rem;
}

.members-form-panel {
  max-width: none;
}

.members-form-grid {
  display: grid;
  gap: 1.5rem;
}

.members-form-section {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.03);
}

.members-form-section h2 {
  margin-top: 0;
}

.members-textarea {
  min-height: 9rem;
  resize: vertical;
}

.members-checklist {
  display: grid;
  gap: 1rem;
}

.members-checklist__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  margin-bottom: 0;
  padding-left: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(10, 11, 14, 0.28);
}

.members-checklist__item .form-check-input {
  flex: 0 0 auto;
  float: none;
  margin: 0.2rem 0 0;
}

.members-checklist__item .form-check-label {
  display: block;
  flex: 1 1 auto;
  color: var(--site-text);
  line-height: 1.6;
}

.members-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
}

.members-content-panel {
  max-width: 52rem;
}

.validation-summary-valid,
.field-validation-valid {
  display: none;
}

.site-offcanvas__logout {
  margin-top: 1rem;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--site-border);
  background: #0d0e10;
  padding: 4rem 0 2rem;
}

.site-footer__eyebrow,
.site-footer__heading {
  color: var(--site-gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0.9rem 0 1rem;
}

.site-footer__copy,
.site-footer__meta {
  color: var(--site-text-muted);
  line-height: 1.8;
}

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

.site-footer__links li + li {
  margin-top: 0.7rem;
}

.site-footer__links a {
  color: var(--site-text);
}

.site-footer__links a:hover {
  color: var(--site-gold);
}

.site-footer__bar {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--site-border);
  color: rgba(245, 242, 235, 0.5);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .cta-panel {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }

  .site-footer__bar {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .archive-hero-panel {
    grid-template-columns: minmax(0, 1.65fr) minmax(18rem, 0.9fr);
    align-items: stretch;
  }

  .archive-story-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .archive-detail {
    grid-template-columns: minmax(18rem, 22rem) minmax(0, 1fr);
    align-items: start;
  }

  .archive-wall-section__heading,
  .archive-next-step {
    grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  }

  .archive-next-step {
    display: grid;
    align-items: center;
  }

  .archive-decade-panel__header {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

  .archive-notes__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 991.98px) {
  .site-brand__crest {
    width: 2.3rem;
    height: 2.3rem;
  }

  .site-brand__text {
    font-size: 1.75rem;
  }

  .hero-section {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-section__media {
    background-position: 62% center;
  }
}

@media (max-width: 767.98px) {
  :root {
    --site-nav-height: 4.6rem;
  }

  .hero-section,
  .feature-band,
  .content-section,
  .cta-section,
  .inner-page,
  .auth-page {
    padding: 4rem 0;
  }

  .hero-section .container,
  .feature-band .container,
  .content-section .container,
  .cta-section .container,
  .inner-page .container,
  .auth-page .container,
  .site-footer .container,
  .site-navbar .container {
    padding-right: 1.35rem;
    padding-left: 1.35rem;
  }

  .hero-section__title {
    max-width: 10ch;
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-section__copy {
    font-size: 1rem;
  }

  .hero-section__media {
    background:
      linear-gradient(90deg, rgba(8, 9, 12, 0.56) 0%, rgba(8, 9, 12, 0.28) 45%, rgba(8, 9, 12, 0.54) 100%),
      linear-gradient(180deg, rgba(8, 9, 12, 0.14) 0%, rgba(8, 9, 12, 0.5) 100%),
      url("/images/hero-stage.png") 60% center/cover no-repeat;
  }

  .feature-card,
  .spotlight-card,
  .history-card,
  .auth-panel,
  .detail-panel,
  .cta-panel,
  .archive-hero-panel,
  .archive-story-strip__item,
  .archive-next-step,
  .archive-decade-panel {
    border-radius: 1.25rem;
  }

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