/**
 * Inner pages Ã¢â‚¬â€ one file for every custom inner-page design (About Us now,
 * more to follow). Each page gets its own prefixed block below (about-*,
 * and whatever prefix the next page uses) so nothing here shares a class
 * name with services.css or any other page Ã¢â‚¬â€ no cross-page collisions.
 *
 * ==========================================================================
 * ABOUT US Ã¢â‚¬â€ page-about.php
 * ==========================================================================
 * Scoped to .about-page. Content column matches the header container
 * (max-w-7xl / px-6 / lg:px-0), so section copy lines up with the logo.
 * Colours are the design palette; all sizes are in px, body paragraphs 16px.
 */

/* ==========================================================================
 * SPECIFICITY GUARD - neutralise custom.css's `section:not(#top)` rules
 * ==========================================================================
 * custom.css has two blanket rules - `section:not(#top){padding-top/
 * padding-bottom !important}` (site-wide) and the same at 20px inside a
 * `1100-1440px width, <=730px height` media query - meant for the homepage
 * deck sections. `:not(#top)` carries an ID's specificity, so it silently
 * overrides any padding rule here that shares just a class, breaking every
 * banner and section on these inner pages at that viewport.
 *
 * `:not(#__never__)` is a no-op filter (no element has that id, so it always
 * matches) added purely to raise specificity to beat `section:not(#top)`
 * outright, regardless of stylesheet order. Every top-level <section> these
 * inner pages render must be listed here - add a page's own when you add it.
 */
.about-banner:not(#__never__) {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.about-topic:not(#__never__) {
  padding-top: var(--about-space) !important;
  padding-bottom: var(--about-space) !important;
}

.recog-year:not(#__never__) {
  padding-top: var(--recog-space) !important;
  padding-bottom: var(--recog-space) !important;
}

.forms-topic:not(#__never__) {
  padding-top: var(--forms-space) !important;
  padding-bottom: var(--forms-space) !important;
}

.mem-topic:not(#__never__) {
  padding-top: var(--mem-space) !important;
  padding-bottom: var(--mem-space) !important;
}

.pubs-topic:not(#__never__) {
  padding-top: var(--pubs-space) !important;
  padding-bottom: var(--pubs-space) !important;
}

.about-page {
  --about-heading: #22325a;
  --about-gold: #b8945a;
  --about-cream: #f6f3ec;
  --about-cream-alt: #f0ede8;
  --about-body: #55555c;
  --about-body-copy: rgba(34, 50, 90, 0.75);
  --about-space: 50px;
  --about-card-surface: #f6f5f3;
  --about-card-border: rgba(34, 50, 90, 0.1);
  --about-card-border-hover: rgba(184, 148, 90, 0.55);
  --about-card-shadow-hover: 0 18px 40px rgba(34, 50, 90, 0.08);
  --about-navy: #1a1f4d;
  --about-hero-text: #d7d6dd;
}

/* ---------- Hero banner ---------- */
/* Fully self-contained. Deliberately does NOT reuse .services-banner /
   .services-title / etc Ã¢â‚¬â€ those classes carry rules from services.css
   (`.services-page .services-banner`, breakpoint overrides, etc.) that
   fight with any height/type rules written here. Every selector below is
   unique to this page, so no other banner or section can affect it, and
   this page can never affect theirs. */
.about-banner {
  position: relative;
  min-height: clamp(300px, 30vh, 640px);
  height: auto;
  display: flex;
  align-items: flex-end;
  background-color: var(--about-navy);
  overflow: hidden;
}

.about-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.about-banner-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 70% 30%, rgba(120, 130, 220, 0.06), transparent 70%),
    radial-gradient(50% 45% at 20% 80%, rgba(184, 148, 90, 0.04), transparent 70%);
  animation: about-banner-drift 16s ease-in-out infinite alternate;
}

@keyframes about-banner-drift {
  from {
    transform: translate3d(-3%, -2%, 0) scale(1);
  }
  to {
    transform: translate3d(3%, 2%, 0) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-banner-glow {
    animation: none;
  }
}

.about-banner-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 46px 46px;
}

.about-banner-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(17, 20, 47, 0.62) 0%,
    rgba(17, 20, 47, 0.22) 45%,
    rgba(17, 20, 47, 0) 100%
  );
}

