:root {
  --navy: #07351f;
  --navy-2: #0b4729;
  --teal: #00843d;
  --gold: #f58220;
  --ink: #111827;
  --muted: #5d6675;
  --line: #d8dde5;
  --paper: #f5f7fa;
  --white: #ffffff;
  --red: #ed1b2f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 96px;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

.site-header {
  align-items: center;
  background: rgba(7, 53, 31, 0.98);
  color: var(--white);
  display: flex;
  height: 86px;
  justify-content: space-between;
  left: 0;
  padding: 0 4vw;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 370px;
}

.brand-logo {
  background: var(--white);
  border-radius: 4px;
  height: 68px;
  object-fit: contain;
  padding: 4px;
  width: 118px;
}

.brand-mark {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.brand-line {
  background: rgba(255, 255, 255, 0.4);
  height: 50px;
  width: 1px;
}

.brand-name {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(10px, 1.2vw, 20px);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.9);
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a[aria-current="page"] {
  color: var(--gold);
}

.nav-button {
  background: var(--gold);
  color: #101820 !important;
  color: var(--white) !important;
  display: inline-flex;
  padding: 13px 16px;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  width: 28px;
}

.hero {
  min-height: 540px;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  min-height: 540px;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(3, 36, 20, 0.72) 31%, rgba(0, 0, 0, 0.18) 66%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.25), transparent 44%);
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  max-width: 610px;
  padding: clamp(58px, 7vw, 88px) 4vw 54px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin: 16px 0 12px;
}

.hero-kicker {
  color: #46c87a;
  font-size: clamp(0.98rem, 1.6vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero-kicker::after {
  background: var(--gold);
  content: "";
  display: block;
  height: 4px;
  margin-top: 14px;
  width: 76px;
}

.hero-copy {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  max-width: 520px;
}

.hero-actions,
.content-sections {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  text-transform: uppercase;
}

.button-gold {
  background: var(--gold);
  color: #07111e;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

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

.feature-grid {
  background: var(--white);
  display: grid;
  grid-template-columns: 1.08fr 1.34fr 1.08fr;
  padding: 34px 4vw 42px;
}

.home-actions {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 4vw;
}

.home-actions a {
  background: var(--white);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 34px 28px;
}

.home-actions a:first-child {
  border-left: 1px solid var(--line);
}

.home-actions strong {
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.1;
}

.home-actions small {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.home-actions a:hover {
  background: #f9fbfa;
}

.home-calendar {
  background: var(--paper);
  padding: 26px 4vw 30px;
}

.home-calendar .calendar-date-grid {
  gap: 10px;
  margin-top: 18px;
}

.home-calendar .calendar-heading h2 {
  font-size: clamp(1.35rem, 2.1vw, 2.05rem);
  margin-bottom: 8px;
}

.home-calendar .calendar-heading p:last-child {
  font-size: 0.98rem;
  line-height: 1.45;
}

.home-calendar .calendar-date-grid article {
  padding: 14px 14px;
}

.home-calendar .calendar-date-grid strong {
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
}

.mission-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 190px 1fr;
  padding: 34px 4vw;
  width: 100%;
}

.mission-strip h2 {
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 2.05rem);
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
  max-width: 1120px;
  min-width: 0;
  overflow-wrap: break-word;
}

.mission-strip p:last-child {
  color: var(--muted);
  font-size: 1rem;
  grid-column: 2;
  line-height: 1.62;
  margin: 0;
  max-width: 860px;
}

.feature-column {
  border-right: 1px solid var(--line);
  padding: 0 clamp(22px, 2.5vw, 34px);
}

.feature-column:first-child {
  padding-left: 0;
}

.feature-column:last-child {
  border-right: 0;
  padding-right: 0;
}

.feature-heading {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
}

.icon-box {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.teal {
  background: var(--teal);
}

.navy {
  background: var(--navy);
}

.gold {
  background: var(--gold);
}

.feature-heading h2,
.board-preview h2,
.content-sections h2 {
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.68rem);
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}

.feature-heading h2::after,
.board-preview h2::after {
  background: currentColor;
  content: "";
  display: block;
  height: 2px;
  margin-top: 12px;
  width: 42px;
}

.event-list,
.vendor-stack {
  display: grid;
  gap: 12px;
}

.event-row,
.vendor-item {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 112px 1fr;
}

.vendor-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
}

.event-row strong,
.vendor-item strong,
.board-members h3 {
  color: var(--navy);
  display: block;
}

.event-row small,
.vendor-item small,
.board-members p,
.content-sections p,
.site-footer p {
  color: var(--muted);
  line-height: 1.55;
}

.tile,
.newsletter-cover {
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 132, 61, 0.12), rgba(245, 130, 32, 0.16));
  border: 1px solid rgba(7, 53, 31, 0.12);
  color: var(--navy);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tile {
  aspect-ratio: 16 / 9;
  display: flex;
}

