:root {
  --primary: #006876;
  --primary-soft: #3aa6b9;
  --primary-deep: #004e5a;
  --surface: #edfcfd;
  --surface-low: #e7f6f7;
  --surface-card: #ffffff;
  --surface-high: #dcebec;
  --surface-highest: #d6e5e6;
  --surface-variant: #d6e5e6;
  --secondary-container: #87e8fd;
  --text: #101e1f;
  --text-soft: #3e494b;
  --text-softer: rgba(16, 30, 31, 0.42);
  --outline-ghost: rgba(189, 201, 203, 0.18);
  --shadow-soft: 0 24px 60px rgba(16, 30, 31, 0.05);
  --shadow-card: 0 18px 40px rgba(0, 104, 118, 0.08);
  --radius-hero: 42px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(58, 166, 185, 0.12), transparent 28%),
    linear-gradient(180deg, #f4ffff 0%, var(--surface) 26%, #eaf7f8 100%);
}

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

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

button,
input {
  font: inherit;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.headline-font {
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.02em;
}

.eyebrow,
.footer-title,
.input-label {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.gradient-fill {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
}

.glass {
  background: rgba(237, 252, 253, 0.72);
  backdrop-filter: blur(20px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 4px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: block;
  object-fit: contain;
}

.brand-text {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--text-soft);
  font-weight: 500;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--primary);
  transform: translateY(-1px);
  outline: none;
}

.nav-link.active {
  color: var(--primary);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: #ffffff;
  box-shadow: var(--shadow-card);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
}

.btn-secondary {
  background: var(--surface-highest);
  color: var(--primary-deep);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.btn-tertiary {
  color: var(--primary);
  font-weight: 700;
  padding: 0;
  min-height: auto;
  background: transparent;
}

.btn-tertiary .material-symbols-outlined {
  transition: transform 180ms ease;
}

.btn-tertiary:hover .material-symbols-outlined,
.btn-tertiary:focus-visible .material-symbols-outlined {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
  color: var(--primary);
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
}

.section {
  padding: 88px 0;
}

.section-surface {
  background: rgba(231, 246, 247, 0.92);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
}

.section-heading p {
  margin: 0;
  max-width: 680px;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 1.02rem;
}

.card {
  border-radius: var(--radius-xl);
  background: var(--surface-card);
  padding: 28px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.001);
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  /* background: var(--surface); */
  box-shadow: var(--shadow-card);
}

.footer {
  background: rgba(231, 246, 247, 0.94);
  border-radius: 36px 36px 0 0;
  padding: 54px 0 104px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.1fr;
  gap: 28px;
}

.footer p,
.footer li,
.footer a,
.footer span {
  color: var(--text-soft);
}

.footer-brand {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer p {
  margin: 0;
  line-height: 1.75;
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary);
  outline: none;
}

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

.footer-help-note {
  margin-top: 16px !important;
  font-size: 0.92rem;
}

.newsletter {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.newsletter input {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  padding: 0 16px;
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.newsletter input:focus {
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 104, 118, 0.22);
}

.newsletter button {
  width: 46px;
  min-width: 46px;
  min-height: 46px;
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 28px;
  box-shadow: inset 0 1px 0 rgba(189, 201, 203, 0.15);
}

.footer-social {
  display: inline-flex;
  gap: 18px;
  align-items: center;
}

.footer-social a {
  color: var(--primary);
}

.mobile-dock {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 45;
  display: none;
  width: min(calc(100% - 24px), 360px);
  padding: 10px 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 32px rgba(16, 30, 31, 0.12);
  justify-content: space-between;
  align-items: flex-end;
}

.dock-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-soft);
  font-size: 0.62rem;
  min-width: 52px;
}

.dock-item.active {
  color: var(--primary);
  font-weight: 700;
}

.dock-item .material-symbols-outlined {
  font-size: 1.15rem;
}

.dock-action {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transform: translateY(-18px);
  box-shadow: 0 14px 26px rgba(0, 104, 118, 0.28);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 48px 0 72px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(237, 252, 253, 0.97) 0%, rgba(237, 252, 253, 0.78) 38%, rgba(237, 252, 253, 0.15) 72%, rgba(237, 252, 253, 0) 100%),
    linear-gradient(180deg, rgba(237, 252, 253, 0.32) 0%, rgba(237, 252, 253, 0.88) 100%);
  z-index: -1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
  min-height: 620px;
}