/* Same centred 92% band the header logo sits in. The header container is
   `px-6 lg:px-0` Ã¢â‚¬â€ 24px side padding below 1024px, none at 1024px+ Ã¢â‚¬â€ so this
   must carry the same padding or content drifts from the logo on mobile. */
.about-banner-inner {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 92%;
  margin: 0 auto;
  padding: 8.5rem 0 1.5rem;
  /* margin-bottom: -25px; */
  padding: 10.5rem 0 4.5rem;
}


@media (min-width: 1024px) {
  .about-banner-inner {
    padding-left: 0;
    padding-right: 0;
  }
}


@media (min-width: 1920px) {
 .forms-list {
    max-width: 68% !Important;
  } 
	.recog-award-body {
    max-width: 60% !Important;
}

  .about-banner-inner {
      padding: 12.5rem 0 1.5rem;
  }
	
}


.about-banner-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  row-gap: 4px;
  margin-bottom: 24px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.5);
}

/* A long current-page name (e.g. a professional's full name) wraps as
   whole words onto its own line instead of squeezing into the remaining
   flex space one letter-column at a time. */
.about-banner-crumbs a,
.about-banner-crumbs .cur {
  white-space: normal;
}

.about-banner-crumbs a {
  color: inherit;
  text-decoration: none;
}

.about-banner-crumbs a:hover {
  color: var(--about-gold);
}

.about-banner-crumbs .cur {
  color: var(--about-gold);
}

.about-banner-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  letter-spacing: 4.4px;
  text-transform: uppercase;
  color: var(--about-gold);
}

.about-banner-eyebrow .rule {
  width: 48px;
  height: 1px;
  background: rgba(184, 148, 90, 0.7);
}

.about-banner-title {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(40px, 4.6vw, 164px);
  line-height: 1.05;
  color: var(--about-cream);
}

.about-banner-title em {
    font-style: italic !important;
    color: rgb(184, 150, 81) !important;
}

.about-banner-desc {
  max-width: 672px;
  margin: 20px  0 0 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--about-hero-text);
}

@media (max-width: 767px) {
  .about-banner {
    min-height: clamp(220px, 55vw, 340px);
  }

  .about-banner-inner {
    padding-top: 116px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .about-banner-crumbs,
  .about-banner-eyebrow {
    margin-bottom: 16px;
  }
}

/* ---------- Section shell ---------- */
/* overflow:clip, not hidden Ã¢â‚¬â€ `hidden` would make this a scroll container and
   silently break the sticky aside inside the glimpse grid. */
.about-topic {
  position: relative;
  padding: var(--about-space) 0;
  overflow: clip;
  scroll-margin-top: 24px;
}

.about-topic--cream {
  background: var(--about-cream);
}

.about-topic--alt {
  background: var(--about-cream-alt);
}

/* Same centred 92% band the header logo sits in, with the header's own
   `px-6 lg:px-0` padding matched below Ã¢â‚¬â€ see .about-banner-inner above. */
.about-topic-inner {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 92%;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .about-topic-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.about-ghost {
  position: absolute;
  top: -3vw;
  right: 2vw;
  z-index: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22vw;
  line-height: 0.8;
  color: rgba(34, 50, 90, 0.045);
  user-select: none;
  pointer-events: none;
}

.about-sec-head {
  margin-bottom: 56px;
}

.about-sec-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--about-heading);
}

@media (min-width: 1024px) {
  .about-sec-title {
    font-size: 60px;
  }
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  color: var(--about-gold);
}

.about-eyebrow .rule {
  width: 32px;
  height: 1px;
  background: var(--about-gold);
}

/* ---------- Glimpse: sticky aside + editorial body ---------- */
.about-glimpse-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

/* The aside rides down with the reader, then releases at the foot of the
   section Ã¢â‚¬â€ the grid is its containing block. */
.about-glimpse-aside {
  position: sticky;
  top: 32px;
  align-self: start;
}

.about-sec-title--plain {
  font-size: 36px;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .about-sec-title--plain {
    font-size: 48px;
  }
}

.about-glimpse-figure {
  margin: 40px 0 0;
  overflow: hidden;
}

