/* ==========================================================================
    Design tokens (Chi Beta Omega: garnet & gold)
    ========================================================================== */
:root {
  /* Primary. Token names kept from the original template: "navy" is the
     deep ink garnet, "blue" is garnet. */
  --navy: #3a1420;
  --blue: #782f40;
  --gold: #ceb888;
  /* Secondary */
  --cobalt: #9b4257;
  --white: #ffffff;
  --black: #2d2b2b;

  /* Chapter accent: used on the Spring Formal sections */
  --garnet: #782f40;
  --garnet-deep: #5a2130;

  /* UI tints derived from the palette (surfaces and lines only) */
  --blue-50: #fbf7f0;
  --blue-100: #f3ead9;
  --line: #eadfca;
  --text-muted: #6b5a5e;

  --font: "Figtree", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;

  --container: 1200px;
  --gutter: 24px;
  --section-space: 96px;
  --header-height: 96px;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(58, 20, 32, 0.06), 0 8px 24px rgba(58, 20, 32, 0.08);

  --ease: cubic-bezier(0.2, 0, 0, 1);
  --duration: 200ms;
}

@media (max-width: 767px) {
  :root {
    --gutter: 20px;
    --section-space: 64px;
    --header-height: 76px;
  }
}

/* ==========================================================================
    Base
    ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

body.menu-open {
  overflow: hidden;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

p {
  margin: 0;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

svg {
  flex-shrink: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ==========================================================================
    Layout helpers
    ========================================================================== */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-space) 0;
}

.section--tight {
  padding-top: 0;
}

.section--tint {
  background: var(--blue-50);
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 32px;
  margin-bottom: 40px;
}

.section__head .lead {
  max-width: 560px;
}

/* ==========================================================================
    Typography
    ========================================================================== */
/* Brand guide: Medium, uppercase for subheads */
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.display {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.6vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.6vw, 2.75rem);
}

.h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: var(--text-muted);
}

.callout-text {
  font-style: italic;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* ==========================================================================
    Buttons (pill buttons)
    ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition:
    background-color var(--duration) var(--ease),
    color var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}

.btn--gold:hover {
  background: #dcc9a0;
  box-shadow: 0 6px 18px rgba(206, 184, 136, 0.45);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--navy:hover {
  background: var(--blue);
}

.btn--outline {
  border-color: var(--navy);
  color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.btn--outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.btn--soft {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(58, 20, 32, 0.06);
}

.btn--soft:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn--sm {
  min-height: 40px;
  padding: 8px 20px;
  font-size: 14px;
}

.btn .arrow {
  transition: transform var(--duration) var(--ease);
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-row--spaced {
  margin-top: 24px;
}

/* ==========================================================================
    Utility bar (navy strip above the header)
    ========================================================================== */
.utility-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 40px;
}

.utility-bar__links {
  display: flex;
  align-items: center;
  gap: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.utility-bar__links a:hover {
  color: var(--gold);
}

@media (max-width: 767px) {
  .utility-bar {
    display: none;
  }
}

/* ==========================================================================
    Header / navbar
    ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow var(--duration) var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--line), 0 6px 20px rgba(58, 20, 32, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-height);
}

/* Wordmark: 240px wide, ~53px tall in a 96px header. */
.brand {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand__logo {
  width: 240px;
}

.brand__chapter {
  padding-left: 28px;
  border-left: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}

.nav__links a:not(.btn) {
  position: relative;
  padding: 8px 0;
  color: var(--black);
  transition: color var(--duration) var(--ease);
}

.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
}

.nav__links a:not(.btn):hover,
.nav__links a[aria-current="page"] {
  color: var(--navy);
}

.nav__links a:not(.btn):hover::after,
.nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__links a[aria-current="page"] {
  font-weight: 700;
}

.nav__links .btn[aria-current="page"] {
  box-shadow: 0 0 0 3px var(--blue-100);
}

.nav__toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--navy);
  cursor: pointer;
}

.nav__toggle span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

.nav__toggle span:nth-child(1) {
  top: 14px;
}

.nav__toggle span:nth-child(2) {
  top: 21px;
}

.nav__toggle span:nth-child(3) {
  top: 28px;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1023px) {
  .brand__chapter {
    display: none;
  }
}

@media (max-width: 767px) {
  .brand__logo {
    width: 132px;
  }

  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: fixed;
    inset: var(--header-height) 0 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px var(--gutter) 32px;
    background: var(--white);
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity var(--duration) var(--ease),
      visibility var(--duration);
  }

  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav__links li {
    border-bottom: 1px solid var(--line);
  }

  .nav__links li:last-child {
    margin-top: 24px;
    border-bottom: 0;
  }

  .nav__links a:not(.btn) {
    display: block;
    padding: 16px 0;
  }

  .nav__links a:not(.btn)::after {
    display: none;
  }

  .nav__links a[aria-current="page"] {
    color: var(--blue);
  }

  .nav__links .btn {
    width: 100%;
    min-height: 56px;
    font-size: 17px;
  }
}

