/* Holland After Hours Rotary Club — Open Sans only, white background */

:root {
  --c-ink: #17181C;
  --c-ink-soft: #4A4E58;
  --c-ink-mute: #60646D;
  --c-rule: #E4E4E0;
  --c-rule-soft: #ECECEA;
  --c-bg: #FFFFFF;
  --c-bg-alt: #F7F7F5;
  --c-blue: #17458F;
  --c-gold: #F7A81B;
  --f-sans: "Open Sans", system-ui, sans-serif;
  --max: 1200px;
  --gutter: clamp(20px, 4vw, 56px);
  --step-1: 15px;
  --step-2: 17px;
  --step-3: 20px;
  --step-4: clamp(22px, 2.2vw, 28px);
  --step-5: clamp(26px, 3vw, 36px);
  --step-7: clamp(56px, 10vw, 140px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: var(--step-2);
  line-height: 1.55;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; top: -40px; left: 8px;
  background: var(--c-blue); color: #fff; padding: 8px 12px;
  text-decoration: none; z-index: 100; border-radius: 2px;
}
.skip:focus { top: 8px; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-ink-mute);
}

/* Logo band */
.logoband { background: #FFFFFF; border-bottom: 1px solid var(--c-rule-soft); }
.logoband__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) var(--gutter) clamp(28px, 4vw, 48px);
  display: flex;
  justify-content: center;
}
.logoband__logo { display: block; width: min(780px, 92vw); }

/* Nav */
.nav {
  background: var(--c-blue);
  border-bottom: 3px solid var(--c-gold);
  position: sticky; top: 0; z-index: 20;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 56px;
}
.nav__list { display: flex; gap: clamp(18px, 3vw, 36px); flex-wrap: wrap; margin: 0; padding: 0; list-style: none; }
.nav__list a {
  display: inline-block;
  padding: 18px 0;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; text-decoration: none;
  color: rgba(255,255,255,.82);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .15s ease, border-color .15s ease;
}
.nav__list a:hover { color: #fff; }
.nav__list a.is-current { color: #fff; border-bottom-color: var(--c-gold); }
.nav__social {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; text-decoration: none; color: rgba(255,255,255,.82);
}
.nav__social:hover { color: var(--c-gold); }

/* Hamburger toggle — hidden on desktop */
.nav__toggle {
  display: none;
  position: relative;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0 -10px 0 0;
  cursor: pointer;
  width: 44px; height: 44px;
}
.nav__toggle-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  margin: -1px 0 0 -11px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle-bar:nth-child(1) { transform: translateY(-7px); }
.nav__toggle-bar:nth-child(2) { transform: translateY(0); }
.nav__toggle-bar:nth-child(3) { transform: translateY(7px); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 720px) {
  .nav__inner {
    flex-direction: row;
    justify-content: flex-end;
  }
  .nav__toggle {
    display: inline-block;
  }
  .nav__list {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--c-blue);
    border-bottom: 3px solid var(--c-gold);
    padding: 8px 0;
  }
  .nav__list.is-open {
    display: flex;
  }
  .nav__list li {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav__list li:first-child { border-top: 0; }
  .nav__list a {
    display: block;
    padding: 14px var(--gutter);
    border-bottom: 0;
    margin-bottom: 0;
  }
  .nav__list a:hover { background: rgba(255,255,255,0.06); }
}

/* Hero — centered */
.hero {
  border-bottom: 1px solid var(--c-rule);
  background: var(--c-bg);
  padding: clamp(64px, 10vw, 128px) var(--gutter) clamp(72px, 11vw, 144px);
  text-align: center;
}
.display {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: var(--step-7);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--c-blue);
  text-wrap: balance;
  max-width: var(--max);
  margin: 0 auto;
}
.display .amp { color: var(--c-gold); font-weight: 700; padding: 0 0.02em; }

/* Section */
.section {
  border-bottom: 1px solid var(--c-rule);
  padding: clamp(56px, 8vw, 104px) var(--gutter);
}
.section--alt { background: var(--c-bg-alt); }
/* Contiguous alt-bg sections read as one block: no border between them, and
   halve the vertical padding where they meet so the gap is consistent. */
.section--alt + .section--alt {
  border-top: none;
  padding-top: clamp(20px, 3vw, 36px);
}
.section--alt:has(+ .section--alt) {
  border-bottom: none;
  padding-bottom: clamp(20px, 3vw, 36px);
}
.section__head { max-width: var(--max); margin: 0 auto clamp(32px, 4vw, 56px); }
.section__title {
  font-weight: 700;
  font-size: var(--step-5);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--c-ink);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--c-ink);
  display: inline-block;
}
.section__kicker {
  margin-top: 18px;
  font-size: var(--step-2);
  color: var(--c-ink-soft);
  max-width: 56ch;
}

