/* ─────────────────────────────────────────
   ELYSIAN TRAVEL GROUP — about.css
   About page.
   Requires: base.css
───────────────────────────────────────── */

/* ── FOUNDING STORY ──────────────────── */
.about-story {
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 90px 20px 48px;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 110px;
  align-items: start;
}
.about-story-left .label { margin-bottom: 24px; }
.about-story-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-top: 18px;
}
.about-story-headline em { font-style: italic; }
.about-story-lead {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.58;
  color: var(--ink);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.about-story-text {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ── PHILOSOPHY ──────────────────────── */
.about-philosophy {
  background: var(--ink);
  padding: 120px 64px;
}
.about-philosophy-header {
  max-width: 1440px;
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.about-philosophy-intro {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.52);
}
.philosophy-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-top: 18px;
}
.philosophy-title em { font-style: italic; }
.about-principles {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
}
.principle {
  background: var(--ink);
  padding: 52px 48px;
  border-top: 1px solid rgba(184,157,114,0.18);
  transition: background 0.4s;
}
.principle:hover { background: rgba(255,255,255,0.03); }
.principle-word {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.principle-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
}

/* ── RECOGNITION ─────────────────────── */
.about-recognition {
  padding: 90px 64px;
  background: var(--stone);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.recognition-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.recognition-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}
.recognition-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 8px;
}
.recognition-name {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.recognition-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ── TEAM ────────────────────────────── */
.about-team {
  padding: 130px 64px;
  max-width: 1440px;
  margin: 0 auto;
}
.team-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 88px;
  align-items: end;
}
.team-intro {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
}
.team-intro strong { color: var(--ink); font-weight: 300; }

.founder-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
  background: rgba(26,24,20,0.07);
}
.founder-img {
  position: relative;
  overflow: hidden;
}
.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 1s ease;
  position: absolute;
  inset: 0;
}
.founder-card:hover .founder-img img { transform: scale(1.03); }
.founder-body {
  background: var(--stone);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-role {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.founder-role::before { content: ''; width: 20px; height: 1px; background: var(--gold); display: block; }
.founder-name {
  font-family: var(--serif);
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.1;
}
.founder-sub {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.8;
}
.founder-rule { width: 28px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.founder-bio {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--muted);
  margin-bottom: 16px;
}
.founder-credentials { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.credential {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.65;
  text-decoration: none;
  transition: opacity 0.3s;
}
.credential:hover { opacity: 1; }
.credential::before { content: ''; width: 16px; height: 1px; background: var(--gold); display: block; flex-shrink: 0; }

.advisor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(26,24,20,0.07);
  margin-bottom: 2px;
}
.advisor-card { background: var(--warm-white); overflow: hidden; }
.advisor-img { height: 300px; overflow: hidden; position: relative; }
.advisor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.9s ease;
  filter: grayscale(15%);
}
.advisor-card:hover .advisor-img img { transform: scale(1.04); filter: grayscale(0%); }
.advisor-body { padding: 36px 36px 44px; }
.advisor-role {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.advisor-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.1;
}
.advisor-base {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 18px;
  opacity: 0.7;
}
.advisor-rule { width: 20px; height: 1px; background: var(--gold); margin-bottom: 16px; }
.advisor-bio {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--muted);
}
.advisor-img-placeholder {
  height: 300px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.advisor-img-placeholder-icons { display: flex; gap: 10px; font-size: 22px; opacity: 0.45; filter: grayscale(1); }
.advisor-img-placeholder-label {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.team-wider {
  background: var(--ink);
  padding: 60px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.team-wider-stat { display: flex; align-items: baseline; gap: 16px; flex-shrink: 0; }
.team-wider-num {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.team-wider-unit {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.45);
}
.team-wider-divider { width: 1px; height: 64px; background: rgba(255,255,255,0.08); flex-shrink: 0; }
.team-wider-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.88;
  color: rgba(255,255,255,0.48);
  max-width: 560px;
}

/* ── STATS STRIP ─────────────────────── */
.about-stats {
  background: var(--stone);
  padding: 80px 64px;
  border-top: 1px solid var(--border);
}
.stats-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}
.stat-item { background: var(--stone); padding: 44px 40px; text-align: center; }
.stat-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-num em { font-style: italic; color: var(--gold); }
.stat-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 1024px) {
  .about-story { padding: 100px 40px; }
  .about-philosophy { padding: 90px 40px; }
  .about-team { padding: 100px 40px; }
  .about-stats { padding: 64px 40px; }
  .about-recognition { padding: 72px 40px; }
}