/* ==========================================================================
    Home: hero (garnet panel + photo)
    ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  align-items: center;
  gap: 56px;
  min-height: 560px;
  padding-top: 72px;
  padding-bottom: 128px;
}

/* Reverse wordmark on the dark hero */
.hero__logo {
  width: 300px;
  margin-bottom: 40px;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero .display {
  font-family: var(--font-display);
  margin-bottom: 24px;
  color: var(--white);
}

/* Brand guide: Medium for body copy on dark backgrounds */
.hero__lead {
  max-width: 540px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 500;
}

.hero__media {
  position: relative;
}

/* Gold + cobalt accent bars behind the photo */
.hero__media::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border-radius: var(--radius);
  background: var(--cobalt);
}

.hero__media::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -16px;
  width: 120px;
  height: 12px;
  border-radius: 12px;
  background: var(--gold);
}

.hero__media .photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
}

/* ==========================================================================
    Photo placeholder (swap for <img> when you have real photos)
    ========================================================================== */
.photo {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(206, 184, 136, 0.22), rgba(120, 47, 64, 0.14)),
    var(--blue-100);
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.photo svg {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  opacity: 0.7;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
    Callout band (light blue, rounded)
    ========================================================================== */
.callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px 48px;
  padding: 48px 56px;
  border-radius: var(--radius);
  background: var(--blue-100);
}

.callout .h2 {
  font-family: var(--font-display);
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.callout p {
  max-width: 720px;
  color: var(--black);
}

.callout--overlap {
  position: relative;
  z-index: 2;
  margin-top: -56px;
  box-shadow: var(--shadow);
}

/* ==========================================================================
    Quick links (icon row)
    ========================================================================== */
.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 16px;
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  transition: background-color var(--duration) var(--ease);
}

.quick-link svg {
  width: 44px;
  height: 44px;
  color: var(--blue);
  transition: transform var(--duration) var(--ease);
}

.quick-link:hover {
  background: var(--blue-50);
}

.quick-link:hover svg {
  transform: translateY(-3px);
}

/* ==========================================================================
    Cards
    ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

a.card:hover,
.card:has(a:hover) {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue);
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card__title {
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold);
  color: var(--navy);
  font-size: 1.5rem;
}

.card__sub {
  margin-top: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card__body {
  flex: 1;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 16px;
}

.card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
}

.card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--duration) var(--ease);
}

.card__link:hover {
  color: var(--blue);
}

.card__link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
    Feature (Save the Date: image + text)
    ========================================================================== */
.feature__title {
  max-width: 22ch;
  margin-bottom: 40px;
}

.feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: 48px;
}

.feature__grid .photo {
  aspect-ratio: 16 / 10;
}

.feature__body {
  display: grid;
  gap: 20px;
  justify-items: start;
}

.feature__body p {
  color: var(--text-muted);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: var(--navy);
  font-weight: 700;
}

.meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.meta svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

/* ==========================================================================
    Page banner (sub-page header)
    ========================================================================== */
.page-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 112px) 0;
  background: var(--navy);
  color: var(--white);
}

/* Gold + cobalt corner bars echo the delta's angles */
.page-banner::before,
.page-banner::after {
  content: "";
  position: absolute;
  right: -80px;
  width: 420px;
  border-radius: 24px;
  transform: rotate(-30deg);
}

