/* Release: 20260718-1 — restrained hero and factual concept copy. */
/* kusuwata.com public site — field-journal direction
   Layout is intentionally built from fixed sections and three bounded update units:
   annual-program-link / field-notes (max 3) / fixed-person-story. */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

.journal-alt {
  --v2-paper: #f5f1e8;
  --v2-paper-deep: #e9e1d1;
  --v2-paper-bright: #fffdf7;
  --v2-ink: #243230;
  --v2-ink-soft: #5f6e6b;
  --v2-teal: #1f5560;
  --v2-teal-deep: #173f47;
  --v2-olive: #7c9a2a;
  --v2-olive-light: #dce7b0;
  --v2-red: #c4543d;
  --v2-red-deep: #963c2c;
  /* Legacy aliases keep the existing layout rules stable while the palette is semantic. */
  --v2-navy: var(--v2-teal);
  --v2-navy-deep: var(--v2-teal-deep);
  --v2-orange: var(--v2-teal);
  --v2-orange-dark: var(--v2-teal-deep);
  --v2-citrus: var(--v2-olive-light);
  --v2-line: rgba(36, 50, 48, 0.19);
  --v2-line-light: rgba(255, 253, 247, 0.22);
  --v2-display: "A1 Mincho", "Noto Serif CJK JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --v2-body: "BIZ UDPGothic", "Noto Sans CJK JP", "Noto Sans JP", "Yu Gothic", sans-serif;
  --v2-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  margin: 0;
  color: var(--v2-ink);
  background: var(--v2-paper);
  font-family: var(--v2-body);
  line-height: 1.7;
  overflow-x: clip;
}

.journal-alt img {
  display: block;
  max-width: 100%;
}

.journal-alt a {
  color: inherit;
  text-decoration: none;
}

.journal-alt button,
.journal-alt summary,
.journal-alt a {
  -webkit-tap-highlight-color: transparent;
}

.journal-alt :focus-visible {
  outline: 3px solid var(--v2-teal);
  outline-offset: 4px;
}

.v2-contact :focus-visible,
.v2-footer :focus-visible,
.v2-dark-story :focus-visible,
.v2-evidence-band :focus-visible,
.v2-form-heading :focus-visible {
  outline-color: var(--v2-olive-light);
}

.v2-skip {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--v2-paper-bright) !important;
  background: var(--v2-ink);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.v2-skip:focus {
  transform: translateY(0);
}

.v2-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 4vw, 68px);
  border-bottom: 1px solid var(--v2-line);
  background: rgba(242, 239, 230, 0.92);
  backdrop-filter: blur(16px);
}

.v2-logo {
  width: 146px;
  display: block;
}

.v2-logo img {
  width: 100%;
  height: auto;
}

.v2-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 42px);
}

.v2-nav a {
  position: relative;
  padding: 26px 0 24px;
  color: var(--v2-ink-soft);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.v2-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--v2-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.v2-nav a:hover::after,
.v2-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.v2-header-cta {
  justify-self: end;
  min-width: 146px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 16px;
  border: 1px solid var(--v2-ink);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.v2-header-cta:hover {
  color: var(--v2-paper-bright);
  background: var(--v2-ink);
}

.v2-mobile-menu {
  display: none;
}

.v2-section {
  padding: clamp(100px, 12vw, 176px) clamp(22px, 6vw, 100px);
}

.v2-section-number {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--v2-ink-soft);
  font-family: var(--v2-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.v2-section-number span {
  min-width: 34px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.v2-section-number.is-light {
  color: rgba(251, 250, 245, 0.7);
}

/* Hero */

.v2-hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  border-bottom: 1px solid var(--v2-line);
  background: var(--v2-paper);
}

.v2-hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: clamp(20px, 4vw, 68px);
  width: 1px;
  background: var(--v2-line);
}

.v2-hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 8vh, 82px) clamp(34px, 6vw, 96px) clamp(48px, 7vh, 72px) clamp(52px, 9vw, 150px);
}

.v2-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(28px, 5vh, 48px);
  color: var(--v2-orange);
  font-family: var(--v2-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  animation: v2-rise 700ms 80ms both cubic-bezier(.2,.7,.2,1);
}

.v2-hero-meta span + span {
  display: flex;
  align-items: center;
  gap: 20px;
}

.v2-hero-meta span + span::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
}

.v2-hero h1 {
  margin: 0;
  color: var(--v2-ink);
  font-family: var(--v2-display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.v2-hero h1 span,
.v2-hero h1 strong {
  display: block;
  max-width: 760px;
  white-space: normal;
  text-wrap: pretty;
  animation: v2-rise 820ms both cubic-bezier(.2,.7,.2,1);
}

.v2-hero h1 span {
  font-size: clamp(38px, 3.8vw, 56px);
  animation-delay: 130ms;
}

.v2-hero h1 strong {
  margin-top: 2px;
  color: inherit;
  font-size: clamp(38px, 3.8vw, 56px);
  font-weight: 600;
  animation-delay: 190ms;
}

.v2-hero-lead {
  max-width: 700px;
  margin: clamp(30px, 4vw, 54px) 0 0;
  color: var(--v2-ink-soft);
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 500;
  line-height: 2;
  animation: v2-rise 760ms 270ms both cubic-bezier(.2,.7,.2,1);
}

.v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 46px);
  animation: v2-rise 760ms 330ms both cubic-bezier(.2,.7,.2,1);
}

