/* =========================================================================
   MSA Sardis — Shared Styles
   ========================================================================= */

:root {
  --ink: #0F2747;
  --ink-deep: #0A1A30;
  --heat: #E8472C;
  --heat-deep: #C73A22;
  --aqua: #5BC8DB;
  --cream: #FAF6EE;
  --lane: #EDE6D6;
  --char: #1A1A1A;
  --char-soft: #3A3A3A;
  --rule: #E0D8C2;
  --rule-soft: rgba(15, 39, 71, 0.12);

  --display: 'Big Shoulders Display', 'Impact', sans-serif;
  --accent: 'Fraunces', Georgia, serif;
  --body: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'Geist Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--char);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---- utilities ---- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.eyebrow-rule {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow-rule::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}
.brand-divider {
  width: 1px;
  height: 30px;
  background: var(--rule);
  display: block;
}
.brand-mark {
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.005em;
  color: var(--ink);
  line-height: 1;
  text-transform: uppercase;
}

.nav-credential {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 18px;
  border-left: 1px solid var(--rule);
}
.nav-credential-medal {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.nav-credential-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.3;
}
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--heat); }
.nav-links a.external {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links a.external::after {
  content: "↗";
  font-size: 11px;
  opacity: 0.6;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-credential { display: none; }
  .nav-inner { padding: 16px 24px; }
  .brand-logo { height: 36px; }
  .brand-divider { height: 24px; }
  .brand-mark { font-size: 20px; }
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 2px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--heat);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--heat-deep);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 246, 238, 0.5);
}
.btn-secondary:hover {
  background: rgba(250, 246, 238, 0.08);
  border-color: var(--cream);
}
.btn-cream {
  background: var(--ink);
  color: var(--cream);
}
.btn-cream:hover { background: var(--heat); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* =========================================================================
   HERO (landing)
   ========================================================================= */
.hero {
  position: relative;
  height: clamp(580px, 80vh, 780px);
  overflow: hidden;
  background-color: var(--ink-deep);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10, 26, 48, 0.12) 0%,
      rgba(10, 26, 48, 0.20) 25%,
      rgba(10, 26, 48, 0.70) 48%,
      rgba(10, 26, 48, 0.92) 72%,
      rgba(10, 26, 48, 0.98) 100%);
}
.hero-medal {
  position: absolute;
  top: 32px;
  right: 40px;
  width: 110px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
}
.hero-content {
  position: absolute;
  inset: 0;
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}
.hero-content-inner { max-width: 880px; }
.hero-eyebrow {
  color: var(--aqua);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(54px, 8vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-title .accent {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--aqua);
  display: block;
  font-size: 0.62em;
  margin-top: 10px;
  line-height: 1.05;
}
.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(250, 246, 238, 0.88);
  max-width: 600px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 760px) {
  .hero-medal { width: 80px; top: 24px; right: 20px; }
}

/* =========================================================================
   CREDENTIAL STRIP
   ========================================================================= */
.creds {
  background: var(--ink);
  color: var(--cream);
  padding: 26px 40px;
  border-top: 1px solid rgba(250, 246, 238, 0.08);
  border-bottom: 1px solid rgba(250, 246, 238, 0.08);
}
.creds-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 28px;
}
.cred-item {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  position: relative;
}
.cred-item:not(:last-child) {
  padding-right: 28px;
}
.cred-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--heat);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.cred-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .cred-item { gap: 14px; letter-spacing: 0.16em; }
  .creds-inner { gap: 12px 16px; }
}

/* =========================================================================
   PAGE HEADER (about / facility inner pages)
   ========================================================================= */
.page-header {
  padding: 100px 40px 80px;
  background: var(--cream);
  position: relative;
}
.page-header-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.page-eyebrow {
  color: var(--heat);
  margin-bottom: 24px;
}
.page-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
  text-transform: uppercase;
  max-width: 980px;
}
.page-title .accent {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--heat);
}
.page-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--char-soft);
  max-width: 720px;
}
.page-sub strong { color: var(--ink); font-weight: 600; }
.page-sub a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-sub a:hover { color: var(--heat); border-bottom-color: var(--heat); }

