:root {
  --green: #164b2a;
  --green-2: #0e3720;
  --green-soft: #eef5ef;
  --gold: #a87428;
  --ink: #172016;
  --muted: #5e675d;
  --line: #dde4dc;
  --page: #fbfcfa;
  --white: #ffffff;
  --shadow: 0 14px 38px rgba(20, 40, 24, 0.11);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
}

img,
svg {
  display: block;
}

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

button,
input {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 6vw, 92px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand img {
  height: 52px;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav [data-nav-links] {
  align-items: center;
  display: contents;
}

.site-nav a {
  color: #283129;
}

.site-nav a:hover {
  color: var(--green);
}

.site-nav a.active {
  color: var(--green);
}

.site-nav a.btn-dark,
.site-nav a.btn-dark.active {
  color: var(--white);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  padding: 6px;
}

.menu-toggle span {
  background: var(--green);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 24px;
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(14, 55, 32, 0.95), rgba(14, 55, 32, 0.7) 42%, rgba(14, 55, 32, 0.14)),
    url("https://greaterpicayunechamber.org/wp-content/uploads/2024/02/Loves-Ribbon-Cutting-5-1-1280x573.png") center / cover;
  display: flex;
  min-height: 470px;
  padding: 72px clamp(20px, 11vw, 156px);
}

.hero-copy {
  color: var(--white);
  max-width: 660px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #dfc487;
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.06;
  margin-bottom: 22px;
  max-width: 790px;
}

h2 {
  color: var(--green-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.15;
  margin-bottom: 10px;
}

h3 {
  color: var(--green-2);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  margin-bottom: 30px;
  max-width: 610px;
}

.hero-actions,
.row,
.newsletter div {
  align-items: center;
  display: flex;
  gap: 12px;
}

.btn,
.text-btn,
.chip {
  border-radius: 8px;
  cursor: pointer;
  transition: 160ms ease;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 44px;
  min-width: 0;
  padding: 0 18px;
  text-align: center;
  white-space: normal;
}

.btn svg {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(179, 117, 31, 0.48);
  outline-offset: 3px;
}

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

.btn-primary:hover,
.btn-dark:hover {
  background: #0b2b19;
}

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

.btn-light:hover {
  background: #f2f6ef;
}

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

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--green);
}

.btn-outline:hover,
.chip:hover {
  background: #fff7ea;
}

.hero-outline {
  border-color: rgba(255, 255, 255, 0.76);
  color: var(--white);
}

.hero-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.quick-actions,
.split-section,
.directory,
.info-band,
.news-panel,
.partners {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: 24px;
  padding-right: 24px;
}

.quick-actions {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: -58px;
  position: relative;
  z-index: 2;
}

.action-card,
.panel,
.info-band,
.news-panel,
.partners {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.action-card {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr;
  padding: 24px;
}

.action-card:hover {
  border-color: #c6d7c7;
  transform: translateY(-2px);
}

.action-card strong {
  color: var(--green-2);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.action-card small {
  color: var(--muted);
  display: block;
  line-height: 1.45;
}

.icon {
  align-items: center;
  background: var(--green-soft);
  border-radius: 8px;
  display: flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.icon svg {
  fill: var(--green);
  height: 34px;
  width: 34px;
}

.split-section {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.08fr 0.92fr;
  padding-top: 34px;
}

.panel {
  padding: 24px;
}

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

.section-heading.row {
  justify-content: space-between;
}

.text-btn {
  background: transparent;
  border: 0;
  color: var(--green);
  font-weight: 800;
  padding: 8px 0;
}

.event-list {
  display: grid;
  gap: 0;
}

.event {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 58px 1fr auto auto;
  padding: 15px 0;
}

.event:first-child {
  border-top: 0;
}

.date {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}

.date span {
  background: var(--green);
  color: var(--white);
  display: block;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 3px;
}

.date strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
  padding-top: 5px;
}

.date small {
  color: var(--muted);
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  padding-bottom: 5px;
}

.event h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 4px;
}

.event p,
.spotlight p,
.info-band p,
.site-footer p {
  color: var(--muted);
  line-height: 1.55;
}

.save-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--green);
  min-width: 92px;
}

.save-btn.saved {
  background: var(--green-soft);
  border-color: #b9d0bc;
}

.detail-link {
  white-space: nowrap;
}

.spotlight {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 210px;
}

.spotlight img {
  border-radius: 8px;
  height: 190px;
  object-fit: cover;
  width: 100%;
}

.directory {
  padding-top: 34px;
}

.directory-tools {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(260px, 0.9fr) 1.4fr;
  margin-bottom: 18px;
}

