/* styles-refined.css — second CSS layer, loaded after the inline styles in
   index.html. Rules here override the inline block. */

:root {
  --measure: 38rem;
}

body {
  font-size: 1rem;
  line-height: 1.68;
}

p {
  max-width: 65ch;
}

.lead {
  line-height: 1.62;
}

.hero-copy .lead {
  margin-bottom: 2.1rem;
  max-width: 50ch;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.62;
}

/* Hero: Canada West map, full-height background layer */
.hero-media {
  background: #e9eff0;
}

/* Veil over the base map only. .hero-media forms its own stacking context,
   so this ::after (z0, painted after the map) sits under the atlas sheet (z1)
   and the photographs (z2). Quiets the background without dulling the cards. */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, .25);
}

.hero-media .hero-map-base {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: 78%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 58% 88%;
  opacity: .45;
  filter: grayscale(.2) saturate(.6) brightness(1.12) contrast(.94);
  transform: translate(1.25%, 1.4%) scale(1.015);
}

/* Hero: Britain & Ireland sheet, overlaid */
.hero-map-sheet {
  position: absolute;
  z-index: 1;
  top: 6.5%;
  left: 35.25%;
  width: min(25%, 350px);
  height: 92%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 35, 64, .22);
  background: #f7f5e9;
  box-shadow: 0 16px 34px rgba(13, 35, 64, .14);
  opacity: .55;
  transform: rotate(.8deg);
}

.hero-media .hero-map-sheet img {
  position: static;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  filter: grayscale(.08) saturate(.72) brightness(1.04) contrast(1.03);
}

.hero-evidence {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-artifact {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 45, 73, .32);
  border-radius: 10px;
  background: #102d49;
  box-shadow:
    0 16px 36px rgba(16, 45, 73, .18),
    inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.hero-media .hero-artifact img {
  position: static;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  filter: none;
}

.hero-books {
  top: 6%;
  right: 4%;
  width: min(20%, 280px);
  height: 30%;
  transform: rotate(1.8deg);
}

.hero-books img {
  object-position: 50% 50%;
}

.hero-cemetery {
  right: 14%;
  bottom: 7%;
  width: min(31%, 430px);
  height: 47%;
  transform: rotate(-1.1deg);
  box-shadow:
    0 20px 44px rgba(16, 45, 73, .22),
    inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.hero-cemetery img {
  object-position: 48% 58%;
}

.about-media {
  position: relative;
  margin: 0;
}

.about-photo-caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: .7rem .9rem .75rem;
  background: linear-gradient(180deg, rgba(7, 25, 46, 0), rgba(7, 25, 46, .86) 42%);
  color: rgba(255, 255, 255, .95);
  font-family: var(--sans);
  font-size: clamp(.78rem, .85vw, .82rem);
  line-height: 1.35;
  letter-spacing: .015em;
  text-shadow: 0 1px 2px rgba(7, 25, 46, .38);
}

.about-photo-caption a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, .65);
  text-underline-offset: .16em;
}

.about-photo-caption a:hover,
.about-photo-caption a:focus-visible {
  text-decoration-thickness: 2px;
}

.about-photo-caption a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.pillar p,
.service-item p,
.approach-principle p,
.deliverable p {
  font-size: 1rem;
}

.about-copy p {
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.72;
}

.about-grid {
  gap: clamp(3rem, 5.5vw, 5.5rem);
}

.about-media img {
  object-position: 50% 42%;
  filter: saturate(.82) contrast(.96) brightness(.97);
}

.about-copy .byline .creds {
  font-size: .875rem;
  line-height: 1.58;
}

.about-copy .byline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  column-gap: 1.15rem;
  align-items: center;
}

.about-copy .byline .name,
.about-copy .byline .creds {
  grid-column: 1;
}

.about-copy .byline .name {
  grid-row: 1;
}

.about-copy .byline .creds {
  grid-row: 2;
}

.credential-link {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: rgba(83, 98, 47, .45);
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}

.credential-link:hover {
  color: var(--navy);
  text-decoration-color: currentColor;
}