/* page header with photo (facility) */
.page-header.with-photo {
  padding: 0;
  height: clamp(420px, 56vh, 560px);
  overflow: hidden;
  background-color: var(--ink-deep);
}
.page-header.with-photo .photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.page-header.with-photo .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10, 26, 48, 0.18) 0%,
      rgba(10, 26, 48, 0.30) 30%,
      rgba(10, 26, 48, 0.78) 60%,
      rgba(10, 26, 48, 0.97) 100%);
}
.page-header.with-photo .page-header-inner {
  position: absolute;
  inset: 0;
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}
.page-header.with-photo .page-eyebrow { color: var(--aqua); }
.page-header.with-photo .page-title { color: var(--cream); }
.page-header.with-photo .page-title .accent { color: var(--aqua); }
.page-header.with-photo .page-sub { color: rgba(250, 246, 238, 0.88); }

/* =========================================================================
   ABOUT — Coaches + Groups
   ========================================================================= */
.about-content {
  padding: 100px 40px 130px;
  background: var(--cream);
}
.about-content-inner { max-width: 1320px; margin: 0 auto; }

/* coaches */
.coaches { margin-bottom: 96px; }
.coaches-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--char-soft);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.coach {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.coach:last-child { border-right: none; padding-right: 0; }
.coach:not(:first-child) { padding-left: 32px; }

.coach-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 34px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1;
  margin-bottom: 8px;
}
.coach-role {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--heat);
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.coach-groups {
  font-size: 13px;
  line-height: 1.6;
  color: var(--char-soft);
  margin-bottom: 18px;
}
.coach-email {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  word-break: break-all;
}
.coach-email:hover { color: var(--heat); border-bottom-color: var(--heat); }

@media (max-width: 920px) {
  .coaches-grid { grid-template-columns: 1fr; }
  .coach { padding: 32px 0; border-right: none; }
  .coach:not(:first-child) { padding-left: 0; }
  .coach:last-child { border-bottom: none; }
}

/* groups */
.groups-section { margin-bottom: 64px; }
.groups-section:last-child { margin-bottom: 0; }

.groups-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
  gap: 16px;
}
.groups-section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1;
}
.groups-section-meta {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--heat);
  letter-spacing: -0.01em;
}

.group-row {
  display: grid;
  grid-template-columns: 220px 200px 180px 1fr;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.group-row:last-child { border-bottom: none; }

.group-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.05;
}
.group-ages {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--char-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.group-coach {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.group-coach .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--char-soft);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}
.group-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--char-soft);
}

@media (max-width: 920px) {
  .group-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
  .group-coach .label { display: inline; margin-right: 6px; }
}

/* =========================================================================
   FACILITY — full page content
   ========================================================================= */
.facility-content {
  padding: 110px 40px;
  background: var(--cream);
}
.facility-content-inner {
  max-width: 980px;
  margin: 0 auto;
}
.facility-prose {
  font-size: 18px;
  line-height: 1.75;
  color: var(--char-soft);
  margin-bottom: 64px;
}
.facility-prose p {
  margin-bottom: 24px;
}
.facility-prose p:last-child { margin-bottom: 0; }
.facility-prose strong {
  color: var(--ink);
  font-weight: 600;
}

.facility-specs {
  background: var(--ink);
  color: var(--cream);
  padding: 110px 40px;
}
.facility-specs-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.facility-specs-eyebrow {
  color: var(--aqua);
  margin-bottom: 22px;
}
.facility-specs-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 64px;
}
.facility-specs-title .accent {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--aqua);
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(250, 246, 238, 0.16);
}
.spec {
  padding: 40px 24px 40px 0;
  border-right: 1px solid rgba(250, 246, 238, 0.16);
}
.spec:last-child { border-right: none; padding-right: 0; }
.spec:not(:first-child) { padding-left: 24px; }

.spec-key {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--aqua);
  display: block;
  margin-bottom: 14px;
}
.spec-val {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1.1;
}

@media (max-width: 920px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .spec { padding: 32px 20px; border-right: 1px solid rgba(250, 246, 238, 0.16); border-bottom: 1px solid rgba(250, 246, 238, 0.16); }
  .spec:nth-child(2n) { border-right: none; }
  .spec:nth-last-child(-n+2) { border-bottom: none; }
}

/* address callout (facility page) */
.address {
  padding: 100px 40px;
  background: var(--cream);
  text-align: center;
}
.address-inner { max-width: 720px; margin: 0 auto; }
.address-eyebrow {
  color: var(--heat);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.address-eyebrow::before,
.address-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--heat);
}
.address-line {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.address-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.address-link:hover { color: var(--heat); border-bottom-color: var(--heat); }
.address-link::after { content: "↗"; opacity: 0.6; }

/* =========================================================================
   SCHEDULE — landing
   ========================================================================= */
.schedule {
  padding: 120px 40px;
  background: var(--cream);
}
.schedule-inner { max-width: 1320px; margin: 0 auto; }

.schedule-header {
  margin-bottom: 72px;
  max-width: 720px;
}
.schedule-eyebrow {
  color: var(--heat);
  margin-bottom: 20px;
}
.schedule-headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.schedule-headline .accent {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--heat);
}
.schedule-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--char-soft);
  max-width: 620px;
}

