/* Goodyear Group — mockup-aligned (framework-free) */
:root {
  --green: #2e7d32;
  --green-dark: #1b5e20;
  --orange: #f57c00;
  --orange-dark: #ef6c00;
  --blue: #1976d2;
  --blue-dark: #1565c0;
  --purple: #8e24aa;
  --purple-dark: #7b1fa2;
  --teal: #00838f;
  --teal-dark: #006064;
  --red: #c62828;
  --red-dark: #a91d1d;
  --navy: #002147;
  --navy-footer: #002147;
  --footer-green: #1b5e20;
  --gold: #d4af37;
  --gold-dark: #b8911f;
  --cream: #fdfaf5;
  --text: #263238;
  --text-muted: #5c6b7a;
  --white: #fff;
  --radius: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --shadow: 0 10px 40px rgba(0, 33, 71, 0.1);
  --shadow-soft: 0 6px 24px rgba(0, 33, 71, 0.08);
  --font-sans: "Poppins", system-ui, sans-serif;
  --font-serif: "Poppins", system-ui, sans-serif;
  --font-script: "Pacifico", cursive;
  --container: min(1180px, 100% - 2rem);
  --header-h: 76px;
  --page-dot: rgba(0, 33, 71, 0.085);
  --page-dot-size: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
}

body.site-body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--white);
  background-image: radial-gradient(var(--page-dot) 1.1px, transparent 1.1px);
  background-size: var(--page-dot-size) var(--page-dot-size);
}

body.page-sub {
  background-color: var(--white);
  background-image: radial-gradient(var(--page-dot) 1.1px, transparent 1.1px);
  background-size: var(--page-dot-size) var(--page-dot-size);
}

/* ---------- Interior / sub pages ---------- */
.sub-breadcrumb-wrap {
  padding: 0.85rem 0 1.1rem;
  background: linear-gradient(180deg, rgba(0, 33, 71, 0.045) 0%, transparent 100%);
  border-bottom: 1px solid rgba(0, 33, 71, 0.06);
}

.sub-breadcrumb-wrap .container {
  display: flex;
  justify-content: center;
}

.sub-breadcrumb {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0.5rem 1.1rem 0.5rem 1rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(253, 250, 245, 0.94) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  box-shadow:
    0 10px 36px rgba(0, 33, 71, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sub-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem 0.35rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sub-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.sub-breadcrumb__item:not(:last-child)::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.62rem;
  color: var(--gold);
  opacity: 0.95;
  flex-shrink: 0;
  margin-left: 0.1rem;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.sub-breadcrumb__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.sub-breadcrumb__link:hover {
  background: rgba(46, 125, 50, 0.14);
  color: var(--green-dark);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(46, 125, 50, 0.12);
}

.sub-breadcrumb__home-ico {
  display: inline-flex;
  font-size: 0.72rem;
  opacity: 0.9;
  color: var(--green);
}

.sub-breadcrumb__link:hover .sub-breadcrumb__home-ico {
  color: var(--green-dark);
}

.sub-breadcrumb__label {
  line-height: 1.2;
}

.sub-breadcrumb__current {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 1.05rem;
  margin-left: 0.05rem;
  background: linear-gradient(145deg, var(--navy) 0%, #0d3a66 55%, #0a3056 100%);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.1em;
  box-shadow:
    0 4px 16px rgba(0, 33, 71, 0.28),
    0 0 0 1px rgba(212, 175, 55, 0.35) inset;
  line-height: 1.2;
}

@media (max-width: 575px) {
  .sub-breadcrumb-wrap .container {
    justify-content: stretch;
  }

  .sub-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-lg);
    padding: 0.55rem 0.85rem;
  }

  .sub-breadcrumb__list {
    font-size: 0.68rem;
    gap: 0.35rem 0.25rem;
  }
}

.page-sub .subpage-hero,
.page-sub .page-hero,
.page-sub .about-hero {
  position: relative;
  padding: clamp(2.25rem, 5.5vw, 3.75rem) 0 !important;
  background: linear-gradient(
    125deg,
    rgba(0, 33, 71, 0.07) 0%,
    rgba(255, 255, 255, 0.95) 42%,
    rgba(46, 125, 50, 0.09) 100%
  ) !important;
  border-bottom: 1px solid rgba(0, 33, 71, 0.08) !important;
  overflow: hidden;
}

.page-sub .subpage-hero::before,
.page-sub .page-hero::before,
.page-sub .about-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(44%, 340px);
  background: linear-gradient(100deg, rgba(212, 175, 55, 0.14), transparent);
  pointer-events: none;
}

.page-sub .subpage-hero::after,
.page-sub .page-hero::after,
.page-sub .about-hero::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  bottom: 0;
  width: clamp(3.5rem, 14vw, 7rem);
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.25));
  border-radius: 2px;
}

@media (min-width: 1200px) {
  .page-sub .subpage-hero::after,
  .page-sub .page-hero::after,
  .page-sub .about-hero::after {
    left: calc((100vw - min(1180px, 100vw - 2rem)) / 2 + 0.25rem);
  }
}

.page-sub .about-hero .container,
.page-sub .page-hero .container {
  position: relative;
  z-index: 1;
}

.page-sub .about-hero__title,
.page-sub .page-hero h1 {
  font-family: var(--font-serif);
  color: var(--navy);
  letter-spacing: 0.02em;
}

.page-sub .about-kicker {
  color: var(--green) !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
}