.page-banner::before {
  top: -60px;
  height: 120px;
  background: var(--cobalt);
  opacity: 0.55;
}

.page-banner::after {
  bottom: -30px;
  height: 44px;
  background: var(--gold);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner .eyebrow {
  color: var(--gold);
}

.page-banner .display {
  font-family: var(--font-display);
  max-width: 16ch;
  color: var(--white);
}

.page-banner p {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 500;
}

@media (max-width: 767px) {
  .page-banner {
    padding-top: 72px;
    padding-bottom: 80px;
  }
}

/* ==========================================================================
    Footer
    ========================================================================== */
.site-footer {
  padding-top: 56px;
  background: #fbf7f0;
  color: var(--black);
}

.footer__main {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px 48px;
  padding-bottom: 40px;
}

.footer__brand {
  display: grid;
  gap: 20px;
}

.footer__logo {
  width: 140px;
}

.footer__tagline {
  max-width: 48ch;
  color: var(--text-muted);
}

.footer__heading {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 1.1rem;
}

.footer__list {
  display: grid;
  gap: 10px;
  color: var(--text-muted);
}

.footer__list a:hover {
  color: var(--blue);
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  transition:
    background-color var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    color var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

.social a:hover {
  background: var(--blue-50);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0 28px;
  color: var(--text-muted);
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__bottom a {
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 767px) {
  .footer__main {
    grid-template-columns: 1fr;
  }

  .footer__bottom .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
    Page content styles
    ========================================================================== */
.page-copy {
  display: grid;
  gap: 28px;
  color: var(--text-muted);
}

.page-copy h2,
.page-copy h3,
.page-copy h4 {
  color: var(--navy);
}

.page-copy p + p {
  margin-top: 18px;
}

.page-copy .lead {
  margin-bottom: 8px;
}

.page-copy__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
}

.page-copy__grid .photo {
  min-height: 320px;
}

@media (max-width: 767px) {
  .page-copy__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
    Forms
    ========================================================================== */
.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  font: inherit;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(120, 47, 64, 0.14);
  outline: none;
}

/* ==========================================================================
    Responsive tweaks
    ========================================================================== */
@media (max-width: 1023px) {
  .quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .feature__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
    padding-top: 48px;
    padding-bottom: 80px;
  }

  .quick-links,
  .card-grid,
  .card-grid--3 {
    grid-template-columns: 1fr;
  }

  .callout {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .section__head {
    margin-bottom: 28px;
  }
}

/* ==========================================================================
    Split heading + body
    ========================================================================== */
.split {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    gap: 64px;
  }
}

.split__body > p:first-child {
  margin-top: 0;
}

.split__body > p {
  font-size: 18px;
}

/* ==========================================================================
    Mission quote
    ========================================================================== */
.mission {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius);
  border-left: 6px solid var(--gold);
  background: var(--blue-50);
  text-align: left;
}

.mission blockquote {
  margin: 0;
}

.mission blockquote p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 700;
  line-height: 1.35;
}

