@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600;8..60,700&display=swap");

:root {
  --espresso: #1a1210;
  --espresso-deep: #120c0a;
  --terracotta: #b85a2a;
  --amber: #c9963f;
  --amber-soft: rgba(201, 150, 63, 0.22);
  --olive: #4f5d38;
  --sand: #f1e8dc;
  --cream: #faf7f2;
  --paper: #fffdf9;
  --ink: #2a211c;
  --muted: #6a5c52;
  --line: #ddd0c2;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 48px rgba(26, 18, 16, 0.09);
  --shadow-lift: 0 22px 56px rgba(26, 18, 16, 0.14);
  --max: 1080px;
  --font-sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(184, 136, 58, 0.12), transparent 55%),
    radial-gradient(800px 400px at 100% 8%, rgba(184, 90, 42, 0.08), transparent 50%),
    var(--cream);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-size: 1.02rem;
}
a { color: var(--terracotta); text-underline-offset: 0.15em; }
a:hover { color: var(--espresso); }
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--espresso); color: white; padding: 0.5rem 1rem;
}
.skip:focus { left: 0; z-index: 20; }
.wrap { width: min(100% - 2.25rem, var(--max)); margin-inline: auto; }

.top {
  position: sticky; top: 0; z-index: 10;
  background: linear-gradient(180deg, var(--espresso-deep), var(--espresso));
  border-bottom: 1px solid rgba(201, 150, 63, 0.28);
  box-shadow: 0 10px 28px rgba(18, 12, 10, 0.35);
}
.top-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; padding: 0.85rem 0;
}
.brand { text-decoration: none; display: flex; align-items: center; }
.logo-lockup {
  display: block; height: 72px; width: auto; max-width: min(340px, 70vw);
  object-fit: contain; border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(201, 150, 63, 0.18), 0 8px 28px rgba(0, 0, 0, 0.35);
}
nav { display: flex; flex-wrap: wrap; gap: 1.15rem; align-items: center; }
nav a {
  text-decoration: none; color: #e8d5c4; font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
nav a:hover { color: var(--amber); }

.hero {
  padding: 4.6rem 0 3.4rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.4fr 0.9fr;
    align-items: end;
    gap: 2.4rem;
  }
  .hero-main { grid-column: 1; }
  .hero > .hero-aside { grid-column: 2; } /* only when aside is a direct hero child */
  .hero-with-visual { align-items: start; }
  .hero-with-visual .hero-media-stack { grid-column: 2; }
}

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.7rem; color: var(--amber); font-weight: 700; margin: 0 0 1.1rem;
}
h1 {
  margin: 0 0 0.55rem; color: var(--espresso);
  font-family: var(--font-serif);
  font-size: clamp(2.05rem, 4vw, 3.05rem); line-height: 1.15; font-weight: 600;
  max-width: 22ch;
}
h1::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 2px;
  margin: 1.05rem 0 1.25rem;
  background: linear-gradient(90deg, var(--amber), transparent);
  box-shadow: 0 0 12px var(--amber-soft);
}
.lede { font-size: 1.14rem; max-width: 52ch; color: var(--ink); margin: 0 0 1.65rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin: 0 0 1.45rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.88rem 1.35rem; border-radius: 999px; text-decoration: none;
  font-weight: 650; font-size: 0.95rem; border: 1px solid transparent; cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.btn.primary {
  background: linear-gradient(180deg, #2c1c16, var(--espresso));
  color: var(--cream);
  border-color: rgba(201, 150, 63, 0.35);
  box-shadow: 0 10px 24px rgba(26, 18, 16, 0.22);
}
.btn.primary:hover { background: var(--terracotta); color: white; border-color: transparent; }
.btn.ghost {
  background: rgba(255, 253, 249, 0.72); border-color: var(--line); color: var(--espresso);
}
.btn.ghost:hover { border-color: var(--amber); color: var(--terracotta); box-shadow: var(--shadow); }

.hero-aside {
  background: linear-gradient(165deg, var(--paper), var(--sand));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.55rem 1.55rem 1.45rem;
  box-shadow: var(--shadow-lift);
  position: relative;
}
.hero-aside::before {
  content: "";
  position: absolute; inset: 0 auto 0 0; width: 3px;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(180deg, var(--amber), var(--terracotta));
}
.hero-aside h2 {
  font-family: var(--font-serif);
  font-size: 1.15rem; margin: 0 0 0.85rem; color: var(--espresso);
}
.audience-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; }
.audience-list li {
  display: flex; gap: 0.65rem; align-items: flex-start;
  font-size: 0.94rem; color: var(--ink);
}
.audience-list .tag {
  flex: 0 0 auto; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--olive);
  background: var(--sand); border-radius: 999px; padding: 0.28rem 0.55rem;
  margin-top: 0.1rem;
}

