@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600&family=Montserrat:wght@500;600;700&family=Yeseva+One&display=swap');

:root {
  --crimson: #AD0034;
  --charcoal: #36454F;
  --silver: #E5E4E2;
  --white: #FFFFFF;
  --ivory: #F5F2E7;
  --ink: #222A2F;
  --muted: #657078;
  --max: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4.5rem, 9vw, 8rem);
  --radius: 2px;
  --transition: 180ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Jost', 'Lato', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
p { margin: 0 0 1.15rem; }
ul { margin: 0; padding-left: 1.15rem; }
button, input, textarea { font: inherit; }
::selection { background: var(--crimson); color: var(--white); }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 1000;
  background: var(--white); color: var(--charcoal); padding: .75rem 1rem;
  border: 1px solid var(--silver); text-decoration: none;
}
.skip-link:focus { top: 1rem; }


.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .site-header { position: static; }
}
.container { width: min(var(--max), calc(100% - (2 * var(--gutter)))); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - (2 * var(--gutter)))); margin-inline: auto; }
.section { padding: var(--section) 0; }
.section--ivory { background: var(--ivory); }
.section--charcoal { background: var(--charcoal); color: var(--white); }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--crimson);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow--light { color: #fff; opacity: .86; }
.display {
  margin: 0;
  font-family: 'Yeseva One', Georgia, serif;
  font-size: clamp(2.8rem, 6.3vw, 5.9rem);
  line-height: .99;
  letter-spacing: -.028em;
  font-weight: 400;
  max-width: 980px;
}
.page-title {
  margin: 0;
  font-family: 'Yeseva One', Georgia, serif;
  font-size: clamp(2.55rem, 5.4vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.026em;
  font-weight: 400;
}
.section-title {
  margin: 0 0 1.5rem;
  font-family: 'Yeseva One', Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 400;
}
.sub-title {
  margin: 0 0 .65rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .015em;
}
.lede { font-size: clamp(1.13rem, 1.75vw, 1.38rem); line-height: 1.55; color: #3f494f; max-width: 850px; }
.lede--light { color: rgba(255,255,255,.82); }
.muted { color: var(--muted); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.header-inner {
  min-height: 84px; display: flex; align-items: center; gap: 2rem; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 1 330px; }
.brand img { width: min(310px, 100%); height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.site-nav a {
  color: var(--white); text-decoration: none; font-family: 'Montserrat', Arial, sans-serif;
  font-size: .77rem; font-weight: 600; letter-spacing: .055em; white-space: nowrap;
}
.site-nav a:not(.btn)::after {
  content: ''; display: block; width: 0; height: 1px; background: var(--white); transition: width var(--transition); margin-top: .3rem;
}
.site-nav a:not(.btn):hover::after, .site-nav a[aria-current="page"]::after { width: 100%; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.25); background: transparent; color: #fff;
  align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  width: 18px; height: 1px; background: currentColor; display: block; position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 46px; padding: .78rem 1.15rem; border: 1px solid var(--crimson);
  background: var(--crimson); color: var(--white); text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif; font-size: .75rem; line-height: 1.1; font-weight: 700; letter-spacing: .05em;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { background: #8f002b; border-color: #8f002b; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--outline:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--outline-light:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.text-link {
  display: inline-block; margin-top: .5rem; color: var(--crimson); text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif; font-size: .76rem; font-weight: 700; letter-spacing: .045em;
}
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.hero { background: var(--ivory); border-bottom: 1px solid var(--silver); }
.hero-inner {
  min-height: clamp(600px, 77vh, 820px);
  display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(240px, .7fr); gap: clamp(3rem, 7vw, 8rem); align-items: center;
  padding-block: clamp(5rem, 10vw, 8rem);
}
.hero-copy { max-width: 880px; }
.hero-copy .display { max-width: 870px; }
.hero-copy .lede { margin-top: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-art { justify-self: end; width: min(300px, 100%); position: relative; }
.hero-art::before, .hero-art::after {
  content: ''; position: absolute; border: 1px solid rgba(54,69,79,.2); pointer-events: none;
}
.hero-art::before { inset: -24px 24px 24px -24px; }
.hero-art::after { inset: 28px -28px -28px 28px; }
.hero-art img { position: relative; z-index: 1; width: 100%; }

.page-hero { background: var(--ivory); border-bottom: 1px solid var(--silver); }
.page-hero .container { padding-top: clamp(5rem, 9vw, 8rem); padding-bottom: clamp(4.5rem, 8vw, 7rem); }
.page-hero .lede { margin-top: 1.7rem; }

.split-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0; border-top: 1px solid var(--silver); border-bottom: 1px solid var(--silver); }
.offer { padding: clamp(2rem, 4vw, 3.5rem); position: relative; }
.offer + .offer { border-left: 1px solid var(--silver); }
.offer-number { color: var(--crimson); font-family: 'Montserrat', Arial, sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .12em; }
.offer h3 { margin: .8rem 0 .45rem; font-family: 'Yeseva One', Georgia, serif; font-size: clamp(1.7rem, 2.6vw, 2.45rem); line-height: 1.13; font-weight: 400; }
.offer-kicker { font-family: 'Montserrat', Arial, sans-serif; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--muted); }
.meta-line { margin: 1.1rem 0 0; }
.meta-label { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: .78rem; letter-spacing: .03em; color: var(--charcoal); }
.decision { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--silver); font-family: 'Yeseva One', Georgia, serif; font-size: 1.35rem; line-height: 1.35; }

.alignment { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.alignment .section-title { max-width: 430px; }
.model-list { display: grid; gap: 1.2rem; margin-top: 2rem; }
.model-item { padding-top: 1.2rem; border-top: 1px solid var(--silver); }
.model-item strong { font-family: 'Montserrat', Arial, sans-serif; font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; }

.expertise-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0; margin-top: 2.5rem; border-top: 1px solid var(--silver); border-bottom: 1px solid var(--silver); }
.expertise-item { padding: 2rem 1.5rem 2rem 0; }
.expertise-item + .expertise-item { border-left: 1px solid var(--silver); padding-left: 1.5rem; }
.expertise-item h3 { margin: 0 0 .8rem; font-family: 'Montserrat', Arial, sans-serif; font-size: .9rem; line-height: 1.4; }
.expertise-item p { margin: 0; color: #4a555d; font-size: .98rem; }

.cta-band { background: var(--charcoal); color: var(--white); }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
.cta-inner h2 { margin: 0 0 .65rem; font-family: 'Yeseva One', Georgia, serif; font-size: clamp(2rem, 4.1vw, 3.8rem); font-weight: 400; line-height: 1.06; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.75); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: flex-end; }

.detail-intro { max-width: 880px; }
.core-question { margin: 1.8rem 0 0; padding: 1.3rem 0 0; border-top: 1px solid var(--silver); font-family: 'Yeseva One', Georgia, serif; font-size: clamp(1.45rem, 2.6vw, 2.2rem); line-height: 1.3; }
.question-list { margin-top: 2rem; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .7rem 2.4rem; padding: 0; list-style: none; }
.question-list li { position: relative; padding-left: 1rem; border-bottom: 1px solid var(--silver); padding-bottom: .8rem; }
.question-list li::before { content: ''; position: absolute; left: 0; top: .72em; width: 5px; height: 5px; background: var(--crimson); }
.pillar-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin-top: 2.7rem; border-top: 1px solid var(--silver); border-bottom: 1px solid var(--silver); }
.pillar { padding: 1.8rem 1.35rem 1.8rem 0; }
.pillar + .pillar { border-left: 1px solid var(--silver); padding-left: 1.35rem; }
.pillar h3 { margin: 0 0 .7rem; font-family: 'Montserrat', Arial, sans-serif; font-size: .86rem; }
.pillar p { margin: 0; font-size: .98rem; color: #4a555d; }
.outcome { margin-top: 2rem; padding: 1.5rem; border-left: 3px solid var(--crimson); background: var(--ivory); }
.outcome strong { display: block; font-family: 'Montserrat', Arial, sans-serif; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.transition-band { background: var(--ivory); border-block: 1px solid var(--silver); }
.transition-band p { margin: 0; font-family: 'Yeseva One', Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.7rem); line-height: 1.25; max-width: 980px; }
.result-list { columns: 2; column-gap: 3rem; margin-top: 1rem; }
.result-list li { break-inside: avoid; margin-bottom: .8rem; }

.about-lead { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 6rem); }
.about-lead .section-title { max-width: 420px; }
.who-expertise { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0; border-top: 1px solid var(--silver); }
.who-expertise article { padding: 2rem 2rem 2rem 0; border-bottom: 1px solid var(--silver); }
.who-expertise article:nth-child(even) { border-left: 1px solid var(--silver); padding-left: 2rem; }
.who-expertise h3 { margin: 0 0 .75rem; font-family: 'Montserrat', Arial, sans-serif; font-size: .92rem; }
.who-expertise p { margin: 0; color: #4a555d; }

.contact-grid { display: grid; grid-template-columns: 1.45fr .75fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.1rem; }
.form-field { display: grid; gap: .45rem; }
.form-field--full { grid-column: 1 / -1; }
label { font-family: 'Montserrat', Arial, sans-serif; font-size: .76rem; font-weight: 700; letter-spacing: .045em; text-transform: uppercase; }
input, textarea {
  width: 100%; border: 1px solid #c9cdcf; border-radius: 0; background: #fff; color: var(--ink); padding: .92rem 1rem; outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
textarea { min-height: 180px; resize: vertical; }
input:focus, textarea:focus { border-color: var(--crimson); box-shadow: 0 0 0 3px rgba(173,0,52,.08); }
.form-note { font-size: .88rem; color: var(--muted); margin-top: .75rem; }
.form-status { min-height: 1.5rem; margin-top: .9rem; font-size: .92rem; }
.form-status.is-error { color: #8b1436; }
.form-status.is-success { color: #27633f; }
.confidentiality { padding: 2rem; background: var(--ivory); border-top: 3px solid var(--crimson); }
.confidentiality h2 { margin: 0 0 .8rem; font-family: 'Yeseva One', Georgia, serif; font-size: 1.9rem; font-weight: 400; }
.confidentiality p:last-child { margin-bottom: 0; }

.site-footer { background: #2f3c44; color: var(--white); padding: 3rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 2rem; align-items: start; }
.footer-brand img { width: 290px; max-width: 100%; }
.footer-nav { display: grid; grid-template-columns: repeat(2, max-content); gap: .45rem 2rem; }
.footer-nav a, .footer-legal a { color: rgba(255,255,255,.82); text-decoration: none; font-size: .9rem; }
.footer-nav a:hover, .footer-legal a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { margin-top: 2.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.15); display: flex; justify-content: space-between; gap: 1rem; align-items: center; color: rgba(255,255,255,.62); font-size: .82rem; }
.footer-legal { display: flex; gap: 1.25rem; }

.reveal { opacity: 0; transform: translateY(10px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1000px) {
  .site-nav .btn { display: none; }
  .hero-inner { grid-template-columns: 1fr .42fr; gap: 3rem; }
  .expertise-grid, .pillar-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .expertise-item:nth-child(3), .pillar:nth-child(3) { border-left: 0; }
  .expertise-item:nth-child(n+3), .pillar:nth-child(n+3) { border-top: 1px solid var(--silver); }
  .cta-inner { grid-template-columns: 1fr; align-items: start; }
  .cta-actions { justify-content: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  body { font-size: 16px; }
  .header-inner { min-height: 72px; }
  .brand { flex-basis: 225px; }
  .brand img { width: 220px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 72px; display: none; padding: 1.2rem var(--gutter) 1.5rem;
    background: var(--charcoal); border-top: 1px solid rgba(255,255,255,.12); flex-direction: column; align-items: flex-start; gap: 1rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav .btn { display: inline-flex; margin-top: .5rem; }
  .hero-inner { min-height: auto; grid-template-columns: 1fr; padding-block: 5rem; }
  .hero-art { width: 175px; justify-self: start; margin-top: 1rem; }
  .split-2 { grid-template-columns: 1fr; }
  .offer + .offer { border-left: 0; border-top: 1px solid var(--silver); }
  .alignment, .about-lead, .contact-grid { grid-template-columns: 1fr; }
  .expertise-grid, .pillar-grid, .who-expertise { grid-template-columns: 1fr; }
  .expertise-item + .expertise-item, .pillar + .pillar, .who-expertise article:nth-child(even) { border-left: 0; padding-left: 0; }
  .expertise-item + .expertise-item, .pillar + .pillar, .who-expertise article { border-top: 1px solid var(--silver); }
  .who-expertise article:first-child { border-top: 0; }
  .question-list { grid-template-columns: 1fr; }
  .result-list { columns: 1; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top .footer-cta { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* --- Photography and final visual refinements --- */
.block-gap { margin-top: 3rem; }

.hero-inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(2.75rem, 5.5vw, 5.75rem);
}
.hero-copy { max-width: 690px; }
.hero-copy .display { max-width: 690px; }
.hero .display { font-size: clamp(2.75rem, 5.25vw, 5.15rem); line-height: 1.015; }
.hero-media {
  margin: 0;
  position: relative;
  align-self: center;
  width: 100%;
  max-width: 560px;
  justify-self: end;
}
.hero-media::before {
  content: '';
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid rgba(54,69,79,.22);
  pointer-events: none;
}
.hero-media::after {
  content: '';
  position: absolute;
  left: -16px;
  top: -16px;
  width: 72px;
  height: 3px;
  background: var(--crimson);
  pointer-events: none;
}
.hero-media picture,
.hero-media img { display: block; width: 100%; }
.hero-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
}

.image-band {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3.5rem) 0 0;
}
.image-band picture { display: block; }
.image-band img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
  border-top: 3px solid var(--crimson);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, .58fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.detail-hero-grid .detail-intro { max-width: none; }
.detail-media,
.about-media {
  margin: .25rem 0 0;
  position: relative;
}
.detail-media { max-width: 420px; justify-self: end; }
.detail-media::before,
.about-media::before {
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid rgba(54,69,79,.18);
  pointer-events: none;
}
.detail-media::after,
.about-media::after {
  content: '';
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 58px;
  height: 3px;
  background: var(--crimson);
  pointer-events: none;
}
.detail-media picture,
.detail-media img,
.about-media picture,
.about-media img { display: block; width: 100%; }
.detail-media img,
.about-media img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .72fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.about-media {
  width: 100%;
  max-width: 470px;
  justify-self: end;
}

.page-hero--quiet .container { padding-bottom: clamp(3.8rem, 7vw, 6rem); }

.footer-meta { display: flex; align-items: center; gap: 1.35rem; }
.social-link {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.86);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.social-link:hover { color: var(--white); border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.05); }
.social-link svg { width: 15px; height: 15px; fill: currentColor; }

@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: minmax(0,1.05fr) minmax(300px,.75fr); gap: 3rem; }
  .detail-hero-grid, .about-media-grid { grid-template-columns: 1fr .62fr; gap: 3rem; }
}

@media (max-width: 780px) {
  .hero-inner { grid-template-columns: 1fr; padding-block: 4.5rem; }
  .hero-media { max-width: none; justify-self: stretch; margin-top: 1rem; }
  .hero-media::before { inset: -10px 10px 10px -10px; }
  .hero-media::after { left: -10px; top: -10px; }
  .image-band { padding-top: 1.4rem; }
  .image-band .container { width: 100%; }
  .image-band img { aspect-ratio: 3 / 2; border-top-width: 2px; }
  .detail-hero-grid, .about-media-grid { grid-template-columns: 1fr; }
  .detail-media, .about-media { justify-self: stretch; max-width: none; margin-top: 1rem; }
  .detail-media::before, .about-media::before { inset: 10px -10px -10px 10px; }
  .detail-media::after, .about-media::after { right: -10px; bottom: -10px; }
  .footer-meta { width: 100%; justify-content: space-between; }
}

/* Preserve responsive image proportions when width/height attributes are present. */
.hero-media img,
.image-band img,
.detail-media img,
.about-media img { height: auto; }

/* --- v5 targeted updates only --- */
/* Reduce hero Yeseva One headings by roughly one-third. */
.hero .display {
  font-size: clamp(2.05rem, 3.45vw, 3.35rem);
}
.page-title {
  font-size: clamp(1.95rem, 3.45vw, 3.25rem);
}

/* Home hero: use the new image as the full hero background while preserving the v2 layout language. */
.hero--image {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 25, 45, .78) 0%, rgba(9, 25, 45, .58) 38%, rgba(9, 25, 45, .20) 72%, rgba(9, 25, 45, .08) 100%),
    url('assets/images/home-hero.jpg') center center / cover no-repeat;
  border-bottom-color: rgba(255,255,255,.16);
  color: var(--white);
}
.hero--image .hero-inner {
  grid-template-columns: minmax(0, 1fr);
  position: relative;
  z-index: 1;
}
.hero--image .hero-copy { max-width: 690px; }
.hero--image .display,
.hero--image .eyebrow { color: var(--white); }
.hero--image .lede { color: rgba(255,255,255,.88); }

/* What We Do: use the new image as the full hero background. */
.page-hero--image {
  position: relative;
  overflow: hidden;
  color: var(--white);
  border-bottom-color: rgba(255,255,255,.14);
}
.page-hero--what {
  background:
    linear-gradient(90deg, rgba(15, 24, 31, .80) 0%, rgba(15, 24, 31, .58) 48%, rgba(15, 24, 31, .24) 100%),
    url('assets/images/what-we-do-primary.jpg') center center / cover no-repeat;
}
.page-hero--image .container { position: relative; z-index: 1; }
.page-hero--image .page-title,
.page-hero--image .eyebrow { color: var(--white); }
.page-hero--image .lede { color: rgba(255,255,255,.88); }

@media (max-width: 780px) {
  .hero .display { font-size: clamp(2rem, 9vw, 2.7rem); }
  .page-title { font-size: clamp(1.9rem, 8.3vw, 2.55rem); }
  .hero--image {
    background-position: 67% center;
    background-image:
      linear-gradient(90deg, rgba(9,25,45,.82) 0%, rgba(9,25,45,.66) 62%, rgba(9,25,45,.30) 100%),
      url('assets/images/home-hero.jpg');
  }
  .page-hero--what { background-position: center center; }
}