.tile::after,
.newsletter-cover::after {
  display: block;
  padding: 8px;
  text-align: center;
}

.tile-ballpark::after {
  content: "Meeting";
}

.tile-concourse::after {
  content: "Members";
}

.tile-training::after {
  content: "Education";
}

.tile-vendor::after {
  content: "Board";
}

.tile-board::after {
  content: "Support";
}

.tile-newsletter::after {
  content: "Welcome";
}

.newsletter-card {
  display: grid;
  gap: 22px;
  grid-template-columns: 148px 1fr;
}

.newsletter-card h3 {
  color: var(--navy);
  font-size: 1.35rem;
  margin: 4px 0 10px;
}

.newsletter-card p {
  color: var(--muted);
  line-height: 1.6;
}

.newsletter-cover {
  aspect-ratio: 3 / 4;
  display: flex;
}

.text-link {
  color: var(--teal);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-top: 18px;
  text-transform: uppercase;
}

.text-link::after {
  content: "›";
  font-size: 1.35em;
  margin-left: 8px;
  transform: translateY(-1px);
}

.gold-link {
  color: var(--gold);
}

.muted-link {
  color: var(--navy);
}

.sponsor-band {
  align-items: center;
  background: linear-gradient(90deg, #07351f, #0f5f34);
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: 190px 1fr 150px;
  padding: 28px 4vw;
}

.sponsor-band .section-label {
  color: #f58220;
  margin: 0;
}

.sponsor-track {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
}

.sponsor-track span {
  text-align: center;
}

.sponsor-band a {
  color: #f58220;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.board-preview {
  background: var(--white);
  display: grid;
  gap: 34px;
  grid-template-columns: 260px 1fr;
  padding: 34px 4vw 48px;
}

.board-intro p {
  color: var(--muted);
  line-height: 1.65;
}

.board-members {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(6, 1fr);
}

.board-members article {
  min-width: 0;
}

.headshot {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: var(--white);
  display: flex;
  font-size: 1.4rem;
  font-weight: 900;
  justify-content: center;
  margin-bottom: 12px;
  max-width: 118px;
  outline: 5px solid rgba(245, 130, 32, 0.18);
}

.headshot-1 {
  background: linear-gradient(135deg, var(--teal), var(--navy));
}

.headshot-2 {
  background: linear-gradient(135deg, var(--gold), var(--teal));
}

.headshot-3 {
  background: linear-gradient(135deg, var(--red), var(--navy));
}

.headshot-4 {
  background: linear-gradient(135deg, var(--teal), #101820);
}

.headshot-5 {
  background: linear-gradient(135deg, var(--gold), var(--red));
}

.headshot-6 {
  background: linear-gradient(135deg, var(--navy), var(--gold));
}

.board-members h3 {
  font-size: 0.95rem;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.board-members p {
  margin: 0;
}

.board-contact {
  display: grid;
  gap: 4px;
  margin-top: 8px !important;
}

.board-contact a,
.board-contact span,
.board-contact-list a {
  color: var(--teal);
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.board-contact-list li {
  display: grid;
  gap: 4px;
}

.board-contact-list li strong {
  color: var(--navy);
}

.content-sections {
  padding: 48px 4vw;
}

.content-sections article {
  background: var(--white);
  border-left: 5px solid var(--teal);
  flex: 1 1 280px;
  padding: 28px;
}

.content-sections article:nth-child(2) {
  border-color: var(--gold);
}

.content-sections article:nth-child(3) {
  border-color: var(--red);
}

.member-list {
  background: var(--white);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 260px 1fr;
  padding: 42px 4vw;
}

.member-list h2 {
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.68rem);
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin: 4px 0 0;
  text-transform: uppercase;
}

.member-list ul {
  display: grid;
  gap: 12px 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.member-list li {
  border-left: 4px solid var(--gold);
  color: var(--navy);
  font-weight: 800;
  min-height: 44px;
  padding: 10px 12px;
}

.content-sections h2 {
  letter-spacing: 0;
  text-transform: none;
}

.site-footer {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 32px 4vw;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0;
}

.site-footer a {
  color: #f58220;
  font-weight: 800;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(7, 53, 31, 0.94), rgba(7, 53, 31, 0.74)),
    url("assets/jsfoa-members-hero.png") center / cover;
  color: var(--white);
  min-height: 310px;
  padding: clamp(56px, 6vw, 82px) 4vw 50px;
}

.page-hero div {
  max-width: 920px;
}

.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  letter-spacing: 0;
  line-height: 1;
  margin: 14px 0 16px;
}

.page-hero p:last-child {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
  margin: 0;
  max-width: 760px;
}

.compact-page {
  min-height: 245px;
}

.letter-layout {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) 360px;
  padding: 54px 4vw;
}

.letter-card,
.purpose-panel,
.info-grid article {
  background: var(--white);
  border-left: 5px solid var(--teal);
  padding: clamp(26px, 4vw, 46px);
}

.letter-card h2,
.purpose-panel h2,
.info-grid h2 {
  color: var(--navy);
  font-size: clamp(1.55rem, 2.7vw, 2.6rem);
  line-height: 1.1;
  margin: 8px 0 22px;
}

.letter-card p,
.purpose-panel li,
.info-grid p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.letter-card p:first-of-type {
  color: var(--navy);
  font-weight: 800;
}

.signature {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 22px;
}

.purpose-panel {
  border-color: var(--gold);
  position: sticky;
  top: 112px;
  align-self: start;
}

.purpose-panel ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.purpose-panel li {
  border-left: 4px solid var(--gold);
  padding-left: 14px;
}

.info-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 48px 4vw;
}