@media (max-width: 768px) {
  .about-story { padding: 64px 24px; grid-template-columns: 1fr; gap: 40px; }
  .about-philosophy { padding: 64px 24px; }
  .about-philosophy-header { grid-template-columns: 1fr; gap: 28px; max-width: 100%; margin-bottom: 48px; }
  .about-principles { grid-template-columns: 1fr; }
  .about-recognition { padding: 52px 24px; }
  .about-team { padding: 64px 24px; }
  .team-header { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-img { height: 360px; }
  .founder-body { padding: 44px 28px; }
  .advisor-grid { grid-template-columns: 1fr 1fr; }
  .team-wider { flex-direction: column; gap: 24px; padding: 48px 24px; align-items: flex-start; }
  .team-wider-divider { display: none; }
  .about-stats { padding: 44px 24px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .advisor-grid { grid-template-columns: 1fr; }
  .founder-body { padding: 36px 20px; }
}

/* ── OUR NETWORK — append to about.css ── */

.about-network {
  background: var(--stone);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 64px;
}

.about-network-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.about-network-header {
  margin-bottom: 72px;
}

.about-network-header .label {
  margin-bottom: 20px;
}

.about-network-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.14;
  color: var(--ink);
}

.about-network-title em { font-style: italic; }

.about-network-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.about-network-lead {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.58;
  color: var(--ink);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.about-network-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 18px;
}

.about-network-sub:last-child { margin-bottom: 0; }

.about-network-consortium {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  border: 1px solid var(--border);
  margin-bottom: 32px;
}

.about-network-consortium-item {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-network-consortium-divider {
  background: var(--border);
}

.about-network-consortium-type {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-network-consortium-item img {
  height: 30px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(30%);
  opacity: 0.8;
}

.about-network-partners {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.about-network-partners-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.about-network-partners-names {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 1.9;
}

/* Responsive */
@media (max-width: 900px) {
  .about-network { padding: 80px 40px; }
  .about-network-body { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 768px) {
  .about-network { padding: 64px 24px; }
}

/* ─────────────────────────────────────────
   APPEND TO about.css
   Team members expanding strip
───────────────────────────────────────── */

.about-members {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 64px 140px;
}

.about-members-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.about-members-intro {
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--muted);
  max-width: 460px;
  justify-self: end;
}

/* ── STRIP ────────────────────────────── */
.members-strip {
  display: flex;
  gap: 4px;
  height: 520px;
  background: rgba(26,24,20,0.06);
  padding: 4px;
}

.member-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  transition: flex-grow 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Expanded state: takes ~5x the space of compressed siblings */
.member-card.is-open {
  flex-grow: 5;
  cursor: default;
}

/* ── PHOTO ────────────────────────────── */
.member-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.6s ease,
              opacity 0.6s ease;
  filter: grayscale(45%) brightness(0.82);
}
.member-card:hover .member-photo img {
  filter: grayscale(20%) brightness(0.88);
  transform: scale(1.04);
}
.member-card.is-open .member-photo img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1);
}

/* Dark gradient overlay always present */
.member-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18,16,12,0.88) 0%,
    rgba(18,16,12,0.55) 38%,
    rgba(18,16,12,0.05) 70%,
    rgba(18,16,12,0) 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}
.member-card.is-open .member-photo::after {
  opacity: 1;
}

/* Vertical name label on compressed cards */
.member-card::before {
  content: attr(data-label);
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.member-card.is-open::before {
  opacity: 0;
}

/* ── BODY (revealed when open) ────────── */
.member-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 44px;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.15s,
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
  pointer-events: none;
  max-width: 540px;
}
.member-card.is-open .member-body {
  opacity: 1;
  transform: translateY(0);
}

.member-role {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.member-name {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.005em;
}
.member-rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 22px;
}
.member-bio {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.78;
  color: rgba(255,255,255,0.72);
  margin-bottom: 18px;
  max-width: 420px;
}
.member-credentials {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(184,157,114,0.65);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .about-members { padding: 90px 40px 100px; }
  .about-members-header { gap: 48px; }
  .members-strip { height: 460px; }
  .member-body { padding: 40px 32px; }
}

