/* =========================================================================
   Who's Who Publishing — shared stylesheet
   A registry aesthetic: parchment, ink, oxblood, antique brass.
   ========================================================================= */

:root {
  --paper:        #F3EEE1;
  --paper-deep:   #EAE1CD;
  --paper-panel:  #FBF8F0;
  --ink:          #1A1512;
  --ink-soft:     #4C4239;
  --ink-faint:    #6E6355;
  --burgundy:     #6B1420;
  --burgundy-deep:#4C0E16;
  --gold:         #A9822E;
  --gold-light:   #C6A560;
  --rule:         rgba(26, 21, 18, 0.16);
  --rule-strong:  rgba(26, 21, 18, 0.34);

  --shadow: 0 22px 50px -30px rgba(48, 20, 12, 0.55);

  --serif:   "EB Garamond", Georgia, "Times New Roman", serif;
  --display: "Cormorant Garamond", "EB Garamond", Georgia, serif;

  --maxw: 1120px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--paper);
  /* faint laid-paper texture, drawn with layered gradients only */
  background-image:
    radial-gradient(circle at 20% 12%, rgba(169, 130, 46, 0.06), transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(107, 20, 32, 0.05), transparent 46%);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.075rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--burgundy); text-decoration: none; }
a:hover { color: var(--burgundy-deep); }

/* --- shared layout helpers ------------------------------------------------ */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.9rem;
  padding-left: 0.42em; /* balance the tracking */
}

.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 1.1rem;
}

.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* Ornamental double rule used to frame sections */
.rule-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  color: var(--gold);
  margin: 0;
}
.rule-ornament::before,
.rule-ornament::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 180px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}
.rule-ornament svg { width: 26px; height: 26px; }

/* --- the medallion seal (signature mark) ---------------------------------- */

.seal { color: var(--gold); display: block; }
.seal .ring   { fill: none; stroke: currentColor; }
.seal .mono   { fill: var(--burgundy); font-family: var(--display); font-weight: 700; }
.seal .tick   { stroke: currentColor; stroke-width: 1; }
.seal .star   { fill: currentColor; }

/* --- masthead / header ---------------------------------------------------- */

.topbar {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.68rem;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  gap: 1rem;
}
.topbar span { opacity: 0.82; }
.topbar .gold { color: var(--gold-light); opacity: 1; }

.masthead {
  border-bottom: 1px solid var(--rule);
  background:
    linear-gradient(to bottom, var(--paper-panel), transparent);
}
.masthead .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 2.4rem;
  padding-bottom: 1.4rem;
}
.masthead .seal { width: 72px; height: 72px; margin-bottom: 0.9rem; }

.wordmark {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: clamp(2.3rem, 6vw, 4rem);
  line-height: 0.98;
  margin: 0;
  color: var(--ink);
}
.wordmark .amp { color: var(--gold); font-style: italic; font-weight: 500; }
.masthead .subline {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.44em;
  font-size: 0.72rem;
  color: var(--ink-faint);
  margin: 0.7rem 0 0;
  padding-left: 0.44em;
}

/* --- navigation ----------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 238, 225, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 3vw, 2.6rem);
  min-height: 54px;
  flex-wrap: wrap;
}
.nav a {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.3rem 0.15rem;
  position: relative;
}
.nav a:hover { color: var(--burgundy); }
.nav a[aria-current="page"] { color: var(--burgundy); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
}

/* --- buttons -------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.85rem 2.1rem;
  border: 1px solid var(--burgundy);
  border-radius: 1px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.15s ease;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--paper-panel);
}
.btn-primary:hover {
  background: var(--burgundy-deep);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--burgundy);
}
.btn-ghost:hover {
  background: var(--burgundy);
  color: var(--paper-panel);
}

/* --- generic section spacing ---------------------------------------------- */

.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--tint { background: var(--paper-deep); border-block: 1px solid var(--rule); }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .lede { margin-inline: auto; }

/* =========================================================================
   HOME
   ========================================================================= */

.hero {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  text-align: center;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin: 1.4rem auto 1.2rem;
  max-width: 16ch;
}
.hero h1 em { color: var(--burgundy); font-style: italic; }
.hero .lede { margin: 0 auto 2.2rem; text-align: center; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.pillar {
  background: var(--paper-panel);
  padding: 2.4rem 2rem;
  text-align: center;
}
.pillar .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}
.pillar h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.35rem;
  margin: 0.7rem 0 0.5rem;
}
.pillar p { margin: 0; color: var(--ink-soft); font-size: 1rem; }