.page-sub .text-navy {
  color: var(--navy) !important;
}

.page-sub .btn-green-solid {
  display: inline-block;
  background: var(--green);
  color: var(--white) !important;
  border: none;
  padding: 0.65rem 1.65rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.page-sub .btn-green-solid:hover {
  background: var(--green-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.page-sub .about-page-main {
  position: relative;
}

.page-sub .about-content {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.page-sub .about-prose {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 33, 71, 0.07);
  padding: clamp(1.75rem, 4vw, 3rem);
}

.page-sub .about-section {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 33, 71, 0.06);
}

.page-sub .about-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-sub .about-section h2 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  margin-bottom: 1rem;
  padding-left: 0.85rem;
  border-left: 4px solid var(--green);
}

.page-sub .about-section--cream {
  background: var(--cream);
  margin-inline: -0.5rem;
  padding: 1.75rem 1.25rem !important;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 33, 71, 0.06);
}

.page-sub .about-section--cream:last-child {
  margin-bottom: 0;
}

.page-sub .about-quote {
  border-left: 3px solid var(--gold);
  padding: 0.85rem 1.25rem;
  margin: 1.25rem 0;
  background: rgba(0, 33, 71, 0.03);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}

/* ---------- About v2 (screenshot-style) ---------- */
.aboutv2-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0 2.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(253, 250, 245, 0.88) 100%);
  border-bottom: 1px solid rgba(0, 33, 71, 0.08);
  overflow: hidden;
}

.aboutv2-hero::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -90px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(46, 125, 50, 0.22), rgba(46, 125, 50, 0) 65%);
  transform: rotate(-18deg);
  pointer-events: none;
}

.aboutv2-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 30% 30%, rgba(46, 125, 50, 0.18), rgba(46, 125, 50, 0) 70%);
  transform: rotate(14deg);
  pointer-events: none;
}

.aboutv2-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.aboutv2-hero__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

.aboutv2-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.aboutv2-hero__title-line {
  display: block;
}

.aboutv2-hero__title-line--green {
  color: var(--green);
}

.aboutv2-hero__lead {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-weight: 600;
  max-width: 42rem;
}

.aboutv2-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.aboutv2-value {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 33, 71, 0.06);
  border-radius: var(--radius-lg);
  padding: 0.85rem 0.8rem 0.9rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 33, 71, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.aboutv2-value__icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 0.55rem;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 33, 71, 0.12);
}

.aboutv2-value__icon svg {
  width: 22px;
  height: 22px;
}

.aboutv2-value--green .aboutv2-value__icon { background: var(--green); }
.aboutv2-value--blue .aboutv2-value__icon { background: var(--blue); }
.aboutv2-value--orange .aboutv2-value__icon { background: var(--orange); }
.aboutv2-value--purple .aboutv2-value__icon { background: var(--purple); }

.aboutv2-value__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.aboutv2-value__desc {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
}

.aboutv2-hero__scene {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 18px 46px rgba(0, 33, 71, 0.12);
  border: 1px solid rgba(0, 33, 71, 0.08);
  background: rgba(0, 33, 71, 0.04);
}

.aboutv2-hero__scene-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05)),
    var(--about-scene-bg, linear-gradient(135deg, rgba(0, 33, 71, 0.16), rgba(46, 125, 50, 0.12)));
  background-size: cover;
  background-position: center;
}

.aboutv2-hero__scene-cross {
  position: absolute;
  right: 18%;
  top: 14%;
  width: 120px;
  height: 120px;
  opacity: 0.35;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0) 65%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18));
  clip-path: polygon(42% 0, 58% 0, 58% 42%, 100% 42%, 100% 58%, 58% 58%, 58% 100%, 42% 100%, 42% 58%, 0 58%, 0 42%, 42% 42%);
  filter: blur(0.2px);
  pointer-events: none;
}

.aboutv2-hero__arc {
  position: absolute;
  left: -18%;
  right: -12%;
  bottom: -48px;
  height: 190px;
  background: radial-gradient(120% 120% at 50% 0%, rgba(46, 125, 50, 0.75), rgba(46, 125, 50, 0.35) 55%, rgba(46, 125, 50, 0) 72%);
  pointer-events: none;
}

.aboutv2-hero__quote {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: min(320px, calc(100% - 32px));
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 33, 71, 0.10);
  border-radius: 18px;
  padding: 0.9rem 0.95rem 0.85rem;
  box-shadow: 0 14px 40px rgba(0, 33, 71, 0.16);
}

.aboutv2-hero__quote-mark {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--green);
  margin-bottom: 0.15rem;
}

.aboutv2-hero__quote-text {
  margin: 0 0 0.4rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.45;
}

.aboutv2-hero__quote-by {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.aboutv2-wrap {
  padding: 2.5rem 0 3.5rem;
}

.aboutv2-card {
  background: var(--white);
  border: 1px solid rgba(0, 33, 71, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 3.5vw, 2.1rem);
}

.aboutv2-card__h {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--green);
}

.aboutv2-card__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.25rem, 2.6vw, 1.75rem);
  align-items: start;
}

.aboutv2-card__side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.25rem);
  align-items: start;
}

.aboutv2-card__prose {
  color: var(--text-muted);
  font-weight: 550;
  font-size: 0.94rem;
  line-height: 1.7;
}

