:root {
  --ink: #17202a;
  --muted: #59656f;
  --paper: #fff8ef;
  --surface: #ffffff;
  --soft: #fff0dc;
  --sage: #496979;
  --green: #173b4f;
  --gold: #f2b94b;
  --clay: #d46f32;
  --sunrise: #f58a3d;
  --deep-blue: #162f49;
  --charcoal: #202733;
  --line: #ead7bd;
  --focus: #1c6ed0;
  --shadow: 0 18px 50px rgba(22, 47, 73, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 10%, rgba(245, 138, 61, 0.2), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(242, 185, 75, 0.18), transparent 28%),
    linear-gradient(180deg, #fff8ef 0%, #fff 52%, #fff8ef 100%);
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-180%);
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 248, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  min-width: 230px;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(245, 138, 61, 0.32);
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.site-menu a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0.55rem 0.72rem;
  text-decoration: none;
  font-size: 0.94rem;
  color: var(--ink);
}

.site-menu a:hover {
  background: var(--soft);
}

.site-menu .nav-cta {
  background: var(--gold);
  color: #1f1608;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  padding: 0.55rem 0.8rem;
  font: inherit;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 2rem;
  padding: 5rem max(16px, calc((100% - 1180px) / 2));
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(22, 47, 73, 0.88), rgba(22, 47, 73, 0.54), rgba(22, 47, 73, 0.22)),
    url("../images/open-road-sunrise.png") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(0deg, rgba(255, 248, 239, 1), rgba(255, 248, 239, 0));
  pointer-events: none;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

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

.eyebrow,
.panel-kicker {
  margin: 0 0 0.7rem;
  color: var(--clay);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.25rem);
  max-width: 880px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 710px;
}

.hero .lead,
.page-hero .lead {
  color: rgba(255, 255, 255, 0.9);
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--gold);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--sunrise));
  color: #1f1608;
}

.button.secondary {
  background: #fff;
  color: var(--deep-blue);
}

.button.ghost {
  border-color: currentColor;
  color: var(--deep-blue);
  background: transparent;
}

.button.primary:hover,
.button.secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(22, 47, 73, 0.22);
}

.hero .button.ghost,
.page-hero .button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.hero-panel p {
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 4.5rem 0;
}

.section.band {
  width: 100%;
  background:
    linear-gradient(180deg, rgba(255, 240, 220, 0.94), rgba(255, 255, 255, 0.86)),
    url("../images/bridge-river-sunrise.png") center / cover fixed no-repeat;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
}

.section.band.plain {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.prose {
  font-size: 1.08rem;
  color: var(--muted);
}

.prose p:first-child {
  margin-top: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.feature-grid,
.cta-grid,
.story-grid,
.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.cta-card,
.story-card,
.placeholder-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
  box-shadow: 0 10px 30px rgba(22, 47, 73, 0.08);
}

.feature-card p,
.cta-card p,
.story-card p,
.placeholder-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.cta-card {
  display: block;
  text-decoration: none;
  min-height: 170px;
}

.cta-card span {
  display: block;
  color: var(--green);
  font-weight: 800;
  font-size: 1.15rem;
}

.cta-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow);
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.impact-strip div {
  border-top: 5px solid var(--gold);
  background: var(--surface);
  padding: 1.2rem;
  border-radius: 8px;
}

.stat {
  display: block;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

.contact-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.signup-form,
.contact-form {
  display: grid;
  gap: 0.8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
}

label {
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.75rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 0.7rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.email-directory {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0;
}

.email-directory a {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
}

.email-directory strong {
  color: var(--green);
}

.email-directory span {
  color: var(--muted);
}

.page-hero {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 6rem max(16px, calc((100% - 980px) / 2)) 5rem;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 47, 73, 0.88), rgba(22, 47, 73, 0.5), rgba(22, 47, 73, 0.28)),
    url("../images/bridge-river-sunrise.png") center / cover no-repeat;
}

.donate-hero {
  min-height: calc(88vh - 76px);
  display: grid;
  align-content: center;
  background:
    linear-gradient(90deg, rgba(22, 47, 73, 0.9), rgba(22, 47, 73, 0.5), rgba(212, 111, 50, 0.28)),
    url("../images/open-road-sunrise.png") center / cover no-repeat;
}

.wear-hero {
  background:
    linear-gradient(90deg, rgba(22, 47, 73, 0.9), rgba(22, 47, 73, 0.5), rgba(22, 47, 73, 0.22)),
    url("../images/open-road-sunrise.png") center / cover no-repeat;
}

.write-hero {
  background:
    linear-gradient(90deg, rgba(22, 47, 73, 0.9), rgba(22, 47, 73, 0.58), rgba(212, 111, 50, 0.22)),
    url("../images/bridge-river-sunrise.png") center / cover no-repeat;
}

.donation-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 4.5rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 2rem;
  align-items: stretch;
}