.v2-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 20px;
  border: 1px solid var(--v2-ink);
  font-size: 14px;
  font-weight: 700;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.v2-button:hover {
  transform: translateY(-3px);
}

.v2-button.is-primary {
  color: var(--v2-paper-bright);
  background: var(--v2-ink);
}

.v2-button.is-primary:hover {
  color: var(--v2-ink);
  background: var(--v2-citrus);
}

.v2-button.is-plain:hover {
  color: var(--v2-paper-bright);
  background: var(--v2-navy);
}

.v2-scroll-cue {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: clamp(40px, 6vh, 76px);
  color: var(--v2-ink-soft);
  font-family: var(--v2-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.v2-scroll-cue span {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--v2-line);
  border-radius: 50%;
}

.v2-scroll-cue span::before,
.v2-scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.v2-scroll-cue span::before {
  top: 8px;
  width: 1px;
  height: 14px;
  background: var(--v2-ink);
}

.v2-scroll-cue span::after {
  top: 16px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--v2-ink);
  border-bottom: 1px solid var(--v2-ink);
  transform: translateX(-50%) rotate(45deg);
}

.v2-hero-figure {
  position: relative;
  min-height: clamp(520px, 65vh, 650px);
  margin: 0;
  padding: clamp(22px, 2.8vw, 46px) clamp(22px, 3.6vw, 60px) clamp(52px, 5vw, 80px) 0;
  animation: v2-photo-in 1000ms 160ms both cubic-bezier(.2,.7,.2,1);
}

.v2-hero-photo {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: var(--v2-navy);
}

.v2-hero-photo::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 63, 71, 0.02), rgba(23, 63, 71, 0.28));
  mix-blend-mode: multiply;
}

.v2-hero-photo picture {
  height: 100%;
  display: block;
}

.v2-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1.015);
}

.v2-hero-keyword {
  display: none;
}

.v2-hero-figure figcaption {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 3.6vw, 60px);
  bottom: clamp(18px, 3vw, 44px);
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  color: var(--v2-paper-bright);
  background: var(--v2-navy-deep);
}

.v2-hero-figure figcaption span {
  color: var(--v2-citrus);
  font-family: var(--v2-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.v2-hero-figure figcaption p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}

.v2-hero-stamp {
  position: absolute;
  z-index: 4;
  top: clamp(46px, 7vw, 110px);
  left: -46px;
  width: 128px;
  height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--v2-paper-bright);
  background: var(--v2-orange);
  transform: rotate(-9deg);
  box-shadow: 0 14px 40px rgba(23, 32, 38, 0.2);
}

.v2-hero-stamp span {
  font-family: var(--v2-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.v2-hero-stamp strong {
  margin-top: 7px;
  font-family: var(--v2-display);
  font-size: 18px;
}

.v2-hero-index {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: -28px;
  color: rgba(23, 32, 38, 0.055);
  font-family: var(--v2-mono);
  font-size: clamp(100px, 15vw, 250px);
  font-weight: 700;
  line-height: 1;
}

/* What we do */

.v2-work {
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(23, 32, 38, 0.045) 25%),
    var(--v2-paper-bright);
}

.v2-section-head {
  max-width: 1460px;
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(36px, 8vw, 150px);
  margin: 0 auto clamp(64px, 8vw, 120px);
}

.v2-section-head h2,
.v2-notes-head h2,
.v2-people h2,
.v2-trust h2 {
  margin: 0;
  font-family: var(--v2-display);
  font-size: clamp(48px, 6.2vw, 96px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.v2-section-head > div > p {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--v2-ink-soft);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 2;
}

.v2-section-head .v2-work-title {
  max-width: 15em;
  font-size: clamp(38px, 4.6vw, 70px);
  line-height: 1.3;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.v2-pillars {
  max-width: 1460px;
  display: grid;
  gap: clamp(92px, 12vw, 180px);
  margin: 0 auto;
}

.v2-pillar {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
}

.v2-pillar.is-curriculum {
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.08fr);
}

.v2-pillar figure {
  position: relative;
  margin: 0;
}

.v2-pillar figure::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 76%;
  height: 78%;
  border: 1px solid var(--v2-line);
}

.v2-pillar.is-field figure::before {
  right: -18px;
  bottom: -18px;
}

.v2-pillar.is-curriculum figure::before {
  top: -18px;
  left: -18px;
}

.v2-pillar figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(420px, 50vw, 720px);
  object-fit: cover;
  filter: saturate(0.84) contrast(1.02);
}

.v2-pillar.is-field figure img {
  object-position: 50% 48%;
}

.v2-pillar.is-curriculum figure img {
  height: clamp(360px, 42vw, 590px);
  padding: clamp(16px, 3vw, 42px);
  border: 1px solid var(--v2-line);
  background: #e3e1db;
  object-fit: contain;
}

