.home-approach-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
}
.home-approach-principles h3 {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 18px;
}
.home-approach-principles p { font-size: 20px; line-height: 1.5; }
.home-approach-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  max-width: 100%;
  margin-top: 28px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
.home-approach-link span:first-child { text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 6px; text-decoration-thickness: 1px; transition: text-decoration-color .2s; }
.home-approach-link span:last-child { flex-shrink: 0; font-size: 22px; }
.home-approach-link:hover span:first-child,.home-approach-link:focus-visible span:first-child { text-decoration-color: var(--ink); }
.home-experience {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.55fr);
  grid-template-areas: "portrait title" "portrait copy";
  grid-template-rows: auto 1fr;
  align-items: start;
  column-gap: clamp(40px, 5vw, 72px);
  row-gap: 24px;
  margin-top: 72px;
}
.home-experience-portrait { grid-area: portrait; width: 100%; height: auto; }
.home-experience-copy { grid-area: copy; min-width: 0; }
.home-experience > h2 { grid-area: title; font-size: clamp(36px, 3.35vw, 48px); line-height: 1.15; }
.home-experience-copy > p { max-width: 690px; font-size: 20px; line-height: 1.5; }
.home-experience-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 32px; margin-top: 36px; }
.home-experience-facts dt { font-family: var(--serif); font-size: 34px; font-weight: 300; line-height: 1.2; }
.home-experience-facts dt span { white-space: nowrap; }
.home-experience-facts dd { font-size: 16px; line-height: 1.45; margin: 12px 0 0; }
.home-experience-facts dd a { text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; text-decoration-thickness: 1px; transition: text-decoration-color .2s; }
.home-experience-facts dd a:hover,.home-experience-facts dd a:focus-visible { text-decoration-color: var(--ink); }
.home-experience-copy > .home-approach-link { margin-top: 32px; }
@media (max-width: 1100px) {
  .home-approach-principles h3 { font-size: 24px; }
  .home-approach-principles p { font-size: 18px; }
  .home-experience { column-gap: 36px; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
  .home-experience-copy > p { font-size: 18px; }
  .home-experience-facts { gap: 24px; margin-top: 28px; }
  .home-experience-facts dt { font-size: 28px; }
}
@media (max-width: 760px) {
  .home-approach-principles { grid-template-columns: 1fr; gap: 28px; }
  .home-approach-principles h3 { margin-bottom: 12px; }
  .home-experience { grid-template-columns: 1fr; grid-template-areas: "title" "portrait" "copy"; grid-template-rows: auto; gap: 28px; margin-top: 48px; }
  .home-experience-portrait { max-width: 380px; }
  .home-experience > h2 { font-size: 32px; }
  .home-experience-facts { grid-template-columns: minmax(0, 1fr); }
  .home-experience-facts dd { margin-top: 6px; }
  .home-experience-copy > .home-approach-link { margin-top: 24px; }
}
