:root {
  --navy: #0b1f3a;
  --navy-deep: #071528;
  --red: #b22234;
  --red-hot: #c8102e;
  --cream: #f7f4ef;
  --white: #ffffff;
  --muted: #5c6b7a;
  --gold: #c4a35a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.45;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
img { max-width: 100%; height: auto; }

/* NAV */
header {
  background: var(--navy-deep);
  color: var(--white);
  position: sticky; top: 0; z-index: 10;
  border-bottom: 3px solid var(--red);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 90px; gap: 16px;
}
.brand {
  display: flex; align-items: center; flex-shrink: 0;
}
.brand img {
  height: 58px; width: auto; display: block;
}
.nav-toggle {
  display: none;
  background: transparent; border: 2px solid rgba(255,255,255,0.5);
  color: white; padding: 8px 12px; font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  border-radius: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 18px;
}
nav ul {
  display: flex; gap: 18px; list-style: none; font-size: 13px;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
nav a:hover { color: var(--gold); }
nav a.active { color: var(--gold); }
.btn-donate {
  background: var(--red-hot); color: white; padding: 10px 18px;
  font-weight: 700; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 2px; white-space: nowrap;
}
.btn-donate:hover { background: var(--red); }

/* HERO */
.hero {
  position: relative;
  background: linear-gradient(135deg, #071528 0%, #0b1f3a 55%, #1a2540 100%);
  color: var(--white);
  min-height: 620px;
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  grid-template-areas: "copy .";
  gap: 40px;
  align-items: center;
  padding-top: 72px; padding-bottom: 80px;
  width: 100%;
}
.hero-copy { max-width: 560px; grid-area: copy; }
/* Convention photo: full-bleed on the right, edges faded into the navy */
.hero-photo {
  position: absolute;
  z-index: 1;
  top: 0; right: 0; bottom: 0;
  width: 62%;
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.35) 14%, #000 34%),
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 72%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.35) 14%, #000 34%),
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 72%, transparent 100%);
  mask-composite: intersect;
}
.hero-photo picture { display: block; width: 100%; height: 100%; }
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 22%;
  display: block;
}
/* subtle navy wash so the photo sits in the page's color */
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(7,21,40,0.55) 0%, rgba(7,21,40,0) 45%),
              linear-gradient(to top, rgba(11,31,58,0.35) 0%, rgba(11,31,58,0) 40%);
}
.hero-inner { padding: 80px 0 90px; max-width: 720px; }
.eyebrow {
  color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px;
}
.hero h1 {
  font-size: 52px; line-height: 1.05; font-weight: 800;
  margin-bottom: 22px; letter-spacing: -0.02em;
}
.hero p.stakes {
  font-size: 19px; line-height: 1.5; color: rgba(255,255,255,0.92);
  max-width: 620px; margin-bottom: 32px; font-weight: 400;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--red-hot); color: white; padding: 14px 26px;
  font-weight: 800; font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase; border-radius: 2px; display: inline-block;
}
.btn-primary:hover { background: var(--red); }
.btn-ghost {
  border: 2px solid rgba(255,255,255,0.7); color: white;
  padding: 12px 24px; font-weight: 700; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase; border-radius: 2px;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-dark {
  border: 2px solid var(--navy); color: var(--navy);
  padding: 12px 24px; font-weight: 700; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase; border-radius: 2px;
  display: inline-block;
}
.btn-ghost-dark:hover { background: var(--navy); color: white; }

/* PILLARS */
.pillars {
  background: var(--white);
  padding: 56px 0 20px;
  border-bottom: 1px solid #e6e0d6;
}
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.pillar h3 {
  font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.pillar p { font-size: 16px; color: var(--navy); font-weight: 600; }

/* SECTIONS */
.issues, .page-section { padding: 70px 0; }
.section-label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); font-weight: 800; margin-bottom: 10px;
}
.section-title {
  font-size: 34px; font-weight: 800; margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-lead {
  font-size: 17px; color: var(--muted); max-width: 720px; margin-bottom: 40px;
}
.issue-group { margin-bottom: 36px; }
.issue-group h3 {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); border-left: 4px solid var(--gold);
  padding-left: 12px; margin-bottom: 16px;
}
.issue-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.card {
  background: var(--white); border: 1px solid #e4ddd2;
  padding: 20px 22px; border-radius: 3px;
}
.card h4 {
  font-size: 16px; font-weight: 800; margin-bottom: 8px;
}
.card p { font-size: 14.5px; color: var(--muted); line-height: 1.45; }
.more-link {
  margin-top: 8px; display: inline-block;
  font-weight: 800; font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--red);
}
.more-link:hover { color: var(--red-hot); }