.disclaimer-banner {
  background: var(--sand); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0.95rem 1.1rem; color: var(--espresso);
  max-width: 65ch; font-size: 0.95rem;
  grid-column: 1 / -1;
}

.band {
  background: linear-gradient(180deg, #f3e9dc, #e8dccb);
  padding: 4rem 0;
  border-block: 1px solid var(--line);
}
.section { padding: 4rem 0; }
h2 {
  margin: 0 0 0.65rem; color: var(--espresso);
  font-family: var(--font-serif); font-size: clamp(1.55rem, 2.5vw, 1.9rem); font-weight: 600;
}
h3.subhead {
  margin: 2rem 0 0.55rem; color: var(--espresso);
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600;
}
.section-lede { color: var(--muted); max-width: 58ch; margin: 0 0 0.25rem; font-size: 1.05rem; }

.pullquote {
  margin: 0 0 2rem; padding: 1.4rem 1.5rem 1.4rem 1.35rem;
  border-left: 4px solid var(--terracotta);
  background: var(--paper);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
  max-width: 70ch;
}
.pullquote p {
  margin: 0; font-family: var(--font-serif); font-size: 1.25rem; line-height: 1.45;
  color: var(--espresso); font-weight: 500;
}
.pullquote cite {
  display: block; margin-top: 0.75rem; font-style: normal;
  font-size: 0.88rem; color: var(--muted); font-family: var(--font-sans);
}

.mv-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; margin-top: 1.6rem;
}
@media (max-width: 700px) { .mv-grid { grid-template-columns: 1fr; } }
.mv-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.55rem 1.55rem; box-shadow: var(--shadow);
}
.mv-card p:last-child { margin: 0; color: var(--ink); font-size: 1rem; }
.mv-label {
  margin: 0 0 0.6rem; font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--terracotta);
}