.donation-copy,
.donation-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.donation-copy {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.96), rgba(255, 240, 220, 0.9)),
    url("../images/bridge-river-sunrise.png") center / cover no-repeat;
}

.donation-copy h2 {
  max-width: 720px;
}

.donation-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.donation-card {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: var(--surface);
  border-top: 8px solid var(--gold);
}

.donation-card h3 {
  margin-bottom: 1rem;
  color: var(--green);
}

.donation-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.impact-card {
  min-height: 180px;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(22, 47, 73, 0.08);
}

.impact-card h3 {
  color: var(--clay);
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.impact-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.page-hero > * {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.content-section {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2.5rem 0;
}

.wide-section {
  width: min(1180px, calc(100% - 32px));
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.quote-band {
  width: 100%;
  padding: 4.5rem max(16px, calc((100% - 980px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(22, 47, 73, 0.94), rgba(212, 111, 50, 0.82)),
    url("../images/bridge-river-sunrise.png") center / cover no-repeat;
}

.quote-band blockquote {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

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

.write-copy,
.mailing-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(22, 47, 73, 0.1);
}

.write-copy {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.letter-icon {
  position: relative;
  width: 76px;
  height: 54px;
  margin-bottom: 1rem;
  border: 3px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, var(--soft));
  box-shadow: 0 12px 28px rgba(22, 47, 73, 0.12);
}

.letter-icon::before,
.letter-icon::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 36px;
  height: 3px;
  background: var(--clay);
}

.letter-icon::before {
  left: 7px;
  transform: rotate(34deg);
  transform-origin: left center;
}

.letter-icon::after {
  right: 7px;
  transform: rotate(-34deg);
  transform-origin: right center;
}

.affirmation-list {
  display: grid;
  gap: 0.45rem;
  margin: 1.4rem 0;
  padding: 1.2rem;
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: var(--soft);
}

.affirmation-list p {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.15;
  font-weight: 900;
}

.mailing-card {
  position: sticky;
  top: 100px;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border-top: 8px solid var(--gold);
}

.mailing-card address {
  margin: 0 0 1rem;
  color: var(--ink);
  font-style: normal;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.25;
  font-weight: 900;
  user-select: text;
}

.movement-strip,
.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.movement-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  overflow: hidden;
  padding: 1.2rem;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(22, 47, 73, 0.08), rgba(22, 47, 73, 0.88)),
    url("../images/open-road-sunrise.png") center / cover no-repeat;
}

.movement-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(22, 47, 73, 0.08), rgba(22, 47, 73, 0.88)),
    url("../images/bridge-river-sunrise.png") center / cover no-repeat;
}

.movement-card h3,
.movement-card p {
  margin: 0;
}

.movement-card p {
  color: rgba(255, 255, 255, 0.86);
}

.timeline-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.timeline-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--sunrise));
  color: #1f1608;
  font-size: 1.35rem;
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(22, 47, 73, 0.1);
}

.product-image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms ease;
}

.product-image:hover img {
  transform: scale(1.03);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
}

.product-body p {
  margin: 0;
  color: var(--muted);
}

.price {
  color: var(--green);
  font-weight: 900;
}

.product-support-note {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.product-body .button {
  margin-top: auto;
}

.quote-band cite {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: normal;
  font-weight: 800;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--gold);
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.logo-placeholder {
  display: grid;
  place-items: center;
  min-height: 110px;
  border: 1px dashed var(--sage);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  text-align: center;
  padding: 1rem;
  font-weight: 800;
}

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

.team-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.team-photo {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(180deg, rgba(22, 47, 73, 0.05), rgba(22, 47, 73, 0.74)),
    url("../images/open-road-sunrise.png") center / cover no-repeat;
  color: #fff;
  font-weight: 800;
  text-align: center;
  padding: 1rem;
}

.team-photo-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 18%;
}

.team-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.2rem;
}

.team-body p {
  color: var(--muted);
  margin: 0;
}

.team-title {
  color: var(--green);
  font-weight: 800;
}

.team-body .button {
  margin-top: auto;
}

.team-cta {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.8rem;
  justify-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
}

.team-cta p {
  color: var(--muted);
  margin: 0;
}

.rustin-feature {
  background: var(--paper);
}

.rustin-hero {
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: 5rem max(16px, calc((100% - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(22, 47, 73, 0.9), rgba(22, 47, 73, 0.58), rgba(22, 47, 73, 0.16)),
    url("../images/rustin-founder-hero.png") center / cover no-repeat;
}

.rustin-hero-copy {
  max-width: 640px;
}

.rustin-hero-copy h2 {
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  text-transform: uppercase;
}

.rustin-hero-copy p {
  max-width: 560px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.bio-intro {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.bio-intro img {
  width: 220px;
  height: 220px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 16%;
  box-shadow: var(--shadow);
}

.bio-quote {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(22, 47, 73, 0.94), rgba(212, 111, 50, 0.82)),
    url("../images/bridge-river-sunrise.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.bio-quote p {
  margin: 0.35rem 0;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  line-height: 1.1;
  font-weight: 900;
}

.team-founder-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 6rem max(16px, calc((100% - 1180px) / 2));
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 47, 73, 0.94), rgba(22, 47, 73, 0.62), rgba(22, 47, 73, 0.12)),
    url("../images/rustin-founder-hero.png") center / cover no-repeat;
}

.team-founder-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(0deg, rgba(255, 248, 239, 1), rgba(255, 248, 239, 0));
  pointer-events: none;
}