.search span {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.search input,
.newsletter input {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 44px;
  padding: 0 14px;
  width: 100%;
}

.search input:focus,
.newsletter input:focus {
  border-color: var(--green);
  outline: 3px solid rgba(22, 75, 42, 0.12);
}

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

.chip {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--green);
  font-weight: 800;
  min-height: 38px;
  padding: 0 14px;
}

.chip.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

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

.member-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.member-card strong {
  color: var(--green-2);
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.member-card span {
  color: var(--gold);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.member-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  margin-bottom: 14px;
}

.info-band {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: 0.95fr 1.05fr;
  margin-top: 34px;
  padding: 28px;
}

.app-card {
  align-items: center;
  background: linear-gradient(135deg, #f5f7f2, #fff);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 22px;
  grid-template-columns: 145px 1fr;
  padding: 22px;
}

.phone {
  background: #111;
  border: 8px solid #111;
  border-radius: 28px;
  color: var(--ink);
  display: grid;
  gap: 8px;
  min-height: 230px;
  overflow: hidden;
  padding: 34px 12px 14px;
  position: relative;
}

.phone::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.94)),
    url("https://greaterpicayunechamber.org/wp-content/uploads/2021/11/Chamber-Logo-WEB-800-600.png") center / cover;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.phone > * {
  position: relative;
}

.phone-notch {
  background: #111;
  border-radius: 0 0 14px 14px;
  height: 18px;
  left: 36px;
  position: absolute;
  right: 36px;
  top: 0;
  z-index: 1;
}

.phone strong {
  color: var(--green-2);
  font-size: 0.8rem;
}

.phone small {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  font-size: 0.72rem;
  padding: 7px;
}

.partners {
  box-shadow: none;
  margin-top: 24px;
  padding: 22px 24px 26px;
  text-align: center;
}

.news-panel {
  box-shadow: none;
  margin-top: 24px;
  padding: 24px;
}

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

.news-card {
  border-top: 1px solid var(--line);
  min-width: 0;
  padding-bottom: 10px;
  padding-top: 16px;
}

.news-card h3 {
  line-height: 1.2;
}

.news-card time {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.news-card p {
  color: var(--muted);
  line-height: 1.45;
}

.partner-row {
  align-items: center;
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.partner-row a {
  align-items: center;
  display: flex;
  min-height: 86px;
}

.partner-row img {
  height: 72px;
  margin: 0 auto;
  max-width: 180px;
  object-fit: contain;
  width: 100%;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(14, 55, 32, 0.94), rgba(14, 55, 32, 0.78)),
    url("https://greaterpicayunechamber.org/wp-content/uploads/2024/02/Ribbon-cutting--1280x965.jpg") center / cover;
  color: var(--white);
  padding: 78px clamp(20px, 11vw, 156px);
}

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

.page-hero h1 {
  margin-bottom: 18px;
}

.directory-page-shell {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 300px minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: 34px 24px 0;
}

.events-page-shell {
  margin: 0 auto;
  max-width: 1080px;
  padding: 34px 24px 0;
}

.events-toolbar {
  align-items: end;
  box-shadow: none;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(260px, 0.9fr) 1.4fr;
  margin-bottom: 28px;
  padding: 20px;
}

.events-list-page {
  display: grid;
  gap: 14px;
}

.event-page-list {
  display: grid;
  gap: 14px;
}

.event-page-card {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 20px;
  grid-template-columns: 72px 1fr auto;
  padding: 22px;
}

.event-page-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.event-page-card p {
  color: var(--muted);
  line-height: 1.45;
}

.event-detail-shell {
  margin: 0 auto;
  max-width: 1080px;
  padding: 34px 24px 0;
}

.member-detail-shell {
  margin: 0 auto;
  max-width: 1080px;
  padding: 34px 24px 0;
}

.member-detail-panel {
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  min-width: 0;
  padding: clamp(22px, 4vw, 38px);
}

.member-detail-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.member-detail-main h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.08;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}

.member-detail-main p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 680px;
  overflow-wrap: anywhere;
}

.member-detail-aside {
  background: var(--green-soft);
  border: 1px solid #d2dfd3;
  border-radius: 8px;
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 18px;
}

.member-related-panel {
  display: grid;
  gap: 18px;
  padding: 34px 0 0;
}

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

.related-member-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 18px;
}

.related-member-card .member-logo {
  margin-bottom: 6px;
}