.cards { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.cards.two { grid-template-columns: 1fr 1fr; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 800px) {
  .cards.two, .cards.three, .cards.four { grid-template-columns: 1fr; }
  .nav-desktop { display: none; }
}
@media (min-width: 801px) {
  .nav-mobile { display: none; }
}
.nav-mobile {
  position: relative;
}
.nav-toggle {
  list-style: none;
  cursor: pointer;
  color: #e8d5c4;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 150, 63, 0.35);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
}
.nav-toggle::-webkit-details-marker { display: none; }
.nav-drawer {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: absolute;
  right: 0;
  top: calc(100% + 0.55rem);
  min-width: 14rem;
  padding: 0.9rem 1rem;
  background: var(--espresso-deep);
  border: 1px solid rgba(201, 150, 63, 0.28);
  border-radius: 14px;
  box-shadow: var(--shadow-lift);
  z-index: 30;
}
.nav-drawer a {
  text-decoration: none;
  color: #e8d5c4;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-drawer a:hover { color: var(--amber); }

.cards article {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.45rem 1.45rem; box-shadow: var(--shadow);
  border-top: 3px solid var(--terracotta);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.cards article:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.cards article:nth-child(2) { border-top-color: var(--amber); }
.cards article:nth-child(3) { border-top-color: var(--olive); }
.cards article:nth-child(4) { border-top-color: #8b5a3c; }
.cards h3 {
  margin: 0 0 0.5rem; color: var(--espresso); font-size: 1.08rem;
  font-family: var(--font-serif); font-weight: 600;
}
.cards p { margin: 0; color: var(--muted); font-size: 0.97rem; }

.pathway {
  display: grid; gap: 1.15rem; margin-top: 1.6rem;
}
@media (min-width: 800px) { .pathway { grid-template-columns: 1fr 1fr; } }
.pathway article {
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: 1.5rem 1.55rem; box-shadow: var(--shadow);
}
.pathway .who {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cream); background: var(--espresso);
  border-radius: 999px; padding: 0.3rem 0.65rem; margin-bottom: 0.85rem;
}
.pathway .who.donor { background: var(--terracotta); }
.pathway h3 {
  font-family: var(--font-serif); margin: 0 0 0.55rem; color: var(--espresso); font-size: 1.25rem;
}
.pathway ul { margin: 0.6rem 0 0; padding-left: 1.15rem; color: var(--muted); }
.pathway li { margin: 0.35rem 0; }

.scale-note {
  margin: 1.6rem 0 0; padding: 1.15rem 1.25rem;
  background: var(--paper); border: 1px solid var(--line);
  border-left: 4px solid var(--olive);
  border-radius: var(--radius); color: var(--ink); max-width: 72ch;
}
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0 1.1rem;
}
@media (max-width: 700px) { .stat-row { grid-template-columns: 1fr; } }
.stat {
  background: var(--paper); border-radius: var(--radius); border: 1px solid var(--line);
  padding: 1.25rem 1rem; text-align: center; box-shadow: var(--shadow);
}
.stat-num {
  display: block; font-size: 2rem; font-weight: 700; color: var(--terracotta);
  font-family: var(--font-serif);
}
.stat-label { color: var(--muted); font-size: 0.9rem; font-weight: 600; }
.fine { color: var(--muted); font-size: 0.88rem; }
.pdf-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 650; text-decoration: none;
  border-bottom: 1px solid rgba(184, 90, 42, 0.35); padding-bottom: 0.1rem;
}
.timeline { list-style: none; padding: 0; margin: 1.1rem 0 0; }
.timeline li {
  padding: 0.95rem 0 0.95rem 1.1rem; border-left: 3px solid var(--amber);
  margin: 0.45rem 0; color: var(--ink); background: rgba(255, 253, 249, 0.6);
  border-radius: 0 12px 12px 0;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 1.75rem; margin-top: 1.4rem;
}
@media (max-width: 750px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  margin-top: 1rem; padding: 1.35rem 1.4rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  max-width: 38ch; box-shadow: var(--shadow);
}
.contact-card p { margin: 0.4rem 0; }
.interest {
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: 1.3rem; box-shadow: var(--shadow); display: grid; gap: 0.75rem;
}
.interest label { display: grid; gap: 0.28rem; font-size: 0.9rem; color: var(--espresso); font-weight: 650; }
.interest input,
.interest select,
.interest textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 0.72rem 0.85rem;
  font: inherit; color: var(--ink); background: var(--cream);
}
.interest textarea { min-height: 7rem; resize: vertical; }
.interest input:focus,
.interest select:focus,
.interest textarea:focus { outline: 2px solid #e2c09a; border-color: var(--terracotta); }
.interest .consent {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-weight: 500; line-height: 1.4;
}
.interest .consent input { width: 1.1rem; height: 1.1rem; flex: 0 0 auto; margin: 0.15rem 0 0; }
.interest .privacy { margin: 0; }
.footer {
  padding: 2.4rem 0 2.8rem; color: var(--cream);
  background: var(--espresso); border-top: 1px solid #3a2820;
}
.footer a { color: #e8c4a8; }
.footer .fine { color: #cbb5a6; }
.footer p { margin: 0.4rem 0; }

.pathway-steps { margin-top: 1.6rem; }


/* Web Steward — mayor/donor hierarchy polish */
.top-inner { padding: 1rem 0; }
.logo-lockup {
  height: 76px;
  max-width: min(360px, 72vw);
}
.hero { padding-top: 5rem; }
.disclaimer-banner {
  max-width: none;
  border-left: 3px solid var(--amber);
  background: linear-gradient(90deg, rgba(241, 232, 220, 0.95), rgba(255, 253, 249, 0.9));
}
.section > h2:first-child,
.band .wrap > h2:first-of-type {
  letter-spacing: -0.01em;
}
.mv-card {
  min-height: 100%;
}
.interest .btn.primary {
  width: 100%;
  margin-top: 0.25rem;
}
@media (max-width: 800px) {
  .logo-lockup { height: 58px; }
  .top-inner { padding: 0.75rem 0; }
}

/* Brand Studio — Gary fix: no clipped bottoms + services block */
html {
  scroll-padding-top: 6.5rem; /* sticky espresso header */
}
body {
  overflow-x: auto;
  min-height: 100%;
}
main {
  overflow: visible;
  padding-bottom: 0.5rem;
}
.section,
.band {
  overflow: visible;
}
.cards,
.pathway,
.pathway-steps,
.mv-grid,
.contact-grid {
  overflow: visible;
}
/* Hover lift without clipping siblings */
.cards article:hover {
  transform: none;
  box-shadow: var(--shadow-lift);
}
.pathway-steps {
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
}
#interest.section,
#contact.band {
  padding-bottom: 4.5rem;
}
.footer {
  padding: 3rem 0 3.6rem;
  overflow: visible;
}
.footer .wrap {
  padding-bottom: 0.25rem;
}

/* When you need a ride — everyday use cases (Story/Web wire copy) */
.services-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.6rem;
}
@media (min-width: 800px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.services-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem 1.4rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--amber);
}
.services-grid article:nth-child(2) { border-top-color: var(--terracotta); }
.services-grid article:nth-child(3) { border-top-color: var(--olive); }
.services-grid h3 {
  margin: 0 0 0.5rem;
  color: var(--espresso);
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
}
.services-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