.team-founder-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.team-founder-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  text-transform: uppercase;
}

.team-hero-line {
  margin: 0.7rem 0 0;
  color: var(--gold);
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: start;
}

.founder-photo-panel {
  position: sticky;
  top: 100px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.founder-photo-panel img {
  display: block;
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center 12%;
}

.founder-story-panel {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(22, 47, 73, 0.1);
}

.founder-quote-box {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(22, 47, 73, 0.96), rgba(212, 111, 50, 0.86)),
    url("../images/bridge-river-sunrise.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.founder-quote-box p {
  margin: 0.35rem 0;
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  line-height: 1.08;
  font-weight: 900;
}

.founder-quote-box cite {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-weight: 800;
}

.why-not-section,
.serve-section {
  width: 100%;
  padding: 6rem max(16px, calc((100% - 1180px) / 2));
  color: #fff;
}

.why-not-section {
  background:
    linear-gradient(90deg, rgba(22, 47, 73, 0.9), rgba(22, 47, 73, 0.46)),
    url("../images/open-road-sunrise.png") center / cover no-repeat;
}

.why-not-copy,
.serve-panel {
  max-width: 780px;
}

.why-not-copy h2,
.serve-panel h2 {
  color: #fff;
}

.why-not-lines {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0;
}

.why-not-lines p,
.why-not-ending p {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.45rem);
  line-height: 1.16;
  font-weight: 900;
}

.why-not-ending {
  display: grid;
  gap: 0.55rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

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

.leadership-card {
  min-height: 310px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-top: 6px solid var(--gold);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 240, 220, 0.75), #fff);
  box-shadow: 0 12px 32px rgba(22, 47, 73, 0.1);
}

.leadership-card p {
  color: var(--muted);
}

.serve-section {
  background:
    linear-gradient(90deg, rgba(22, 47, 73, 0.92), rgba(22, 47, 73, 0.66), rgba(212, 111, 50, 0.5)),
    url("../images/bridge-river-sunrise.png") center / cover no-repeat;
}

.serve-panel {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(22, 47, 73, 0.58);
  backdrop-filter: blur(8px);
}

.serve-panel p {
  font-size: 1.08rem;
}

.final-team-cta {
  text-align: center;
}

.final-team-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.social-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(22, 47, 73, 0.08);
}

.social-link:hover {
  border-color: rgba(212, 111, 50, 0.45);
  background: var(--soft);
}

.social-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.facebook .social-icon {
  background: #1877f2;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  text-transform: none;
}

.linkedin .social-icon {
  background: #0a66c2;
}

.instagram .social-icon {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.tiktok .social-icon {
  background: #111;
}

.follow-section {
  text-align: center;
}

.social-links-large {
  justify-content: center;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.8rem;
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .site-menu a {
    width: 100%;
  }

  .hero,
  .split,
  .contact-preview,
  .two-column,
  .write-section,
  .bio-intro,
  .founder-profile,
  .donation-section,
  .movement-strip,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .rustin-hero {
    min-height: 480px;
    background-position: 62% center;
  }

  .bio-intro img {
    width: min(100%, 260px);
    height: 260px;
  }

  .team-founder-hero {
    min-height: 640px;
    background-position: 64% center;
  }

  .founder-photo-panel {
    position: static;
  }

  .mailing-card {
    position: static;
  }

  .founder-photo-panel img {
    min-height: 420px;
  }

  .feature-grid,
  .cta-grid,
  .story-grid,
  .placeholder-grid,
  .impact-grid,
  .team-grid,
  .leadership-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .site-menu.is-open,
  .feature-grid,
  .cta-grid,
  .story-grid,
  .placeholder-grid,
  .team-grid,
  .leadership-grid,
  .product-grid,
  .impact-strip,
  .logo-wall {
    grid-template-columns: 1fr;
  }

  .hero,
  .section,
  .content-section,
  .wide-section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .hero,
  .page-hero {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .team-founder-hero {
    min-height: 560px;
    padding: 4rem 12px;
    background-position: 68% center;
  }

  .section,
  .section.band {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .founder-story-panel,
  .serve-panel {
    padding: 1.2rem;
  }

  .why-not-section,
  .serve-section {
    padding: 4rem 12px;
  }

  .form-row,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