.v2-pillar figcaption {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: 90%;
  margin: -20px 0 0 clamp(16px, 3vw, 44px);
  padding: 10px 14px;
  color: var(--v2-paper-bright);
  background: var(--v2-navy);
  font-family: var(--v2-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.v2-pillar.is-curriculum figcaption {
  margin-right: clamp(16px, 3vw, 44px);
  margin-left: auto;
  color: var(--v2-ink);
  background: var(--v2-citrus);
}

.v2-card-index {
  margin: 0 0 24px;
  color: var(--v2-orange);
  font-family: var(--v2-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.v2-pillar h3 {
  margin: 0;
  font-family: var(--v2-display);
  font-size: clamp(45px, 5vw, 76px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.v2-pillar-copy > p:not(.v2-card-index) {
  max-width: 540px;
  margin: 32px 0 0;
  color: var(--v2-ink-soft);
  font-size: 16px;
  line-height: 2;
}

.v2-pillar ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  list-style: none;
}

.v2-pillar li {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--v2-ink-soft);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.v2-pillar li + li {
  border-left: 1px solid var(--v2-line);
}

.v2-arrow-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 54px;
  margin-top: 32px;
  padding: 0 0 8px;
  border-bottom: 1px solid var(--v2-ink);
  font-size: 14px;
  font-weight: 700;
}

.v2-arrow-link span:last-child {
  transition: transform 180ms ease;
}

.v2-arrow-link:hover span:last-child {
  transform: translateX(7px);
}

/* Routes */

.v2-routes {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  color: var(--v2-paper-bright);
  background:
    radial-gradient(circle at 12% 22%, rgba(229, 240, 107, 0.1), transparent 24%),
    var(--v2-navy-deep);
}

.v2-routes-intro {
  padding: clamp(88px, 10vw, 154px) clamp(40px, 7vw, 112px);
  border-right: 1px solid var(--v2-line-light);
}

.v2-routes h2 {
  margin: 54px 0 0;
  font-family: var(--v2-display);
  font-size: clamp(46px, 4vw, 60px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.v2-routes-intro > p:last-child {
  max-width: 450px;
  margin: 32px 0 0;
  color: rgba(251, 250, 245, 0.62);
  font-size: 15px;
  line-height: 1.9;
}

.v2-route-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.v2-route-list > a {
  position: relative;
  min-height: 180px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 24px;
  padding: 34px clamp(30px, 6vw, 88px);
  overflow: hidden;
  border-bottom: 1px solid var(--v2-line-light);
  transition: color 240ms ease;
}

.v2-route-list > a:last-child {
  border-bottom: 0;
}

.v2-route-list > a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--v2-citrus);
  transform: translateX(-101%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}

.v2-route-list > a:hover,
.v2-route-list > a:focus-visible {
  color: var(--v2-ink);
}

.v2-route-list > a:hover::before,
.v2-route-list > a:focus-visible::before {
  transform: translateX(0);
}

.v2-route-list > a > * {
  position: relative;
  z-index: 1;
}

.v2-route-no {
  color: var(--v2-citrus);
  font-family: var(--v2-mono);
  font-size: 11px;
}

.v2-route-list > a:hover .v2-route-no,
.v2-route-list > a:focus-visible .v2-route-no {
  color: var(--v2-orange-dark);
}

.v2-route-copy {
  display: grid;
  gap: 8px;
}

.v2-route-copy strong {
  font-family: var(--v2-display);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 600;
  line-height: 1.3;
}

.v2-route-copy small {
  color: rgba(251, 250, 245, 0.58);
  font-size: 13px;
}

.v2-route-list > a:hover small,
.v2-route-list > a:focus-visible small {
  color: rgba(23, 32, 38, 0.68);
}

.v2-route-arrow {
  justify-self: end;
  font-size: 28px;
  transition: transform 220ms ease;
}

.v2-route-list > a:hover .v2-route-arrow {
  transform: translate(5px, -5px);
}

/* Field notes */

.v2-notes {
  background: var(--v2-paper);
}

.v2-notes-head {
  max-width: 1460px;
  display: grid;
  grid-template-columns: 0.5fr 1.15fr 0.65fr;
  align-items: end;
  gap: clamp(30px, 5vw, 80px);
  margin: 0 auto clamp(58px, 8vw, 108px);
}

.v2-notes-head p:last-child {
  margin: 0 0 10px;
  color: var(--v2-ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.v2-notes-head h2 {
  font-size: clamp(48px, 5vw, 78px);
}

.v2-note-grid {
  max-width: 1460px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(18px, 2vw, 32px);
  margin: 0 auto;
}

.v2-note {
  min-width: 0;
  border-top: 1px solid var(--v2-ink);
}

.v2-note.is-large {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
}

.v2-note.is-product,
.v2-note.is-school {
  grid-column: 8 / span 5;
}

.v2-note > a {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 13px;
}

.v2-note figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #dedbd2;
}

.v2-note figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 85, 96, 0.035);
  mix-blend-mode: multiply;
  transition: background 220ms ease;
}

.v2-note img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.94);
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 260ms ease;
}

.v2-note.is-large img {
  height: clamp(560px, 58vw, 840px);
}

.v2-note.is-product img,
.v2-note.is-school img {
  height: clamp(260px, 25vw, 370px);
}

.v2-note.is-product img {
  padding: 22px;
  object-fit: contain;
  background: #e3e1da;
}

.v2-note > a:hover img {
  filter: saturate(1);
  transform: scale(1.025);
}

.v2-note-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 2px 10px;
}

.v2-note-copy > p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  color: var(--v2-orange);
  font-family: var(--v2-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.v2-note h3 {
  margin: 22px 0 0;
  font-family: var(--v2-display);
  font-size: clamp(25px, 2.8vw, 44px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.v2-note.is-product h3,
.v2-note.is-school h3 {
  font-size: clamp(21px, 1.8vw, 30px);
}

.v2-note-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  padding-top: 26px;
  color: var(--v2-ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.v2-note-more i {
  font-style: normal;
  transition: transform 180ms ease;
}

.v2-note > a:hover .v2-note-more i {
  transform: translateX(7px);
}

/* Why */

.v2-why {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(440px, 1.24fr);
  color: var(--v2-paper-bright);
  background: var(--v2-navy);
}

.v2-why-title {
  position: relative;
  min-height: 680px;
  padding: clamp(94px, 11vw, 170px) clamp(40px, 5vw, 80px);
  overflow: hidden;
  border-right: 1px solid var(--v2-line-light);
}

.v2-why-title h2 {
  position: relative;
  z-index: 1;
  margin: clamp(58px, 7vw, 100px) 0 0;
  font-family: var(--v2-display);
  font-size: clamp(40px, 3.6vw, 58px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.v2-why-story {
  align-self: center;
  max-width: 900px;
  padding: clamp(96px, 12vw, 180px) clamp(42px, 9vw, 150px);
}

.v2-why-story > p {
  max-width: 42rem;
  margin: 0;
  color: rgba(251, 250, 245, 0.72);
  font-family: var(--v2-body);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 2.05;
  text-wrap: pretty;
}

.v2-why-story > p + p {
  margin-top: 34px;
}

.v2-why-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--v2-line-light);
  list-style: none;
}

.v2-why-steps li {
  min-height: 180px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  align-items: baseline;
  gap: 10px 24px;
  padding: 38px clamp(30px, 5vw, 78px);
}

.v2-why-steps li + li {
  border-left: 1px solid var(--v2-line-light);
}

.v2-why-steps span {
  color: var(--v2-citrus);
  font-family: var(--v2-mono);
  font-size: 10px;
}

.v2-why-steps strong {
  font-family: var(--v2-display);
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 600;
}

.v2-why-steps small {
  grid-column: 2;
  color: rgba(251, 250, 245, 0.56);
  font-size: 12px;
}

/* Origin */

.v2-origin {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(54px, 9vw, 150px);
  border-bottom: 1px solid var(--v2-line);
  background:
    linear-gradient(135deg, rgba(124, 154, 42, 0.08), transparent 42%),
    var(--v2-paper-deep);
}

.v2-origin-copy > .v2-section-number {
  margin-bottom: clamp(46px, 6vw, 80px);
}

.v2-origin-copy h2 {
  max-width: 940px;
  margin: 0;
  font-family: var(--v2-display);
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.v2-origin-title-chunk {
  display: inline;
}

.v2-origin-copy > p:not(.v2-section-number) {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--v2-ink-soft);
  font-size: 16px;
  line-height: 2.1;
}

.v2-origin-photo {
  position: relative;
  margin: 0;
  padding: 22px 22px 0 0;
}

.v2-origin-photo::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 24px;
  height: 82%;
  border: 1px solid var(--v2-line);
}

.v2-origin-photo img {
  position: relative;
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.8) contrast(1.03);
}

.v2-origin-photo figcaption {
  position: relative;
  width: fit-content;
  margin: -22px 0 0 auto;
  padding: 13px 16px;
  color: var(--v2-paper-bright);
  background: var(--v2-teal);
  font-family: var(--v2-mono);
  font-size: 10px;
}

/* People / farm */

.v2-people {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.86fr);
  align-items: center;
  gap: clamp(50px, 9vw, 150px);
  background:
    linear-gradient(180deg, transparent 67%, rgba(116, 135, 43, 0.08) 67%),
    var(--v2-paper-bright);
}

.v2-people-photo {
  position: relative;
}

.v2-people-photo figure {
  position: relative;
  margin: 0;
}

.v2-people-photo figure::before {
  content: "";
  position: absolute;
  top: -22px;
  right: 32px;
  left: -22px;
  height: 82%;
  border: 1px solid var(--v2-line);
}

.v2-people-photo img {
  position: relative;
  width: 100%;
  height: clamp(540px, 62vw, 870px);
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.78) contrast(1.03);
}

.v2-people-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  color: var(--v2-paper-bright);
  background: var(--v2-orange);
  font-family: var(--v2-mono);
  font-size: 10px;
}