.about-glimpse-figure img {
  display: block;
  width: 100%;
  height: clamp(260px, 40vh, 384px);
  object-fit: cover;
}

.about-glimpse-lead {
  margin-bottom: 28px;
  padding-left: 24px;
  border-left: 2px solid var(--about-gold);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--about-heading);
}

.about-glimpse-body p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--about-body-copy);
}

.about-glimpse-body p:last-child {
  margin-bottom: 0;
}

/* ---------- Mission & values ---------- */
.about-lead {
  max-width: 896px;
  margin-bottom: 40px;
  padding-left: 28px;
  border-left: 2px solid var(--about-gold);
  font-size: 18px;
  line-height: 1.7;
  color: var(--about-heading);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 20px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.about-values li {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 180px;
  padding: 32px;
  background: var(--about-card-surface);
  border: 1px solid var(--about-card-border-hover);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-values li:hover {
  transform: translateY(-4px);
  box-shadow: var(--about-card-shadow-hover);
  border-color: var(--about-card-border-hover);
}

.about-values .icon-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(184, 148, 90, 0.1);
  border: 1px solid rgba(184, 148, 90, 0.3);
}

.about-values .icon-wrap::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(184, 148, 90, 0.35);
}

.about-values .icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--about-gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-values .val-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.35;
  color: var(--about-heading);
}

/* ---------- Split plate (DE&I / Community Service) ---------- */
/* Two panels sharing one frame: the 1px gap over a tinted background is what
   draws the hairline divider between them. */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--about-card-border-hover);
  border: 1px solid var(--about-card-border-hover);
}

.about-split--single {
  grid-template-columns: 1fr;
}

.about-split-panel {
  background: var(--about-card-surface);
  padding: 56px;
}

.about-split-title {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--about-heading);
}

.about-split-panel p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--about-body-copy);
}

.about-split-panel p:last-child {
  margin-bottom: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .about-glimpse-grid {
    gap: 56px;
  }
}

@media (max-width: 900px) {
  .about-glimpse-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-glimpse-aside {
    position: static;
  }

  .about-glimpse-figure img {
    height: 260px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split-panel {
    padding: 36px;
  }

  .about-split-title {
    font-size: 30px;
  }

  .about-sec-title {
    font-size: 40px;
  }
}

/* On phones the value cards stack: icon on top, copy underneath. */
@media (max-width: 640px) {
  .about-values {
    grid-auto-rows: auto;
    gap: 16px;
  }

  .about-values li {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    min-height: 0;
    padding: 26px 22px;
  }

  .about-values .icon-wrap {
    width: 48px;
    height: 48px;
  }

  .about-values .icon-wrap svg {
    width: 21px;
    height: 21px;
  }

  .about-values .val-content {
    width: 100%;
  }

  .about-values .val-title {
    font-size: 21px;
  }

  .about-sec-title--plain {
    font-size: 32px;
  }

  .about-glimpse-lead,
  .about-lead {
    padding-left: 18px;
    font-size: 17px;
  }
}

/* ==========================================================================
 * RECOGNITIONS Ã¢â‚¬â€ page-recognitions.php
 * ==========================================================================
 * The hero banner is the About page's .about-banner-* markup/CSS reused
 * directly (page-recognitions.php adds the .about-page class alongside
 * .recog-page so those variables resolve) Ã¢â‚¬â€ not a duplicate, so it's always
 * exactly the same banner. Everything below (years/awards list) is its own
 * .recog-* block, self-contained from services.css.
 */

.recog-page {
  --recog-heading: #22325a;
  --recog-gold: #b8945a;
  --recog-cream: #f6f3ec;
  --recog-cream-alt: #f0ede8;
  --recog-body-copy: rgba(34, 50, 90, 0.75);
  --recog-space: 50px;
}

/* ---------- Year sections ---------- */
.recog-year {
  position: relative;
  padding: var(--recog-space) 0;
  overflow: clip;
  scroll-margin-top: 24px;
}

.recog-year--cream {
  background: var(--recog-cream);
}

.recog-year--alt {
  background: var(--recog-cream-alt);
}

/* Same centred 92% band as .about-topic-inner, with the header's own
   `px-6 lg:px-0` padding matched below. */
.recog-year-inner {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 92%;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .recog-year-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.recog-year-ghost {
  position: absolute;
  top: -3vw;
  right: 2vw;
  z-index: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 20vw;
  line-height: 0.8;
  color: rgba(34, 50, 90, 0.045);
  user-select: none;
  pointer-events: none;
}

.recog-year-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 16px;
}

.recog-year-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--recog-heading);
}

