:root {
  --ink: #131313;
  --muted: #5c655f;
  --line: #d8dec8;
  --paper: #f7f9ef;
  --white: #ffffff;
  --srp-green: #c9e265;
  --srp-green-dark: #9bb63a;
  --teal: #0f6b63;
  --teal-dark: #083f3c;
  --coral: #b76452;
  --gold: #ad8a2c;
  --leaf: #4f793b;
  --shadow: 0 18px 48px rgba(29, 38, 48, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Aptos", "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(247, 249, 239, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logos {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 98px;
  height: 62px;
  background: var(--srp-green);
  border-radius: 6px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-chamber {
  --chamber-logo-width: 220px;
  display: grid;
  justify-items: start;
  align-items: center;
  width: var(--chamber-logo-width);
  max-width: 220px;
  height: 62px;
  padding: 8px 12px;
  background: #17384a;
  border-radius: 6px;
  overflow: hidden;
}

.brand-chamber img {
  display: block;
  width: 196px;
  min-width: 196px;
  height: 100%;
  object-fit: contain;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
}

.top-nav a,
.header-action,
.button {
  text-decoration: none;
}

.top-nav a {
  position: relative;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--srp-green-dark);
  opacity: 0;
  transform: scaleX(.6);
  transition: opacity .18s ease, transform .18s ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--teal-dark);
  background: rgba(201, 226, 101, .22);
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.header-action,
.button.primary {
  color: var(--ink);
  background: var(--srp-green);
  border: 1px solid var(--srp-green-dark);
}

.button.secondary {
  border: 1px solid var(--teal-dark);
  color: var(--teal-dark);
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr);
  grid-template-areas:
    "copy photo"
    "copy panel";
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  min-height: clamp(620px, 72vh, 760px);
  padding: clamp(34px, 5.5vw, 64px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  background: #121613;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/srp-group-table.png") center 42% / cover no-repeat;
  filter: blur(8px);
  opacity: .36;
  transform: scale(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 11, 10, .92) 0%, rgba(9, 11, 10, .76) 46%, rgba(11, 26, 19, .6) 100%),
    linear-gradient(180deg, rgba(9, 11, 10, .18) 0%, rgba(9, 11, 10, .54) 100%);
}

.hero-social {
  position: absolute;
  top: 18px;
  right: clamp(18px, 5vw, 72px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .16);
  backdrop-filter: blur(10px) saturate(1.2);
}

.hero-social span {
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-social a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: transparent;
  text-decoration: none;
  transition: transform .18s ease;
}

.hero-social a:hover,
.hero-social a:focus-visible {
  transform: translateY(-2px) scale(1.04);
}

.hero-social svg {
  display: block;
  width: 28px;
  height: 28px;
}

.hero-copy {
  position: relative;
  grid-area: copy;
  z-index: 1;
  max-width: 820px;
}

.hero-photo-card {
  position: relative;
  z-index: 1;
  grid-area: photo;
  align-self: end;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 10px;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .34);
  backdrop-filter: blur(10px) saturate(1.08);
}

.hero-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1310 / 736;
  object-fit: cover;
  object-position: center center;
}

.hero-logo {
  display: block;
  width: min(250px, 52vw);
  margin-bottom: 18px;
  opacity: .82;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(36px, 3.7vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
}

.hero-lede {
  max-width: 760px;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 24px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.meeting-panel {
  position: relative;
  grid-area: panel;
  z-index: 2;
  justify-self: end;
  width: 100%;
  padding: 24px 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px) saturate(1.18);
  transform: translate(var(--move-x, 0px), var(--move-y, 0px));
}

.hero .button {
  min-height: 48px;
  border-width: 1px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .28);
  font-weight: 900;
  backdrop-filter: blur(8px) saturate(1.12);
}

.hero .button.primary {
  color: #101313;
  background: rgba(201, 226, 101, .96);
  border-color: rgba(155, 182, 58, .95);
}

.hero .button.secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, .9);
  border-color: rgba(8, 63, 60, .72);
}

