@import url("./tokens.css");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.55;
}

/* —— Header (reference: logo row + horizontal nav) —— */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 0.65rem var(--section-pad);
}

.header-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  display: block;
  height: 2.75rem;
  width: auto;
  max-width: min(300px, 55vw);
  object-fit: contain;
}

.brand:focus-visible {
  outline: 2px solid var(--color-action);
  outline-offset: 4px;
  border-radius: 4px;
}

body.is-home .brand-logo {
  height: 3.5rem;
  max-width: min(340px, 58vw);
}

body.is-home .hero-full:not(.hero-compact) {
  min-height: min(62vh, 36rem);
}

body.is-home .hero-top-row {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-bottom: 1rem;
}

body.is-home .hero-top-copy {
  min-width: 0;
}

body.is-home .hero-top-logo {
  flex-shrink: 0;
}

body.is-home .hero-top-logo .hero-logo-link {
  margin: 0;
  max-width: min(22rem, 100%);
}

@media (min-width: 768px) {
  body.is-home .hero-top-row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem 2.5rem;
    margin-bottom: 1.15rem;
  }

  body.is-home .hero-top-copy {
    flex: 1;
    max-width: 36rem;
  }

  body.is-home .hero-top-logo {
    align-self: center;
  }

  body.is-home .hero-top-logo .hero-logo-link {
    margin-left: auto;
    max-width: min(20rem, 36vw);
  }
}

.hero-logo-link {
  display: block;
  width: fit-content;
  max-width: min(26rem, 92vw);
  margin: 0 0 1.35rem;
  line-height: 0;
  text-decoration: none;
  border-radius: 6px;
}

.hero-logo-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.5));
}

.credential-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0 1rem;
}

.credential-strip-img {
  max-width: min(22rem, 100%);
  width: auto;
  height: auto;
  display: block;
  border-radius: 0.35rem;
  box-shadow: 0 4px 28px rgba(46, 38, 32, 0.14);
}

.credential-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 0.85rem var(--section-pad);
}

.credential-bar-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  justify-content: center;
}

.credential-bar .credential-thumb {
  height: 3.35rem;
  width: auto;
  display: block;
  object-fit: contain;
}

.credential-bar-text {
  margin: 0;
  font-size: 0.92rem;
  max-width: 36rem;
  text-align: center;
  line-height: 1.45;
}

.credential-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.credential-card-img {
  flex: 0 0 auto;
  width: 5.75rem;
  height: auto;
  border-radius: 0.3rem;
  box-shadow: 0 2px 12px rgba(46, 38, 32, 0.1);
}

.credential-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.credential-inline-img {
  height: 2.85rem;
  width: auto;
  display: block;
  object-fit: contain;
}

.credential-inline-text {
  margin: 0;
  flex: 1;
  min-width: 12rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: var(--color-text);
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}

.nav a:hover {
  background: var(--color-bg-alt);
  color: var(--color-action);
}

.nav a[aria-current="page"] {
  background: color-mix(in srgb, var(--color-primary-cream) 65%, var(--color-bg-alt));
  color: var(--color-action);
  font-weight: 600;
}

/* —— Page shell —— */
main {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--section-pad) 5rem;
}

.section-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--color-action);
  text-align: center;
}

.section-kicker {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-action-alt);
  margin: 0 0 0.35rem;
}

/* —— Full-bleed hero (reference: large photo band + headline) —— */
.hero-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: min(52vh, 28rem);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--color-primary-2);
  background-image: linear-gradient(
      135deg,
      color-mix(in srgb, var(--color-primary-1) 50%, transparent) 0%,
      color-mix(in srgb, var(--color-primary-2) 65%, var(--color-logo-warm-shadow)) 100%
    ),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.04) 18px,
      rgba(255, 255, 255, 0.04) 36px
    );
  border-bottom: 3px solid var(--color-accent);
}