.related-member-card span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.related-member-card strong {
  color: var(--green-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.related-member-card small {
  color: var(--muted);
  font-weight: 700;
}

.news-page-shell,
.contact-page-shell {
  margin: 0 auto;
  max-width: 1080px;
  padding: 34px 24px 0;
}

.news-submit-card {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.news-submit-card strong {
  color: var(--green-2);
  display: block;
  margin-bottom: 4px;
}

.news-submit-card p {
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 0;
}

.news-archive {
  display: grid;
  gap: 14px;
}

.news-archive-list {
  display: grid;
  gap: 14px;
}

.news-archive-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 22px;
}

.news-archive-card time {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-archive-card h3 {
  color: var(--green-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.news-archive-card p {
  color: var(--muted);
  line-height: 1.5;
}

.contact-page-shell {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 320px minmax(0, 1fr);
}

.contact-info-stack {
  display: grid;
  gap: 14px;
}

.contact-info-stack address {
  display: grid;
  font-style: normal;
  gap: 8px;
  line-height: 1.5;
}

.contact-info-stack address span {
  color: var(--muted);
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  color: var(--green);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-form-panel {
  box-shadow: none;
  padding: 24px;
}

.content-page-shell {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 330px;
  margin: 0 auto;
  max-width: 1180px;
  padding: 34px 24px 0;
}

.content-main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.content-intro-panel {
  box-shadow: none;
}

.content-intro-panel h2 {
  max-width: 760px;
}

.content-intro-panel p,
.content-section-card p,
.content-stat-card p {
  color: var(--muted);
  line-height: 1.55;
}

.content-section-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-section-card,
.content-stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.content-section-card h3 {
  color: var(--green-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.content-stat-grid {
  display: grid;
  gap: 10px;
}

.content-stat-card {
  box-shadow: none;
  padding: 16px;
}

.content-stat-card span {
  color: var(--gold);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.content-stat-card strong {
  color: var(--green-2);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.content-stat-card small {
  background: var(--green-soft);
  border: 1px solid #c9ddcc;
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 8px;
  padding: 3px 8px;
  text-transform: uppercase;
}

.content-aside {
  display: grid;
  gap: 16px;
  min-width: 0;
  position: sticky;
  top: 96px;
}

.event-detail-panel {
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 340px;
  padding: clamp(22px, 4vw, 38px);
}

.event-detail-main p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 680px;
}

.event-detail-main .text-btn {
  display: inline-flex;
  margin-top: 8px;
}

.event-detail-aside {
  background: var(--green-soft);
  border: 1px solid #d2dfd3;
  border-radius: 8px;
  display: grid;
  gap: 18px;
  padding: 18px;
}

.event-detail-aside .date {
  justify-self: start;
}

.join-page-shell {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 340px;
  margin: 0 auto;
  max-width: 1180px;
  padding: 34px 24px 0;
}

.join-main {
  display: grid;
  gap: 22px;
}

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

.membership-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 10px;
  padding: 20px;
  text-align: left;
}

.membership-card:hover,
.membership-card.selected {
  border-color: #b9d0bc;
  box-shadow: var(--shadow);
}

.membership-card.selected {
  background: var(--green-soft);
}

.membership-card strong {
  color: var(--green-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.membership-card span {
  color: var(--muted);
  line-height: 1.45;
}

.membership-card small {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.membership-card em {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.45;
}

.join-selection-panel {
  align-items: center;
  background: var(--green-soft);
  border: 1px solid #cfe0d1;
  border-radius: 8px;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 18px 20px;
}

.join-selection-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.join-selection-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 0;
}

.join-form-panel {
  box-shadow: none;
  padding: 24px;
  scroll-margin-top: 96px;
}

.join-form label {
  display: grid;
  gap: 7px;
}

.join-form label span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.join-form input,
.join-form textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 44px;
  padding: 0 14px;
  width: 100%;
}

.join-form textarea {
  line-height: 1.5;
  min-height: 112px;
  padding-bottom: 12px;
  padding-top: 12px;
  resize: vertical;
}

.join-form input:focus,
.join-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(22, 75, 42, 0.12);
}

.join-form .full {
  grid-column: 1 / -1;
}

.form-actions {
  align-items: center;
  display: flex;
  gap: 16px;
}

.form-actions .btn {
  flex: 0 0 auto;
  min-width: 180px;
  white-space: nowrap;
}

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  color: var(--muted);
  line-height: 1.4;
  padding-left: 26px;
  position: relative;
}

.check-list li::before {
  color: var(--green);
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.small-step-list {
  display: grid;
  gap: 14px;
}

.small-step-list article {
  display: grid;
  gap: 10px;
  grid-template-columns: 28px 1fr;
}

.small-step-list article > span {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 0.82rem;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.small-step-list p {
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 0;
}

.join-intro {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.82fr 1.18fr;
  margin-bottom: 28px;
}

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

.benefit-card,
.join-summary-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.benefit-card p,
.join-summary-panel p {
  color: var(--muted);
  line-height: 1.5;
}

.join-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 330px;
}

.join-form {
  box-shadow: none;
}

.form-note {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.join-form fieldset {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 22px 0 0;
  padding: 22px 0 0;
}

.join-form legend {
  color: var(--green-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 900;
  padding: 0 10px 0 0;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field span,
.checkbox-grid label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 44px;
  padding: 0 14px;
  width: 100%;
}

.form-field textarea {
  line-height: 1.5;
  min-height: 112px;
  padding-bottom: 12px;
  padding-top: 12px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(22, 75, 42, 0.12);
}

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

.checkbox-grid label {
  align-items: center;
  background: var(--green-soft);
  border: 1px solid #d2dfd3;
  border-radius: 8px;
  display: flex;
  gap: 10px;
  min-height: 42px;
  padding: 8px 12px;
}

.checkbox-grid input {
  accent-color: var(--green);
}

.form-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 22px;
}

.form-footer p {
  margin: 0;
  max-width: 520px;
}

.join-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.directory-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.compact-panel {
  box-shadow: none;
  padding: 18px;
}

.quiet {
  color: var(--muted);
  line-height: 1.5;
}

.filter-stack {
  display: grid;
  gap: 8px;
}

.filter-row {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  cursor: pointer;
  display: flex;
  gap: 10px;
  font-weight: 900;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
  text-align: left;
}

.filter-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.filter-row:hover,
.filter-row.active {
  background: var(--green-soft);
  border-color: #b9d0bc;
}

.filter-row small {
  color: var(--muted);
  flex: 0 1 auto;
  min-width: max-content;
  text-align: right;
}

.filter-toggle {
  justify-self: start;
  margin-top: 6px;
}

.directory-results {
  min-width: 0;
}

.results-toolbar {
  align-items: end;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.directory-results-grid {
  display: grid;
  gap: 14px;
}

.empty-state {
  background: var(--white);
  border: 1px dashed #b9d0bc;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 22px;
}

.empty-state h3 {
  margin: 0;
}

.empty-state p {
  color: var(--muted);
  margin: 0;
}

.empty-state .btn {
  justify-self: start;
  margin-top: 4px;
}

.directory-result-card {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 82px 1fr auto;
  padding: 22px;
}

.directory-result-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.directory-result-card p {
  color: var(--muted);
  line-height: 1.45;
}

.member-category {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.result-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.9rem;
}

.quick-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.quick-contact-actions a {
  align-items: center;
  background: var(--green-soft);
  border: 1px solid #c9ddcc;
  border-radius: 8px;
  color: var(--green);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  min-height: 34px;
  padding: 0 11px;
}

.quick-contact-actions a:hover {
  background: #dceade;
}

.result-actions {
  display: flex;
  gap: 10px;
}

.member-logo {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.member-logo-card {
  height: 70px;
  width: 70px;
}

.member-logo-profile {
  flex: 0 0 auto;
  height: 112px;
  width: 112px;
}

.member-logo-hero {
  flex: 0 0 auto;
  height: 132px;
  width: 132px;
}

.member-logo img {
  height: 100%;
  object-fit: contain;
  padding: 8px;
  width: 100%;
}

.member-logo.logo-fallback {
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
}

.member-logo-card.logo-fallback {
  font-size: 1.25rem;
}

.member-logo-profile.logo-fallback {
  font-size: 2rem;
}

.member-logo-hero.logo-fallback {
  font-size: 2.2rem;
}

.profile-header {
  align-items: start;
  display: flex;
  gap: 20px;
  min-width: 0;
}

.profile-header > div {
  min-width: 0;
}

.member-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.content-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.member-primary-actions .btn {
  flex: 0 1 auto;
}

.member-map-card {
  background: var(--white);
  border: 1px solid #d2dfd3;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 14px;
}

.member-map-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
  overflow-wrap: anywhere;
}

.member-map-card iframe {
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 8px;
  display: block;
  width: 100%;
}

.site-footer {
  align-items: center;
  background: var(--green-2);
  color: var(--white);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-top: 46px;
  padding: 34px clamp(20px, 8vw, 118px);
}

.site-footer p,
.site-footer label {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 14px;
  max-width: 520px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.newsletter {
  min-width: min(420px, 100%);
}

.newsletter label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  max-width: 860px;
  padding: 30px;
  width: calc(100vw - 36px);
}

.modal::backdrop {
  background: rgba(5, 20, 10, 0.52);
}

.modal-close {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.8rem;
  position: absolute;
  right: 16px;
  top: 10px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-header {
  padding-right: 26px;
}

.detail-header p:not(.eyebrow),
.article-body p,
.detail-card p,
.step-list p {
  color: var(--muted);
  line-height: 1.55;
}

.detail-grid,
.event-detail-card {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 0.8fr;
  margin-top: 20px;
}

.event-detail-card {
  align-items: start;
  grid-template-columns: 72px 1fr;
}

.detail-card {
  background: var(--green-soft);
  border: 1px solid #d2dfd3;
  border-radius: 8px;
  padding: 18px;
}

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

.detail-list div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: 110px 1fr;
  padding-bottom: 10px;
}

.detail-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.detail-list dd a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill {
  background: var(--green-soft);
  border: 1px solid #d2dfd3;
  border-radius: 999px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 6px 10px;
}

.article-body {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 18px;
}

.article-body time {
  color: var(--gold);
  display: block;
  font-weight: 900;
  margin-bottom: 10px;
}

.mini-list,
.step-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mini-list button,
.step-list article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 14px;
  text-align: left;
}

.mini-list button {
  cursor: pointer;
}

.mini-list button:hover {
  border-color: #b9d0bc;
}

.mini-list span {
  color: var(--muted);
}

.step-list article {
  grid-template-columns: 36px 1fr;
}

.step-list article span {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.step-list article p {
  grid-column: 2;
  margin: 0;
}

.portal-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  padding: 0 28px 76px;
}

.portal-sidebar {
  align-self: start;
  display: grid;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.portal-main {
  display: grid;
  gap: 20px;
  min-width: 0;
}

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

.portal-status-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 18px;
}

.portal-status-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-status-card strong {
  color: var(--green);
  font-size: 1.35rem;
  overflow-wrap: anywhere;
}

.portal-status-card p {
  margin: 0;
}

.portal-flow-panel {
  display: grid;
  gap: 22px;
}

.portal-flow-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.portal-flow-grid section {
  min-width: 0;
}

.portal-flow-grid h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.portal-field-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portal-field-list span {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 8px 11px;
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    min-height: 72px;
    padding: 10px 20px;
  }

  .brand img {
    height: 44px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    align-items: stretch;
    background: var(--white);
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 12px 20px 20px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav [data-nav-links] {
    display: grid;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .hero {
    min-height: 520px;
    padding: 58px 22px;
  }

  .hero-actions,
  .site-footer,
  .newsletter div {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-actions,
	  .split-section,
	  .directory-tools,
	  .directory-page-shell,
	  .join-page-shell,
	  .contact-page-shell,
	  .content-page-shell,
	  .portal-shell,
	  .events-toolbar,
	  .event-page-card,
	  .join-intro,
  .join-layout,
  .membership-options,
  .content-section-grid,
  .portal-status-grid,
  .portal-flow-grid,
  .member-related-grid,
  .member-grid,
  .info-band,
  .app-card,
  .news-grid,
  .partner-row {
    grid-template-columns: 1fr;
  }

  .directory-sidebar {
    position: static;
  }

	  .directory-result-card,
	  .event-page-card,
	  .event-detail-panel,
	  .member-detail-panel,
	  .results-toolbar {
	    align-items: start;
	    grid-template-columns: 1fr;
	  }

  .member-logo-card {
    height: 76px;
    width: 76px;
  }

  .results-toolbar,
  .result-actions,
  .join-selection-panel,
  .form-footer {
    flex-direction: column;
  }

  .join-selection-panel {
    align-items: flex-start;
  }

  .join-sidebar {
    position: static;
  }

  .content-aside {
    position: static;
  }

  .portal-sidebar {
    position: static;
  }

  .filter-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    justify-content: center;
    padding: 10px 12px;
  }

  .filter-row small {
    min-width: 0;
    text-align: left;
  }

  .form-grid,
  .join-form,
  .benefit-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .quick-actions {
    margin-top: -38px;
  }

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

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

  .event {
    grid-template-columns: 54px 1fr auto;
  }

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

  .event .detail-link {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
  }

  .detail-grid,
  .event-detail-card {
    grid-template-columns: 1fr;
  }

  .profile-header {
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  h1 {
    font-size: 2.55rem;
  }

  .action-card {
    padding: 18px;
  }

  .quick-actions,
  .split-section,
	  .directory,
	  .info-band,
	  .join-page-shell,
	  .news-page-shell,
	  .contact-page-shell,
	  .news-panel,
	  .partners {
    padding-left: 16px;
    padding-right: 16px;
  }
}