/* Featured event */
.event-feature-section {
  background: #fff;
}
.event-feature {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--c-bg-alt);
  border-top: 4px solid var(--c-gold);
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 24px 60px -38px rgba(23,24,28,.28);
  padding: clamp(20px, 3.5vw, 44px);
}
.event-feature__art {
  display: block;
  overflow: hidden;
  border: 1px solid var(--c-rule);
  background: #fff;
}
.event-feature__art img {
  width: 100%;
  height: auto;
}
.event-feature__media {
  min-width: 0;
}
.event-share {
  margin-top: 14px;
}
.event-share__label {
  color: var(--c-ink-mute);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.event-share__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin-top: 5px;
}
.event-share__action {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--c-rule);
  border-radius: 0;
  color: var(--c-blue);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  padding: 4px 0 3px;
  text-decoration: none;
}
.event-share__action:hover {
  border-bottom-color: var(--c-gold);
}
.event-share__action:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 3px;
}
.event-share__status {
  color: var(--c-ink-soft);
  font-size: 12px;
  line-height: 1.4;
  margin-top: 7px;
}
.event-share__status:empty {
  display: none;
}
.event-feature__body {
  max-width: 58ch;
}
.event-feature__body .eyebrow {
  color: var(--c-blue);
  margin-bottom: 12px;
}
.event-feature__title {
  margin: 0;
  color: var(--c-ink);
  font-size: var(--step-5);
  line-height: 1.1;
  letter-spacing: -.015em;
}
.event-feature__dek {
  margin-top: 18px;
  color: var(--c-ink-soft);
  font-size: var(--step-2);
  line-height: 1.65;
}
.event-feature__meta {
  margin-top: 16px;
  color: var(--c-blue);
  font-size: var(--step-1);
  font-weight: 700;
  line-height: 1.5;
}
.event-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
@media (min-width: 900px) {
  .event-feature {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  }
}
@media (max-width: 520px) {
  .event-feature__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Calendar */
.cal { max-width: var(--max); margin: 0 auto; }
.cal__source {
  background: #fff;
  border: 1px solid var(--c-rule);
  border-top: 3px solid var(--c-blue);
  padding: clamp(28px, 5vw, 60px);
  text-align: center;
  box-shadow: 0 18px 40px -32px rgba(23, 24, 28, .28);
}
.cal__eyebrow {
  margin: 0 0 10px;
  color: var(--c-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cal__source-title {
  margin: 0;
  color: var(--c-ink);
  font-size: var(--step-5);
  line-height: 1.15;
}
.cal__source-copy {
  max-width: 58ch;
  margin: 18px auto 0;
  font-size: var(--step-2);
  line-height: 1.65;
  color: var(--c-ink-soft);
}
.cal__source-action {
  display: flex;
  justify-content: center;
  margin: 26px 0 0;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--c-blue); color: #fff;
  padding: 14px 22px;
  font-size: var(--step-2); font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid var(--c-blue);
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.btn:hover { background: var(--c-blue); border-color: var(--c-blue); box-shadow: 0 5px 12px rgba(23,69,143,.2); transform: translateY(-1px); }
.btn .btn__arrow { transition: transform .2s ease; color: var(--c-gold); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Signature event */
.signature {
  max-width: var(--max);
  margin: 0 auto;
}
.signature .eyebrow { margin-bottom: 14px; }
.signature__card {
  background: #fff;
  color: var(--c-ink);
  padding: clamp(32px, 4vw, 56px);
  border-top: 4px solid var(--c-gold);
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 18px 40px -28px rgba(23, 24, 28, .18);
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}
@media (min-width: 820px) {
  .signature__card { grid-template-columns: minmax(320px, 440px) 1fr; gap: clamp(32px, 5vw, 64px); }
}
.signature__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.signature__logo img {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
}
.signature__body { position: relative; max-width: 62ch; }
.signature__meta {
  font-size: var(--step-1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-blue);
  margin-bottom: 16px;
}
.signature__dek {
  font-size: var(--step-3);
  line-height: 1.55;
  color: var(--c-ink-soft);
  text-wrap: pretty;
}

/* Causes */
.causes {
  max-width: var(--max);
  margin: 0 auto;
}
.causes__inner { max-width: var(--max); margin: 0 auto; }
.causes .eyebrow { margin-bottom: 18px; }
.causes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-rule);
}
@media (min-width: 600px) {
  .causes__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .causes__grid { grid-template-columns: repeat(3, 1fr); }
}
/* 5-up removed — 3-up reads better at all widths given uneven logo widths */
.cause {
  padding: clamp(20px, 2.5vw, 28px) 0;
  border-bottom: 1px solid var(--c-rule);
}
.cause__logo {
  width: 100%;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: transparent;
  border: 0;
}
.cause__logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
/* 2-up: padding both sides, border between col 1 and col 2 */
@media (min-width: 600px) {
  .cause { padding: clamp(20px, 2.5vw, 28px) clamp(20px, 2.5vw, 32px); }
  .cause:nth-child(odd) { padding-left: 0; border-right: 1px solid var(--c-rule); }
  .cause:nth-child(even) { padding-right: 0; }
}
/* 3-up: override the 2-up nth-child odd/even rules with column-aware ones */
@media (min-width: 960px) {
  .cause,
  .cause:nth-child(odd),
  .cause:nth-child(even) {
    padding: clamp(20px, 2.5vw, 28px) clamp(20px, 2.5vw, 32px);
    border-right: 1px solid var(--c-rule);
  }
  .cause:nth-child(3n+1) { padding-left: 0; }
  .cause:nth-child(3n) { padding-right: 0; border-right: none; }
}

.cause__name {
  font-size: var(--step-3);
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--c-ink);
  margin-bottom: 8px;
  text-wrap: balance;
}
.cause__dek {
  font-size: var(--step-2);
  color: var(--c-ink-soft);
  line-height: 1.5;
  text-wrap: pretty;
}
.cause__link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-blue);
  text-decoration: none;
  border-bottom: 1px solid var(--c-rule);
  padding-bottom: 2px;
}
.cause__link:hover { border-bottom-color: var(--c-gold); color: var(--c-blue); }