.info-grid article:nth-child(2) {
  border-color: var(--gold);
}

.info-grid article:nth-child(3) {
  border-color: var(--red);
}

.calendar-meetings {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 48px 4vw 58px;
}

.calendar-heading {
  max-width: 760px;
}

.calendar-heading h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
  line-height: 1.08;
  margin: 8px 0 12px;
}

.calendar-heading p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

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

.calendar-date-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 28px;
}

.calendar-date-grid article {
  background: var(--paper);
  border-left: 5px solid var(--teal);
  padding: 20px 18px;
}

.calendar-date-grid article:nth-child(even) {
  border-color: var(--gold);
}

.calendar-date-grid span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.calendar-date-grid strong {
  color: var(--navy);
  display: block;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1;
  margin-top: 8px;
}

.calendar-events {
  padding: 0 4vw 58px;
}

.calendar-event-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.calendar-event-grid article {
  background: var(--white);
  border-left: 5px solid var(--gold);
  padding: clamp(24px, 3vw, 34px);
}

.calendar-event-grid article:nth-child(even) {
  border-color: var(--teal);
}

.calendar-event-grid h3 {
  color: var(--navy);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.1;
  margin: 8px 0 18px;
}

.calendar-event-grid p {
  color: var(--muted);
  line-height: 1.6;
  margin: 8px 0 0;
}

.calendar-event-grid strong {
  color: var(--navy);
}

.calendar-contact {
  background: var(--navy);
  color: var(--white);
  margin-top: 18px;
  padding: clamp(24px, 3vw, 34px);
}

.calendar-contact .section-label {
  color: var(--gold);
}

.calendar-contact h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.1;
  margin: 8px 0 14px;
}

.calendar-contact p {
  margin: 7px 0 0;
}