.event-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--secondary-container);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-kicker {
  color: var(--text-softer);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.35rem);
  line-height: 0.96;
  margin: 0 0 18px;
  max-width: 640px;
}

.hero h1 em {
  font-style: italic;
  color: var(--primary);
  display: inline-block;
}

.hero-copy {
  max-width: 560px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 0 0 28px;
}

.article-rich-text {
  color: var(--text-soft);
  line-height: 1.7;
}

.article-rich-text > :first-child {
  margin-top: 0;
}

.article-rich-text > :last-child {
  margin-bottom: 0;
}

.article-rich-text p {
  margin: 0 0 12px;
}

.article-rich-text ul,
.article-rich-text ol {
  margin: 0 0 12px 1.2rem;
  padding: 0;
}

.article-rich-text li + li {
  margin-top: 6px;
}

.article-rich-text a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-proof-item {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 28px rgba(0, 104, 118, 0.08);
}

.hero-proof-item strong,
.hero-mobile-proof-meta,
.agenda-news-meta {
  display: block;
  font-weight: 700;
}

.hero-proof-item strong {
  margin-bottom: 8px;
  color: var(--primary-deep);
}

.hero-proof-item span {
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 0.94rem;
}

.hero-mobile-proof {
  display: none;
  margin-top: 22px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.hero-mobile-proof .eyebrow,
.hero-panel .eyebrow,
.agenda-intro-card .eyebrow,
.agenda-news-card .eyebrow {
  color: var(--primary-soft);
  margin-bottom: 12px;
}

.hero-mobile-proof h2 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 1.4rem;
}

.hero-mobile-proof .article-rich-text {
  margin: 0;
}

.hero-mobile-proof-meta {
  margin-top: 14px;
  color: var(--primary-deep);
  font-size: 0.86rem;
}

.hero-panel-wrap {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panel-wrap::before {
  content: "";
  position: absolute;
  right: -24px;
  top: -30px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(58, 166, 185, 0.22);
  filter: blur(38px);
}

.hero-panel {
  position: relative;
  width: min(100%, 420px);
  padding: 24px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
  transition: transform 260ms ease;
}

.hero-panel .article-rich-text,
.agenda-news-card .article-rich-text {
  margin: 0;
}

.hero-panel:hover {
  transform: rotate(0deg) translateY(-4px);
}

.hero-panel-media {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 1 / 1;
  margin-bottom: 22px;
}

.hero-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel h2 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 1.75rem;
}

.hero-panel p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

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

.card-tall {
  min-height: 320px;
}

.card-business {
  grid-column: span 2;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  padding-right: clamp(28px, 28vw, 300px);
}

.card-business::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(46%, 260px);
  height: 100%;
  background: linear-gradient(180deg, rgba(58, 166, 185, 0) 0%, rgba(58, 166, 185, 0.12) 100%);
  pointer-events: none;
}

.card-business .decor-media {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(46%, 260px);
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  transition: opacity 220ms ease;
}

.card-business:hover .decor-media {
  opacity: 0.24;
}

.card-primary {
  background: linear-gradient(180deg, #0b7888 0%, var(--primary) 100%);
  color: #ffffff;
}

.card-primary p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.card-news .eyebrow {
  color: var(--primary-soft);
  margin-bottom: 18px;
}

.card-news h3,
.card-primary h3,
.card-business h3,
.location-copy h3 {
  margin: 0 0 12px;
  font-size: 1.9rem;
  line-height: 1.08;
}

.card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.card-icon {
  color: var(--primary);
  font-size: 2.25rem;
  margin-bottom: 18px;
}

.card-primary .card-icon {
  color: #ffffff;
}

.card-body {
  position: relative;
  z-index: 1;
  max-width: 440px;
}

.location-card {
  display: grid;
  gap: 18px;
  align-items: start;
  background: var(--secondary-container);
  color: var(--primary-deep);
}

.location-card p {
  color: rgba(0, 55, 63, 0.9);
}

.location-copy {
  position: static;
}

.location-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-top: 22px;
}