.aboutv2-card__prose p {
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.aboutv2-card__prose p:last-child {
  margin-bottom: 0;
}

.aboutv2-person {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 33, 71, 0.08);
  box-shadow: 0 14px 34px rgba(0, 33, 71, 0.08);
  min-height: 182px;
  position: relative;
  overflow: hidden;
}

.aboutv2-person::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 16%, rgba(46, 125, 50, 0.10), transparent 58%);
  pointer-events: none;
}

.aboutv2-person__photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 33, 71, 0.06);
  aspect-ratio: 3 / 4;
}

.aboutv2-person__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutv2-person__name {
  position: relative;
  font-weight: 800;
  color: var(--green);
  margin: 0 0 0.25rem;
  line-height: 1.25;
  font-size: 0.96rem;
}

.aboutv2-person__role {
  position: relative;
  font-weight: 800;
  color: var(--navy);
  font-size: 0.8rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: none;
}

.aboutv2-person__bio {
  position: relative;
  margin-top: 0.55rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.84rem;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .aboutv2-hero__grid {
    grid-template-columns: 1fr;
  }
  .aboutv2-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .aboutv2-card__grid {
    grid-template-columns: 1fr;
  }
  .aboutv2-card__side {
    grid-template-columns: 1fr;
  }
  .aboutv2-hero__scene {
    min-height: 280px;
  }
}

@media (max-width: 575px) {
  .aboutv2-values {
    grid-template-columns: 1fr;
  }
  .aboutv2-person {
    grid-template-columns: 96px 1fr;
  }
}

.aboutv2-section {
  margin-top: clamp(1.5rem, 4vw, 2.35rem);
}

.aboutv2-section__head {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.aboutv2-section__head--center {
  text-align: center;
  align-items: center;
}

.aboutv2-section__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--green);
}

.aboutv2-section__lead {
  margin: 0;
  max-width: 60rem;
  color: var(--text-muted);
  font-weight: 600;
}

.aboutv2-family {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.aboutv2-chip {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 33, 71, 0.07);
  border-radius: var(--radius-lg);
  padding: 0.85rem 0.85rem 0.95rem;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0, 33, 71, 0.06);
}

.aboutv2-chip__avatar {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 33, 71, 0.06);
  margin: 0 auto 0.55rem;
  box-shadow: 0 12px 26px rgba(0, 33, 71, 0.08);
}

.aboutv2-chip__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutv2-chip__name {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.25;
}

.aboutv2-chip__role {
  margin-top: 0.25rem;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.aboutv2-prayer {
  grid-column: span 2;
  background: linear-gradient(165deg, rgba(0, 33, 71, 0.92) 0%, rgba(0, 33, 71, 0.86) 50%, rgba(46, 125, 50, 0.35) 100%);
  border-radius: var(--radius-xl);
  color: #fff;
  padding: 1.2rem 1.25rem 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 16px 42px rgba(0, 33, 71, 0.18);
}

.aboutv2-prayer__title {
  margin: 0 0 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.aboutv2-prayer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  font-weight: 650;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.92);
}

.aboutv2-prayer__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.95);
  margin-right: 0.55rem;
  transform: translateY(1px);
}

.aboutv2-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.aboutv2-milestone {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 33, 71, 0.07);
  border-radius: var(--radius-xl);
  padding: 0.95rem 1rem 1.05rem;
  box-shadow: 0 12px 30px rgba(0, 33, 71, 0.06);
  position: relative;
  overflow: hidden;
}

.aboutv2-milestone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 15%, rgba(46, 125, 50, 0.14), transparent 55%);
  pointer-events: none;
}