/* Meetings — three side by side */
.meetings {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-rule);
}
@media (min-width: 760px) {
  .meetings {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 48px);
    border-top: none;
  }
}
.meeting {
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--c-rule);
}
@media (min-width: 760px) {
  .meeting {
    border-bottom: none;
    border-left: 3px solid var(--c-blue);
    border-top: none;
    padding: clamp(8px, 1vw, 12px) 0 clamp(8px, 1vw, 12px) clamp(16px, 1.5vw, 22px);
  }
}
.meeting__type {
  font-weight: 700; font-size: var(--step-3); letter-spacing: -0.005em;
  color: var(--c-ink); margin-bottom: 8px;
}
.meeting__time {
  font-size: var(--step-2); color: var(--c-blue); font-weight: 700;
  letter-spacing: 0.01em; margin-bottom: 14px;
}
.meeting__time .nd { font-size: 0.72em; vertical-align: super; line-height: 1; }
.meeting__venue { font-weight: 600; font-size: var(--step-2); color: var(--c-ink); }
.meeting__addr { font-size: var(--step-2); color: var(--c-ink-soft); margin-top: 2px; }

/* Officers */
.officers {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  border-top: 1px solid var(--c-rule);
}
@media (min-width: 600px) {
  .officers { grid-template-columns: 1fr 1fr; column-gap: clamp(24px, 4vw, 56px); }
}
.officer {
  display: grid; grid-template-columns: 1fr auto; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--c-rule-soft);
  align-items: baseline;
}
.officer dt {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--c-ink-mute);
}
.officer dd {
  margin: 0; font-size: var(--step-2); font-weight: 600;
  letter-spacing: -0.005em; color: var(--c-ink); text-align: right;
}
.officer dd a {
  color: var(--c-blue); text-decoration: none;
  border-bottom: 1px solid var(--c-rule); padding-bottom: 2px;
}
.officer dd a:hover { color: var(--c-blue); border-bottom-color: var(--c-gold); }

/* Organizations */
.section__dek {
  font-size: var(--step-3);
  color: var(--c-ink-soft);
  max-width: 60ch;
  margin-top: 10px;
  line-height: 1.5;
  text-wrap: pretty;
}

/* Hero org card */
.org-hero {
  max-width: var(--max);
  margin: 0 auto clamp(40px, 5vw, 56px);
  background: var(--c-bg-alt);
  padding: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}