/* Fallback if color-mix unsupported: solid gradient approximation */
@supports not (color: color-mix(in srgb, white 50%, black)) {
  .hero-full {
    background-image: linear-gradient(
      135deg,
      rgba(90, 117, 96, 0.82) 0%,
      rgba(74, 58, 48, 0.88) 100%
    );
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}

.hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  pointer-events: none;
  z-index: 1;
}

/* Inner pages: shorter hero band */
.hero-full.hero-compact {
  min-height: min(38vh, 16rem);
  align-items: center;
}

.hero-full.hero-compact .hero-content {
  padding-top: var(--section-pad);
}

.hero-full.hero-compact::after {
  background: rgba(45, 38, 32, 0.58);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--section-pad);
  padding-top: 3rem;
}

.hero-eyebrow-slot {
  margin-bottom: 0.5rem;
}

.hero-headline-slot {
  margin-bottom: 0.65rem;
}

.hero-lead-slot {
  margin-bottom: 1rem;
  max-width: 36rem;
}

.hero-pills-slot {
  margin-bottom: 1rem;
}

/* Hero copy (replaces wireframe todo blocks) */
.hero-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92);
}

.hero-heading {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: var(--text-display);
  line-height: 1.12;
  font-weight: 700;
  color: var(--hero-text-on-image);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.hero-lead-text {
  margin: 0 0 1rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.hero-lead-text a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--color-accent) 50%, transparent);
  text-underline-offset: 0.18em;
}

.hero-lead-text a:hover {
  color: var(--color-on-accent);
  text-decoration-color: currentColor;
}

.hero-lead-text a:visited {
  color: var(--color-accent);
}

.hero-lead-text a:focus-visible {
  outline: 2px solid var(--color-on-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

@supports not (color: color-mix(in srgb, white 50%, black)) {
  .hero-lead-text a {
    text-decoration-color: rgba(161, 73, 46, 0.45);
  }
}

.hero-note {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--color-accent);
  border-radius: 0.35rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  line-height: 1.45;
}

.display-headline .todo-title {
  font-family: var(--font-display);
  font-size: var(--text-display);
  line-height: 1.12;
  color: var(--hero-text-on-image);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.display-headline .todo-copy,
.hero-lead-slot .todo-copy,
.hero-eyebrow-slot .todo-copy {
  color: rgba(255, 255, 255, 0.88);
}

.hero-lead-slot .todo {
  background: rgba(255, 255, 255, 0.12);
  border-left-color: var(--color-accent);
}

.hero-eyebrow-slot .todo {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--color-accent);
}

.hero-eyebrow-slot .todo-title {
  color: var(--hero-text-on-image);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* —— Keyword pills (reference: education / support / advocacy row) —— */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pill {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.22);
  color: var(--hero-text-on-image);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* —— Content bands —— */
.band {
  padding: clamp(1.75rem, 5vw, 3rem) 0;
}

.band-alt {
  background: var(--color-bg-alt);
  margin-left: calc(-1 * var(--section-pad));
  margin-right: calc(-1 * var(--section-pad));
  padding-left: var(--section-pad);
  padding-right: var(--section-pad);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* —— Split layout (reference: image + story side by side on desktop) —— */
.split {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1.05fr;
    gap: 2rem;
  }

  .split-reverse {
    direction: rtl;
  }

  .split-reverse > * {
    direction: ltr;
  }

  /* Portrait + bio: narrow image column, text fills remainder */
  .split--headshot {
    grid-template-columns: minmax(0, max-content) minmax(0, 1fr);
    align-items: start;
  }
}

/* —— Cards —— */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 4px 24px rgba(46, 38, 32, 0.06);
}

.card-soft {
  box-shadow: none;
  background: var(--color-surface);
}

/* —— Media placeholders (SVG or final photos) —— */
.section-media {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 2px dashed color-mix(in srgb, var(--color-action-alt) 45%, var(--color-border));
  border-radius: 0.35rem;
  background: var(--color-surface);
}

@supports not (color: color-mix(in srgb, white 50%, black)) {
  .section-media {
    border-color: var(--color-action-alt);
  }
}

.section-media-img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.section-media:not(.section-media--compact):not(.section-media--headshot) .section-media-img {
  aspect-ratio: 4 / 5;
  max-height: 22rem;
}

/* Client headshots: fill frame, trim 10% from bottom of source */
.section-media.section-media--headshot {
  border-style: solid;
  border-color: var(--color-border);
  width: min(20rem, 38vw);
  max-width: 100%;
  margin-inline: auto;
  line-height: 0;
  overflow: hidden;
  /* 9:16 photo, visible window = top 90% */
  aspect-ratio: 5 / 8;
  max-height: min(32rem, 72vh);
}

@media (min-width: 768px) {
  .section-media.section-media--headshot {
    margin-inline: 0;
    width: clamp(12rem, 22vw, 20rem);
  }
}

.section-media.section-media--headshot .section-media-img {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  max-height: none;
  object-fit: cover;
  object-position: top center;
}

.section-media--compact .section-media-img {
  aspect-ratio: 16 / 9;
  max-height: 11rem;
}

.section-media-caption {
  padding: 0.65rem 0.75rem;
  background: color-mix(in srgb, var(--color-window) 42%, var(--color-bg) 58%);
  border-top: 1px solid var(--color-border);
}

@supports not (color: color-mix(in srgb, white 50%, black)) {
  .section-media-caption {
    background: #d4cdc3;
  }
}

.section-media-caption .todo {
  margin: 0;
}

.section-media-caption .todo-title {
  font-size: 0.88rem;
}

.section-media-caption .todo-copy {
  font-size: 0.82rem;
}

.media-caption {
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.4;
}

.prose {
  margin: 0;
  color: var(--color-text);
  line-height: 1.6;
}

.prose + .prose {
  margin-top: 0.85rem;
}

.prose a {
  color: var(--color-action-alt);
  font-weight: 600;
}

.prose-list {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: var(--color-text);
  line-height: 1.55;
}

.prose-list li + li {
  margin-top: 0.45rem;
}

.pull-quote {
  margin: 0.85rem 0 0;
  padding: 0.65rem 0 0;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-action-alt);
}