.v2-photo-number {
  position: absolute;
  right: -26px;
  bottom: -88px;
  margin: 0;
  color: rgba(23, 32, 38, 0.08);
  font-family: var(--v2-mono);
  font-size: clamp(100px, 13vw, 210px);
  font-weight: 700;
  line-height: 1;
}

.v2-people-copy > .v2-section-number {
  margin-bottom: clamp(44px, 6vw, 80px);
}

.v2-people-copy > p:not(.v2-section-number) {
  max-width: 590px;
  margin: 32px 0 0;
  color: var(--v2-ink-soft);
  font-size: 16px;
  line-height: 2.05;
}

.v2-people-facts {
  display: grid;
  margin: 38px 0 0;
  border-top: 1px solid var(--v2-line);
}

.v2-people-facts > div {
  min-height: 58px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--v2-line);
}

.v2-people-facts dt {
  color: var(--v2-teal);
  font-family: var(--v2-mono);
  font-size: 11px;
  font-weight: 700;
}

.v2-people-facts dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.v2-people-facts + .v2-arrow-link {
  margin-top: 34px;
}

.v2-loop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 44px 0 0;
  padding: 0;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  list-style: none;
}

.v2-loop li {
  position: relative;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 14px 12px;
  text-align: center;
}

.v2-loop li + li {
  border-left: 1px solid var(--v2-line);
}