.calendar-contact a {
  color: var(--white);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.standalone-board {
  grid-template-columns: 1fr;
}

.sponsor-logo {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(7, 53, 31, 0.12);
  border-radius: 4px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  min-height: 128px;
  padding: 16px;
  text-align: center;
}

.sponsor-band .sponsor-logo {
  box-shadow: none;
  min-height: 118px;
}

.sponsor-logo img {
  display: block;
  height: 58px;
  max-width: 150px;
  object-fit: contain;
  width: 100%;
}

.sponsor-logo strong {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dark-logo {
  background: #111;
  border-color: #111;
}

.dark-logo strong {
  color: #7ac142;
}

.sponsors-page {
  display: grid;
  gap: 32px;
  grid-template-columns: 320px 1fr;
  padding: 54px 4vw;
}

.sponsors-intro {
  background: var(--white);
  border-left: 5px solid var(--gold);
  padding: 30px;
}

.sponsors-intro h2 {
  color: var(--navy);
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
  line-height: 1.1;
  margin: 8px 0 18px;
}

.sponsors-intro p:last-child,
.sponsor-card-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.sponsor-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-layout {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) 360px;
  padding: 54px 4vw;
}

.contact-layout-single {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}

.join-panel {
  align-items: center;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 4vw 54px;
  padding: clamp(28px, 4vw, 44px);
}

.join-panel .section-label {
  color: var(--gold);
}

.join-panel h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.08;
  margin: 8px 0 12px;
}

.join-panel p:last-child {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0;
}

.contact-panel,
.contact-side {
  background: var(--white);
  border-left: 5px solid var(--teal);
  padding: clamp(26px, 4vw, 46px);
}

.contact-side {
  border-color: var(--gold);
  align-self: start;
}

.contact-panel h2,
.contact-side h2 {
  color: var(--navy);
  font-size: clamp(1.55rem, 2.7vw, 2.6rem);
  line-height: 1.1;
  margin: 8px 0 22px;
}

.contact-side p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  color: var(--navy);
  display: grid;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  text-transform: none;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.full-field,