.mission cite {
  display: block;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==========================================================================
    Officers
    ========================================================================== */
.officer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.officer {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.officer .photo {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.officer__body {
  padding: 22px 24px 26px;
}

.officer__role {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.officer__name {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.officer__body p:not(.officer__role) {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 15px;
}

.officer__email {
  font-size: 14px;
  font-weight: 500;
  word-break: break-word;
}

.officer--adviser {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .officer--adviser {
    flex-direction: row;
  }

  .officer--adviser .photo {
    flex: 0 0 300px;
    aspect-ratio: auto;
  }

  .officer--adviser .officer__body {
    align-self: center;
    padding: 32px 40px;
    max-width: 640px;
  }
}

/* ==========================================================================
    Event list
    ========================================================================== */
.event-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.event {
  display: grid;
  align-items: center;
  gap: 8px 24px;
  grid-template-columns: 76px minmax(0, 1fr);
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
  transition: background-color var(--duration) var(--ease);
}

.event:hover {
  background: var(--blue-50);
}

.event__date {
  display: grid;
  margin: 0;
  padding: 10px 6px;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--navy);
  text-align: center;
  line-height: 1.1;
}

.event__date span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event__date strong {
  font-size: 26px;
}

.event__tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event__tag--formal {
  background: var(--garnet);
}

.event__tag--chapter {
  background: var(--blue);
}

.event__title {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}

.event__note {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 15px;
}

.event > .btn {
  grid-column: 2;
  justify-self: start;
}

@media (min-width: 860px) {
  .event {
    grid-template-columns: 76px minmax(0, 1fr) auto;
  }

  .event > .btn {
    grid-column: 3;
    justify-self: end;
  }
}

/* ==========================================================================
    Steps
    ========================================================================== */
.steps {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.step {
  position: relative;
  padding: 32px 28px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 19px;
  font-weight: 700;
}

.step .h3 {
  margin: 0 0 10px;
}

.step p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 16px;
}

.step p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
    FAQ
    ========================================================================== */
.faq {
  max-width: 860px;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-right: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform var(--duration) var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(225deg) translate(-3px, -3px);
}

.faq summary:hover {
  color: var(--blue);
}

.faq details p {
  margin: 0 0 22px;
  max-width: 68ch;
  color: var(--text-muted);
}

/* ==========================================================================
    CTA strip
    ========================================================================== */
.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.cta .h2 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  color: var(--white);
}

.cta p {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
}

/* ==========================================================================
    Stat band
    ========================================================================== */
.stat-band {
  /* Room for the .callout--overlap card that rises into this band */
  padding-bottom: 56px;
  background: var(--navy);
  color: var(--white);
}

.stat-band__grid {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.stat {
  padding: 34px 26px;
  background: var(--navy);
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.stat small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12.5px;
  font-style: italic;
}

/* ==========================================================================
    Data table
    ========================================================================== */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
}

.table caption {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}

.table th,
.table td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.table thead th {
  background: var(--blue-50);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.table tbody tr:last-child td {
  border-bottom: 0;
}

.table tfoot td {
  border-top: 2px solid var(--navy);
  border-bottom: 0;
  background: var(--blue-50);
  color: var(--navy);
  font-weight: 700;
}

.table td small {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 13.5px;
}

.table .num {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ==========================================================================
    Notice / callout box
    ========================================================================== */
.notice {
  display: grid;
  gap: 14px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--blue-50);
}

.notice h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.notice p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15.5px;
}

.notice--garnet {
  border-left-color: var(--garnet);
}

/* ==========================================================================
    Testimonials
    ========================================================================== */
.quote-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote p {
  margin: 0;
  color: var(--navy);
  font-size: 17.5px;
  line-height: 1.5;
}

.quote p::before {
  content: "\201C";
}

.quote p::after {
  content: "\201D";
}

.quote footer {
  margin-top: auto;
  color: var(--text-muted);
  font-size: 14px;
}

.quote footer strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

/* ==========================================================================
    Formal (chapter signature event)
    ========================================================================== */
.formal {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 104px) 0;
  background: var(--garnet-deep);
  background-image:
    radial-gradient(120% 130% at 12% 0%, rgba(206, 184, 136, 0.24), transparent 58%),
    linear-gradient(140deg, var(--garnet) 0%, var(--garnet-deep) 72%);
  color: var(--white);
}

.formal::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.05) 0 2px,
    transparent 2px 9px
  );
  opacity: 0.55;
}

.formal > .container {
  position: relative;
  z-index: 1;
}

.formal .eyebrow {
  color: var(--gold);
}

.formal__grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 940px) {
  .formal__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 64px;
  }
}

.formal h2,
.formal .display {
  font-family: var(--font-display);
  margin: 0 0 18px;
  color: var(--white);
}

.formal p {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.formal .lead {
  font-size: 19px;
}

.formal hr {
  height: 1px;
  margin: 32px 0;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
}

.requirement {
  padding: 26px 28px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
}

.requirement__label {
  display: block;
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.requirement strong {
  display: block;
  color: var(--white);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
}

.requirement p {
  margin: 12px 0 0;
  font-size: 15.5px;
}

.detail-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}

.detail-list div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.detail-list dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  text-align: right;
}