.credential-link:focus-visible {
  outline: 3px solid var(--olive-dark);
  outline-offset: 3px;
}

.apg-member-mark {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: end;
  display: block;
  width: 78px;
  line-height: 0;
}

.apg-member-mark img {
  width: 100%;
  height: auto;
}

.apg-member-mark:focus-visible {
  outline: 3px solid var(--olive-dark);
  outline-offset: 4px;
}

.services {
  --service-navy: var(--navy);
  --service-sage: var(--olive);
  --service-offwhite: var(--mist);
  --service-line: rgba(16, 45, 73, .18);
  background: var(--service-offwhite);
  border-block: 1px solid #e7e9eb;
}

.services .section-head {
  display: block;
  max-width: 62rem;
  margin-bottom: clamp(2.6rem, 4.5vw, 3.8rem);
}

.services .section-head h2 {
  max-width: 18ch;
  margin-bottom: 1.1rem;
}

.services .lead {
  max-width: 54ch;
  padding-left: 0;
  border-left: 0;
  font-size: 1.08rem;
  line-height: 1.68;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(1rem, 2vw, 1.45rem);
  border-top: 0;
}

.service-item {
  --card-accent: #163a5a;
  --card-glow: rgba(22, 58, 90, .075);
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  min-width: 0;
  min-height: 245px;
  padding: clamp(1.55rem, 2.45vw, 2rem);
  background:
    radial-gradient(circle at 100% 0%, var(--card-glow), transparent 46%),
    #fff;
  border: 1px solid rgba(16, 45, 73, .16);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(16, 45, 73, .07);
}

.service-item:nth-child(even) {
  --card-accent: #6f7d43;
  --card-glow: rgba(111, 125, 67, .105);
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 4px;
  background: var(--card-accent);
}

.service-icon {
  position: absolute;
  top: 1.15rem;
  right: .75rem;
  z-index: 0;
  display: grid;
  place-items: center;
  width: clamp(7.5rem, 10vw, 9.25rem);
  height: clamp(7.5rem, 10vw, 9.25rem);
  color: var(--card-accent);
  opacity: .085;
  pointer-events: none;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.service-label {
  position: relative;
  z-index: 1;
  max-width: 24ch;
  min-height: 2.7em;
  margin: 1.05rem 0 0;
  color: #687884;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-item h3 {
  position: relative;
  z-index: 1;
  max-width: 24ch;
  margin: .3rem 0 .6rem;
  font-size: 1.34rem;
  line-height: 1.24;
}

.service-item p {
  position: relative;
  z-index: 1;
  max-width: 38ch;
  margin: 0;
  color: #40515f;
  line-height: 1.62;
}

.approach {
  --approach-navy: var(--navy);
  --approach-sage: #aebc7c;
  --approach-line: rgba(255, 255, 255, .22);
  position: relative;
  overflow: visible;
  padding-block: clamp(3.2rem, 5.5vw, 5rem);
  background: var(--paper);
  color: #fff;
}

.approach-layout {
  position: relative;
  isolation: isolate;
  display: block;
  padding: clamp(2.2rem, 3.6vw, 3.4rem);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% -6%, rgba(174, 188, 124, .15), transparent 30%),
    linear-gradient(145deg, #123553 0%, var(--navy) 55%, #0b2740 100%);
  box-shadow: 0 24px 56px rgba(16, 45, 73, .16);
}

.approach-layout::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -4rem;
  right: -3rem;
  width: clamp(15rem, 27vw, 25rem);
  aspect-ratio: 1;
  background: url("compass-light.png") center / contain no-repeat;
  opacity: .025;
  transform: rotate(8deg);
  pointer-events: none;
}

.approach-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  column-gap: clamp(3rem, 7vw, 7rem);
  row-gap: 1.35rem;
  align-items: start;
  max-width: none;
}

.approach-intro .eyebrow {
  grid-column: 1 / -1;
  color: #d5dfb7;
}

.approach-intro h2 {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  max-width: 16ch;
  margin-bottom: 0;
  color: #fff;
}