.location-panel-copy {
  display: grid;
  gap: 12px;
}

.location-panel-copy h4 {
  margin: 0;
  font-size: 1.32rem;
}

.location-panel-copy p {
  margin: 0;
}

.location-panel-copy .btn {
  width: fit-content;
}

.location-embed-shell {
  min-height: 240px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 104, 118, 0.12);
}

.location-embed-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
}

.agenda-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(214, 229, 230, 0.35) 100%);
}

.agenda-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}

.agenda-stack,
.location-grid {
  display: grid;
  gap: 22px;
}

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

.agenda-intro-card,
.agenda-news-card {
  min-height: 100%;
}

.agenda-intro-card {
  background: linear-gradient(180deg, #f6feff 0%, #e6f9fb 100%);
}

.agenda-intro-card h3,
.agenda-news-card h3 {
  margin: 0 0 12px;
  font-size: 1.9rem;
  line-height: 1.08;
}

.agenda-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.agenda-meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: rgba(0, 104, 118, 0.08);
  color: var(--primary-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.agenda-news-meta {
  margin-top: 18px;
  color: var(--primary);
  font-size: 0.88rem;
}

.cta {
  padding: 30px 0 96px;
}

.cta-panel {
  position: relative;
  padding: clamp(36px, 6vw, 72px);
  border-radius: var(--radius-hero);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.cta-panel::before,
.cta-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(4px);
}

.cta-panel::before {
  width: 280px;
  height: 280px;
  top: -140px;
  right: -40px;
}

.cta-panel::after {
  width: 220px;
  height: 220px;
  bottom: -110px;
  left: -40px;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  text-align: center;
  margin: 0 auto;
}

.cta h2 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.cta p {
  margin: 0 auto;
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.cta-trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  text-align: left;
}

.cta-trust-item {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.cta-trust-item strong {
  display: block;
  margin-bottom: 8px;
}

.cta-trust-item span {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.page-about .topbar {
  margin-bottom: 8px;
}

.about-hero {
  padding: 34px 0 66px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.about-hero-copy {
  max-width: 620px;
}

.about-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 6vw, 5.15rem);
  line-height: 0.96;
}

.about-hero-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.8;
}

.about-portrait-frame {
  position: relative;
  min-height: 520px;
}

.about-portrait-frame::before {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -14px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(135, 232, 253, 0.38);
  filter: blur(28px);
}

.about-portrait-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.1) 100%),
    linear-gradient(135deg, rgba(58, 166, 185, 0.16) 0%, rgba(231, 246, 247, 0.9) 100%);
}

.about-portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story {
  padding: 0 0 78px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 24px;
  align-items: start;
}

.story-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.story-panel p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 1.04rem;
}

.story-accent {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(135, 232, 253, 0.42);
}

.story-accent h2 {
  margin: 0 0 14px;
  font-size: 1.9rem;
  line-height: 1.05;
}

.story-accent p {
  margin: 0;
  color: rgba(0, 55, 63, 0.88);
  line-height: 1.75;
}

.chair-section {
  padding: 88px 0;
  background: rgba(231, 246, 247, 0.9);
}

.chair-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 52px;
  align-items: center;
}

.chair-visual {
  position: relative;
}

.chair-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 18px;
  color: #ffffff;
  font-weight: 700;
  box-shadow: var(--shadow-card);
}

.chair-image-card {
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(214, 229, 230, 0.62) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 520px;
  display: flex;
  /* align-items: flex-end; */
  justify-content: center;
  padding: 20px 14px 0;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent 87%);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent 87%);
}

.chair-image-card img {
  width: auto;
  height: auto;
  max-width: min(100%, 360px);
  max-height: 430px;
  object-fit: contain;
}

.chair-copy h2 {
  margin: 0 0 6px;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.02;
}

.chair-term {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 1.04rem;
  font-weight: 700;
}

.chair-copy p {
  margin: 0 0 14px;
  color: var(--text-soft);
  line-height: 1.82;
  font-size: 1.02rem;
}

.chair-copy blockquote {
  margin: 18px 0 0;
  padding: 0 0 0 16px;
  color: var(--primary-deep);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.75;
  box-shadow: inset 2px 0 0 rgba(0, 104, 118, 0.18);
}