.aboutv2-milestone__year {
  position: relative;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.aboutv2-milestone__title {
  position: relative;
  font-weight: 850;
  color: var(--navy);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.aboutv2-milestone__desc {
  position: relative;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.86rem;
  line-height: 1.45;
}

.aboutv2-panels {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1rem;
}

.aboutv2-panel {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 33, 71, 0.08);
  box-shadow: 0 14px 36px rgba(0, 33, 71, 0.08);
  overflow: hidden;
  background: var(--white);
  min-height: 220px;
}

.aboutv2-panel--img .aboutv2-panel__media {
  height: 100%;
  background:
    linear-gradient(0deg, rgba(0, 33, 71, 0.18), rgba(0, 33, 71, 0.18)),
    url("https://images.unsplash.com/photo-1520975693411-bb1c6c1b0aa0?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.aboutv2-panel--img .aboutv2-panel__footer {
  position: absolute;
}

.aboutv2-panel--img {
  position: relative;
}

.aboutv2-panel--img .aboutv2-panel__footer {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 0.95rem;
  background: linear-gradient(180deg, rgba(0, 33, 71, 0) 0%, rgba(0, 33, 71, 0.65) 100%);
}

.aboutv2-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.aboutv2-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(46, 125, 50, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.aboutv2-panel--img2 {
  background:
    linear-gradient(0deg, rgba(46, 125, 50, 0.14), rgba(46, 125, 50, 0.14)),
    url("https://images.unsplash.com/photo-1509099836639-18ba1795216d?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.aboutv2-panel--text {
  padding: 1.15rem 1.15rem 1.2rem;
  background: linear-gradient(165deg, rgba(46, 125, 50, 0.09) 0%, rgba(255, 255, 255, 0.96) 50%, rgba(0, 33, 71, 0.03) 100%);
}

.aboutv2-panel__title {
  margin: 0 0 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--navy);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.aboutv2-panel__text {
  margin: 0 0 0.65rem;
  color: var(--text-muted);
  font-weight: 650;
  font-size: 0.9rem;
  line-height: 1.55;
}

.aboutv2-panel__text--strong {
  color: var(--navy);
  font-weight: 850;
}

@media (max-width: 991px) {
  .aboutv2-family {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .aboutv2-prayer {
    grid-column: auto;
  }
  .aboutv2-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .aboutv2-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .aboutv2-timeline {
    grid-template-columns: 1fr;
  }
}

/* Legacy subpage */
.page-sub .legacy-page__hero-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.page-sub .legacy-page__hero-lead {
  margin: 0;
  max-width: 40rem;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
}

.page-sub .legacy-page__intro {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  padding-bottom: 2.5rem;
}

.page-sub .legacy-page-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 33, 71, 0.07);
  padding: clamp(1.5rem, 3.5vw, 2.35rem);
  height: 100%;
}

.page-sub .legacy-page-card h2 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: clamp(1.3rem, 2.6vw, 1.65rem);
  margin-bottom: 1.1rem;
  padding-left: 0.85rem;
  border-left: 4px solid var(--green);
  line-height: 1.25;
}

.page-sub .legacy-page__founder {
  height: 100%;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 33, 71, 0.06);
}

.page-sub .legacy-page__founder .founder-panel__name {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

.page-sub .legacy-page__impact {
  border-top: 1px solid rgba(0, 33, 71, 0.06);
  border-bottom: 1px solid rgba(0, 33, 71, 0.06);
}

.page-sub .legacy-page-impact-inner .heading-impact {
  margin-bottom: 0.65rem;
}

.page-sub .legacy-page__leadership {
  padding-top: 3rem;
  background: var(--white);
}

.page-sub .legacy-page__leadership .section-head--ruled {
  margin-bottom: 2.75rem;
}

/* Contact subpage */
.page-sub .contact-page__intro {
  max-width: 36rem;
  font-size: 1.02rem;
}

.page-sub .contact-office-card,
.page-sub .contact-write-card,
.page-sub .contact-form-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 33, 71, 0.08);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1.25rem;
}

.page-sub .contact-office-card:last-of-type {
  margin-bottom: 1.25rem;
}

.page-sub .contact-office-card__title,
.page-sub .contact-write-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--gold);
}

.page-sub .contact-office-card__address {
  margin: 0 0 1.15rem;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
}

.page-sub .contact-office-card__meta {
  margin: 0;
}

.page-sub .contact-office-card__meta > div {
  margin-bottom: 0.65rem;
}

.page-sub .contact-office-card__meta > div:last-child {
  margin-bottom: 0;
}

.page-sub .contact-office-card__meta dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.page-sub .contact-office-card__meta dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.page-sub .contact-office-card__meta a {
  color: var(--green);
  text-decoration: none;
}

.page-sub .contact-office-card__meta a:hover {
  text-decoration: underline;
}

.page-sub .contact-write-card__email a {
  font-size: 1.05rem;
  font-weight: 700;
}

.page-sub .contact-form-panel .alert {
  border-radius: var(--radius);
}

html.splash-html-lock,
html.splash-html-lock body {
  overflow: hidden;
  height: 100%;
}

/* Welcome cover (homepage first view, ~5s) */
.splash-welcome {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: var(--white);
  background-image: radial-gradient(var(--page-dot) 1.1px, transparent 1.1px);
  background-size: var(--page-dot-size) var(--page-dot-size);
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.splash-welcome--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-welcome__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  max-width: 90vw;
}

.splash-welcome__logo {
  width: clamp(128px, 18vw, 220px);
  height: clamp(128px, 18vw, 220px);
  display: block;
  object-fit: contain;
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0 4px 20px rgba(0, 33, 71, 0.12));
}

.splash-welcome__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2.25rem, 10vw, 3.75rem);
  letter-spacing: 0.2em;
  color: var(--navy);
  line-height: 1.05;
}

.splash-welcome__kicker {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
}

.splash-welcome__loader {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(2rem, 7vh, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.splash-welcome__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.4;
  animation: splash-loader-dot 1.05s ease-in-out infinite;
}

.splash-welcome__dot:nth-child(2) {
  animation-delay: 0.18s;
}

.splash-welcome__dot:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes splash-loader-dot {
  0%,
  70%,
  100% {
    opacity: 0.35;
    transform: translateY(0) scale(1);
  }
  35% {
    opacity: 1;
    transform: translateY(-10px) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .splash-welcome__dot {
    animation: none;
    opacity: 0.65;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ---------- Typography ---------- */
.heading-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  color: var(--navy);
  letter-spacing: 0.02em;
  margin: 0;
}

.heading-serif--left {
  text-align: left;
}

.heading-serif--ruled {
  position: relative;
  display: inline-block;
  padding: 0 2.5rem;
}

.section-head--ruled .heading-serif--ruled::before,
.section-head--ruled .heading-serif--ruled::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(2rem, 12vw, 6rem);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 33, 71, 0.25), transparent);
}

.section-head--ruled .heading-serif--ruled::before {
  right: 100%;
}

.section-head--ruled .heading-serif--ruled::after {
  left: 100%;
}

.text-script,
.script-text {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.75rem, 7vw, 4rem);
  line-height: 1;
  vertical-align: -0.08em;
}

.text-script--green {
  color: var(--green);
}

.text-script--orange {
  color: var(--orange);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: #001530;
  color: var(--white);
}