@media (max-width: 768px) {
  .about-members { padding: 64px 24px 80px; }
  .about-members-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .about-members-intro { justify-self: start; max-width: 100%; }

  /* On mobile, switch to vertical stack — strip layout doesn't work on narrow screens */
  .members-strip {
    flex-direction: column;
    height: auto;
    gap: 2px;
    padding: 2px;
  }
  .member-card {
    flex: 1 1 auto;
    height: 120px;
    transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .member-card.is-open {
    height: 460px;
    flex-grow: 1;
  }
  .member-photo img {
    object-position: center 25%;
  }
  /* Horizontal label on mobile (not rotated) */
  .member-card::before {
    bottom: auto;
    top: 50%;
    left: 32px;
    transform: translateY(-50%);
    font-size: 11px;
  }
  .member-photo::after {
    background: linear-gradient(
      to top,
      rgba(18,16,12,0.92) 0%,
      rgba(18,16,12,0.55) 50%,
      rgba(18,16,12,0.1) 100%
    );
  }
  .member-body {
    padding: 28px 28px 32px;
    max-width: 100%;
  }
  .member-bio { font-size: 13.5px; max-width: 100%; }
}

@media (max-width: 480px) {
  .about-members { padding: 56px 20px 64px; }
  .member-card { height: 100px; }
  .member-card.is-open { height: 440px; }
  .member-body { padding: 24px 22px 28px; }
  .member-name { font-size: 26px; }
}
/* ─────────────────────────────────────────
   ELYSIAN — team-roster.css
   Alternative team section: index of names +
   side-by-side portrait / text panels.
   Text never overlays photography.
   Requires: base.css
───────────────────────────────────────── */

.team-roster {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 64px 140px;
}

.team-roster-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.team-roster-intro {
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--muted);
  max-width: 460px;
  justify-self: end;
}

/* ── LAYOUT ───────────────────────────── */
.roster-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}

/* ── INDEX (left) ─────────────────────── */
.roster-index {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  position: sticky;
  top: 110px;
}
.roster-link {
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.roster-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 33px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.roster-link-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.2;
  transition: color 0.3s;
}
.roster-link-role {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
  transition: opacity 0.3s;
}
.roster-link:hover .roster-link-name { color: var(--ink); }
.roster-link.is-active {
  padding-left: 34px;
}
.roster-link.is-active::before { width: 22px; }
.roster-link.is-active .roster-link-name {
  color: var(--ink);
  font-style: italic;
}
.roster-link.is-active .roster-link-role { opacity: 0.9; }

/* ── PANELS (right) ───────────────────── */
.roster-panels { position: relative; }

.roster-panel {
  display: none;
  grid-template-columns: 5fr 6fr;
  gap: 2px;
  background: rgba(26, 24, 20, 0.07);
}
.roster-panel.is-active {
  display: grid;
  animation: rosterFade 0.55s ease both;
}
@keyframes rosterFade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .roster-panel.is-active { animation: none; }
}

/* Portrait — its own frame, no overlays, no text on it */
.roster-portrait {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 480px;
}
.roster-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(12%);
  transition: filter 0.6s ease;
}
.roster-panel:hover .roster-portrait img { filter: grayscale(0%); }

/* Monogram fallback for members without a photo yet
   (Jamie Ferstein, Heidi Schrage) */
.roster-portrait--pending {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(184,157,114,0.10), transparent 55%),
    var(--ink);
}
.roster-portrait--pending span {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 72px;
  letter-spacing: 0.06em;
  color: var(--gold);
  opacity: 0.5;
}

/* Detail — stone panel, mirrors the founder card */
.roster-detail {
  background: var(--stone);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.roster-detail-role {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.roster-detail-role::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  display: block;
}
.roster-detail-name {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 24px;
}
.roster-detail-rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 26px;
}
.roster-detail-bio {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 14px;
}
.roster-detail-credentials {
  margin-top: 18px;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 10px;
}
.roster-detail-credentials::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   On smaller screens the index disappears and
   every member stacks: photo, then text below.
   No overlays, no JS, full bios always visible.
═══════════════════════════════════════ */

@media (max-width: 1100px) {
  .roster-layout { grid-template-columns: 260px 1fr; gap: 48px; }
  .roster-detail { padding: 48px 40px; }
}