/* featured executive card */
.featured {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  background: var(--paper-panel);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
}
.featured .portrait {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, var(--burgundy-deep), var(--burgundy)),
    var(--ink);
  border: 1px solid var(--rule-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  position: relative;
  overflow: hidden;
}
.featured .portrait .initials {
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
}
.featured .portrait .frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(198, 165, 96, 0.55);
}
.featured .meta .eyebrow { text-align: left; padding-left: 0.42em; }
.featured h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0.3rem 0 0.2rem;
}
.featured .role {
  font-style: italic;
  color: var(--burgundy);
  font-size: 1.15rem;
  margin: 0 0 1.2rem;
}
.featured blockquote {
  margin: 0 0 1.4rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--gold);
  color: var(--ink-soft);
  font-style: italic;
  font-size: 1.12rem;
}

/* standards list */
.standards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem 3rem;
}
.standard {
  border-top: 1px solid var(--rule);
  padding-top: 1.2rem;
}
.standard h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 0.4rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.standard h4 .idx {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.standard p { margin: 0; color: var(--ink-soft); font-size: 1.02rem; }

/* invitation band */
.invite {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.invite .wrap { padding-block: clamp(3.5rem, 8vw, 5.5rem); }
.invite h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 1.2rem auto 1rem;
  max-width: 20ch;
}
.invite p { color: rgba(243, 238, 225, 0.78); max-width: 54ch; margin: 0 auto 2rem; }
.invite .rule-ornament::before,
.invite .rule-ornament::after { background: linear-gradient(to right, transparent, var(--gold), transparent); }

/* =========================================================================
   MEMBER DIRECTORY
   ========================================================================= */

.directory-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.2rem;
  margin-bottom: 2rem;
}
.alpha-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.alpha-index a {
  color: var(--ink-faint);
  padding: 0.15rem 0.4rem;
  font-size: 0.92rem;
}
.alpha-index a:hover { color: var(--burgundy); }

.member-list { list-style: none; margin: 0; padding: 0; }
.member-entry {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--rule);
}
.member-entry .initials-badge {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--paper-panel);
  background: var(--burgundy);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  align-self: center;
}
.member-entry .name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.15;
  margin: 0;
}
.member-entry .role { color: var(--burgundy); font-style: italic; margin: 0.1rem 0 0; }
.member-entry .locale { color: var(--ink-faint); font-size: 0.95rem; margin: 0.1rem 0 0; }
.member-entry .est {
  font-family: var(--display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--ink-faint);
  white-space: nowrap;
  align-self: center;
}

/* =========================================================================
   THE MAGAZINE
   ========================================================================= */

.current-issue {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.cover {
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(circle at 50% 30%, rgba(198,165,96,0.18), transparent 60%),
    linear-gradient(160deg, var(--burgundy), var(--burgundy-deep));
  border: 1px solid var(--rule-strong);
  box-shadow: var(--shadow);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
}
.cover .frame { position: absolute; inset: 16px; border: 1px solid rgba(198,165,96,0.5); }
.cover .seal { width: 60px; height: 60px; margin-bottom: 1rem; color: var(--gold-light); }
.cover .ttl { font-family: var(--display); font-weight: 600; font-size: 2rem; line-height: 1.05; margin: 0; }
.cover .ttl .amp { color: var(--gold-light); font-style: italic; }
.cover .vol {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  margin-top: 1.4rem;
  color: rgba(243,238,225,0.8);
}
.cover .edition { margin-top: auto; font-style: italic; font-size: 1.05rem; color: var(--gold-light); }

.contents-list { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.contents-list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.7rem 0;
  border-bottom: 1px dotted var(--rule-strong);
}
.contents-list .pg { font-family: var(--display); color: var(--gold); font-weight: 600; min-width: 2.4ch; }
.contents-list .headline { font-family: var(--display); font-weight: 600; font-size: 1.2rem; }
.contents-list .leaders { flex: 1; border-bottom: 1px dotted var(--rule-strong); transform: translateY(-4px); }
.contents-list .by { color: var(--ink-faint); font-style: italic; font-size: 0.95rem; }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.archive-card {
  text-align: center;
}
.archive-card .mini-cover {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--ink), #2c231c);
  border: 1px solid var(--rule-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-family: var(--display);
  font-weight: 600;
  margin-bottom: 0.8rem;
  transition: transform 0.2s ease;
}
.archive-card:hover .mini-cover { transform: translateY(-4px); }
.archive-card .mini-cover span { padding: 0 1rem; }
.archive-card .cap { font-family: var(--display); font-weight: 600; font-size: 1.05rem; margin: 0; }
.archive-card .sub { color: var(--ink-faint); font-size: 0.9rem; margin: 0.1rem 0 0; }

/* =========================================================================
   SPOTLIGHT
   ========================================================================= */

.spotlight-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.spotlight-hero .portrait {
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(135deg, var(--burgundy-deep), var(--burgundy));
  border: 1px solid var(--rule-strong);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.spotlight-hero .portrait .frame { position: absolute; inset: 18px; border: 1px solid rgba(198,165,96,0.5); }
.spotlight-hero .portrait .initials {
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 7rem);
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}
.spotlight-hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0.4rem 0 0.3rem;
  line-height: 1.05;
}
.spotlight-hero .role { font-style: italic; color: var(--burgundy); font-size: 1.25rem; margin: 0 0 1.4rem; }
.spotlight-hero .body p { color: var(--ink-soft); }