.chair-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.metric-card {
  background: var(--surface-card);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.metric-card strong {
  display: block;
  color: var(--primary);
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-card span {
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.leadership-subsection {
  margin-top: 64px;
}

.leadership-subsection .section-heading {
  margin-bottom: 32px;
}

.leadership-subsection .section-heading h3 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.leadership-subsection .section-heading p {
  max-width: 720px;
}

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

.org-subsection {
  margin-top: 64px;
}

.org-tree {
  display: grid;
  gap: 28px;
}

.org-tier {
  position: relative;
  display: grid;
  gap: 22px;
}

.org-tier::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -28px;
  width: 2px;
  height: 28px;
  background: rgba(0, 104, 118, 0.18);
  transform: translateX(-50%);
}

.org-tier:first-of-type::before {
  display: none;
}

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

.org-tier-support::after,
.org-tier-exec::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: -14px;
  height: 2px;
  background: rgba(0, 104, 118, 0.18);
}

.org-tier-chair {
  justify-content: center;
}

.org-tier-chair .org-node-chair {
  width: min(100%, 360px);
  justify-self: center;
}

.org-tier-exec {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.org-node {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.org-node::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -22px;
  width: 2px;
  height: 22px;
  background: rgba(0, 104, 118, 0.18);
  transform: translateX(-50%);
}

.org-tier:first-of-type .org-node::before,
.org-tier-chair .org-node::before {
  display: none;
}

.org-node-support {
  min-height: 100%;
}

.org-node-chair {
  background: linear-gradient(180deg, #f6feff 0%, #e6f9fb 100%);
  text-align: center;
}

.org-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.org-node h4 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.08;
}

.org-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
  line-height: 1.8;
  display: grid;
  gap: 8px;
}

.org-list-tight {
  gap: 6px;
}

.leadership-card {
  display: grid;
  gap: 22px;
  padding: 26px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.leadership-visual {
  position: relative;
}

.leadership-image-card {
  min-height: 420px;
  padding: 20px 18px 0;
}

.leadership-image-card img {
  max-width: min(100%, 300px);
  max-height: 360px;
}

.leadership-image-card-seated img {
  max-width: min(100%, 280px);
  max-height: 330px;
}

.leadership-copy h3 {
  margin: 0 0 6px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.leadership-role {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leadership-copy p {
  margin: 0 0 12px;
  color: var(--text-soft);
  line-height: 1.82;
  font-size: 1rem;
}

.foundation-wrap {
  padding: 82px 0 34px;
}

.foundation-panel {
  background: #101e1f;
  color: #edfcfd;
  border-radius: 42px;
  padding: clamp(30px, 6vw, 58px);
  position: relative;
  overflow: hidden;
}

.foundation-panel::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(58, 166, 185, 0.14);
  filter: blur(20px);
}

.foundation-panel h2 {
  margin: 0 0 48px;
  text-align: center;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline {
  display: grid;
  gap: 42px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.timeline-year {
  color: rgba(58, 166, 185, 0.8);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.timeline-copy {
  position: relative;
  padding-left: 26px;
}

.timeline-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(189, 201, 203, 0.22);
}

.timeline-copy h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
}

.timeline-copy p {
  margin: 0;
  color: rgba(229, 244, 245, 0.8);
  line-height: 1.8;
}

.vision-section {
  padding: 88px 0;
}

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

.vision-card {
  display: grid;
  gap: 16px;
}

.vision-card-wide {
  grid-column: span 2;
  background: linear-gradient(180deg, #f6feff 0%, #e6f9fb 100%);
}

.vision-card h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--primary-deep);
}

.vision-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.82;
  font-size: 1rem;
}

.vision-list {
  margin: 0;
  padding-left: 1.3rem;
  color: var(--text-soft);
  display: grid;
  gap: 12px;
  line-height: 1.8;
}

.vision-list li {
  padding-left: 6px;
}

.hymn-section {
  padding: 52px 0 86px;
}

.hymn-shell {
  background: rgba(231, 246, 247, 0.88);
  padding: clamp(28px, 6vw, 52px);
  border-radius: 38px;
  text-align: center;
}

.hymn-shell h2 {
  margin: 0 0 26px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hymn-card {
  background: var(--surface-card);
  border-radius: 30px;
  padding: clamp(28px, 6vw, 48px);
  box-shadow: var(--shadow-soft);
}

.hymn-card p {
  margin: 0 0 14px;
  color: var(--text-soft);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 2;
}

.member-stats {
  padding: 0 0 80px;
}

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

.stat-card {
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--primary);
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-business-hub .topbar {
  margin-bottom: 8px;
}

.business-main {
  padding-bottom: 32px;
}

.business-hero {
  padding: 34px 0 46px;
}

.business-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 42px;
  align-items: center;
}

.business-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(3.1rem, 6vw, 5.35rem);
  line-height: 0.95;
}

.business-hero-copy h1 span {
  color: var(--primary-soft);
}

.business-hero-copy p {
  margin: 0;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.business-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.business-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.business-mini-stat {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.business-mini-stat strong,
.business-stat-card strong {
  display: block;
  color: var(--primary);
  font-size: 1.65rem;
  line-height: 1;
  margin-bottom: 8px;
}

.business-mini-stat span,
.business-stat-card span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.business-hero-visual {
  position: relative;
  min-height: 520px;
}

.business-hero-visual::before {
  content: "";
  position: absolute;
  right: -24px;
  top: -14px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(135, 232, 253, 0.42);
  filter: blur(32px);
}

.business-hero-card {
  position: relative;
  padding: 22px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
  transition: transform 240ms ease;
}

.business-hero-card:hover {
  transform: rotate(0deg) translateY(-4px);
}

.business-hero-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 28px;
}

.business-callout {
  position: absolute;
  left: -14px;
  bottom: 20px;
  max-width: 240px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(0, 104, 118, 0.92);
  color: #ffffff;
  box-shadow: 0 22px 40px rgba(0, 104, 118, 0.24);
}

.business-callout .eyebrow {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 10px;
}

.business-callout p {
  margin: 0;
  line-height: 1.65;
}

.business-filters {
  padding: 0 0 32px;
}

.business-filter-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px;
  border-radius: 30px;
  background: rgba(231, 246, 247, 0.95);
  box-shadow: var(--shadow-soft);
}

.business-search {
  position: relative;
}

.business-search .material-symbols-outlined {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-softer);
}