/* ABOUT */
.about {
  background: var(--navy);
  color: var(--white);
  padding: 70px 0;
}
.about .section-label { color: var(--gold); }
.about .section-title { color: white; max-width: 720px; }
.about p {
  font-size: 17px; color: rgba(255,255,255,0.88);
  max-width: 680px; margin-bottom: 16px; line-height: 1.55;
}
.about-layout {
  display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start;
}
.photo-ph {
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.35);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px;
  text-align: center; padding: 20px;
}
.about-photo {
  border-radius: 4px; overflow: hidden;
  aspect-ratio: 4 / 5; max-height: 420px;
  background: #0a1830;
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
  display: block;
}
.about .about-photo { border: 1px solid rgba(255,255,255,0.12); }

.photo-ph.light {
  background: #ebe6dc;
  border-color: #c9c0b0;
  color: var(--muted);
  min-height: 240px;
}

/* DONATE BAND */
.donate {
  background: var(--red-hot);
  color: white;
  padding: 48px 0;
  text-align: center;
}
.donate h2 {
  font-size: 28px; font-weight: 800; margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.donate p { font-size: 16px; margin-bottom: 22px; opacity: 0.95; }
.donate .btn-primary {
  background: white; color: var(--red-hot);
}
.donate .btn-primary:hover { background: var(--cream); }

/* JOIN */
.join { padding: 70px 0; background: var(--white); }
.roles {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  margin-top: 28px;
}
.role {
  border: 2px solid var(--navy);
  padding: 22px 12px; text-align: center;
  font-weight: 800; font-size: 13px; letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: center;
  min-height: 68px; cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}
.role:hover, .role:focus-visible { background: var(--navy); color: white; }

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--navy);
  color: white;
  padding: 56px 0 48px;
}
.page-hero .section-label { color: var(--gold); }
.page-hero h1 {
  font-size: 40px; font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 12px; max-width: 780px;
}
.page-hero p {
  font-size: 18px; color: rgba(255,255,255,0.88); max-width: 700px;
}

/* NEWS */
.news-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-top: 28px;
}
.news-card {
  background: var(--white); border: 1px solid #e4ddd2;
  padding: 24px; border-radius: 3px; position: relative;
}
.mock-tag {
  display: inline-block; background: var(--gold); color: var(--navy-deep);
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 8px; margin-bottom: 12px;
}
.coming-soon {
  text-align: center; padding: 48px 24px;
  background: var(--white); border: 1px dashed #c9c0b0;
  color: var(--muted); font-size: 18px; font-weight: 600;
  margin-bottom: 28px;
}

/* CONTACT / FORMS PLACEHOLDER */
.form-ph {
  background: var(--white); border: 1px solid #e4ddd2;
  padding: 28px; border-radius: 3px; max-width: 560px;
}
.form-ph label {
  display: block; font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 6px; margin-top: 16px;
}
.form-ph label:first-child { margin-top: 0; }
.form-ph input, .form-ph textarea, .form-ph select {
  width: 100%; padding: 12px 14px; border: 1px solid #d4cdc2;
  font-size: 15px; font-family: inherit; background: var(--cream);
  border-radius: 2px;
}
.form-ph textarea { min-height: 120px; resize: vertical; }
.form-ph .note {
  font-size: 13px; color: var(--muted); margin-top: 18px; line-height: 1.5;
}
.form-ph button[disabled] {
  margin-top: 20px; background: #9aa3ad; color: white;
  padding: 12px 22px; border: none; font-weight: 800;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 2px; cursor: not-allowed;
}