.contact-form button {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.form-modal {
  align-items: center;
  display: none;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 50;
}

.form-modal.is-open {
  display: flex;
}

.form-modal-backdrop {
  background: rgba(0, 0, 0, 0.58);
  inset: 0;
  position: absolute;
}

.form-modal-panel {
  background: var(--white);
  max-height: min(86vh, 820px);
  max-width: 760px;
  overflow-y: auto;
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  width: min(100%, 760px);
  z-index: 1;
}

.form-modal-panel h2 {
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.1;
  margin: 8px 0 12px;
}

.form-modal-panel > p:last-of-type {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 22px;
}

.modal-close {
  align-items: center;
  background: var(--navy);
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 1.6rem;
  height: 38px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
}

.committee-options {
  border: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 18px;
}

.committee-options legend {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 0 8px;
  text-transform: uppercase;
}

.committee-options label {
  align-items: center;
  color: var(--ink);
  display: flex;
  flex-direction: row;
  font-size: 0.95rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0;
  text-transform: none;
}

.committee-options input {
  min-height: auto;
  width: auto;
}

.committee-form {
  margin-top: 20px;
}

.sponsor-card-grid article {
  background: var(--white);
  padding: 18px;
}

.sponsor-card-grid p {
  margin: 14px 0 0;
  text-align: center;
}

.gallery-page {
  display: grid;
  gap: 24px;
  grid-template-columns: 280px 1fr;
  padding: 42px 4vw 24px;
}

.gallery-page-full {
  grid-template-columns: 280px 1fr;
  padding-bottom: 24px;
}

.gallery-intro {
  background: var(--white);
  border-left: 5px solid var(--gold);
  padding: 30px;
}

.gallery-intro h2 {
  color: var(--navy);
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
  line-height: 1.1;
  margin: 8px 0 18px;
}

.gallery-intro p:last-child {
  color: var(--muted);
  line-height: 1.65;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.album-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.album-cards a {
  background: var(--white);
  border: 1px solid var(--line);
  display: block;
  padding: 8px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.album-cards a:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.album-cards .gallery-photo {
  aspect-ratio: 16 / 9;
  max-height: 145px;
}

.album-cards strong {
  color: var(--navy);
  display: block;
  font-size: 1rem;
  margin-top: 10px;
}

.album-cards small {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: 3px;
  text-transform: uppercase;
}

.gallery-album {
  padding: 24px 4vw 50px;
}

.album-heading {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.album-heading h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.1;
  margin: 0;
}

.photo-grid {
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gallery-grid figure {
  background: var(--white);
  border: 1px solid var(--line);
  margin: 0;
  padding: 8px;
}

.gallery-photo {
  aspect-ratio: 4 / 3;
  background-size: 500% 200%;
  background-repeat: no-repeat;
  display: block;
}

.sheet-meetings { background-image: url("assets/gallery/meetings-sheet.png"); }
.sheet-golf { background-image: url("assets/gallery/golf-sheet.png"); }
.sheet-trade { background-image: url("assets/gallery/trade-show-sheet.png"); }

.pos-1 { background-position: 0% 0%; }
.pos-2 { background-position: 25% 0%; }
.pos-3 { background-position: 50% 0%; }
.pos-4 { background-position: 75% 0%; }
.pos-5 { background-position: 100% 0%; }
.pos-6 { background-position: 0% 100%; }
.pos-7 { background-position: 25% 100%; }
.pos-8 { background-position: 50% 100%; }
.pos-9 { background-position: 75% 100%; }
.pos-10 { background-position: 100% 100%; }

.gallery-grid figcaption {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-top: 10px;
  text-transform: uppercase;
}

.gallery-grid figure p {
  color: var(--muted);
  line-height: 1.55;
  margin: 8px 0 0;
}

@media (max-width: 1180px) {
  .site-header {
    height: auto;
    min-height: 76px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    background: var(--navy);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 22px 4vw 28px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero,
  .hero-image {
    min-height: 500px;
  }

  .feature-grid,
  .home-actions,
  .board-preview,
  .mission-strip,
  .letter-layout,
  .info-grid,
  .sponsors-page,
  .contact-layout,
  .gallery-page {
    grid-template-columns: 1fr;
  }

  .mission-strip p:last-child {
    grid-column: auto;
  }

  .purpose-panel {
    position: static;
  }

  .feature-column {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 28px 0;
  }

  .feature-column:first-child {
    padding-top: 0;
  }

  .feature-column:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .sponsor-band {
    grid-template-columns: 1fr;
  }

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

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

  .home-actions a:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

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

  .calendar-event-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .album-cards,
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .member-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 48px;
    width: 82px;
  }

  .brand-name,
  .brand-line {
    display: none;
  }

  .hero-content {
    padding: 42px 22px 40px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
    margin-top: 12px;
  }

  .hero-kicker {
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    line-height: 1.35;
  }

  .eyebrow,
  .section-label {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .mission-strip h2,
  .page-hero h1 {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
    line-height: 1.04;
  }

  .mission-strip h2 {
    font-size: 1.2rem;
    line-height: 1.24;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .mission-strip p:last-child {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .page-hero {
    min-height: auto;
    padding-bottom: 36px;
    padding-top: 42px;
  }

  .page-hero p:last-child {
    font-size: 1rem;
  }

  .feature-heading h2,
  .board-preview h2,
  .content-sections h2,
  .member-list h2 {
    font-size: 1.35rem;
    overflow-wrap: anywhere;
  }

  .hero-actions .button {
    width: 100%;
  }

  .feature-grid,
  .home-actions,
  .content-sections,
  .board-preview,
  .mission-strip,
  .letter-layout,
  .info-grid {
    padding-left: 22px;
    padding-right: 22px;
  }

  .event-row,
  .vendor-item,
  .newsletter-card {
    grid-template-columns: 1fr;
  }

  .home-actions {
    grid-template-columns: 1fr;
    padding-left: 22px;
    padding-right: 22px;
  }

  .home-actions a {
    border-left: 1px solid var(--line);
    min-height: 0;
    padding: 24px 20px;
  }

  .board-members {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsor-track,
  .sponsor-card-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-modal {
    padding: 14px;
  }

  .form-modal-panel {
    max-height: 90vh;
    padding: 26px 18px;
  }

  .committee-options {
    grid-template-columns: 1fr;
  }

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

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

  .album-cards {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .album-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .join-panel {
    align-items: flex-start;
    flex-direction: column;
    margin-left: 22px;
    margin-right: 22px;
  }

  .member-list {
    padding-left: 22px;
    padding-right: 22px;
  }

  .member-list ul {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}