.business-search input {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 20px;
  background: #ffffff;
  color: var(--text);
  padding: 0 18px 0 52px;
  box-shadow: inset 0 0 0 1px rgba(189, 201, 203, 0.15);
}

.business-search input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 104, 118, 0.18);
}

.business-chip-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.business-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 0;
  border-radius: 16px;
  background: var(--surface-highest);
  color: var(--text-soft);
  cursor: pointer;
  font-weight: 600;
  font: inherit;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.business-chip:hover,
.business-chip:focus-visible {
  color: var(--primary-deep);
  transform: translateY(-1px);
  outline: none;
}

.business-chip.active {
  background: var(--secondary-container);
  color: var(--primary-deep);
}

.business-directory {
  padding: 20px 0 0;
}

.business-directory-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.business-directory-top p,
.business-cta-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

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

.business-link .material-symbols-outlined {
  transition: transform 180ms ease;
}

.business-link:hover .material-symbols-outlined,
.business-link:focus-visible .material-symbols-outlined {
  transform: translateX(4px);
}

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

.business-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.business-card[hidden],
.business-empty-state[hidden] {
  display: none !important;
}

.business-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.business-icon-tile {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 166, 185, 0.18);
  color: var(--primary);
}

.business-icon-tile .material-symbols-outlined {
  font-size: 1.8rem;
}

.business-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(135, 232, 253, 0.58);
  color: var(--primary-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.business-card h3 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.2;
}

.business-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.business-opportunity {
  margin-top: auto;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--surface-low);
}

.business-opportunity .eyebrow {
  color: var(--text-softer);
  margin-bottom: 8px;
}

.business-opportunity strong {
  color: var(--primary);
  line-height: 1.5;
}

.business-card-actions {
  display: flex;
  gap: 12px;
}

.business-card-actions .btn {
  flex: 1 1 auto;
}

.business-card-actions .btn-square {
  flex: 0 0 54px;
  min-width: 54px;
  padding: 0;
  border-radius: 18px;
}

