/*
  index_new2 proportion pass
  Keeps the shared visual language while correcting the extreme type scale,
  faint card numbering, and missing containment in the recovery chapters.
*/

:root {
  --max: 1180px;
}

/* A calmer hierarchy: slightly smaller display type, meaningfully larger detail type. */
h1 {
  font-size: clamp(58px, 7.8vw, 112px);
  line-height: .95;
}

h2 {
  font-size: clamp(44px, 5.25vw, 72px);
  line-height: 1;
}

h3 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.eyebrow {
  font-size: 15px;
  line-height: 1.35;
}

.nav-links a {
  font-size: 13px;
}

.hero-subhead {
  font-size: clamp(21px, 1.8vw, 25px);
}

.hero-profile strong {
  font-size: 21px;
}

.hero-profile span {
  font-size: 14px;
}

.hero-profile li {
  padding: 8px 12px;
  font-size: 12px;
}

.section-heading > p:last-child,
.split-heading > p {
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.55;
}

.expertise-card > div > p {
  font-size: 14px;
}

.expertise-card small,
.result-bottom p {
  font-size: 16px;
  line-height: 1.55;
}

.expertise-card li,
.linkedin-editorial li {
  padding: 8px 12px;
  font-size: 12px;
}

/* Numbers become intentional markers instead of nearly invisible metadata. */
.card-index {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.14);
  box-shadow: inset 0 1px rgba(255,255,255,.18);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .03em;
}

.result-top {
  font-size: 13px;
}

.result-bottom h3 {
  font-size: 32px;
}

.evidence-strip span {
  font-size: 13px;
  line-height: 1.35;
}

.approach-list li > span {
  font-size: 13px;
  font-weight: 650;
}

.approach-list p {
  font-size: 16px;
}

.site-footer {
  font-size: 13px;
}

.footer-bottom p:last-child {
  font-size: 11px;
}

/*
  Both recovery stories previously skipped the shared section container.
  Give them independent chapters and guaranteed gutters.
*/
.approach {
  width: 100%;
  padding: 120px max(32px, calc((100vw - var(--max)) / 2));
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
  gap: clamp(65px, 8vw, 125px);
  align-items: start;
  background:
    radial-gradient(circle at 8% 15%, rgba(255,196,74,.28), transparent 27%),
    linear-gradient(180deg, #fff, #fbfafc);
}

.approach + .approach {
  border-top: 18px solid #ebe7f1;
  background:
    radial-gradient(circle at 91% 82%, rgba(132,82,255,.18), transparent 31%),
    linear-gradient(180deg, #fbfafc, #f7f4fb);
}

.approach-copy,
.approach-list {
  min-width: 0;
}

.approach-copy > p:not(.eyebrow) {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.65;
}

.approach-copy > p + p {
  margin-top: 18px;
}

.approach-list {
  position: sticky;
  top: 105px;
}

/* New proof sections use the same soft, editorial card language as the rest. */
.shipped {
  background: linear-gradient(180deg, #fff, #f5f3f8);
}

.shipped-list {
  margin: 70px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.shipped-list li {
  min-width: 0;
  padding: 32px 34px;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 150px;
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(29,29,31,.06);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: 0 22px 55px rgba(37,25,65,.06);
}

.shipped-list li:nth-child(2) {
  background: linear-gradient(135deg, #fff8f2, #fff);
}

.shipped-list li:nth-child(3) {
  background: linear-gradient(135deg, #f2fbf8, #fff);
}

.shipped-list .yr {
  color: var(--grey);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
}

.shipped-list h3 {
  font-size: clamp(26px, 2.7vw, 36px);
}

.shipped-list p {
  max-width: 690px;
  margin-top: 10px;
  color: var(--grey);
  font-size: 16px;
  line-height: 1.55;
}

.shipped-list .go {
  justify-self: end;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

#voices {
  background:
    radial-gradient(circle at 92% 4%, rgba(255,179,113,.22), transparent 25%),
    linear-gradient(180deg, #fff, #f5f4f8);
}

.voices-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.voice {
  min-height: 330px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 45px;
  border: 1px solid rgba(29,29,31,.06);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: 0 24px 65px rgba(37,25,65,.07);
}

.voice:nth-child(2) {
  background: linear-gradient(145deg, #fff2e9, #fff);
}

.voice:nth-child(3) {
  background: linear-gradient(145deg, #eefaf7, #fff);
}

.voice:nth-child(4) {
  background: linear-gradient(145deg, #f1edff, #fff);
}

.voice blockquote {
  margin: 0;
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.2;
  letter-spacing: -.04em;
  font-weight: 550;
}

.voice .who {
  padding-top: 22px;
  display: grid;
  gap: 5px;
  border-top: 1px solid var(--line);
}

.voice .who strong {
  font-size: 16px;
}

.voice .who span {
  color: var(--grey);
  font-size: 13px;
  line-height: 1.45;
}

.contact-band > p:not(.eyebrow) {
  max-width: 900px;
  line-height: 1.55;
}

/* Location is a delivery story, not a giant coordinates label. */
#where .split-heading {
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

#where .split-heading > p {
  max-width: 720px;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.65;
}

#where h2 {
  font-size: clamp(42px, 4.7vw, 64px);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 8px;
    right: 8px;
    top: 56px;
    padding: 10px;
    display: grid;
    gap: 0;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 22px;
    background: rgba(248,248,250,.94);
    box-shadow: 0 24px 65px rgba(0,0,0,.15);
    backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .25s ease;
  }

  .site-header[data-tone="dark"] .nav-links {
    background: rgba(20,17,46,.94);
    border-color: rgba(255,255,255,.14);
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-links a {
    padding: 13px;
    border-bottom: 1px solid rgba(110,110,115,.15);
    font-size: 14px;
  }

  .nav-links a:last-child {
    border: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-3px) rotate(-45deg);
  }
}

@media (max-width: 820px) {
  .approach {
    padding: 105px 28px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .approach-list {
    position: static;
  }

  #where .split-heading {
    grid-template-columns: 1fr;
  }

  #where .split-heading > p {
    margin-top: 0;
  }

  .shipped-list li {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .shipped-list .go {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(50px, 14vw, 68px);
  }

  h2 {
    font-size: clamp(39px, 10.5vw, 54px);
  }

  .eyebrow {
    font-size: 14px;
  }

  .section-heading > p:last-child,
  .split-heading > p,
  .approach-copy > p:not(.eyebrow) {
    font-size: 18px;
  }

  .expertise-card small,
  .result-bottom p,
  .approach-list p {
    font-size: 15px;
  }

  .approach {
    padding: 95px 18px;
  }

  .shipped-list,
  .voices-grid {
    margin-top: 50px;
  }

  .shipped-list li {
    padding: 27px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .shipped-list .go {
    grid-column: auto;
  }

  .voices-grid {
    grid-template-columns: 1fr;
  }

  .voice {
    min-height: 290px;
    padding: 27px;
  }

  .voice blockquote {
    font-size: 25px;
  }

  .card-index {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}