.v2-loop li:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -12px;
  width: 24px;
  color: var(--v2-orange);
  background: var(--v2-paper-bright);
  transform: translateY(-50%);
}

.v2-loop span {
  color: var(--v2-olive);
  font-family: var(--v2-mono);
  font-size: 8px;
  font-weight: 700;
}

.v2-loop strong {
  font-family: var(--v2-display);
  font-size: 17px;
  font-weight: 600;
}

/* Trust */

.v2-trust {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  background: var(--v2-paper);
}

.v2-trust-heading {
  padding: clamp(86px, 10vw, 150px) clamp(38px, 5vw, 80px);
  border-right: 1px solid var(--v2-line);
}

.v2-trust-heading h2 {
  margin-top: clamp(52px, 7vw, 90px);
  font-size: clamp(42px, 3.6vw, 56px);
}

.v2-trust-links {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.v2-trust-links a {
  min-height: 150px;
  display: grid;
  grid-template-columns: minmax(110px, 0.4fr) minmax(0, 1fr) 40px;
  align-items: center;
  gap: 24px;
  padding: 32px clamp(30px, 6vw, 90px);
  border-bottom: 1px solid var(--v2-line);
  transition: color 200ms ease, background 200ms ease;
}

.v2-trust-links a:last-child {
  border-bottom: 0;
}

.v2-trust-links a:hover {
  color: var(--v2-paper-bright);
  background: var(--v2-navy);
}

.v2-trust-links span {
  color: var(--v2-orange);
  font-family: var(--v2-mono);
  font-size: 10px;
  font-weight: 700;
}

.v2-trust-links a:hover span {
  color: var(--v2-citrus);
}

.v2-trust-links strong {
  font-family: var(--v2-display);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 600;
}

.v2-trust-links i {
  justify-self: end;
  font-size: 24px;
  font-style: normal;
  transition: transform 180ms ease;
}

.v2-trust-links a:hover i {
  transform: translate(5px, -4px);
}

/* Contact and footer */

.v2-contact {
  position: relative;
  display: grid;
  grid-template-columns: 0.4fr 1.15fr 0.45fr;
  align-items: end;
  gap: clamp(34px, 6vw, 100px);
  padding: clamp(92px, 12vw, 180px) clamp(28px, 7vw, 112px);
  color: var(--v2-paper-bright);
  background: var(--v2-teal);
}

.v2-contact::after {
  content: "";
  position: absolute;
  right: clamp(28px, 7vw, 112px);
  bottom: 0;
  left: clamp(28px, 7vw, 112px);
  height: 1px;
  background: rgba(251, 250, 245, 0.4);
}

.v2-contact-kicker {
  align-self: start;
  margin: 0;
  font-family: var(--v2-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.v2-contact h2 {
  margin: 0;
  font-family: var(--v2-display);
  font-size: clamp(52px, 5vw, 82px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.v2-contact div > p {
  max-width: 660px;
  margin: 34px 0 0;
  color: rgba(251, 250, 245, 0.78);
  font-size: 16px;
  line-height: 2;
}

.v2-contact > a {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid rgba(251, 250, 245, 0.7);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.v2-contact > a span:last-child {
  font-size: 25px;
}

.v2-contact > a:hover {
  color: var(--v2-ink);
  background: var(--v2-citrus);
  transform: rotate(-5deg);
}

.v2-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding: clamp(70px, 8vw, 120px) clamp(28px, 7vw, 112px) 42px;
  color: var(--v2-paper-bright);
  background: var(--v2-navy-deep);
}

.v2-footer-brand img {
  width: min(250px, 70%);
  height: auto;
}

.v2-footer-brand p {
  margin: 20px 0 0;
  color: rgba(251, 250, 245, 0.56);
  font-family: var(--v2-display);
  font-size: 16px;
}

.v2-footer > nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-self: start;
  border-top: 1px solid var(--v2-line-light);
}

.v2-footer nav a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6px;
  border-bottom: 1px solid var(--v2-line-light);
  color: rgba(251, 250, 245, 0.74);
  font-family: var(--v2-mono);
  font-size: 12px;
  transition: color 180ms ease;
}

.v2-footer nav a:nth-child(odd) {
  margin-right: 20px;
}

.v2-footer nav a:hover {
  color: var(--v2-citrus);
}

.v2-footer-meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--v2-line-light);
  color: rgba(251, 250, 245, 0.44);
  font-family: var(--v2-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
}

.v2-footer-meta p {
  margin: 0;
}

.v2-footer-meta a {
  color: var(--v2-citrus);
}

@keyframes v2-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes v2-photo-in {
  from { opacity: 0; clip-path: inset(0 0 100% 0); }
  to { opacity: 1; clip-path: inset(0 0 0 0); }
}

@media (max-width: 1180px) {
  .v2-header {
    grid-template-columns: 150px 1fr 144px;
    gap: 20px;
  }

  .v2-nav {
    gap: 22px;
  }

  .v2-hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  }

  .v2-hero-copy {
    padding-left: clamp(52px, 7vw, 86px);
  }

  .v2-hero h1 span {
    font-size: clamp(36px, 4.4vw, 50px);
  }

  .v2-hero h1 strong {
    font-size: clamp(36px, 4.4vw, 50px);
  }

  .v2-section-head,
  .v2-notes-head {
    grid-template-columns: 0.45fr 1.25fr;
  }

  .v2-notes-head p:last-child {
    grid-column: 2;
    max-width: 600px;
  }

  .v2-pillar,
  .v2-pillar.is-curriculum {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: 52px;
  }

  .v2-people {
    gap: 58px;
  }

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

  .v2-loop li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--v2-line);
  }

  .v2-loop li:nth-child(4) {
    border-top: 1px solid var(--v2-line);
  }

  .v2-loop li:nth-child(2)::after {
    display: none;
  }

  .v2-contact {
    grid-template-columns: 0.32fr 1fr 190px;
  }
}