.business-card-actions .btn-square .material-symbols-outlined {
  font-size: 1.35rem;
}

.modal-open {
  overflow: hidden;
}

.business-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
}

.business-detail-modal[hidden] {
  display: none !important;
}

.business-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 24, 0.58);
  backdrop-filter: blur(10px);
}

.business-detail-dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: 28px;
  gap: 22px;
  box-shadow: 0 28px 70px rgba(7, 21, 24, 0.22);
}

.business-detail-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 104, 118, 0.08);
  color: var(--primary);
  cursor: pointer;
}

.business-detail-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-right: 42px;
}

.business-detail-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
}

.business-detail-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.business-detail-copy h2,
.business-detail-copy p,
.business-detail-contact p {
  margin: 0;
}

.business-detail-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.business-detail-copy p,
.business-detail-contact p {
  color: var(--text-soft);
  line-height: 1.72;
}

.business-detail-body {
  display: grid;
  gap: 18px;
}

.business-detail-opportunity {
  margin-top: 0;
}

.business-detail-contact {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(0, 104, 118, 0.12);
}

.business-detail-contact .eyebrow {
  margin-bottom: 8px;
}

.business-detail-contact strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
  color: var(--primary-deep);
}

.business-detail-actions {
  margin-top: 4px;
}

.business-card-outline {
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1.5px rgba(0, 104, 118, 0.18);
}

.business-card-empty {
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(231, 246, 247, 0.96) 100%);
  box-shadow: inset 0 0 0 2px rgba(0, 104, 118, 0.12);
}

.business-card-empty .business-icon-tile {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.business-card-empty h3 {
  font-size: 1.2rem;
}

.business-empty-state {
  margin-top: 22px;
  text-align: center;
}

.business-empty-state .business-icon-tile {
  margin: 0 auto 18px;
}

.business-empty-state h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.business-empty-state p {
  margin: 0;
  color: var(--text-soft);
}

.business-stats {
  padding: 72px 0 24px;
}

.business-stats-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.business-stat-hero {
  padding: 34px;
  border-radius: 32px;
  color: #ffffff;
  box-shadow: var(--shadow-card);
}

.business-stat-hero strong {
  display: block;
  font-size: clamp(2.8rem, 6vw, 4.3rem);
  line-height: 0.94;
  margin-bottom: 12px;
}

.business-stat-hero p {
  margin: 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.04rem;
  line-height: 1.75;
}

.business-stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.business-stat-card.sky {
  background: rgba(135, 232, 253, 0.76);
}

.business-cta {
  padding: 42px 0 96px;
}

.business-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 44px);
  border-radius: 36px;
  background: rgba(231, 246, 247, 0.92);
  box-shadow: var(--shadow-soft);
}

.business-cta-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 0.98;
}

.business-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.business-cta-note {
  border-radius: 28px;
  padding: 28px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.business-cta-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}