.pull {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.3;
  color: var(--burgundy);
  text-align: center;
  max-width: 26ch;
  margin: 3rem auto;
  position: relative;
}
.pull::before, .pull::after { content: "\201C"; color: var(--gold); }
.pull::after { content: "\201D"; }

.past-spotlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.spotlight-card {
  background: var(--paper-panel);
  border: 1px solid var(--rule);
  padding: 1.8rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.spotlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.spotlight-card .initials-badge {
  font-family: var(--display);
  font-weight: 600;
  color: var(--paper-panel);
  background: var(--burgundy);
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.spotlight-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.4rem; margin: 0 0 0.2rem; }
.spotlight-card .role { color: var(--burgundy); font-style: italic; margin: 0 0 0.8rem; }
.spotlight-card p { color: var(--ink-soft); font-size: 1rem; margin: 0; }

/* =========================================================================
   SIGN UP
   ========================================================================= */

.signup-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}
.signup-aside .rule-ornament { justify-content: flex-start; }
.signup-aside .rule-ornament::before { display: none; }
.signup-aside h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0.6rem 0 1rem;
  line-height: 1.1;
}
.benefit-list { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.benefit-list li {
  display: flex;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
}
.benefit-list li::before {
  content: "";
  flex: none;
  width: 8px; height: 8px;
  margin-top: 0.55rem;
  background: var(--gold);
  transform: rotate(45deg);
}

.form-card {
  background: var(--paper-panel);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.8rem);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem 1.4rem;
}
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.field label .req { color: var(--burgundy); }
.field input,
.field select,
.field textarea {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 1px;
  padding: 0.7rem 0.85rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(107, 20, 32, 0.12);
}
.form-note { font-size: 0.9rem; color: var(--ink-faint); margin: 1.4rem 0 0; }
.form-actions { margin-top: 1.6rem; }

.form-status {
  margin-top: 1.2rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--gold);
  background: rgba(198,165,96,0.12);
  font-style: italic;
  color: var(--ink-soft);
  display: none;
}
.form-status.show { display: block; }

/* =========================================================================
   FOOTER
   ========================================================================= */

.site-footer {
  background: var(--ink);
  color: rgba(243, 238, 225, 0.72);
  font-size: 0.95rem;
}
.site-footer .wrap { padding-block: 3rem 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(243, 238, 225, 0.14);
}
.footer-brand .seal { width: 48px; height: 48px; color: var(--gold-light); margin-bottom: 0.9rem; }
.footer-brand .wm {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--paper);
}
.footer-brand .wm .amp { color: var(--gold-light); font-style: italic; }
.footer-brand p { max-width: 34ch; margin: 0.6rem 0 0; }
.footer-contact { max-width: 34ch; margin: 0.9rem 0 0; line-height: 1.7; }
.footer-contact a { color: rgba(243, 238, 225, 0.82); }
.footer-contact a:hover { color: #fff; }
.aside-contact {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
  line-height: 1.7;
  color: var(--ink-soft);
}
.aside-contact strong {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.aside-contact a { color: var(--burgundy); }
.footer-col h4 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  color: var(--gold-light);
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: rgba(243, 238, 225, 0.8); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.4rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: rgba(243, 238, 225, 0.55);
}

/* =========================================================================
   MOTION + REVEAL
   ========================================================================= */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

.seal-load { animation: sealIn 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
@keyframes sealIn {
  from { opacity: 0; transform: scale(0.8) rotate(-8deg); }
  to   { opacity: 1; transform: none; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .featured,
  .current-issue,
  .spotlight-hero,
  .signup-layout { grid-template-columns: 1fr; }
  .featured .portrait { max-width: 340px; margin-inline: auto; }
  .standards { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .past-spotlights { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
}

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .field.half { grid-column: 1 / -1; }
  .archive-grid { grid-template-columns: 1fr 1fr; }
  .member-entry { grid-template-columns: 1fr; }
  .member-entry .initials-badge { display: none; }
  .member-entry .est { display: none; }
  .topbar { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