/* Brand Studio — soft locked-logo watermark (Gary): one mark per section, not tiled */
.hero,
.section,
.band {
  position: relative;
  isolation: isolate;
}
.hero::before,
.section::before,
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* Transparent-bg derivative of locked lockup — same mark, readable on cream */
  background: url("brand/logo-watermark.png") 72% 42% / min(560px, 68vw) no-repeat;
  opacity: 0.14;
  filter: saturate(0.95) contrast(1.05);
}
/* Keep all content above the watermark */
.hero > *,
.section > *,
.band > * {
  position: relative;
  z-index: 1;
}
/* Cards/forms stay fully opaque so type never fights the mark */
.hero-aside,
.mv-card,
.cards article,
.pathway article,
.services-grid article,
.interest,
.contact-card,
.pullquote,
.disclaimer-banner,
.scale-note,
.stat {
  background-color: var(--paper);
}
.disclaimer-banner {
  background: linear-gradient(90deg, rgba(241, 232, 220, 0.98), rgba(255, 253, 249, 0.96));
}
.hero-aside {
  background: linear-gradient(165deg, var(--paper), var(--sand));
}
/* No watermark on espresso footer — readability first */
.footer::before { content: none; }
@media (max-width: 700px) {
  .hero::before,
  .section::before,
  .band::before {
    background-size: min(380px, 82vw);
    background-position: 50% 38%;
    opacity: 0.11;
  }
}

/* Brand Studio — direction C visuals (photo + soft illustration) */
.visual-frame {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-visual {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}
.services-grid article .card-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 0 0.85rem;
  border: 1px solid var(--line);
  display: block;
}
.services-grid article {
  overflow: visible;
  display: flex;
  flex-direction: column;
}
.services-grid article h3,
.services-grid article p {
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
  -webkit-line-clamp: unset;
}
.band-visual,
.section-visual {
  display: block;
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 1.25rem 0 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
@media (min-width: 900px) {
  .hero-with-visual {
    align-items: start;
  }
}


/* Web Steward — direction C hero media + decision-makers stack */
.hero-media-stack {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-width: 0;
}
.hero-with-visual .hero-visual {
  width: 100%;
  height: auto;
  max-height: 260px;
  min-height: 200px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 900px) {
  .hero-with-visual .hero-media-stack { grid-column: 2; }
}

/* Chief — Gary: no cut-off text (2026-09-17) */
html, body { overflow-x: auto; }
.hero, .section, .band, .wrap, main, .cards, .services-grid, .pathway, .mv-grid, .contact-grid, .interest {
  overflow: visible !important;
}
.hero-main, .lede, .mv-card, .cards article, .services-grid article, .pathway article, .pullquote, .disclaimer-banner, .section-lede, .timeline li, .footer {
  overflow: visible !important;
  max-height: none !important;
}
.hero-main h1, .lede, .mv-card p, .cards p, .services-grid p, .pathway p {
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  -webkit-line-clamp: unset !important;
}
.hero-with-visual .hero-visual {
  max-height: 320px;
}
.card-visual {
  max-height: 200px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 899px) {
  .hero-with-visual { display: flex; flex-direction: column; }
  .hero-media-stack { order: 2; }
  .hero-main { order: 1; }
}


/* Web Steward — Gary cut-off text fix (priority) */
.hero,
.hero-main,
.hero-media-stack,
.hero-aside,
.section,
.band,
.wrap,
.cards article,
.pathway article,
.mv-card,
.interest,
.contact-card,
.pullquote,
.timeline,
.disclaimer-banner,
.scale-note {
  overflow: visible !important;
  max-height: none;
}
.hero-with-visual .hero-visual {
  width: 100%;
  height: auto !important;
  max-height: 240px !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero-media-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-content: start;
  min-width: 0;
}
.audience-list li,
.pathway li,
.timeline li,
.lede,
.section-lede,
.mv-card p,
.cards p,
.services-grid p,
.fine,
.privacy {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  -webkit-line-clamp: unset;
  display: block;
}
.audience-list li { display: flex; }
@media (max-width: 800px) {
  .hero-with-visual .hero-visual { max-height: 200px !important; }
  .services-grid article .card-visual { max-height: 140px; aspect-ratio: 16 / 10; }
}

/* Brand Studio — Gary ASAP: images secondary, text never cut off */
.hero-main {
  min-width: 0;
}
.hero-main h1,
.hero-main .lede,
.hero-main .eyebrow {
  overflow: visible !important;
  max-height: none !important;
  white-space: normal !important;
}
/* Cap media so copy wins the fold */
.hero-with-visual .hero-visual {
  max-height: 200px !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover;
  object-position: center 40%;
}
.services-grid article .card-visual,
.card-visual {
  max-height: 120px !important;
  aspect-ratio: 16 / 10 !important;
  height: auto !important;
  flex: 0 0 auto;
}
.services-grid article {
  min-height: 0;
  height: auto !important;
}
.services-grid article h3,
.services-grid article p {
  flex: 0 0 auto;
  overflow: visible !important;
  max-height: none !important;
  display: block !important;
  -webkit-line-clamp: unset !important;
  white-space: normal !important;
}
.band-visual,
.section-visual {
  max-height: 160px !important;
  height: auto !important;
}
.mv-card p,
.pathway article p,
.pathway article ul,
.cards article p,
.pullquote p,
.disclaimer-banner,
.section-lede,
.lede,
.fine,
.privacy,
.timeline li,
.audience-list li {
  overflow: visible !important;
  max-height: none !important;
  -webkit-line-clamp: unset !important;
  text-overflow: unset !important;
  white-space: normal !important;
}
.footer,
.footer .wrap,
.footer p {
  overflow: visible !important;
  max-height: none !important;
  padding-bottom: 0.35rem;
}
@media (max-width: 800px) {
  .hero-with-visual .hero-visual { max-height: 160px !important; }
  .services-grid article .card-visual { max-height: 100px !important; }
  .band-visual, .section-visual { max-height: 120px !important; }
}

/* Brand Studio — Gary priority: #services + #first-pilot type must win */
#services.section,
#first-pilot.band {
  overflow: visible !important;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}