.recog-year-count {
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(34, 50, 90, 0.4);
  display: none;
}

@media (max-width: 820px) {
  .recog-year-head h2 {
    font-size: 42px;
  }
}

/* ---------- Editorial award list ---------- */
.recog-awards {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(34, 50, 90, 0.14);
}

.recog-award {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 80px;
  align-items: start;
  padding: 44px;
  border-bottom: 1px solid rgba(34, 50, 90, 0.14);
  transition: background 0.3s ease;
}

.recog-award:hover {
  background: rgba(184, 148, 90, 0.04);
}

.recog-award-media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.recog-award-media img {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
}

.recog-award-icon {
  color: rgba(184, 148, 90, 0.4);
}

.recog-award-body {
  max-width: 50rem;
}

.recog-award-title {
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.24;
  color: var(--recog-heading);
}

.recog-award-body p {
  margin: 0 0 14px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--recog-body-copy);
}

.recog-award-body p:last-child {
  margin-bottom: 0;
}

.recog-award-body strong {
  font-weight: 600;
  color: var(--recog-heading);
}

.recog-award-indiv {
  margin-top: 16px !important;
  font-size: 15px !important;
  color: rgba(34, 50, 90, 0.55) !important;
}

.recog-award-indiv strong {
  color: var(--recog-heading);
}

@media (max-width: 820px) {
  .recog-award {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 0;
  }

  .recog-award-media {
    justify-content: flex-start;
  }

  .recog-award-media img {
    max-width: 140px;
  }
}

/* ==========================================================================
 * FORMS Ã¢â‚¬â€ page-forms.php
 * ==========================================================================
 * The hero banner is the About page's .about-banner-* markup/CSS reused
 * directly (page-forms.php adds the .about-page class alongside .forms-page
 * so those variables resolve) Ã¢â‚¬â€ always exactly the same banner. The form
 * list below is its own .forms-* block, self-contained from services.css.
 */

.forms-page {
  --forms-heading: #22325a;
  --forms-gold: #b8945a;
  --forms-cream: #f6f3ec;
  --forms-card-surface: #f6f5f3;
  --forms-card-border: rgba(34, 50, 90, 0.1);
  --forms-card-border-hover: rgba(184, 148, 90, 0.55);
  --forms-card-shadow-hover: 0 18px 40px rgba(34, 50, 90, 0.08);
  --forms-space: 50px;
}

.forms-topic {
  position: relative;
  padding: var(--forms-space) 0;
  background: var(--forms-cream);
  overflow: clip;
}

.forms-ghost {
  position: absolute;
  top: -3vw;
  right: 2vw;
  z-index: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 18vw;
  line-height: 0.8;
  color: rgba(34, 50, 90, 0.045);
  user-select: none;
  pointer-events: none;
}

/* Same centred 92% band as the header/banner, with the header's own
   `px-6 lg:px-0` padding matched (see .about-banner-inner). */
.forms-topic-inner {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 92%;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .forms-topic-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.forms-list {
  max-width: 920px;
}

/* ---------- Standalone rows ---------- */
.form-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 16px;
  padding: 22px 26px;
  background: var(--forms-card-surface);
  border: 1px solid var(--forms-card-border-hover);
  color: var(--forms-heading);
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.form-row:hover {
  transform: translateY(-4px);
  border-color: var(--forms-card-border-hover);
  box-shadow: var(--forms-card-shadow-hover);
}

.form-ico {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 148, 90, 0.12);
  border: 1px solid rgba(184, 148, 90, 0.35);
}

.form-ico svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--forms-gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-name {
  flex: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: var(--forms-heading);
}

.form-dl {
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forms-gold);
}

.form-dl svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Grouped rows (a form with variants) ---------- */
.form-group {
  margin-bottom: 16px;
  padding: 28px 30px;
  background: #f6f5f3;
  border: 1px solid var(--forms-card-border-hover);
}