/* open weekly windows */
.open-windows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 80px;
}
.window {
  background: var(--ink);
  color: var(--cream);
  padding: 44px 36px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.window::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--heat);
}
.window-tag {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--aqua);
  margin-bottom: 18px;
}
.window-day {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.window-time {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--aqua);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.window-note {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250, 246, 238, 0.72);
  border-top: 1px solid rgba(250, 246, 238, 0.16);
  padding-top: 20px;
}

@media (max-width: 760px) {
  .open-windows { grid-template-columns: 1fr; }
}

/* phase timeline */
.phases { border-top: 1px solid var(--rule); }
.phases-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--char-soft);
  padding-top: 32px;
  margin-bottom: 28px;
}
.phase {
  display: grid;
  grid-template-columns: 200px 1fr 2fr;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.phase:last-child { border-bottom: none; }

.phase-dates {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.2;
}
.phase-status {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--heat);
  letter-spacing: -0.01em;
}
.phase-detail {
  font-size: 15px;
  line-height: 1.6;
  color: var(--char-soft);
}

@media (max-width: 860px) {
  .phase {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
}

.schedule-cta {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.schedule-cta-text {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  letter-spacing: -0.01em;
  max-width: 520px;
  line-height: 1.4;
}

/* =========================================================================
   TEASER CARDS (landing — links to about / facility)
   ========================================================================= */
.teasers {
  padding: 110px 40px;
  background: var(--cream-warm, #F1E9D6);
  background: #F1E9D6;
  border-top: 1px solid var(--rule);
}
.teasers-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.teaser-card {
  display: block;
  padding: 56px 48px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 2px;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}
.teaser-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--heat);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.teaser-card:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.teaser-card:hover::before { transform: scaleX(1); }

.teaser-eyebrow {
  color: var(--heat);
  margin-bottom: 22px;
  transition: color 0.25s ease;
}
.teaser-card:hover .teaser-eyebrow { color: var(--aqua); }

.teaser-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 16px;
  transition: color 0.25s ease;
}
.teaser-card:hover .teaser-title { color: var(--cream); }

.teaser-sub {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--char-soft);
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin-bottom: 36px;
  max-width: 420px;
  transition: color 0.25s ease;
}
.teaser-card:hover .teaser-sub { color: rgba(250, 246, 238, 0.88); }

.teaser-arrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.25s ease, gap 0.25s ease;
}
.teaser-card:hover .teaser-arrow {
  color: var(--cream);
  gap: 18px;
}

@media (max-width: 760px) {
  .teasers-inner { grid-template-columns: 1fr; }
  .teaser-card { padding: 44px 32px; }
}

/* =========================================================================
   MEMBER PILL — small login callout for current members
   ========================================================================= */
.member-pill-section {
  padding: 88px 40px;
  background: var(--cream);
  text-align: center;
  border-top: 1px solid var(--rule);
}
.member-pill {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 18px 32px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 2px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.member-pill:hover {
  border-color: var(--ink);
}
.member-pill-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--heat);
  font-weight: 500;
}
.member-pill-divider {
  width: 1px;
  height: 22px;
  background: var(--rule);
}
.member-pill-text {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.member-pill-text .arrow {
  transition: transform 0.2s ease;
}
.member-pill:hover .member-pill-text .arrow {
  transform: translateX(4px);
}

@media (max-width: 620px) {
  .member-pill {
    flex-direction: column;
    gap: 14px;
    padding: 22px 28px;
  }
  .member-pill-divider { display: none; }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 72px 40px 32px;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250, 246, 238, 0.16);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-brand-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--cream);
  line-height: 1;
}
.footer-brand-org {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--aqua);
  font-weight: 500;
}
.footer-tag {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: rgba(250, 246, 238, 0.7);
  letter-spacing: -0.01em;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--aqua);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span {
  font-size: 14px;
  color: rgba(250, 246, 238, 0.85);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col a:hover { color: var(--heat); }
.footer-col a.external::after { content: "↗"; font-size: 11px; opacity: 0.6; }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(250, 246, 238, 0.5);
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .footer { padding: 60px 24px 28px; }
}