@media (max-width: 900px) {
  .team-roster { padding: 90px 40px 100px; }
  .team-roster-header { gap: 40px; margin-bottom: 48px; }

  .roster-layout { grid-template-columns: 1fr; gap: 0; }
  .roster-index { display: none; }

  .roster-panel,
  .roster-panel.is-active {
    display: block;
    animation: none;
    margin-bottom: 48px;
    background: none;
    gap: 0;
  }
  .roster-panel:last-child { margin-bottom: 0; }

  .roster-portrait {
    min-height: 0;
    aspect-ratio: 4 / 5;
    max-height: 480px;
  }
  .roster-portrait img { position: absolute; }

  .roster-detail {
    padding: 36px 28px 44px;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  .team-roster { padding: 64px 24px 80px; }
  .team-roster-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .team-roster-intro { justify-self: start; max-width: 100%; }
}

@media (max-width: 480px) {
  .team-roster { padding: 56px 20px 64px; }
  .roster-detail { padding: 30px 22px 38px; }
  .roster-detail-name { font-size: 26px; }
  .roster-portrait { aspect-ratio: 3 / 4; }
}

/* ─────────────────────────────────────────
   ELYSIAN — team-roster.css
   Alternative team section: index of names +
   side-by-side portrait / text panels.
   Text never overlays photography.
   Requires: base.css
───────────────────────────────────────── */

.team-roster {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 64px 140px;
}

.team-roster-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.team-roster-intro {
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--muted);
  max-width: 460px;
  justify-self: end;
}

/* ── LAYOUT ───────────────────────────── */
.roster-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}

/* ── INDEX (left) ─────────────────────── */
.roster-index {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  position: sticky;
  top: 110px;
}
.roster-link {
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.roster-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 33px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.roster-link-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.2;
  transition: color 0.3s;
}
.roster-link-role {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
  transition: opacity 0.3s;
}
.roster-link:hover .roster-link-name { color: var(--ink); }
.roster-link.is-active {
  padding-left: 34px;
}
.roster-link.is-active::before { width: 22px; }
.roster-link.is-active .roster-link-name {
  color: var(--ink);
  font-style: italic;
}
.roster-link.is-active .roster-link-role { opacity: 0.9; }

/* ── PANELS (right) ───────────────────── */
.roster-panels { position: relative; }

.roster-panel {
  display: none;
  grid-template-columns: 5fr 6fr;
  gap: 2px;
  background: rgba(26, 24, 20, 0.07);
}
.roster-panel.is-active {
  display: grid;
  animation: rosterFade 0.55s ease both;
}
@keyframes rosterFade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .roster-panel.is-active { animation: none; }
}

/* Portrait — its own frame, no overlays, no text on it */
.roster-portrait {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 480px;
}
.roster-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(12%);
  transition: filter 0.6s ease;
}
.roster-panel:hover .roster-portrait img { filter: grayscale(0%); }

/* Monogram fallback for members without a photo yet
   (Jamie Ferstein, Heidi Schrage) */
.roster-portrait--pending {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(184,157,114,0.10), transparent 55%),
    var(--ink);
}
.roster-portrait--pending span {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 72px;
  letter-spacing: 0.06em;
  color: var(--gold);
  opacity: 0.5;
}

/* Detail — stone panel, mirrors the founder card */
.roster-detail {
  background: var(--stone);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.roster-detail-role {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.roster-detail-role::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  display: block;
}
.roster-detail-name {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 24px;
}
.roster-detail-rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 26px;
}
.roster-detail-bio {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 14px;
}
.roster-detail-credentials {
  margin-top: 18px;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 10px;
}
.roster-detail-credentials::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   On smaller screens the index disappears and
   every member stacks: photo, then text below.
   No overlays, no JS, full bios always visible.
═══════════════════════════════════════ */

@media (max-width: 1100px) {
  .roster-layout { grid-template-columns: 260px 1fr; gap: 48px; }
  .roster-detail { padding: 48px 40px; }
}

@media (max-width: 900px) {
  .team-roster { padding: 90px 40px 100px; }
  .team-roster-header { gap: 40px; margin-bottom: 48px; }

  .roster-layout { grid-template-columns: 1fr; gap: 0; }
  .roster-index { display: none; }

  .roster-panel,
  .roster-panel.is-active {
    display: block;
    animation: none;
    margin-bottom: 48px;
    background: none;
    gap: 0;
  }
  .roster-panel:last-child { margin-bottom: 0; }

  .roster-portrait {
    min-height: 0;
    aspect-ratio: 4 / 5;
    max-height: 480px;
  }
  .roster-portrait img { position: absolute; }

  .roster-detail {
    padding: 36px 28px 44px;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  .team-roster { padding: 64px 24px 80px; }
  .team-roster-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .team-roster-intro { justify-self: start; max-width: 100%; }
}

@media (max-width: 480px) {
  .team-roster { padding: 56px 20px 64px; }
  .roster-detail { padding: 30px 22px 38px; }
  .roster-detail-name { font-size: 26px; }
  .roster-portrait { aspect-ratio: 3 / 4; }
}