@media (min-width: 760px) {
  .org-hero { grid-template-columns: minmax(300px, 420px) 1fr; gap: clamp(32px, 5vw, 64px); }
}
.org-hero__logo { display: flex; align-items: center; justify-content: flex-start; }
.org-hero__logo img { width: 100%; max-width: 420px; height: auto; display: block; }
.org-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-blue);
  margin-bottom: 12px;
}
.org-hero__dek {
  font-size: var(--step-3);
  line-height: 1.55;
  color: var(--c-ink);
  margin-bottom: 18px;
  text-wrap: pretty;
}
.org-hero__dek a {
  color: var(--c-blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--c-rule);
  padding-bottom: 1px;
}
.org-hero__dek a:hover { border-bottom-color: var(--c-gold); }
.org-hero__cta { margin-top: 4px; }
.org-hero__link {
  display: inline-block;
  color: var(--c-blue);
  font-weight: 700;
  text-decoration: none;
  font-size: var(--step-2);
  border-bottom: 2px solid var(--c-rule);
  padding-bottom: 2px;
}
.org-hero__link:hover { border-bottom-color: var(--c-gold); color: var(--c-blue); }

/* Affiliated orgs label */
.orgs__label {
  max-width: var(--max);
  margin: 0 auto 18px;
  color: var(--c-ink-mute);
}

.orgs {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-rule);
}
@media (min-width: 600px) {
  .orgs { grid-template-columns: repeat(2, 1fr); }
  .orgs--affiliated .org { padding: clamp(20px, 2.5vw, 28px) clamp(28px, 3.5vw, 44px); }
  .orgs--affiliated .org:nth-child(odd) { padding-left: 0; border-right: 1px solid var(--c-rule); }
  .orgs--affiliated .org:nth-child(even) { padding-right: 0; }
}
@media (min-width: 1400px) {
  .orgs--affiliated { grid-template-columns: repeat(4, 1fr); border-top: none; }
}
@media (min-width: 1400px) {
  .orgs--affiliated .org,
  .orgs--affiliated .org:nth-child(odd),
  .orgs--affiliated .org:nth-child(even) {
    padding: clamp(20px, 2.5vw, 28px) clamp(16px, 2vw, 24px);
    border-right: 1px solid var(--c-rule);
  }
  .orgs--affiliated .org:first-child { padding-left: 0; }
  .orgs--affiliated .org:last-child { padding-right: 0; border-right: none; }
}
.org {
  padding: clamp(20px, 2.5vw, 28px) 0;
  border-bottom: 1px solid var(--c-rule);
}
.org__logo {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.org__logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.org--text .org__logo { display: none; }
.org--text { padding-top: clamp(20px, 2.5vw, 28px); }
@media (min-width: 1400px) {
  .orgs--affiliated .org {
    padding: clamp(20px, 2.5vw, 28px) clamp(16px, 2vw, 24px);
    border-bottom: none;
    border-top: 3px solid var(--c-blue);
  }
  .orgs--affiliated .org:first-child { padding-left: 0; }
  .orgs--affiliated .org:last-child { padding-right: 0; }
  .orgs--affiliated .org--text { padding-top: clamp(20px, 2.5vw, 28px); }
  /* keep baseline alignment for logo rows by reserving logo space on text-only cards */
  .orgs--affiliated .org--text::before {
    content: "";
    display: block;
    height: 76px;
    margin-bottom: 16px;
  }
}
.org__name {
  font-size: var(--step-2);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--c-ink);
  text-wrap: balance;
}
.org__dek {
  font-size: 15px;
  color: var(--c-ink-soft);
  line-height: 1.5;
  text-wrap: pretty;
  margin-bottom: 10px;
}
.org__link {
  display: inline-block;
  color: var(--c-blue);
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--c-rule);
  padding-bottom: 2px;
}
.org__link:hover { border-bottom-color: var(--c-gold); color: var(--c-blue); }

/* Contact us */
.contactus {
  max-width: var(--max);
  margin: 0 auto;
}
.contactus__line {
  font-size: var(--step-3);
  color: var(--c-ink);
  line-height: 1.5;
  text-wrap: pretty;
}
.contactus__mail {
  color: var(--c-blue);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid var(--c-rule);
  padding-bottom: 2px;
  margin-left: 4px;
}
.contactus__mail:hover { border-bottom-color: var(--c-gold); color: var(--c-blue); }