.btn-learn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid transparent;
  margin-top: auto;
  align-self: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-learn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-learn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-learn--orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-learn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-learn--purple {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.btn-learn--teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-learn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-learn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ---------- Header ---------- */
.site-header {
  position: relative;
  z-index: 100;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 33, 71, 0.06);
}

/*
 * Home: hero <img> is pulled up under this bar (see .site-body--banner .hero) so one image
 * sits behind logo + nav — no separate header background URL.
 */
.site-header--banner {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.site-header.site-header--interior {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 33, 71, 0.08);
  box-shadow: 0 4px 28px rgba(0, 33, 71, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-body--banner .hero {
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}

.nav-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.nav-brand {
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-brand__main {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-brand__mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-brand:hover {
  text-decoration: none;
  opacity: 0.92;
}

.nav-brand__lockup {
  display: block;
  position: relative;
}

.nav-brand__arc {
  display: block;
  width: 9.5rem;
  max-width: 100%;
  height: auto;
  margin: 0 0 -0.15rem;
}

.nav-brand__lines {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 0.05rem;
}

.nav-brand__goodyear {
  display: block;
  font-weight: 800;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: 0.08em;
  color: var(--navy);
}

.nav-brand__group {
  display: block;
  font-weight: 800;
  font-size: clamp(0.72rem, 1.5vw, 0.88rem);
  letter-spacing: 0.28em;
  color: var(--green);
}

.nav-brand__tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: #212121;
  letter-spacing: 0.02em;
  max-width: 20rem;
  line-height: 1.35;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.nav-toggle__bar {
  display: block;
  height: 3px;
  width: 24px;
  background: var(--navy);
  border-radius: 2px;
  margin-inline: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.35rem;
}

.nav-list > li {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover {
  color: var(--green);
  text-decoration: none;
  border-bottom-color: transparent;
}

.nav-link.is-active {
  color: var(--green);
  border-bottom-color: var(--green);
  background: transparent;
}

.nav-chevron {
  font-size: 0.6rem;
  opacity: 0.75;
}

.nav-submenu {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.site-header--banner .nav-submenu {
  background: rgba(0, 33, 71, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.site-header--banner .nav-submenu a {
  color: rgba(255, 255, 255, 0.92);
}

.site-header--banner .nav-submenu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.nav-submenu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.nav-submenu a:hover {
  background: var(--cream);
  color: var(--green);
  text-decoration: none;
}

@media (min-width: 992px) {
  .nav-item--dropdown:hover .nav-submenu,
  .nav-item--dropdown:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ---------- Hero + collage ---------- */
.hero {
  position: relative;
  min-height: clamp(500px, 82vh, 720px);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(4.5rem, 12vw, 7rem);
  color: var(--navy);
  overflow: visible;
}

.hero__collage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #e8ecf0;
}

.hero__collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Stronger wash on left for readable type on busy collage */
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.82) 26%,
    rgba(255, 255, 255, 0.42) 46%,
    rgba(255, 255, 255, 0.12) 62%,
    transparent 80%
  );
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 2;
  padding-top: clamp(2.75rem, 6vw, 4.5rem);
}

.hero__content {
  max-width: 540px;
  margin-inline-start: 0;
  margin-inline-end: auto;
  text-align: left;
}

.hero__title {
  margin: 0 0 1.15rem;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.hero__line {
  display: block;
}

.hero__line--purpose {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
}

.hero__sans {
  color: var(--navy);
  font-weight: 700;
}

.hero__heart {
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
}

.hero__heart i {
  font-weight: 400;
}

.hero__lead {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.65;
  color: #424242;
  max-width: 420px;
}

.hero__verse {
  margin: 0;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 600;
  color: var(--green);
  line-height: 1.55;
  max-width: 420px;
}

/* Values bar: center on hero bottom — half on banner, half below */
.hero__values-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 100%;
  transform: translateY(50%);
  padding: 0 1rem;
  margin: 0;
  box-sizing: border-box;
}

.values-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: 50px;
  box-shadow: 0 12px 40px rgba(0, 33, 71, 0.12), 0 4px 12px rgba(0, 33, 71, 0.06);
  overflow: hidden;
  border: 1px solid rgba(0, 33, 71, 0.06);
}

.values-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.2rem 1.45rem;
  border-right: 1px solid rgba(0, 33, 71, 0.06);
}

.values-bar__item:last-child {
  border-right: none;
}

.values-bar__icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.values-bar__icon--green {
  background: var(--green);
}

.values-bar__icon--blue {
  background: var(--blue);
}

.values-bar__icon--orange {
  background: var(--orange);
}

.values-bar__icon--purple {
  background: var(--purple);
}

.values-bar__title {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.3;
}

.values-bar__title--green {
  color: var(--green);
}

.values-bar__title--blue {
  color: var(--blue);
}

.values-bar__title--orange {
  color: var(--orange);
}

.values-bar__title--purple {
  color: var(--purple);
}

.values-bar__desc {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ---------- Businesses ---------- */
.section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.section--businesses {
  background: var(--white);
  padding-top: clamp(3.75rem, 7vw, 5.25rem);
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.heading-serif--biz {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  color: var(--navy);
  letter-spacing: 0.04em;
  margin: 0;
}

.section-head__leaf {
  color: var(--green);
  font-size: 0.85em;
  opacity: 0.95;
}

.section-head__sub {
  margin: 0.65rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.section-head__sub--biz {
  color: #1a1a1a;
  font-weight: 500;
  font-family: var(--font-sans);
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

/* ---------- Businesses carousel (home page) ---------- */
.biz-carousel {
  --biz-cards-visible: 3;
  --biz-gap: clamp(1.25rem, 2vw, 1.75rem);
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.biz-carousel__viewport {
  overflow: hidden;
  border-radius: 16px;
}

.biz-carousel__track {
  display: flex;
  gap: var(--biz-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 4px 16px;
  margin: -4px -4px -16px;
  outline: none;
}

.biz-carousel__track::-webkit-scrollbar {
  display: none;
}

.biz-carousel__track:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
  border-radius: 14px;
}

.biz-carousel__track > .biz-card {
  flex: 0 0 calc((100% - (var(--biz-cards-visible) - 1) * var(--biz-gap)) / var(--biz-cards-visible));
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.biz-carousel__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 33, 71, 0.12);
  background: var(--white);
  color: var(--navy);
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 33, 71, 0.1);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
  flex: 0 0 auto;
}

.biz-carousel__nav:hover:not(:disabled) {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-1px);
}

.biz-carousel__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.biz-carousel__dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.biz-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(0, 33, 71, 0.18);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, width 0.2s ease;
}

.biz-carousel__dot:hover {
  background: rgba(0, 33, 71, 0.32);
}

.biz-carousel__dot.is-active {
  background: var(--green);
  width: 26px;
  border-radius: 999px;
}

.biz-card {
  --biz-radius: 14px;
  border-radius: var(--biz-radius);
  box-shadow: 0 6px 24px rgba(0, 33, 71, 0.08);
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  border: 1px solid rgba(0, 33, 71, 0.05);
}

.biz-card--green {
  background: #f4faf4;
}

.biz-card--orange {
  background: #fffbf6;
}

.biz-card--blue {
  background: #f3f8fd;
}

.biz-card--purple {
  background: #faf6fc;
}

.biz-card--teal {
  background: #f1f9fa;
}

.biz-card--red {
  background: #fdf4f4;
}

.biz-card--gold {
  background: #fdf9ec;
}

.biz-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 33, 71, 0.12);
}

.biz-card__media {
  position: relative;
  overflow: visible;
}

.biz-card__media-inner {
  border-radius: var(--biz-radius) var(--biz-radius) 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8ecf0;
}

.biz-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.biz-card:hover .biz-card__media img {
  transform: scale(1.05);
}

.biz-card__badge {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.22rem;
  border: 4px solid var(--white);
  box-shadow: 0 4px 14px rgba(0, 33, 71, 0.12);
  z-index: 2;
}

.biz-card--green .biz-card__badge {
  background: var(--green);
}

.biz-card--orange .biz-card__badge {
  background: var(--orange);
}

.biz-card--blue .biz-card__badge {
  background: var(--blue);
}

.biz-card--purple .biz-card__badge {
  background: var(--purple);
}

.biz-card--teal .biz-card__badge {
  background: var(--teal);
}

.biz-card--red .biz-card__badge {
  background: var(--red);
}

.biz-card--gold .biz-card__badge {
  background: var(--gold);
  color: var(--navy);
}

.biz-card__badge svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.biz-card__body {
  padding: 2.35rem 1.25rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
  text-align: center;
  align-items: center;
}

.biz-card__cat {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.biz-card--green .biz-card__cat {
  color: var(--green);
}

.biz-card--orange .biz-card__cat {
  color: var(--orange);
}

.biz-card--blue .biz-card__cat {
  color: var(--blue);
}

.biz-card--purple .biz-card__cat {
  color: var(--purple);
}

.biz-card--teal .biz-card__cat {
  color: var(--teal);
}

.biz-card--red .biz-card__cat {
  color: var(--red);
}

.biz-card--gold .biz-card__cat {
  color: var(--gold-dark);
}

.biz-card__brand {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  max-width: 17rem;
}

.biz-card__desc {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.6;
  text-align: center;
  max-width: 17.5rem;
}

.biz-card__logos {
  margin: 0.15rem 0 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--blue);
  line-height: 1.5;
}

.biz-card__logos-dot {
  margin: 0 0.35rem;
  font-weight: 700;
  opacity: 0.85;
}

/* ---------- Businesses subpage ---------- */
.page-sub .businesses-page__hero {
  padding-bottom: clamp(2rem, 5vw, 3rem) !important;
}

.page-sub .businesses-page__hero-inner {
  position: relative;
  max-width: 48rem;
}

.page-sub .businesses-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem 0.35rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(0, 33, 71, 0.08);
}

.page-sub .businesses-page__eyebrow .fa-building-columns {
  color: var(--green);
  font-size: 1rem;
  opacity: 0.95;
}

.page-sub .businesses-page__title {
  letter-spacing: 0.06em;
  line-height: 1.15;
}

.page-sub .businesses-page__pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
}