/* NOTE: class names predate the content flip — .approach-method now holds the
   client-facing lead line, .approach-callout holds the method fragment. */
.approach-intro .approach-method {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.62;
}

.approach-intro .lead {
  max-width: 48ch;
  margin-bottom: 0;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: 3px solid var(--approach-sage);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .86);
  font-size: 1.08rem;
  line-height: 1.68;
}

.approach-intro .approach-callout {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.approach-principles {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.7rem, 1.4vw, 1.15rem);
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
  padding-top: 0;
  border-top: 0;
  counter-reset: approach;
}



.approach-principle {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 100%;
  padding: 1rem clamp(1rem, 1.8vw, 1.35rem) 1.35rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  counter-increment: approach;
}

.approach-principle:nth-child(3) {
  border-color: rgba(174, 188, 124, .35);
  background: rgba(174, 188, 124, .07);
}

.approach-principles::before {
  content: "";
  position: absolute;
  top: calc(1rem + 23px);
  left: calc(1rem + 23px);
  right: calc(25% - 10px);
  height: 1px;
  background: var(--approach-line);
}

.approach-principle::before {
  content: counter(approach, decimal-leading-zero);
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: linear-gradient(145deg, #aebc7c, #8da188);
  color: #0d2340;
  box-shadow: 0 6px 14px rgba(8, 26, 42, .35);
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1;
}

.approach-principle h3 {
  max-width: 20ch;
  margin: .85rem 0 .55rem;
  padding-left: 0;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.28;
}

.approach-principle h3::before {
  content: none;
}

.approach-principle p {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .98rem;
  line-height: 1.68;
}

.evidence-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(270px, .7fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  margin: clamp(1.4rem, 2.8vw, 2.3rem) 0 0;
  padding: .65rem clamp(.85rem, 1.8vw, 1.25rem) .65rem .65rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
}

.evidence-crop {
  aspect-ratio: 4 / 1;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, .88);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

.evidence-crop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left 34%;
  transform: none;
  filter: saturate(.88) contrast(1.03);
}

.evidence-feature figcaption {
  display: grid;
  gap: .55rem;
  margin: 0;
}

.evidence-kicker {
  color: #d5dfb7;
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.evidence-feature strong {
  max-width: 22ch;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 700;
  line-height: 1.28;
}

.evidence-source {
  max-width: 36ch;
  color: rgba(255, 255, 255, .58);
  font-family: var(--sans);
  font-size: .72rem;
  line-height: 1.4;
}

.deliverables {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.15rem, 2vw, 1.6rem);
}

.deliverable {
  --deliverable-accent: var(--navy);
  position: relative;
  display: block;
  min-height: 250px;
  padding: clamp(1.7rem, 2.5vw, 2.15rem);
  overflow: hidden;
  border-color: rgba(16, 45, 73, .15);
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 15%, rgba(16, 45, 73, .045), transparent 38%),
    #fff;
  box-shadow: 0 14px 34px rgba(16, 45, 73, .075);
}

.deliverable:nth-child(even) {
  --deliverable-accent: var(--olive-dark);
}

.deliverable::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--deliverable-accent);
}

.deliverable > div {
  position: relative;
  z-index: 1;
}

.deliverable-icon {
  position: absolute;
  z-index: 0;
  right: .55rem;
  bottom: .35rem;
  width: clamp(7rem, 9vw, 8.8rem);
  aspect-ratio: 1;
  color: var(--deliverable-accent);
  opacity: .055;
  pointer-events: none;
}

.deliverable-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.deliverable h3 {
  max-width: 28ch;
  margin: .2rem 0 .45rem;
  font-size: 1.32rem;
}

.deliverable p {
  position: relative;
  z-index: 1;
  max-width: 52ch;
  margin: 0;
  line-height: 1.65;
}

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

.btn,
.lang,
.menu {
  min-height: 46px;
}

.btn:focus-visible,
.nav a:focus-visible,
.lang:focus-visible,
.menu:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid var(--olive-dark);
  outline-offset: 4px;
}