/* Footer */
.foot {
  background: var(--c-blue); color: #E6ECF5;
  padding: clamp(48px, 7vw, 88px) var(--gutter) clamp(28px, 4vw, 44px);
}
.foot .eyebrow { color: rgba(255,255,255,.55); }
.foot a {
  color: #fff; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 2px;
}
.foot a:hover { border-bottom-color: var(--c-gold); }
.foot__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start;
}
@media (min-width: 760px) {
  .foot__grid { grid-template-columns: 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; justify-items: center; }
}
.foot__logo { display: block; width: 260px; max-width: 100%; height: auto; }
.foot__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.foot__social { display: flex; align-items: center; gap: 16px; }
.foot__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.foot__social-link:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-blue);
}
.foot__social-icon { width: 22px; height: 22px; display: block; }
.foot__rotary { width: auto; height: 72px; max-width: 260px; flex: 0 0 auto; }
.foot__col ul { display: grid; gap: 10px; margin-top: 14px; font-size: var(--step-1); }
.foot__rule {
  max-width: var(--max); margin: clamp(40px, 6vw, 64px) auto 18px;
  height: 1px; background: rgba(255,255,255,.18);
}
.foot__copy {
  max-width: var(--max); margin: 0 auto;
  font-size: 12px; color: rgba(255,255,255,.6); letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .nav__social span { display: none; }
  .officer { grid-template-columns: 1fr; gap: 4px; }
  .officer dd { text-align: left; }
}

/* ============================================================
   News (Facebook page plugin embed)
   ============================================================ */
.news {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
}
.news__feed {
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
.news__feed .fb-page,
.news__feed .fb-page > span,
.news__feed iframe {
  max-width: 100% !important;
}
.news__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 500px;
}
.news__aside-text {
  font-size: var(--step-2);
  color: var(--c-ink-soft);
  margin: 0;
  text-wrap: pretty;
}
.news__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0;
}

@media (max-width: 520px) {
  .news { padding-inline: 0; }
  .news__cta,
  .news__cta .btn { width: 100%; }
  .news__cta .btn { justify-content: center; }
}

/* Desktop: side-by-side, plugin on left, aside on right */
@media (min-width: 880px) {
  .news {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(40px, 6vw, 80px);
  }
  .news__aside {
    align-items: flex-start;
    text-align: left;
    max-width: 380px;
  }
  .news__cta {
    justify-content: flex-start;
  }
}

/* Ghost button variant — used in News for "see all on Facebook" */
.btn--ghost {
  background: transparent;
  color: var(--c-blue);
  border: 1.5px solid var(--c-blue);
}
.btn--ghost:hover {
  background: var(--c-blue);
  color: #fff;
}

/* ============================================================
   Nav adjustments — accommodate more items on mobile
   ============================================================ */
@media (max-width: 720px) {
  .nav__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Officer email links — subtle, becomes obvious on hover */
.officer__mail {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px dotted var(--c-rule);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.officer__mail:hover {
  color: var(--c-blue);
  border-bottom-color: var(--c-blue);
  border-bottom-style: solid;
}

/* ============================================================
   Four-Way Test
   ============================================================ */
.ftest {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  list-style: none;
}
.ftest__item {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(14px, 2vw, 22px) 0;
  border-bottom: 1px solid var(--c-rule-soft);
}
.ftest__item:last-child {
  border-bottom: none;
}
.ftest__num {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--c-gold);
  font-feature-settings: "tnum";
  flex-shrink: 0;
  min-width: clamp(36px, 5vw, 56px);
  line-height: 1;
}
.ftest__q {
  font-size: var(--step-4);
  line-height: 1.4;
  font-weight: 600;
  color: var(--c-ink);
}

/* Rotary 7 Areas of Focus — mirrors .signature pattern */
.aof {
  max-width: var(--max);
  margin: 0 auto;
}
.aof .eyebrow { margin-bottom: 14px; }
.aof__card {
  background: #fff;
  padding: clamp(32px, 4vw, 56px);
  border-top: 4px solid var(--c-gold);
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 18px 40px -28px rgba(23, 24, 28, .18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2.5vw, 32px);
}
.aof__image {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-inline: auto;
}
.aof__image-scroll { width: 100%; }
.aof__scroll-hint { display: none; }
.aof__link { align-self: center; }

@media (max-width: 640px) {
  .aof__card {
    align-items: stretch;
    padding-inline: 20px;
  }
  .aof__image-scroll {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 8px;
    scrollbar-color: var(--c-gold) var(--c-rule-soft);
  }
  .aof__image {
    width: 760px;
    max-width: none;
  }
  .aof__image-scroll:focus-visible {
    outline: 3px solid var(--c-gold);
    outline-offset: 4px;
  }
  .aof__scroll-hint {
    display: block;
    color: var(--c-ink-mute);
    font-size: 12px;
    text-align: center;
  }
}