.page-sub .businesses-page__pillar-dot {
  display: block;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.95), 0 4px 12px rgba(0, 33, 71, 0.15);
}

.page-sub .businesses-page__pillar-dot--green {
  background: var(--green);
}

.page-sub .businesses-page__pillar-dot--orange {
  background: var(--orange);
}

.page-sub .businesses-page__pillar-dot--blue {
  background: var(--blue);
}

.page-sub .businesses-page__pillar-dot--purple {
  background: var(--purple);
}

.page-sub .businesses-page__accent {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--green) 0%,
    var(--gold) 28%,
    var(--orange) 52%,
    var(--blue) 72%,
    var(--purple) 100%
  );
  opacity: 0.92;
}

.page-sub .section--businesses-sub {
  padding-top: clamp(2.5rem, 6.5vw, 4rem);
  padding-bottom: clamp(3.5rem, 9vw, 5.75rem);
  background: linear-gradient(180deg, rgba(253, 250, 245, 0.97) 0%, rgba(255, 255, 255, 0.99) 38%, #fff 100%);
  border-top: 1px solid rgba(0, 33, 71, 0.05);
}

.page-sub .businesses-page__section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 2.75rem);
}

.page-sub .businesses-page__lead {
  margin: 0 auto;
  max-width: 38rem;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-sub .section--businesses-sub .biz-grid {
  gap: clamp(1.35rem, 2.5vw, 2rem);
}

.page-sub .section--businesses-sub .biz-card {
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 20px rgba(0, 33, 71, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.page-sub .section--businesses-sub .biz-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 33, 71, 0.14);
}

@media (max-width: 720px) {
  .page-sub .section--businesses-sub .biz-card:hover {
    transform: none;
  }
}

/* ---------- Careers / job postings ---------- */
.page-sub .careers-jobs {
  background: linear-gradient(180deg, rgba(253, 250, 245, 0.65) 0%, rgba(255, 255, 255, 0.98) 40%);
}

.page-sub .careers-jobs__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}