.panel-label {
  color: #3f7f35;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.meeting-panel h2 {
  margin: 0;
  font-size: 31px;
}

.meeting-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.next-meeting-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 142px;
  margin: 0;
  padding: 9px 11px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(8, 63, 60, .16);
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

.next-meeting-badge span {
  color: #3f7f35;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.next-meeting-badge strong {
  font-size: 16px;
  line-height: 1.15;
}

.meeting-location {
  font-size: 18px;
  line-height: 1.35;
}

.meeting-location strong {
  display: inline-block;
  margin-bottom: 2px;
  font-size: 22px;
  font-weight: 900;
}

.meeting-panel a {
  color: var(--teal-dark);
  font-weight: 800;
}

.mission-band {
  display: block;
  padding: 42px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
  border-top: 10px solid var(--srp-green);
}

.mission-band h2 {
  max-width: 980px;
}

.section,
.split-section {
  padding: clamp(52px, 8vw, 86px) clamp(18px, 5vw, 72px);
}

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

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.resources-title {
  max-width: none;
  white-space: nowrap;
}

.resources-title,
.directory-title,
.visit-title,
.join-title {
  max-width: none;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.resource-grid,
.member-grid,
.action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.resource-grid {
  gap: 0;
  overflow: hidden;
  border-top: 1px solid rgba(8, 63, 60, .14);
  border-bottom: 1px solid rgba(8, 63, 60, .14);
}

.resource-tile,
.member-card,
.action-tile {
  --fit-scale: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(29, 38, 48, .07);
}

.resource-tile {
  position: relative;
  min-height: 164px;
  padding: 26px 26px 28px 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease;
}

.resource-tile:not(:last-child) {
  border-right: 1px solid rgba(8, 63, 60, .12);
}

.resource-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 5px;
  border-radius: 999px;
  background: var(--card-color, var(--srp-green));
}

.resource-tile:hover,
.resource-tile:focus-visible {
  background: rgba(255, 255, 255, .52);
  transform: translateY(-2px);
}

.resource-tile strong {
  display: block;
  margin-bottom: 10px;
  font-size: calc(23px * var(--fit-scale));
  line-height: 1.08;
}

.resource-tile p,
.member-card p,
.action-tile p {
  color: var(--muted);
}

.directory-section {
  background:
    linear-gradient(90deg, rgba(201, 226, 101, .28), rgba(255, 255, 255, 0)),
    #eef3e3;
}

.directory-heading {
  align-items: center;
}

.search-box {
  display: grid;
  gap: 6px;
  width: min(100%, 380px);
  color: var(--muted);
  font-weight: 700;
}

.search-box input {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.filter-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 22px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.filter-row button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.filter-row button.active {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.member-grid {
  grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
  align-items: start;
}

.member-card {
  --member-photo-width: 120px;
  --member-photo-height: 148px;
  position: relative;
  display: grid;
  grid-template-columns: var(--member-photo-width) minmax(0, 1fr);
  gap: 14px;
  min-height: calc(var(--member-photo-height) + 32px);
  height: auto;
  width: 100%;
  padding: 16px;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  background: linear-gradient(180deg, var(--card-surface, var(--white)), var(--white) 62%);
}

.member-card > * {
  position: relative;
  z-index: 1;
}

.member-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  z-index: 2;
  background: var(--card-color, var(--teal));
}

.member-card .category {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 8px;
  padding: 5px 8px;
  border-radius: 6px;
  color: var(--white);
  background: var(--card-color, var(--teal));
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
}

.member-media {
  display: block;
  width: var(--member-photo-width);
  height: var(--member-photo-height);
  overflow: hidden;
  border-radius: 6px;
}

.member-card .member-photo {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f0f2e8;
  object-fit: cover;
  object-position: center;
}

.member-card .member-logo {
  object-fit: contain;
  padding: 10px;
  background: var(--white);
}

.member-card .member-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  overflow: hidden;
  padding-right: 4px;
}

.member-copy > *:not(.card-watermark) {
  position: relative;
  z-index: 1;
}