/* Keep touch devices from retaining a second, hover-only nav underline. */
.nav a:hover::after {
  width: 0;
}

.nav a[aria-current="location"]::after {
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .nav a:hover::after {
    width: 100%;
  }
}

.footer-links a:focus-visible {
  outline-color: #d5dfb7;
}

@media (min-width: 981px) and (max-width: 1180px) {
  .approach-principle {
    padding-inline: 1rem;
  }

  .approach-principle p {
    font-size: .94rem;
  }
}

@media (max-width: 1100px) {
  .approach-intro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .approach-intro .eyebrow {
    margin-bottom: -.15rem;
  }

  .approach-intro h2 {
    grid-column: 1;
    grid-row: auto;
    margin-bottom: .35rem;
  }

  .approach-intro .approach-method {
    grid-column: 1;
    grid-row: auto;
    max-width: 58ch;
  }

  .approach-intro .lead {
    max-width: 52ch;
  }

  .approach-intro .approach-callout {
    grid-column: 1;
    grid-row: auto;
  }

  .approach-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 3.2rem;
  }

  .approach-principles::before {
    content: none;
  }

  .approach-principle {
    padding: 1.25rem 1.25rem 1.55rem;
  }

  .approach-principle::before {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 980px) {
  .hero-media .hero-map-base {
    width: 100%;
    object-position: 68% center;
  }

  .hero-map-sheet {
    left: 49.5%;
    width: 31%;
    opacity: .58;
  }

  .hero-books {
    top: 7%;
    right: 2.5%;
    width: 28%;
    height: 27%;
  }

  .hero-cemetery {
    right: 8%;
    bottom: 5%;
    width: 46%;
    height: 45%;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-item {
    min-height: 232px;
  }

  .evidence-feature {
    grid-template-columns: 1fr;
  }

  .evidence-feature figcaption {
    padding: .25rem .45rem .55rem;
  }

  .evidence-feature strong {
    max-width: 34ch;
  }

}

@media (max-width: 640px) {
  .hero-map-sheet {
    left: 55.5%;
    width: 43%;
    opacity: .38;
  }

  }

@media (max-width: 700px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: 0;
    padding: 1.4rem;
  }

  .service-item h3 {
    margin-top: 1.15rem;
  }

  .service-icon {
    top: .8rem;
    right: .45rem;
    width: 7rem;
    height: 7rem;
  }

  .approach-principles {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2.7rem;
  }

  .approach-principle {
    display: grid;
    grid-template-columns: 3.2rem minmax(0, 1fr);
    gap: .45rem .9rem;
    padding: 1.25rem;
  }

  .approach-principle::before {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 40px;
    height: 40px;
  }

  .approach-principle h3,
  .approach-principle p {
    grid-column: 2;
  }

  .approach-principle h3 {
    margin: .28rem 0 .2rem;
  }
}

@media (max-width: 520px) {
  .about-copy .byline {
    grid-template-columns: 1fr;
    row-gap: .75rem;
  }

  .apg-member-mark {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    width: 70px;
  }

  .hero-books {
    width: 38%;
    height: 26%;
  }

  .hero-cemetery {
    right: 3%;
    width: 58%;
    height: 40%;
  }

  .approach {
    padding-block: 2.3rem;
  }

  .approach-layout {
    padding: 2rem 1.35rem 2.2rem;
  }

  .approach-intro .lead {
    padding: .9rem 1rem;
  }

  .deliverable {
    min-height: 195px;
    padding: 1.4rem;
  }

  .deliverable-icon {
    width: 6.5rem;
  }

  .evidence-feature {
    padding: .5rem;
  }

  .evidence-crop {
    aspect-ratio: 4 / 1;
  }
}

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