.business-cta-note strong {
  display: block;
  font-size: 1.26rem;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-hero-grid,
  .business-hero-grid,
  .business-cta-shell,
  .business-stats-grid,
  .chair-grid,
  .location-card,
  .story-grid,
  .footer-grid,
  .vision-side {
    grid-template-columns: 1fr;
  }

  .hero,
  .about-portrait-frame {
    min-height: 0;
  }

  .hero-panel-wrap {
    min-height: 0;
  }

  .hero-panel {
    width: min(100%, 520px);
  }

  .bento,
  .location-grid,
  .hero-proof-strip,
  .cta-trust-list,
  .vision-grid,
  .business-grid,
  .leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-business,
  .vision-card-wide,
  .vision-main,
  .vision-side {
    grid-column: span 2;
  }

  .agenda-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .business-hero-visual {
    min-height: 0;
  }

  .business-callout {
    left: 12px;
    bottom: 12px;
  }

  .business-stat-card {
    min-height: 180px;
  }

  .org-tier-support,
  .org-tier-exec,
  .org-tier-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .org-tier-support::after,
  .org-tier-exec::after {
    left: 18%;
    right: 18%;
  }

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

@media (max-width: 768px) {
  body {
    padding-bottom: 100px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
  }

  .topbar.nav-open .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding: 26px 0 54px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(237, 252, 253, 0.82) 0%, rgba(237, 252, 253, 0.94) 46%, rgba(237, 252, 253, 0.98) 100%);
  }

  .hero-grid,
  .about-hero-grid,
  .business-hero-grid {
    gap: 28px;
    min-height: 0;
  }

  .hero h1,
  .about-hero-copy h1,
  .business-hero-copy h1 {
    max-width: 360px;
  }

  .hero h1 em {
    transform: translateX(0);
  }

  .hero-copy,
  .about-hero-copy p,
  .business-hero-copy p {
    max-width: 420px;
    font-size: 1rem;
  }

  .hero-actions,
  .business-hero-actions,
  .business-cta-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .business-hero-actions .btn,
  .business-cta-actions .btn {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .hero-proof-strip,
  .cta-trust-list,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-mobile-proof {
    display: block;
  }

  .about-hero,
  .section,
  .chair-section,
  .vision-section,
  .business-hero,
  .business-stats {
    padding: 72px 0;
  }

  .foundation-wrap {
    padding: 72px 0 24px;
  }

  .bento,
  .vision-grid,
  .stats-grid,
  .business-grid,
  .business-stats-grid,
  .leadership-grid,
  .org-tier-support,
  .org-tier-exec,
  .org-tier-fields {
    grid-template-columns: 1fr;
  }

  .card-business,
  .vision-card-wide,
  .vision-main,
  .vision-side {
    grid-column: span 1;
  }

  .card-business {
    padding-right: 28px;
  }

  .card-business::after,
  .card-business .decor-media {
    width: 42%;
  }

  .chair-grid {
    gap: 30px;
  }

  .leadership-subsection {
    margin-top: 52px;
  }

  .org-subsection {
    margin-top: 52px;
  }

  .org-tier,
  .org-tier::before,
  .org-tier-support::after,
  .org-tier-exec::after,
  .org-node::before {
    display: none;
  }

  .org-tree {
    gap: 18px;
  }

  .org-tier {
    display: grid;
    gap: 18px;
  }

  .location-embed-shell,
  .location-embed-shell iframe {
    min-height: 220px;
  }

  .chair-image-card {
    min-height: 0;
    padding-top: 24px;
  }

  .leadership-card {
    padding: 22px;
  }

  .leadership-image-card {
    min-height: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .timeline-copy {
    padding-left: 0;
    padding-top: 16px;
  }

  .timeline-copy::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .vision-side-media {
    min-height: 120px;
  }

  .business-hero-metrics,
  .business-filter-shell,
  .business-cta-shell {
    grid-template-columns: 1fr;
  }

  .business-chip-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .business-directory-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .business-card-actions {
    flex-wrap: wrap;
  }

  .business-card-actions .btn-square {
    flex: 1 1 100%;
    min-height: 52px;
  }

  .business-detail-modal {
    padding: 16px;
  }

  .business-detail-dialog {
    padding: 22px;
  }

  .business-detail-head {
    flex-direction: column;
    padding-right: 34px;
  }

  .business-detail-actions .btn {
    flex: 1 1 100%;
  }

  .business-callout {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .cta {
    padding-bottom: 78px;
  }

  .cta-actions {
    flex-direction: column;
  }

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

  .footer-contact-actions .btn {
    width: 100%;
  }

  .footer {
    padding-bottom: 128px;
  }

  .mobile-dock {
    display: flex;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 8px;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .event-chip {
    font-size: 0.72rem;
    padding: 8px 12px;
  }

  .hero h1,
  .about-hero-copy h1,
  .business-hero-copy h1 {
    font-size: 2.95rem;
  }

  .card,
  .cta-panel,
  .foundation-panel,
  .hymn-shell,
  .hymn-card,
  .business-hero-card,
  .business-cta-shell,
  .business-stat-hero,
  .business-cta-note {
    border-radius: 24px;
  }

  .card-business::after,
  .card-business .decor-media {
    opacity: 0.08;
  }

  .business-hero-card {
    padding: 16px;
    transform: none;
  }

  .business-hero-card img {
    height: 320px;
    border-radius: 20px;
  }

  .chair-badge {
    top: 12px;
    right: 12px;
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .chair-metrics {
    grid-template-columns: 1fr 1fr;
  }
}