.card-watermark {
  position: absolute;
  right: -6px;
  top: 18px;
  z-index: 0;
  width: min(58%, 170px);
  height: 112px;
  opacity: .09;
  object-fit: contain;
  pointer-events: none;
  filter: grayscale(.05);
}

.member-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: clamp(calc(16px * var(--fit-scale)), calc(1.35vw * var(--fit-scale)), calc(21px * var(--fit-scale)));
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.member-card .company {
  color: var(--card-color, var(--ink));
  display: block;
  font-weight: 800;
  font-size: calc(12px * var(--fit-scale));
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.member-card .service {
  margin: 5px 0 0;
  font-size: calc(13px * var(--fit-scale));
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, .65fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}

.split-section p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.visit-title {
  margin-bottom: 18px;
}

.meeting-list {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin-top: 24px;
}

.meeting-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-left: 7px solid var(--srp-green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(29, 38, 48, .07);
}

.meeting-item strong,
.meeting-item span {
  display: block;
}

.meeting-item strong {
  margin-bottom: 4px;
  font-size: calc(17px * var(--fit-scale));
  line-height: 1.2;
}

.meeting-item span {
  color: var(--muted);
  font-size: calc(14px * var(--fit-scale));
  line-height: 1.25;
}

.calendar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--srp-green);
  border: 1px solid var(--srp-green-dark);
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.brochure-preview {
  overflow: hidden;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brochure-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 42%;
}

.join-section {
  background: #f1f6d5;
}

.join-title {
  white-space: nowrap;
}

.action-grid {
  grid-template-columns: repeat(2, minmax(260px, 420px));
  justify-content: start;
}

.action-tile {
  position: relative;
  display: grid;
  min-height: 210px;
  padding: 28px;
  overflow: hidden;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .86)),
    var(--white);
}

.action-tile::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--tile-color, var(--srp-green));
}

.join-tile {
  --tile-color: var(--srp-green);
}

.resource-request-tile {
  --tile-color: var(--teal);
}

.action-tile strong {
  display: block;
  margin-bottom: 10px;
  font-size: calc(28px * var(--fit-scale));
  line-height: 1.08;
}

.action-tile p {
  max-width: 310px;
  margin-bottom: 18px;
  font-size: calc(17px * var(--fit-scale));
  line-height: 1.45;
}

.tile-link {
  align-self: end;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--ink);
  background: color-mix(in srgb, var(--tile-color, var(--srp-green)) 38%, white);
  font-weight: 800;
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
  border-top: 8px solid var(--srp-green);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-links span {
  color: var(--srp-green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  transition: background-color .18s ease, transform .18s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--srp-green);
  transform: translateY(-2px);
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.member-dialog {
  width: min(94vw, 860px);
  padding: 0;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.member-dialog::backdrop {
  background: rgba(29, 38, 48, .52);
}

.close-dialog {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  font-size: 25px;
  cursor: pointer;
}

.rack-card-detail {
  display: grid;
  grid-template-columns: 255px 1fr;
  min-height: 520px;
}

.rack-card-sidebar {
  display: flex;
  flex-direction: column;
  padding: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--card-accent, var(--srp-green)) 30%, transparent), transparent 34%),
    linear-gradient(180deg, var(--card-color, var(--teal-dark)), color-mix(in srgb, var(--card-color, var(--teal-dark)) 72%, #000));
}

.rack-card-sidebar .detail-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.12;
  margin-bottom: 18px;
  border: 3px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  background: var(--white);
  object-fit: cover;
  object-position: center;
}

.rack-card-sidebar .detail-photo.logo-art {
  object-fit: contain;
  padding: 12px;
}

.company-logo {
  display: block;
  width: 100%;
  max-height: 100px;
  margin: 0 0 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  object-fit: contain;
}

.rack-card-main {
  position: relative;
  padding: 40px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--card-surface, var(--white)) 88%, white), var(--white) 52%),
    var(--white);
}

.rack-card-main h2 {
  max-width: 92%;
  margin-bottom: 8px;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.02;
}