.form-group-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: var(--forms-heading);
}

.sub-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--forms-card-border-hover);
  color: var(--forms-heading);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.sub-row + .sub-row {
  margin-top: 10px;
}

.sub-row:hover {
  background: rgba(184, 148, 90, 0.06);
  border-color: var(--forms-card-border-hover);
}

.sub-ico {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 148, 90, 0.12);
  border: 1px solid rgba(184, 148, 90, 0.35);
}

.sub-ico svg {
  display: block;
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--forms-gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sub-name {
  flex: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.35;
  color: var(--forms-heading);
}

.sub-dl {
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forms-gold);
}

.sub-dl svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 700px) {
  .form-dl span,
  .sub-dl span {
    display: none;
  }
}

/* Below 640px each row/box becomes two lines: icon + download on top,
   the title on its own full-width line underneath Ã¢â‚¬â€ still one box. */
@media (max-width: 640px) {
  .form-row,
  .sub-row {
    flex-wrap: wrap;
    row-gap: 14px;
  }

  .form-ico,
  .sub-ico {
    order: 1;
  }

  .form-dl,
  .sub-dl {
    order: 2;
    margin-left: auto;
  }

  .form-name,
  .sub-name {
    order: 3;
    flex-basis: 100%;
  }
}


/* ==========================================================================
 * MEMBERSHIPS â€” page-memberships.php (standard grid) and
 * page-memberships-collage.php (mosaic). Both share .mem-page tokens and the
 * hero (which is About's .about-banner-* reused directly). The grid itself
 * is picked with a modifier on .mem-topic / .mem-grid: --standard or
 * --collage â€” self-contained from services.css.
 * ========================================================================== */

.mem-page {
  --mem-heading: #22325a;
  --mem-gold: #b8945a;
  --mem-cream: #f6f3ec;
  --mem-cream-alt: #f0ede8;
  --mem-card-surface: #f6f5f3;
  --mem-card-border: rgba(34, 50, 90, 0.1);
  --mem-card-border-hover: rgba(184, 148, 90, 0.55);
  --mem-card-shadow-hover: 0 18px 40px rgba(34, 50, 90, 0.08);
  --mem-space: 50px;
}

.mem-topic {
  position: relative;
  padding: var(--mem-space) 0;
  overflow: clip;
}

.mem-topic--standard {
  background: var(--mem-cream);
}

.mem-topic--collage {
  background: var(--mem-cream-alt);
}

.mem-ghost {
  position: absolute;
  top: -3vw;
  right: 2vw;
  z-index: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 18vw;
  line-height: 0.8;
  color: rgba(34, 50, 90, 0.045);
  user-select: none;
  pointer-events: none;
}

/* Same centred 92% band as the header/banner, with the header's own
   `px-6 lg:px-0` padding matched (see .about-banner-inner). */
.mem-topic-inner {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 92%;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .mem-topic-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.mem-count {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(85, 85, 92, 0.75);
}

.mem-count::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--mem-gold);
}