/* Hero photo credit sits on the photograph it belongs to */
.hero-artifact-caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  box-sizing: border-box;
  max-width: 100%;
  padding: .72rem .58rem .42rem;
  background: linear-gradient(180deg, rgba(31, 34, 31, 0), rgba(31, 34, 31, .86) 48%);
  color: #f2eee5;
  font-family: var(--sans);
  font-size: clamp(.58rem, .52rem + .14vw, .68rem);
  line-height: 1.25;
  letter-spacing: 0;
  text-align: right;
  white-space: normal;
  overflow-wrap: normal;
  text-wrap: pretty;
  text-shadow: 0 1px 2px rgba(17, 20, 18, .45);
}
/* Map attribution as footer fine print */
.footer-credit {
  flex-basis: 100%;
  order: 3;
  margin: .9rem 0 0;
  padding-top: .8rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #8b99a5;
  font-size: .76rem;
  line-height: 1.45;
}
.footer-credit cite { font-style: italic; }

/* Photo credit rides the image through tablet sizes, then moves to the footer. */
.footer-credit-photo { display: none; }

@media (max-width: 640px) {
  .hero-artifact-caption { display: none; }
  .footer-credit-photo { display: inline; }
}

/* The white veil holds behind the copy, then clears sooner so the maps
   register in peripheral vision while the lead is being read. */
.hero::after {
  background: linear-gradient(90deg,
    #fff 0%,
    rgba(255, 255, 255, .985) 28%,
    rgba(255, 255, 255, .93) 38%,
    rgba(255, 255, 255, .76) 47%,
    rgba(255, 255, 255, .44) 58%,
    rgba(255, 255, 255, .14) 72%,
    transparent 86%);
}

/* Tablet: the hero grows taller, so the atlas sheet needs its own fit */
@media (max-width: 980px) {
  .hero-map-sheet {
    top: 9.5%;
    height: 84%;
  }
}

.icon-lang { font-family: var(--sans); font-size: .82rem; font-weight: 800;
  letter-spacing: .04em; line-height: 1; display: inline-flex; align-items: center; gap: .12em; }
.icon-lang i { font-style: normal; opacity: .55; font-weight: 600; }

/* ------------------------------------------------------------------
   Layout compaction pass. Consolidated from incremental edits.
   ------------------------------------------------------------------ */

/* Services */
.service-item { padding-top: 1.65rem; padding-bottom: 1.65rem; min-height: 0; }
.service-label { margin-top: 0; }

.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1100px) { .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px)  {
  .service-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .service-label { min-height: 0; }
}

/* Research approach */
.approach-principle { padding-top: 1.2rem; padding-bottom: 1.2rem; }
.approach-principle p { font-size: .93rem; line-height: 1.55; }

/* Evidence feature: the marginal "illégitime" and "de parents inconnus" remain visible together. */
.evidence-feature {
  grid-template-columns: minmax(0, 1.55fr) minmax(240px, .75fr);
  gap: clamp(1rem, 2.2vw, 1.8rem);
  margin-top: 1.2rem;
  padding: .5rem .9rem .5rem .5rem;
}
.evidence-feature strong { font-size: clamp(1.05rem, 1.45vw, 1.24rem); max-width: 26ch; }
.evidence-kicker { font-size: .76rem; }



/* ------------------------------------------------------------------
   One vertical rhythm for the four content sections. The contact band
   keeps its own internal spacing and stronger closing emphasis.
   ------------------------------------------------------------------ */
.about, .services, .approach, .examples {
  padding-top: clamp(2.3rem, 3.5vw, 2.95rem);
  padding-bottom: clamp(2.3rem, 3.5vw, 2.95rem);
}
.about h2, .services h2, .approach h2, .examples h2 {
  font-size: clamp(1.85rem, 2.7vw, 2.35rem);
  margin-bottom: .7rem;
}

/* Final responsive corrections: keep controls balanced, protect hero copy,
   and restore the intended one-column evidence feature on phones. */
@media (max-width: 980px) {
  .controls {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .evidence-feature {
    grid-template-columns: 1fr;
    padding: .5rem;
  }

  .evidence-feature figcaption {
    padding: .25rem .45rem .55rem;
  }

  .evidence-source {
    font-size: .76rem;
    line-height: 1.45;
  }
}

@media (max-width: 520px) {
  .hero::after {
    background: rgba(255, 255, 255, .92);
  }
}