.prose p { font-size: 17px; line-height: 1.6; margin-bottom: 18px; max-width: 720px; color: var(--navy); }
.prose .lead { font-size: 20px; font-weight: 700; }
.prose ul {
  margin: 0 0 18px 1.25em; max-width: 720px; color: var(--navy);
  font-size: 17px; line-height: 1.6;
}
.prose li { margin-bottom: 6px; }
.privacy-prose p strong { font-weight: 700; }
.prose h4 {
  font-size: 18px; font-weight: 800; color: var(--navy);
  margin: 28px 0 12px; max-width: 720px;
}



footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.65);
  padding: 28px 0; font-size: 12px; text-align: center;
}
footer a { color: var(--gold); }
footer a:hover { text-decoration: underline; }
.mock-banner {
  display: block; margin-top: 10px; color: var(--gold);
  font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.footer-nav {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin: 0 0 8px; font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { height: 78px; }
  .brand { min-width: 0; flex: 1 1 auto; }
  .brand img { height: 56px; max-width: 100%; }
  .nav-toggle { display: block; flex-shrink: 0; }
  .nav-links {
    display: none;
    position: absolute; top: 78px; left: 0; right: 0;
    background: var(--navy-deep); flex-direction: column;
    align-items: stretch; padding: 16px 28px 24px;
    border-bottom: 3px solid var(--red); gap: 0;
  }
  .nav-links.open { display: flex; }
  nav ul {
    flex-direction: column; gap: 0;
  }
  nav ul li { border-bottom: 1px solid rgba(255,255,255,0.1); }
  nav ul li a { display: block; padding: 14px 0; }
  .nav-links .btn-donate {
    margin-top: 16px; text-align: center; display: block;
  }
  .hero h1 { font-size: 36px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 20px; }
  .issue-cards { grid-template-columns: 1fr; }
  .roles { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 30px; }
  .section-title { font-size: 28px; }
}
@media (max-width: 480px) {
  .nav { padding-left: 20px; padding-right: 20px; gap: 10px; }
  .brand img { width: 100%; height: auto; max-height: 56px; }
  .nav-toggle { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 520px) {
  .roles { grid-template-columns: 1fr; }
  .hero-inner { padding: 48px 0 56px; }
}
@media (min-width: 861px) and (max-width: 1100px) {
  .hero-copy { max-width: 500px; }
  .hero h1 { font-size: 40px; }
}
@media (max-width: 860px) {
  .hero { min-height: 0; display: block; }
  .hero-photo {
    position: relative;
    width: 100%;
    height: 400px;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 96%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 96%);
    -webkit-mask-composite: source-over;
    mask-composite: add;
  }
  .hero-photo img { object-position: 58% 20%; }
  .hero-photo::after {
    background: linear-gradient(to top, rgba(11,31,58,0.5) 0%, rgba(11,31,58,0) 45%);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "copy";
    padding-top: 0; padding-bottom: 52px;
    margin-top: -28px;
  }
}
@media (max-width: 520px) {
  .hero-photo { height: 340px; }
  .hero h1 { font-size: 31px; }
  .hero .eyebrow { letter-spacing: 0.1em; font-size: 11px; }
}

/* JOIN FORM */
.join-form { max-width: 720px; margin-top: 28px; }
.interest-fieldset {
  border: none; padding: 0; margin: 0 0 28px;
}
.interest-fieldset legend {
  font-weight: 800; font-size: 15px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 14px;
}
.interest-fieldset .hint {
  font-weight: 500; text-transform: none; letter-spacing: 0;
  color: var(--muted); font-size: 14px;
}
.roles-check {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.role-check {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--navy); color: var(--navy);
  padding: 10px 14px; font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; background: var(--white); user-select: none;
}
.role-check:has(input:checked) {
  background: var(--navy); color: white;
}
.role-check input { width: 16px; height: 16px; accent-color: var(--red-hot); }
.join-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px;
  margin-bottom: 20px;
}
.join-fields .field { display: flex; flex-direction: column; gap: 6px; }
.join-fields label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy);
}
.join-fields .req { color: var(--red); }
.join-fields input {
  padding: 12px 14px; border: 1px solid #d4cdc2; border-radius: 2px;
  font-size: 16px; font-family: inherit; color: var(--navy);
  background: var(--white);
}
.join-fields input:focus {
  outline: 2px solid var(--navy); outline-offset: 1px;
}
.consent {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; line-height: 1.45; color: var(--muted);
  margin-bottom: 22px; max-width: 720px;
}
.consent input { margin-top: 3px; flex-shrink: 0; accent-color: var(--red-hot); }
.consent a { color: var(--navy); text-decoration: underline; }
.join-form .btn-primary { border: none; cursor: pointer; font-family: inherit; }
.join-form .btn-primary:disabled { opacity: 0.6; cursor: wait; }
.form-status {
  margin-bottom: 14px; padding: 12px 14px; font-size: 14px; font-weight: 600;
  border-radius: 2px; max-width: 720px;
}
.form-status.ok { background: #e8f5e9; color: #1b5e20; }
.form-status.err { background: #fdecea; color: #8b1a1a; }
.hp {
  position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0;
}
@media (max-width: 700px) {
  .join-fields { grid-template-columns: 1fr; }
}

.join-fields textarea {
  padding: 12px 14px; border: 1px solid #d4cdc2; border-radius: 2px;
  font-size: 16px; font-family: inherit; color: var(--navy);
  background: var(--white); resize: vertical; min-height: 140px;
}
.join-fields textarea:focus {
  outline: 2px solid var(--navy); outline-offset: 1px;
}
.hint-inline {
  font-weight: 500; text-transform: none; letter-spacing: 0;
  color: var(--muted); font-size: 12px;
}

/* SOCIAL */
.social-links {
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.social-icon {
  width: 38px; height: 38px; display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid var(--navy); border-radius: 50%;
  color: var(--navy); background: rgba(11,31,58,0.04);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.social-icon:hover, .social-icon:focus-visible {
  background: var(--red-hot); border-color: var(--red-hot); color: white;
  text-decoration: none;
}
.social-icon svg { width: 18px; height: 18px; display: block; fill: currentColor; }
footer .social-icon {
  border-color: rgba(255,255,255,0.45); color: white; background: rgba(255,255,255,0.04);
}
.footer-social { margin: 16px 0 14px; }
.contact-social { max-width: 720px; margin: 28px 0 34px; }
.contact-social h2 { font-size: 22px; margin-bottom: 4px; }
.contact-social p { color: var(--muted); margin-bottom: 14px; }
.contact-social .social-links { justify-content: flex-start; }

/* FOLLOW STRIP */
.follow {
  background: var(--navy); color: white; padding: 58px 0 62px; text-align: center;
}
.follow .section-label { color: var(--gold); }
.follow h2 { font-size: 32px; margin-bottom: 8px; }
.follow > .wrap > p { color: rgba(255,255,255,0.86); font-size: 17px; }
.follow-links {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px; max-width: 820px; margin: 28px auto 0;
}
.follow-link {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 62px; padding: 14px 12px;
  border: 2px solid rgba(255,255,255,0.72); color: white;
  font-size: 13px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; border-radius: 2px;
  transition: background 160ms ease, border-color 160ms ease;
}
.follow-link svg { width: 22px; height: 22px; display: block; fill: currentColor; }
.follow-link:hover, .follow-link:focus-visible {
  background: var(--red-hot); border-color: var(--red-hot); color: white;
  text-decoration: none;
}

@media (max-width: 520px) {
  .follow { padding: 46px 0 50px; }
  .follow h2 { font-size: 28px; }
  /* Equal boxes on mobile: 6 tracks, each box spans 2 -> 3 on top, 2 centered below */
  .follow-links { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
  .follow-link {
    grid-column: span 2; min-width: 0;
    flex-direction: column; gap: 6px;
    min-height: 72px; padding: 10px 4px;
    font-size: 11px; letter-spacing: 0.03em;
  }
  .follow-link:nth-child(4) { grid-column: 2 / span 2; }
  .follow-link:nth-child(5) { grid-column: 4 / span 2; }
  .follow-link svg { width: 20px; height: 20px; }
}
@media (max-width: 340px) {
  .follow-links { gap: 8px; }
  .follow-link { font-size: 10px; letter-spacing: 0.02em; }
}

/* BIO PHOTO (about page) */
.about-full .prose p { max-width: none; }
.bio-photo {
  float: left; width: 42%; margin: 6px 28px 18px 0;
}
.bio-photo img {
  display: block; width: 100%; height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(11,31,58,0.18), 0 2px 6px rgba(11,31,58,0.10);
}
.bio-photo figcaption {
  margin-top: 10px; padding-left: 10px;
  border-left: 3px solid var(--red);
  font-size: 14px; font-weight: 600; color: var(--muted); line-height: 1.4;
}
.prose::after { content: ""; display: table; clear: both; }
@media (max-width: 640px) {
  .bio-photo { float: none; width: 100%; margin: 4px 0 24px; }
}

/* HOME ABOUT: Abbott photo as a full-bleed background, blended like the hero */
.about--bleed {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 0; min-height: 600px;
  display: flex; align-items: center;
}
.about-bleed-inner { position: relative; z-index: 2; width: 100%; padding-top: 84px; padding-bottom: 84px; }
.about-bleed-copy { max-width: 470px; }
/* Right-anchored photo layer. aspect-ratio + max-height keep both faces and the
   handshake in frame at every width; when the section is taller than the layer,
   the faded top/bottom edges melt into the navy, so no boundary shows. */
.about-bleed-photo {
  position: absolute; z-index: 1;
  right: 0; top: 50%; transform: translateY(-50%);
  width: min(60%, 1000px); aspect-ratio: 3 / 2; max-height: 100%;
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.35) 12%, #000 30%),
    linear-gradient(to bottom, transparent 0%, #000 13%, #000 87%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.35) 12%, #000 30%),
    linear-gradient(to bottom, transparent 0%, #000 13%, #000 87%, transparent 100%);
  mask-composite: intersect;
}
.about-bleed-photo picture { display: block; width: 100%; height: 100%; }
.about-bleed-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 0% 45%;
  display: block;
}
/* light navy wash so the photo sits in the section's colour */
.about-bleed-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,31,58,0.45) 0%, rgba(11,31,58,0) 30%),
              rgba(11,31,58,0.10);
}
@media (max-width: 900px) {
  .about--bleed { display: block; min-height: 0; }
  .about-bleed-photo {
    position: relative; top: auto; transform: none;
    width: 100%; aspect-ratio: 3 / 2; max-height: 560px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 9%, #000 86%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 9%, #000 86%, transparent 100%);
    -webkit-mask-composite: source-over;
    mask-composite: add;
  }
  .about-bleed-photo img { object-position: 60% 0%; }
  .about-bleed-photo::after {
    background: linear-gradient(to top, rgba(11,31,58,0.5) 0%, rgba(11,31,58,0) 22%), rgba(11,31,58,0.08);
  }
  .about-bleed-inner { padding-top: 8px; padding-bottom: 60px; }
  .about-bleed-copy { max-width: 680px; }
}