.offer-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

.offer-blurb {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.offer-badge {
  display: inline-block;
  margin-bottom: 0.4rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--color-primary-ash) 55%, var(--color-primary-cream) 45%);
  color: var(--color-text);
  border-radius: 0.25rem;
}

@supports not (color: color-mix(in srgb, white 50%, black)) {
  .offer-badge {
    background: #d8d0c6;
  }
}

.testimonial-quote {
  margin: 0 0 0.65rem;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text);
}

.testimonial-source {
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.footer-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.footer-text a {
  color: var(--color-accent);
}

.footer-heading {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.legal-line {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.note-centered {
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.form-fields-hint {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.wire-form {
  width: 100%;
  max-width: 28rem;
}

.wire-form label {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
}

.wire-form input,
.wire-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.55rem 0.65rem;
  font: inherit;
  border: 1px solid var(--color-border);
  border-radius: 0.35rem;
  background: var(--color-surface);
}

.wire-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.wire-form .checkbox-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.wire-form .checkbox-row input {
  width: auto;
  margin-top: 0.2rem;
}

.card > .section-media {
  margin-bottom: 1rem;
}

/* —— Todo blocks —— */
.todo {
  border-left: 4px solid var(--color-primary-teal);
  background: color-mix(in srgb, var(--color-primary-cream) 58%, #ffffff 42%);
  padding: 0.85rem 1rem;
  border-radius: 0.35rem;
}

@supports not (color: color-mix(in srgb, white 50%, black)) {
  .todo {
    background: #f4ede4;
  }
}

.todo-title {
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--color-action);
  font-size: 0.95rem;
}

.todo-copy {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.todo code {
  font-size: 0.85em;
  background: color-mix(in srgb, var(--color-primary-teal) 24%, transparent);
  padding: 0.1em 0.35em;
  border-radius: 0.25rem;
}

@supports not (color: color-mix(in srgb, white 50%, black)) {
  .todo code {
    background: rgba(90, 117, 96, 0.28);
  }
}

/* —— Testimonials (reference: quote blocks) —— */
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 1.25rem;
  position: relative;
}

.testimonial::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.55;
  position: absolute;
  top: 0.35rem;
  left: 0.85rem;
}

.testimonial .todo {
  background: transparent;
  border: 0;
  padding: 0.5rem 0 0 1.5rem;
}

.testimonial-body {
  padding: 0.5rem 0 0 1.5rem;
}

/* —— Service / package cards (reference: tiered offers) —— */
.offer-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .offer-grid--2x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.offer-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.offer-card.featured {
  border-color: var(--color-primary-teal);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary-teal) 38%, transparent);
}

@supports not (color: color-mix(in srgb, white 50%, black)) {
  .offer-card.featured {
    box-shadow: 0 0 0 2px rgba(90, 117, 96, 0.45);
  }
}

/* —— Logo / press strip —— */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.logo-placeholder-img {
  height: 2.35rem;
  width: auto;
  display: block;
  opacity: 0.92;
}

/* —— Buttons —— */
.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

@media (min-width: 480px) {
  .cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.button {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
}

.button-primary {
  background: var(--color-button-primary-bg);
  color: var(--color-button-primary-text);
  border-color: var(--color-button-primary-border);
}

.button-primary:hover {
  filter: brightness(1.05);
}

.button-secondary {
  background: transparent;
  border-color: var(--hero-text-on-image);
  color: var(--hero-text-on-image);
}

.hero-full .button-secondary {
  border-color: rgba(255, 255, 255, 0.65);
}

.button-ghost {
  background: var(--color-surface);
  color: var(--color-action);
  border-color: var(--color-action);
}

.mobile-cta-sticky {
  position: sticky;
  bottom: 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 0.65rem var(--section-pad);
  box-shadow: 0 -8px 32px rgba(46, 38, 32, 0.08);
}

.mobile-cta-sticky .cta-row {
  max-width: var(--page-max);
  margin: 0 auto;
  justify-content: center;
}

/* —— Footer (reference: columns + legal) —— */
.site-footer {
  background: var(--color-footer-bg);
  color: rgba(255, 255, 255, 0.88);
  padding: 2rem var(--section-pad);
  margin-top: 0;
  border-top: 0;
}

.footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .footer-inner {
    grid-template-columns: 2.2fr 0.7fr;
  }
}

.site-footer .todo {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--color-primary-teal);
}

.site-footer .todo-title {
  color: #fff;
}

.site-footer .todo-copy {
  color: rgba(255, 255, 255, 0.75);
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

/* —— Contact page form shell —— */
.responsive-iframe iframe {
  width: 100%;
  aspect-ratio: 640 / 800; /* original width/height */
  height: auto;
  border: 0;
  display: block;
}
.responsive-iframe {
  max-width: 1200px; /* optional constraint */
  margin: 0 auto;
}

.form-shell {
  border: 2px dashed var(--color-border);
  border-radius: 0.5rem;
  min-height: 14rem;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.form-shell .todo {
  max-width: 32rem;
  width: 100%;
}

.hero-photo-todo {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border-left-color: var(--color-accent);
}

.hero-photo-todo .todo-title {
  color: #fff;
}

.hero-photo-todo .todo-copy {
  color: rgba(255, 255, 255, 0.85);
}

.pills-intro-todo {
  margin-bottom: 0.5rem;
}

.card .todo + .todo {
  margin-top: 0.75rem;
}

.services-cta-wrap {
  text-align: center;
  margin-top: 1.25rem;
}

.stack-top {
  margin-top: 1rem;
}