#services .section-lede,
#first-pilot .section-lede,
#first-pilot .fine,
#first-pilot .timeline,
#first-pilot .timeline li {
  overflow: visible !important;
  max-height: none !important;
  white-space: normal !important;
  -webkit-line-clamp: unset !important;
}
/* Smaller thumbs — more room for elegant body copy */
#services .services-grid {
  gap: 1.25rem;
  align-items: stretch;
}
#services .services-grid article {
  padding: 1.15rem 1.2rem 1.35rem;
  overflow: visible !important;
  height: auto !important;
}
#services .card-visual {
  max-height: 88px !important;
  aspect-ratio: 21 / 9 !important;
  margin-bottom: 0.7rem !important;
  object-position: center 35%;
}
#services .services-grid h3 {
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
#services .services-grid p {
  font-size: 0.95rem;
  line-height: 1.55;
  overflow: visible !important;
}
/* Prefer readable cards over 3-up squeeze under ~1100px */
@media (max-width: 1100px) {
  #services .services-grid { grid-template-columns: 1fr; }
  #services .card-visual {
    max-height: 120px !important;
    aspect-ratio: 21 / 9 !important;
  }
}
#first-pilot .stat-row {
  margin-bottom: 1.25rem;
}
#first-pilot .stat {
  overflow: visible !important;
  padding: 1.1rem 0.85rem;
}
#first-pilot .timeline {
  margin-bottom: 0.5rem;
}
#first-pilot .timeline li {
  padding: 1rem 0 1rem 1.15rem;
}

/* Brand Studio — interest form success / error (launch-ready capture) */
.interest-status {
  display: none;
  margin: 0 0 0.85rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--espresso);
}
.interest-status.is-visible { display: block; }
.interest-status.is-success {
  background: linear-gradient(165deg, #f4efe6, var(--sand));
  border-color: rgba(184, 136, 58, 0.45);
  border-left: 3px solid var(--amber);
  box-shadow: var(--shadow);
}
.interest-status.is-error {
  background: #faf3ef;
  border-color: rgba(184, 90, 42, 0.35);
  border-left: 3px solid var(--terracotta);
}
.interest-status strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--espresso);
}
.interest.is-sent .interest-fields,
.interest.is-sent .btn.primary {
  opacity: 0.55;
  pointer-events: none;
}
.interest .btn.primary[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.interest .hp {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}

/* Irresistible pass — interest aside visual */
.interest-aside .interest-invite {
  margin: 0 0 1rem;
  max-height: 160px;
}
.band-visual {
  margin-bottom: 1.25rem;
}