/* ---------- Standard grid: equal tiles ---------- */
.mem-grid--standard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mem-grid--standard .mem {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  padding: 32px;
  background: var(--mem-card-surface);
  border: 1px solid var(--mem-card-border-hover);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.mem-grid--standard .mem:hover {
  transform: translateY(-4px);
  border-color: var(--mem-card-border-hover);
  box-shadow: var(--mem-card-shadow-hover);
}

.mem-grid--standard .mem-abbr {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  color: var(--mem-gold);
}

.mem-grid--standard .mem-name {
  margin-top: 24px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(85, 85, 92, 0.75);
}

@media (max-width: 1024px) {
  .mem-grid--standard {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .mem-grid--standard {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .mem-grid--standard {
    grid-template-columns: 1fr;
  }
}

/* ---------- Collage grid: alternating wide/narrow mosaic ---------- */
.mem-grid--collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.mem-grid--collage .mem {
  position: relative;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 150px;
  padding: 26px 24px 24px;
  background: var(--mem-card-surface);
  border: 1px solid var(--mem-card-border-hover);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.mem-grid--collage .mem--wide {
  grid-column: span 3;
  min-height: 170px;
}

.mem-grid--collage .mem:hover {
  transform: translateY(-4px);
  border-color: var(--mem-card-border-hover);
  box-shadow: var(--mem-card-shadow-hover);
}

.mem-grid--collage .mem-abbr {
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--mem-heading);
}

.mem-grid--collage .mem--wide .mem-abbr {
  font-size: 34px;
}

.mem-grid--collage .mem-name {
  max-width: 22rem;
  font-family: Inter, sans-serif;
  font-size: 13.6px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(109, 109, 115, 0.9);
}

.mem-grid--collage .mem--wide .mem-name {
  font-size: 14.4px;
}

@media (max-width: 900px) {
  .mem-grid--collage {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .mem-grid--collage .mem,
  .mem-grid--collage .mem--wide {
    grid-column: span 1;
    min-height: 140px;
  }

  .mem-grid--collage .mem--wide .mem-abbr {
    font-size: 28px;
  }
}

@media (max-width: 550px) {
  .mem-grid--collage {
    grid-template-columns: 1fr;
  }

  .mem-grid--collage .mem,
  .mem-grid--collage .mem--wide {
    grid-column: span 1;
  }
}

/* ==========================================================================
 * PUBLICATIONS â€” page-publications.php (standard) and
 * page-publications-classic.php (classic). Both share .pubs-page tokens,
 * the year-row/pub-card structure, and the hero (About's .about-banner-*
 * reused directly). Layout differs by a modifier: .pubs-years--standard
 * (auto-fit grid, wide single-item feature, scroll reveal) vs
 * .pubs-years--classic (fixed 2-up grid, no animation). Self-contained
 * from services.css.
 * ========================================================================== */

.pubs-page {
  --pubs-heading: #22325a;
  --pubs-gold: #b8945a;
  --pubs-cream: #f6f3ec;
  --pubs-body-muted: rgba(34, 50, 90, 0.6);
  --pubs-card-surface: #f6f5f3;
  --pubs-card-border: rgba(34, 50, 90, 0.1);
  --pubs-card-border-hover: rgba(184, 148, 90, 0.55);
  --pubs-card-shadow-hover: 0 18px 40px rgba(34, 50, 90, 0.08);
  --pubs-space: 50px;
}

.pubs-topic {
  position: relative;
  padding: var(--pubs-space) 0;
  background: var(--pubs-cream);
  overflow: clip;
}

.pubs-monogram {
  position: absolute;
  right: 4vw;
  top: 2.5rem;
  z-index: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 9rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(34, 50, 90, 0.05);
  user-select: none;
  pointer-events: none;
}

/* Same centred 92% band as the header/banner, with the header's own
   `px-6 lg:px-0` padding matched (see .about-banner-inner). */
.pubs-inner {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 92%;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .pubs-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.pubs-years {
  display: flex;
  flex-direction: column;
}

.year-label {
  position: sticky;
  top: 32px;
  align-self: start;
}

.yr-tag {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(34, 50, 90, 0.5);
}

.yr-tag::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--pubs-gold);
}

.yr-num {
  margin-top: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--pubs-heading);
}

.yr-count {
  margin-top: 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(34, 50, 90, 0.5);
}

/* ---------- Publication card (shared by both layouts) ---------- */
.pub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
  padding: 24px;
  background: var(--pubs-card-surface);
  border: 1px solid var(--pubs-card-border-hover);
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pub-card:hover {
  transform: translateY(-4px);
  border-color: var(--pubs-card-border-hover);
  box-shadow: var(--pubs-card-shadow-hover);
}

.pub-yr {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(34, 50, 90, 0.55);
}

.pub-title {
  margin: 16px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--pubs-heading);
  transition: color 0.2s ease;
}

.pub-card:hover .pub-title {
  color: var(--pubs-gold);
}

.pub-source {
  margin: 12px 0 0;
  font-family: Inter, sans-serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.43;
  color: var(--pubs-body-muted);
}

.pub-authors-wrap {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(34, 50, 90, 0.1);
}

.pub-authors {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  color: rgba(34, 50, 90, 0.85);
}

.pub-read {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pubs-body-muted);
  transition: color 0.3s ease;
}

.pub-card:hover .pub-read {
  color: var(--pubs-gold);
}

.pub-read svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Standard: auto-fit grid, hairline rhythm, wide single card ---------- */
.pubs-years--standard {
  margin-top: 56px;
}