.rack-card-main .company {
  margin-bottom: 20px;
  color: var(--card-color, var(--ink));
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 900;
  line-height: 1.08;
}

.rack-card-main .service-line {
  color: var(--muted);
  font-size: 21px;
  font-weight: 650;
  line-height: 1.25;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  font-size: 17px;
}

.contact-list a {
  color: var(--teal-dark);
  font-weight: 800;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dialog-actions .button {
  gap: 10px;
  min-height: 50px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(29, 38, 48, .09);
  font-size: 16px;
}

.dialog-actions .button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: var(--card-color, var(--teal-dark));
}

.dialog-actions .button span {
  font-weight: 900;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 24px;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: 8px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .header-logos {
    flex-wrap: wrap;
  }

  .top-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .header-action {
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "photo"
      "panel";
    min-height: 0;
  }

  .mission-band,
  .split-section {
    grid-template-columns: 1fr;
  }

  .meeting-panel {
    justify-self: start;
    width: min(100%, 560px);
  }

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

  .resource-tile:nth-child(2n) {
    border-right: 0;
  }

  .resource-tile:nth-child(n + 3) {
    border-top: 1px solid rgba(8, 63, 60, .12);
  }

  .member-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    padding: 12px 14px;
  }

  .header-logos {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 10px;
    width: 100%;
  }

  .brand-mark {
    width: 94px;
    height: 58px;
  }

  .brand-chamber {
    width: min(var(--chamber-logo-width), 100%);
    max-width: 220px;
    height: 58px;
    justify-self: start;
  }

  .top-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    font-size: 14px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .header-action {
    width: fit-content;
    justify-self: start;
    min-height: 40px;
    padding: 9px 14px;
  }

  .hero {
    min-height: 0;
    padding: 78px 18px 30px;
    gap: 18px;
  }

  .hero-social {
    top: 16px;
    right: 18px;
  }

  .hero-logo {
    width: min(220px, 72vw);
    margin-bottom: 16px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  h2,
  .visit-title,
  .join-title {
    font-size: 34px;
    line-height: 1.04;
    white-space: normal;
  }

  .resources-title {
    white-space: normal;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-photo-card {
    border-radius: 8px;
  }

  .button,
  .header-action,
  .calendar-button {
    width: fit-content;
    max-width: 100%;
  }

  .section-heading,
  .site-footer {
    display: block;
  }

  .section,
  .split-section,
  .mission-band {
    padding: 38px 18px;
  }

  .mission-band h2 {
    font-size: 32px;
  }

  .resource-grid,
  .member-grid,
  .action-grid,
  .rack-card-detail {
    grid-template-columns: 1fr;
  }

  .resource-tile {
    min-height: auto;
    padding: 20px 18px 20px 24px;
  }

  .resource-tile:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(8, 63, 60, .12);
  }

  .resource-tile:nth-child(n + 3) {
    border-top: 0;
  }

  .meeting-item {
    grid-template-columns: 1fr;
  }

  .calendar-button {
    justify-self: start;
  }

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

  .member-card {
    --member-photo-width: 98px;
    --member-photo-height: 126px;
    width: 100%;
    padding: 14px;
  }

  .member-card .category {
    font-size: 10px;
  }

  .card-watermark {
    width: min(62%, 140px);
    height: 92px;
    opacity: .07;
  }

  .meeting-panel {
    width: 100%;
    padding: 22px;
  }

  .meeting-panel h2 {
    font-size: 29px;
  }

  .meeting-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .next-meeting-badge {
    width: 100%;
  }

  .meeting-item {
    padding: 14px;
  }

  .brochure-preview img {
    aspect-ratio: 1 / 1;
  }

  .action-grid {
    gap: 14px;
  }

  .action-tile {
    min-height: 0;
    padding: 22px;
  }

  .action-tile strong {
    font-size: 25px;
  }

  .rack-card-sidebar {
    padding-bottom: 18px;
  }

  .rack-card-main {
    padding: 24px;
  }

  .rack-card-main h2 {
    font-size: 30px;
  }

}