@media (max-width: 960px) {
  .v2-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .v2-logo {
    width: 136px;
  }

  .v2-nav,
  .v2-header-cta {
    display: none;
  }

  .v2-mobile-menu {
    position: relative;
    display: block;
  }

  .v2-mobile-menu summary {
    width: 74px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
    cursor: pointer;
    font-family: var(--v2-mono);
    font-size: 10px;
    font-weight: 700;
    list-style: none;
  }

  .v2-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .v2-mobile-menu summary i,
  .v2-mobile-menu summary i::before {
    width: 22px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .v2-mobile-menu summary i {
    position: relative;
  }

  .v2-mobile-menu summary i::before {
    content: "";
    position: absolute;
    top: 6px;
  }

  .v2-mobile-menu[open] summary i {
    transform: translateY(3px) rotate(45deg);
  }

  .v2-mobile-menu[open] summary i::before {
    transform: translateY(-6px) rotate(-90deg);
  }

  .v2-mobile-menu nav {
    position: absolute;
    top: 53px;
    right: calc(clamp(20px, 4vw, 68px) * -1);
    width: min(390px, 100vw);
    display: grid;
    padding: 18px clamp(22px, 5vw, 40px) 26px;
    border-top: 1px solid var(--v2-line);
    border-bottom: 1px solid var(--v2-line);
    background: var(--v2-paper-bright);
    box-shadow: 0 22px 40px rgba(23, 32, 38, 0.15);
  }

  .v2-mobile-menu nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--v2-line);
    font-size: 14px;
    font-weight: 700;
  }

  .v2-mobile-menu nav a:last-child {
    justify-content: center;
    margin-top: 16px;
    border: 1px solid var(--v2-ink);
    color: var(--v2-paper-bright);
    background: var(--v2-ink);
  }

  .v2-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    background: var(--v2-paper);
  }

  .v2-hero-copy {
    min-height: auto;
    padding: 58px clamp(28px, 9vw, 86px) 46px;
  }

  .v2-hero-figure {
    min-height: 520px;
    padding: 0 clamp(28px, 8vw, 74px) 62px;
  }

  .v2-hero-photo {
    min-height: 460px;
  }

  .v2-hero-stamp {
    top: 40px;
    left: 8px;
  }

  .v2-hero-figure figcaption {
    right: clamp(28px, 8vw, 74px);
    bottom: 30px;
  }

  .v2-hero-index {
    display: none;
  }

  .v2-pillar,
  .v2-pillar.is-curriculum {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .v2-pillar.is-curriculum .v2-pillar-copy {
    order: 2;
  }

  .v2-pillar.is-curriculum figure {
    order: 1;
  }

  .v2-routes,
  .v2-why,
  .v2-origin,
  .v2-people,
  .v2-trust {
    grid-template-columns: 1fr;
  }

  .v2-routes-intro,
  .v2-why-title,
  .v2-trust-heading {
    border-right: 0;
    border-bottom: 1px solid var(--v2-line-light);
  }

  .v2-routes-intro {
    padding-bottom: 74px;
  }

  .v2-why-title {
    min-height: 420px;
  }

  .v2-why-steps {
    grid-template-columns: 1fr;
  }

  .v2-why-steps li + li {
    border-top: 1px solid var(--v2-line-light);
    border-left: 0;
  }

  .v2-origin-photo {
    max-width: 720px;
    justify-self: center;
  }

  .v2-origin-photo img {
    min-height: 620px;
  }

  .v2-notes-head {
    grid-template-columns: 0.38fr 1fr;
  }

  .v2-note.is-large,
  .v2-note.is-product,
  .v2-note.is-school {
    grid-column: span 6;
    grid-row: auto;
  }

  .v2-note.is-large {
    grid-column: 1 / -1;
  }

  .v2-note.is-large img {
    height: 660px;
  }

  .v2-people {
    gap: 88px;
  }

  .v2-people-photo img {
    height: 700px;
  }

  .v2-trust-heading {
    border-bottom-color: var(--v2-line);
  }

  .v2-contact {
    grid-template-columns: 1fr 190px;
  }

  .v2-contact-kicker {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 62px;
  }
.v2-header {
    min-height: 62px;
    padding: 0 18px;
  }

  .v2-logo {
    width: 122px;
  }

  .v2-mobile-menu nav {
    top: 50px;
    right: -18px;
  }

  .v2-section {
    padding: 88px 22px;
  }

  .v2-hero::before {
    display: none;
  }

  .v2-hero-copy {
    min-height: auto;
    justify-content: flex-start;
    padding: 58px 24px 76px;
  }

  .v2-hero-meta,
  .v2-hero-copy h1 {
    display: none;
  }

  .v2-hero-lead {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.95;
  }

  .v2-hero-lead br {
    display: none;
  }

  .v2-hero-actions {
    display: grid;
    margin-top: 28px;
  }

  .v2-button {
    width: 100%;
    min-height: 51px;
    font-size: 13px;
  }

  .v2-scroll-cue {
    padding-top: 34px;
  }

  .v2-hero-figure {
    order: -1;
    height: max(430px, calc(100svh - 90px));
    min-height: max(430px, calc(100svh - 90px));
    padding: 0;
    opacity: 1;
    animation: none;
    transform: none;
    clip-path: none;
  }

  .v2-hero-photo {
    height: 100%;
    min-height: 0;
  }

  .v2-hero-photo img {
    min-height: 0;
    object-position: 50% 48%;
    filter: saturate(0.82) contrast(1.04);
    transform: none;
  }

  .v2-hero-photo::after {
    background:
      linear-gradient(180deg, rgba(23, 63, 71, 0.1) 0%, rgba(23, 63, 71, 0.02) 40%, rgba(23, 63, 71, 0.68) 100%),
      linear-gradient(90deg, rgba(23, 63, 71, 0.12), transparent 72%);
    mix-blend-mode: normal;
  }

  .v2-hero-keyword {
    position: absolute;
    z-index: 3;
    right: 20px;
    bottom: clamp(58px, 9svh, 88px);
    left: 24px;
    display: block;
    margin: 0;
    color: var(--v2-paper-bright);
    font-family: var(--v2-display);
    font-size: clamp(32px, 8.8vw, 36px);
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -0.035em;
  }

  .v2-hero-keyword span,
  .v2-hero-keyword strong {
    display: block;
    white-space: nowrap;
  }

  .v2-hero-keyword strong {
    margin-top: 2px;
    color: inherit;
    font-weight: 600;
  }

  .v2-hero-figure figcaption {
    display: none;
  }

  .v2-hero-stamp {
    top: 20px;
    left: 6px;
    width: 94px;
    height: 94px;
  }

  .v2-hero-stamp strong {
    font-size: 14px;
  }

  .v2-section-head,
  .v2-notes-head {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 62px;
  }

  .v2-section-head h2,
  .v2-notes-head h2,
  .v2-people h2,
  .v2-trust h2 {
    font-size: clamp(40px, 12.5vw, 56px);
    line-height: 1.2;
  }

  .v2-section-head > div > p,
  .v2-notes-head p:last-child {
    grid-column: auto;
    margin-top: 24px;
    font-size: 14px;
  }

  .v2-pillars {
    gap: 100px;
  }

  .v2-pillar,
  .v2-pillar.is-curriculum {
    gap: 46px;
  }

  .v2-pillar figure img,
  .v2-pillar.is-curriculum figure img {
    height: 390px;
  }

  .v2-pillar h3 {
    font-size: 44px;
  }

  .v2-pillar-copy > p:not(.v2-card-index) {
    margin-top: 24px;
    font-size: 14px;
  }

  .v2-pillar ul {
    grid-template-columns: 1fr;
  }

  .v2-pillar li {
    min-height: 50px;
  }

  .v2-pillar li + li {
    border-top: 1px solid var(--v2-line);
    border-left: 0;
  }

  .v2-routes-intro {
    padding: 80px 24px 66px;
  }

  .v2-routes h2 {
    margin-top: 44px;
    font-size: 48px;
  }

  .v2-route-list > a {
    min-height: 154px;
    grid-template-columns: 32px minmax(0, 1fr) 28px;
    gap: 14px;
    padding: 28px 22px;
  }

  .v2-route-copy strong {
    font-size: 22px;
  }

  .v2-route-copy small {
    font-size: 11px;
    line-height: 1.65;
  }

  .v2-route-arrow {
    font-size: 22px;
  }

  .v2-note-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 66px;
  }

  .v2-note.is-large,
  .v2-note.is-product,
  .v2-note.is-school {
    grid-column: auto;
  }

  .v2-note.is-large img,
  .v2-note.is-product img,
  .v2-note.is-school img {
    height: 360px;
  }

  .v2-note h3,
  .v2-note.is-product h3,
  .v2-note.is-school h3 {
    font-size: 26px;
  }

  .v2-why-title {
    min-height: auto;
    padding: 72px 24px;
  }

  .v2-why-title h2 {
    margin-top: 58px;
    font-size: clamp(36px, 10vw, 42px);
  }

  .v2-why-story {
    padding: 76px 24px 86px;
  }

  .v2-why-story > p {
    font-size: 15px;
    line-height: 2.15;
  }

  .v2-section-head .v2-work-title {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.38;
  }

  .v2-origin {
    gap: 70px;
  }

  .v2-origin-copy h2 {
    font-size: clamp(30px, 8.3vw, 34px);
    line-height: 1.46;
  }

  .v2-origin-copy h2 br {
    display: none;
  }

  .v2-origin-title-chunk {
    width: max-content;
    max-width: 100%;
    display: block;
    white-space: nowrap;
  }

  .v2-origin-copy > p:not(.v2-section-number) {
    font-size: 14px;
  }

  .v2-origin-photo {
    padding: 14px 14px 0 0;
  }

  .v2-origin-photo img {
    min-height: 440px;
  }

  .v2-why-steps li {
    min-height: 140px;
    padding: 28px 24px;
  }

  .v2-people {
    gap: 72px;
  }

  .v2-people-photo img {
    height: 480px;
  }

  .v2-photo-number {
    right: -10px;
    bottom: -65px;
  }

  .v2-people-copy > p:not(.v2-section-number) {
    font-size: 14px;
  }

  .v2-people-facts > div {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .v2-loop {
    margin-top: 36px;
  }

  .v2-trust-heading {
    padding: 78px 24px;
  }

  .v2-trust-links a {
    min-height: 132px;
    grid-template-columns: 1fr 30px;
    gap: 10px;
    padding: 26px 24px;
  }

  .v2-trust-links span {
    grid-column: 1;
  }

  .v2-trust-links strong {
    grid-column: 1;
    font-size: 22px;
  }

  .v2-trust-links i {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .v2-contact {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 84px 24px 92px;
  }

  .v2-contact h2 {
    font-size: 50px;
  }

  .v2-contact div > p {
    font-size: 14px;
  }

  .v2-contact > a {
    width: 160px;
    justify-self: end;
  }

  .v2-footer {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 72px 24px 34px;
  }

  .v2-footer > nav {
    grid-template-columns: 1fr;
  }

  .v2-footer nav a:nth-child(odd) {
    margin-right: 0;
  }

  .v2-footer-meta {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
  }
}

@media (max-width: 360px) {
  .v2-hero-copy {
    padding-right: 20px;
    padding-left: 20px;
  }

  .v2-loop strong {
    font-size: 15px;
  }

  .v2-contact h2 {
    font-size: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .v2-hero-meta,
  .v2-hero h1 span,
  .v2-hero h1 strong,
  .v2-hero-lead,
  .v2-hero-actions,
  .v2-hero-figure {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    clip-path: none !important;
  }
}

@media print {
  .v2-header,
  .v2-skip {
    display: none !important;
  }

  .journal-alt {
    color: #111;
    background: #fff;
  }
}


/* WEB-22: consultation CTA */
.v2-contact-cta {
  position: relative;
  z-index: 1;
  min-width: min(100%, 330px);
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 30px;
  padding: 24px;
  overflow: hidden;
  color: var(--v2-paper-bright);
  border: 1px solid rgba(251, 250, 245, 0.62);
  background:
    linear-gradient(135deg, rgba(251, 250, 245, 0.16), rgba(251, 250, 245, 0.03)),
    rgba(3, 43, 43, 0.34);
  box-shadow: 10px 10px 0 rgba(216, 255, 91, 0.92);
  text-decoration: none;
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.v2-contact-cta::before {
  position: absolute;
  top: -64px;
  right: -64px;
  width: 170px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(251, 250, 245, 0.25);
  border-radius: 50%;
  transition: transform 380ms cubic-bezier(.2, .75, .2, 1);
}

.v2-contact-cta-copy,
.v2-contact-cta-mark {
  position: relative;
  z-index: 1;
  display: grid;
}

.v2-contact-cta-copy {
  gap: 7px;
}

.v2-contact-cta-copy small,
.v2-contact-cta-copy em,
.v2-contact-cta-mark b {
  font-family: var(--v2-mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
}

.v2-contact-cta-copy small {
  color: var(--v2-citrus);
}

.v2-contact-cta-copy strong {
  font-family: var(--v2-display);
  font-size: clamp(27px, 1.9vw, 33px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.06em;
  white-space: nowrap;
}

.v2-contact-cta-copy em {
  color: rgba(251, 250, 245, 0.76);
  line-height: 1.6;
}

.v2-contact-cta-mark {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
}

.v2-contact-cta-mark i {
  font-family: var(--v2-display);
  font-size: 42px;
  font-style: normal;
  line-height: .8;
  transition: transform 220ms ease;
}

.v2-contact-cta-mark b {
  padding-bottom: 2px;
}

.v2-contact-cta:hover,
.v2-contact-cta:focus-visible {
  color: var(--v2-ink);
  background: var(--v2-citrus);
  box-shadow: 14px 14px 0 rgba(251, 250, 245, 0.72);
  transform: translate(-4px, -4px);
}

.v2-contact-cta:hover::before,
.v2-contact-cta:focus-visible::before {
  border-color: rgba(5, 47, 47, 0.28);
  transform: scale(1.34);
}

.v2-contact-cta:hover .v2-contact-cta-copy small,
.v2-contact-cta:focus-visible .v2-contact-cta-copy small,
.v2-contact-cta:hover .v2-contact-cta-copy em,
.v2-contact-cta:focus-visible .v2-contact-cta-copy em {
  color: rgba(21, 29, 24, 0.72);
}

.v2-contact-cta:hover .v2-contact-cta-mark i,
.v2-contact-cta:focus-visible .v2-contact-cta-mark i {
  transform: translateX(8px);
}


@media (max-width: 640px) {
.v2-contact-cta {
    min-height: 178px;
    width: 100%;
    padding: 20px;
    box-shadow: 9px 9px 0 rgba(216, 255, 91, 0.92);
  }

  .v2-contact-cta-copy strong {
    font-size: 32px;
  }

  .v2-contact-cta-mark i {
    font-size: 38px;
  }

}