.detail-list dd small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
}

/* Countdown */
.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.countdown li {
  min-width: 82px;
  padding: 14px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
  text-align: center;
}

.countdown strong {
  display: block;
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.formal .btn--gold:hover {
  background: var(--white);
}

.btn--outline-garnet {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}

.btn--outline-garnet:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
    Plus-one eligibility checker
    ========================================================================== */
.checker {
  display: grid;
  gap: 28px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .checker {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 44px;
  }
}

.checker fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.checker legend {
  padding: 0;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 700;
}

.checker label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 15.5px;
  cursor: pointer;
  transition: border-color var(--duration) var(--ease), background-color var(--duration) var(--ease);
}

.checker label:hover {
  border-color: var(--blue);
  background: var(--blue-50);
}

.checker input {
  margin-top: 3px;
  accent-color: var(--blue);
}

.verdict {
  align-self: start;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--blue-50);
}

.verdict__stamp {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 16px;
  border: 2px solid var(--text-muted);
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.verdict h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
}

.verdict p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 15.5px;
}

.verdict p:last-child {
  margin-bottom: 0;
}

.verdict cite {
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
}

.verdict--approved {
  border-color: #1d7a4c;
  background: #eef8f2;
}

.verdict--approved .verdict__stamp {
  border-color: #1d7a4c;
  color: #1d7a4c;
}

.verdict--conditional {
  border-color: var(--gold);
  background: #fff8e9;
}

.verdict--conditional .verdict__stamp {
  border-color: #a8720a;
  color: #a8720a;
}

.verdict--denied {
  border-color: var(--garnet);
  background: #fbeff1;
}

.verdict--denied .verdict__stamp {
  border-color: var(--garnet);
  color: var(--garnet);
}

/* ==========================================================================
    Timeline
    ========================================================================== */
.timeline {
  margin: 0;
  padding: 0 0 0 30px;
  border-left: 2px solid var(--line);
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 0 0 32px 4px;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -39px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 2px var(--line);
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 18px;
}

.timeline .timeline__when {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline p {
  margin: 0;
  max-width: 70ch;
  color: var(--text-muted);
  font-size: 16px;
}

/* ==========================================================================
    Rules / numbered policy list
    ========================================================================== */
.rules {
  max-width: 860px;
  margin: 0;
  padding: 0;
  counter-reset: rule;
  list-style: none;
}

.rules li {
  position: relative;
  padding: 18px 0 18px 58px;
  border-bottom: 1px solid var(--line);
  counter-increment: rule;
  color: var(--text-muted);
  font-size: 16.5px;
}

.rules li::before {
  content: counter(rule, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 0;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.rules strong {
  color: var(--navy);
}

/* ==========================================================================
    Fine print
    ========================================================================== */
.fine-print {
  max-width: 78ch;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.footer__fine {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12.5px;
  line-height: 1.6;
  max-width: 62ch;
}

/* ==========================================================================
    Harry Black — asset recovery map
    ========================================================================== */
.recovery {
  display: grid;
  gap: 28px;
  align-items: start;
}

@media (min-width: 940px) {
  .recovery {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 40px;
  }
}

.recovery__map {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.world-map {
  display: block;
  width: 100%;
  height: auto;
}

.map-region {
  cursor: pointer;
}

.map-region path {
  transition: fill var(--duration) var(--ease);
}

.map-region:hover path {
  fill: var(--blue-100);
}

.map-region:focus-visible path {
  fill: var(--blue-100);
  outline: none;
}

.map-label {
  fill: var(--navy);
  pointer-events: none;
}

.recovery__panel {
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue-50);
}

.recovery__status h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 19px;
}

.recovery__status p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15.5px;
}

.recovery__status.is-found h3 {
  color: #1d7a4c;
}

.recovery__clues h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recovery__clues ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 15.5px;
}

.recovery__clues li {
  margin-bottom: 6px;
}

/* ==========================================================================
    Contact grid
    ========================================================================== */
.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-card h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 18px;
}

.contact-card p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 15.5px;
}