.page-sub .careers-jobs__title {
  letter-spacing: 0.04em;
}

.page-sub .careers-jobs__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 920px;
  margin-inline: auto;
}

.page-sub .careers-job-card {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.25rem 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.65rem);
  background: var(--white);
  border: 1px solid rgba(0, 33, 71, 0.08);
  border-radius: var(--radius-xl);
  box-shadow:
    0 8px 32px rgba(0, 33, 71, 0.07),
    0 0 0 1px rgba(212, 175, 55, 0.12);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-sub .careers-job-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow:
    0 14px 40px rgba(0, 33, 71, 0.11),
    0 0 0 1px rgba(212, 175, 55, 0.22);
}

.page-sub .careers-job-card__main {
  flex: 1 1 16rem;
  min-width: 0;
}

.page-sub .careers-job-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.page-sub .careers-job-card__meta {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.95;
}

.page-sub .careers-job-card__summary {
  margin: 0 0 0.85rem;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.page-sub .careers-job-card__details {
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: var(--text);
}

.page-sub .careers-job-card__details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.page-sub .careers-job-card__details summary:hover {
  color: var(--green-dark);
}

.page-sub .careers-job-card__description {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 33, 71, 0.08);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.page-sub .careers-job-card__cta {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.page-sub .careers-job-card__btn {
  min-width: 8.5rem;
  letter-spacing: 0.1em;
}

.page-sub .careers-empty {
  background: rgba(0, 33, 71, 0.02);
}

.page-sub .careers-page__footer-cta {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(253, 250, 245, 0.5) 100%);
}

@media (max-width: 575px) {
  .page-sub .careers-job-card__cta {
    width: 100%;
    justify-content: stretch;
  }

  .page-sub .careers-job-card__btn {
    width: 100%;
  }
}

/* ---------- Legacy + impact (cream) ---------- */
.section--cream {
  background: var(--cream);
}

.legacy-impact {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.legacy-impact__col--text .heading-serif {
  margin-bottom: 1rem;
}

.prose {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.prose--compact {
  font-size: 0.88rem;
}

.heading-impact {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--navy);
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

.founder-panel {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  text-align: center;
}

.founder-panel__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.founder-panel__cap {
  padding: 1.25rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.founder-panel__name {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--green);
  line-height: 1.1;
}

.founder-panel__role {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--navy);
}

.founder-panel__dates {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.map-panel {
  margin: 1rem 0 1.25rem;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #e3f2fd 0%, #f5f9fc 45%, #ffffff 100%);
  border: 1px solid rgba(25, 118, 210, 0.12);
  box-shadow: 0 8px 28px rgba(0, 33, 71, 0.07);
  overflow: hidden;
}

figure.map-panel {
  margin-inline: 0;
}

.map-panel__img {
  width: 100%;
  height: auto;
  display: block;
  max-height: min(320px, 52vw);
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

/* ---------- Leadership ---------- */
.section--leadership {
  background: var(--white);
  padding-bottom: 4rem;
}

.section-head--ruled {
  text-align: center;
  margin-bottom: 2.5rem;
}

.leaders-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.leader-card {
  text-align: center;
}

.leader-card__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 0.85rem;
  aspect-ratio: 3 / 4;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.leader-card:hover .leader-card__img {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.leader-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-card__name {
  margin: 0 0 0.2rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
}

.leader-card__title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ---------- Footer (mockup-aligned) ---------- */
.site-footer {
  background: var(--navy-footer);
  color: rgba(255, 255, 255, 0.92);
  padding: 2.5rem 0 1.25rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.footer-top__quote {
  flex: 1 1 280px;
  text-align: left;
}

.footer-top__script {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  color: var(--white);
  margin: 0 0 0.35rem;
  line-height: 1.15;
}

.footer-top__sub {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  max-width: 36rem;
}

.footer-top__social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.footer-social-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social-circle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

.footer-gold-rule {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: var(--container);
  margin: 1.75rem auto 0;
  padding: 0 1rem;
}

.footer-gold-rule__line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.95;
}

.footer-gold-rule__heart {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.95rem;
  line-height: 1;
}

.footer-mid {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-top: 2rem;
  gap: 0;
}

.footer-mid__main {
  flex: 1 1 auto;
  min-width: 0;
  padding-left: 0;
}

.footer-mid__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: 0 1rem 2rem;
  align-items: start;
}

.footer-brand-mark {
  display: block;
  max-width: 72px;
  height: auto;
  margin-bottom: 0.75rem;
}

.footer-logo-lockup {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  position: relative;
}

.footer-logo-lockup:hover {
  color: var(--white);
  text-decoration: none;
  opacity: 0.92;
}

.footer-logo-lockup__arc {
  display: block;
  width: 11rem;
  max-width: 100%;
  height: auto;
  margin: 0 0 0.15rem;
}

.footer-logo-lockup__text {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.footer-logo-lockup__good {
  letter-spacing: 0.11em;
}

.footer-logo-lockup__tag {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  max-width: 16rem;
}

.footer-col-title {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--white);
}

.footer-links-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.75rem;
}

.footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link-list li {
  margin-bottom: 0.5rem;
}

.footer-link-list a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-link-list a:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.footer-contact-list i {
  margin-top: 0.2rem;
  color: var(--gold);
  width: 1rem;
  flex-shrink: 0;
  text-align: center;
}

.footer-contact-list a {
  color: var(--white);
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-cta-panel {
  flex: 0 0 clamp(260px, 28vw, 320px);
  background: var(--footer-green);
  padding: 2rem 1.75rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 80px 0 0 80px;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
  margin-left: 0.5rem;
}

.footer-cta-panel__text {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--white);
}

.footer-cta-panel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 240px;
  padding: 0.95rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy-footer);
  background: var(--white);
  border-radius: 999px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta-panel__btn:hover {
  text-decoration: none;
  color: var(--navy-footer);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-legal {
  margin: 0;
  padding: 1.25rem 1rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .biz-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .biz-carousel {
    --biz-cards-visible: 2;
  }

  .leaders-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-mid__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact-col {
    grid-column: 1 / -1;
  }

  .footer-mid {
    flex-direction: column;
  }

  .footer-cta-panel {
    flex: none;
    width: min(100% - 2rem, 400px);
    margin: 1.75rem auto 0;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
  }
}

@media (max-width: 991px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 33, 71, 0.08);
    box-shadow: var(--shadow-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-header--banner .nav-menu {
    background: rgba(0, 33, 71, 0.9);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  }

  .site-header--banner .nav-link,
  .site-header--banner .nav-link--dropdown {
    color: rgba(255, 255, 255, 0.95);
  }

  .site-header--banner .nav-link:hover,
  .site-header--banner .nav-link--dropdown:hover {
    color: var(--gold);
  }

  .site-header--banner .nav-link.is-active {
    color: var(--gold);
    border-left-color: var(--gold);
  }

  .site-header--banner .nav-toggle__bar {
    background: var(--white);
  }

  .site-header--banner .nav-submenu {
    background: rgba(0, 0, 0, 0.28);
  }

  .site-header--banner .nav-submenu a {
    color: rgba(255, 255, 255, 0.92);
  }

  .site-header--banner .nav-submenu a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold);
  }

  .site-header--banner .nav-chevron {
    opacity: 0.85;
  }

  .nav-menu.is-open {
    max-height: min(90vh, 560px);
    overflow-y: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 0.5rem;
    border-bottom: none;
  }

  .nav-link.is-active {
    border-left: 4px solid var(--green);
    padding-left: 0.65rem;
  }

  .nav-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--cream);
    margin: 0.25rem 0 0.5rem;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
  }

  .nav-submenu.is-open {
    max-height: 320px;
    padding: 0.5rem 0;
  }

  .hero {
    margin-bottom: clamp(5rem, 14vw, 8rem);
  }

  .values-bar {
    grid-template-columns: 1fr 1fr;
  }

  .values-bar__item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 33, 71, 0.06);
  }

  .values-bar__item:nth-child(2n) {
    border-left: 1px solid rgba(0, 33, 71, 0.06);
  }

  .section--businesses {
    padding-top: clamp(4.25rem, 9vw, 6rem);
  }

  .legacy-impact {
    grid-template-columns: 1fr;
  }

  .legacy-impact__col--founder {
    max-width: 400px;
    margin-inline: auto;
  }

  .section-head--ruled .heading-serif--ruled::before,
  .section-head--ruled .heading-serif--ruled::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    margin-bottom: clamp(6rem, 22vw, 10rem);
  }

  .values-bar {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .values-bar__item:nth-child(2n) {
    border-left: none;
  }

  .section--businesses {
    padding-top: clamp(5rem, 12vw, 7rem);
  }

  .biz-grid {
    grid-template-columns: 1fr;
  }

  .biz-carousel {
    --biz-cards-visible: 1;
    grid-template-columns: 1fr;
  }

  .biz-carousel__nav {
    display: none;
  }

  .biz-carousel__viewport {
    grid-column: 1;
  }

  .biz-card:hover {
    transform: none;
  }

  .leaders-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-top__social {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-mid {
    flex-direction: column;
  }

  .footer-mid__grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-panel {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    padding: 2rem 1.5rem;
  }

  .footer-links-split {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