.pubs-years--standard .year-row + .year-row {
  border-top: 1px solid rgba(34, 50, 90, 0.12);
}

.pubs-years--standard .year-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 44px 0;
}

.pubs-years--standard .year-row:first-child {
  padding-top: 0;
}

.pubs-years--standard .year-label {
  padding-right: 24px;
  border-right: 1px solid rgba(34, 50, 90, 0.1);
}

/* auto-fit, so a year with one publication fills the width instead of
   leaving half the row empty. */
.pubs-years--standard .year-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* A lone card gets the full width, so it reads as a feature rather than a
   half-empty row: title and meta sit side by side. */
.pubs-years--standard .pub-card:only-child {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-areas: "head meta";
  align-items: center;
  gap: 40px;
  padding: 30px 32px;
}

.pubs-years--standard .pub-card:only-child > :first-child {
  grid-area: head;
}

.pubs-years--standard .pub-card:only-child > :last-child {
  grid-area: meta;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.pubs-years--standard .pub-card:only-child .pub-title {
  margin-top: 12px;
  font-size: 30px;
}

.pubs-years--standard .pub-card:only-child .pub-authors-wrap {
  margin-top: 0;
  margin-right: -20px;
  padding-top: 0;
  padding-right: 20px;
  border-top: 0;
  border-right: 1px solid rgba(34, 50, 90, 0.12);
}

.pubs-years--standard .pub-card:only-child .pub-read {
  margin-top: 14px;
}

@media (max-width: 820px) {
  .pubs-years--standard .pub-card:only-child {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "meta";
    gap: 20px;
    padding: 24px;
  }

  .pubs-years--standard .pub-card:only-child > :last-child {
    align-items: flex-start;
    text-align: left;
  }

  .pubs-years--standard .pub-card:only-child .pub-authors-wrap {
    margin-right: 0;
    padding-right: 0;
    padding-top: 16px;
    border-right: 0;
    border-top: 1px solid rgba(34, 50, 90, 0.1);
  }

  .pubs-years--standard .pub-card:only-child .pub-title {
    font-size: 26px;
  }
}

/* Scroll reveal: rows rise into place. Anything not observed (JS off, or
   .reveal never added) stays visible, so no-JS still reads correctly. */
.pubs-years--standard .year-row.reveal .year-label,
.pubs-years--standard .year-row.reveal .pub-card {
  opacity: 0;
  transform: translateY(18px);
}

.pubs-years--standard .year-row.reveal.in .year-label,
.pubs-years--standard .year-row.reveal.in .pub-card {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pubs-years--standard .year-row.reveal.in .pub-card:nth-child(2) {
  transition-delay: 0.08s;
}

.pubs-years--standard .year-row.reveal.in .pub-card:nth-child(3) {
  transition-delay: 0.16s;
}

.pubs-years--standard .year-row.reveal.in .pub-card:nth-child(4) {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .pubs-years--standard .year-row.reveal .year-label,
  .pubs-years--standard .year-row.reveal .pub-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .pubs-years--standard .year-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }

  .pubs-years--standard .year-cards {
    grid-template-columns: 1fr;
  }

  .pubs-years--standard .year-label {
    position: static;
    padding-right: 0;
    border-right: 0;
  }

  .pubs-years--standard .yr-num {
    font-size: 60px;
  }
}

/* ---------- Classic: fixed split, even 2-up grid, no animation ---------- */
.pubs-years--classic {
  margin-top: 64px;
  gap: 80px;
}

.pubs-years--classic .year-row {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 40px;
}

.pubs-years--classic .year-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 900px) {
  .pubs-years--classic {
    gap: 56px;
    margin-top: 0px;
  }

  .pubs-years--classic .year-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pubs-years--classic .year-cards {
    grid-template-columns: 1fr;
  }

  .pubs-years--classic .year-label {
    position: static;
  }

  .pubs-years--classic .yr-num {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .pubs-monogram {
    right: 1rem;
    top: 1.5rem;
  }
}

/* ==========================================================================
 * Next inner page goes here â€” give it its own prefix (e.g. .contact2-*) so
 * it stays just as independent from About and from services.css as About is.
 * ========================================================================== */
