:root {
  --navy: #1B2A4A;
  --offwhite: #F7F6F3;
  --ink: #1F2429;
  --ink-soft: #5B6472;
  --border: #E3E1DB;
  --accent: #1B2A4A;
  --radius: 14px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.7;
}

main { transition: opacity 0.25s ease; }
main.persona-transition { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  main { transition: none; }
}

/* ---------- スクロール連動フェードイン ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.why__cards .why__card:nth-child(2) { transition-delay: 0.1s; }
.why__cards .why__card:nth-child(3) { transition-delay: 0.2s; }

.numbers__grid .numbers__item:nth-child(2) { transition-delay: 0.06s; }
.numbers__grid .numbers__item:nth-child(3) { transition-delay: 0.12s; }
.numbers__grid .numbers__item:nth-child(4) { transition-delay: 0.18s; }
.numbers__grid .numbers__item:nth-child(5) { transition-delay: 0.24s; }
.numbers__grid .numbers__item:nth-child(6) { transition-delay: 0.3s; }

.benefits__grid .benefits__card:nth-child(2) { transition-delay: 0.08s; }
.benefits__grid .benefits__card:nth-child(3) { transition-delay: 0.16s; }
.benefits__grid .benefits__card:nth-child(4) { transition-delay: 0.24s; }
.benefits__grid .benefits__card:nth-child(5) { transition-delay: 0.32s; }
.benefits__grid .benefits__card:nth-child(6) { transition-delay: 0.4s; }

.positions__grid .positions__card:nth-child(2) { transition-delay: 0.1s; }
.positions__grid .positions__card:nth-child(3) { transition-delay: 0.2s; }

h1, h2, blockquote {
  font-family: 'Noto Serif JP', serif;
  margin: 0;
  color: var(--navy);
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 3px;
  flex-shrink: 0;
  background: var(--accent);
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }

.hero-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.hero-tag__en {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero-tag__en::before {
  content: "";
  width: 32px;
  height: 3px;
  flex-shrink: 0;
  background: var(--accent);
  border-radius: 2px;
}
.hero-tag__ja {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.btn:hover { opacity: 0.85; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--small { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

.link-arrow { font-size: 0.85rem; font-weight: 500; color: var(--accent); white-space: nowrap; }

.persona-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 30;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(27, 42, 74, 0.28);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.persona-fab:hover { opacity: 0.88; transform: translateY(-1px); }

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 5.6rem;
  z-index: 30;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(27, 42, 74, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s, background 0.2s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--offwhite); }
.back-to-top svg { width: 20px; height: 20px; }

.section-heading { font-size: 1.7rem; margin-bottom: 2.2rem; }
.section-heading--center { text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 246, 243, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.site-header__brand { display: flex; align-items: center; gap: 0.7rem; }
.site-logo { font-family: 'Noto Serif JP', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.persona-badge {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}
.persona-badge[hidden] { display: none; }
.site-nav { display: flex; gap: 1.6rem; font-size: 0.88rem; margin-left: auto; }
.site-nav a {
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.2s ease;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a:hover::after { width: 100%; }
.site-header__actions { display: flex; align-items: center; gap: 1rem; }

/* ---------- Nav toggle (hamburger) & drawer ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(10, 14, 26, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: min(78vw, 320px);
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 6.5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.drawer__cta {
  margin-top: 1.4rem;
  text-align: center;
  border-bottom: none;
  padding: 0.85rem 1.6rem;
}
.drawer__persona-switch {
  margin-top: auto;
  padding: 0.85rem 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.drawer__persona-switch:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% center; /* 初期表示（未選択時）は新卒コピーと同じ写真のため、新卒用の位置をデフォルトにする */
  display: block;
  transform-origin: center center;
  animation: hero-bg-zoom 22s ease-in-out infinite alternate;
}
/* 被写体の位置に合わせて切り出し位置をペルソナごとに調整 */
body[data-persona="chuto"] .hero__bg img { object-position: 40% center; }
body[data-persona="josei"] .hero__bg img { object-position: 78% center; }
body[data-persona="senior"] .hero__bg img { object-position: 0% center; }
@keyframes hero-bg-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg img { animation: none; }
}
/* スマホ用切り出し画像は構図が異なるため、切り出し位置を専用に調整 */
@media (max-width: 860px) {
  .hero__bg img { object-position: 40% center; }
  body[data-persona="chuto"] .hero__bg img { object-position: 65% center; }
  body[data-persona="josei"] .hero__bg img { object-position: 80% center; }
  body[data-persona="senior"] .hero__bg img { object-position: 55% center; }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(10, 14, 26, 0.78) 0%, rgba(10, 14, 26, 0.5) 45%, rgba(10, 14, 26, 0.15) 78%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 8rem 1.5rem;
}
.hero__text { max-width: 640px; }
.hero h1 { font-size: 2.5rem; line-height: 1.4; margin-bottom: 1.8rem; color: #fff; }
.hero__subcopy { color: rgba(255, 255, 255, 0.88); margin-bottom: 2.2rem; }
.hero__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ---------- Message ---------- */
.message {
  max-width: 1180px;
  margin: 6rem auto 0;
  padding: 6rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
}
.message__image img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.message h2 { font-size: 1.6rem; margin-bottom: 1.8rem; }
.message p { color: var(--ink-soft); }

/* ---------- Why ---------- */
.why { max-width: 1180px; margin: 0 auto; padding: 8rem 1.5rem; text-align: center; }
.why__heading { font-size: 1.8rem; margin: 0 auto 4rem; max-width: 32rem; }
.why__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
}
.why__card-media { position: relative; }
.why__card-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.why__icon {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  box-shadow: 0 3px 10px rgba(27, 42, 74, 0.18);
}
.why__icon svg { width: 20px; height: 20px; }
.why__card-body { padding: 1.8rem 1.8rem 2.1rem; }
.why__card-title { font-weight: 700; margin-bottom: 0.8rem; }
.why__card-desc { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Numbers ---------- */
.numbers { background: var(--navy); color: #fff; padding: 8rem 1.5rem; }
.numbers__intro { max-width: 1180px; margin: 0 auto 5rem; text-align: center; }
.numbers__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #9DAAC4;
  margin-bottom: 1.2rem;
}
.numbers__eyebrow::before,
.numbers__eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 3px;
  flex-shrink: 0;
  background: #9DAAC4;
  border-radius: 2px;
}
.numbers__heading { color: #fff; font-size: 2.1rem; margin-bottom: 1.2rem; }
.numbers__lead { color: #B9C2D4; max-width: 34rem; margin: 0 auto; }
.numbers__grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.numbers__item {
  padding: 2.8rem 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
@media (min-width: 861px) {
  .numbers__item:nth-child(3n+1) { border-left: none; }
  .numbers__item:nth-child(-n+3) { padding-top: 0; }
  .numbers__item:nth-child(n+4) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-bottom: 0;
  }
}
.numbers__label {
  display: block;
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: #9DAAC4;
}
.numbers__value { display: block; font-family: 'Noto Serif JP', serif; font-size: 5.6rem; font-weight: 700; line-height: 1; }
.numbers__value small { font-size: 1.9rem; font-weight: 500; margin-left: 0.1em; }

/* ---------- Voice ---------- */
.voice {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8rem 1.5rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.voice__image, .voice__text { min-width: 0; }
.voice__image { position: sticky; top: 6rem; }
.voice__image img { border-radius: var(--radius); width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.voice blockquote { font-size: 1.4rem; line-height: 1.8; margin-bottom: 2rem; }
.voice__name { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 2rem; }
.voice__body { color: var(--ink-soft); line-height: 2; }

/* ---------- Benefits ---------- */
.benefits { max-width: 1180px; margin: 0 auto; padding: 8rem 1.5rem; }
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.benefits__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  text-align: left;
}
.benefits__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.benefits__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
}
.benefits__icon svg { width: 24px; height: 24px; }
.benefits__title { font-size: 1.1rem; font-weight: 700; white-space: nowrap; }
.benefits__desc { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Positions ---------- */
.positions { max-width: 1180px; margin: 0 auto; padding: 6rem 1.5rem; }
.positions__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.positions__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.positions__image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.positions__body {
  flex: 1;
  padding: 1.6rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
}
.positions__title { font-weight: 700; margin-bottom: 0.4rem; }
.positions__desc { font-size: 0.85rem; color: var(--ink-soft); }
.positions__footer {
  margin-top: auto;
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.positions__meta { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag {
  font-size: 0.75rem;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  white-space: nowrap;
}

/* ---------- Entry ---------- */
.entry {
  max-width: 1180px;
  margin: 3rem auto 0;
  padding: 6rem 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}
.entry__note { color: var(--ink-soft); margin: 1.2rem 0 2.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.4rem; }
.form-row--full { display: block; margin-bottom: 1.4rem; }
label { font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); display: block; }
.required { color: #C0392B; font-size: 0.72rem; }
input, select, textarea {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  background: #fff;
}
.entry__consent {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}
.entry__consent input[type="checkbox"] {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0;
  padding: 0;
  border-radius: 4px;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.entry__consent > span { font-size: 0.85rem; color: var(--ink); }
.entry__consent a { text-decoration: underline; }
.entry__submit { margin-top: 1rem; }
.entry__demo-note { font-size: 0.76rem; color: var(--ink-soft); margin-top: 1.2rem; }
.entry__image img { border-radius: var(--radius); width: 100%; height: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #C6CEDE; padding: 1.8rem 1.5rem; }
.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-right: 11rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.site-logo--light { color: #fff; }
.site-footer__brand { display: flex; align-items: baseline; gap: 1.2rem; flex-wrap: wrap; }
.site-footer__links { display: flex; flex-wrap: wrap; justify-content: flex-end; column-gap: 1.6rem; row-gap: 0.5rem; }
.site-footer__links a {
  position: relative;
  padding-bottom: 0.2rem;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}
.site-footer__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: #fff;
  transition: width 0.2s ease;
}
.site-footer__links a:hover { color: #fff; }
.site-footer__links a:hover::after { width: 100%; }
.site-footer__copyright { font-size: 0.75rem; color: #8B97AE; white-space: nowrap; }

/* ---------- Persona modal ---------- */
.persona-modal {
  position: fixed;
  inset: 0;
  background: rgba(27, 42, 74, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1.5rem;
}
.persona-modal[hidden] { display: none; }
.persona-modal__panel {
  background: #fff;
  border-radius: 18px;
  padding: 2.8rem;
  max-width: 30rem;
  width: 100%;
  text-align: center;
}
.persona-modal__eyebrow { font-size: 0.72rem; letter-spacing: 0.12em; color: var(--ink-soft); margin-bottom: 1.2rem; }
.persona-modal__panel h2 { font-size: 1.3rem; margin-bottom: 2.2rem; }
.persona-modal__options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.8rem; }
.persona-modal__option {
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--offwhite);
  border-radius: 12px;
  padding: 1rem 0.5rem;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.persona-modal__option:hover { border-color: var(--navy); background: #fff; }
.persona-modal__option-label { display: block; font-weight: 700; font-size: 0.92rem; margin-bottom: 0.3rem; white-space: nowrap; }
.persona-modal__option-sub { display: block; font-size: 0.76rem; color: var(--ink-soft); }
.persona-modal__skip {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header__actions { margin-left: auto; flex-shrink: 0; }
  .site-header__inner { padding: 0.9rem 1.2rem; gap: 0.6rem; }
  .site-header__brand { flex-direction: column; align-items: flex-start; gap: 0.2rem; min-width: 0; }
  .persona-badge { max-width: 100%; overflow: hidden; text-overflow: ellipsis; font-size: 0.68rem; padding: 0.2rem 0.55rem; }
  .persona-fab { display: none; }
  .back-to-top { right: 1rem; bottom: 1rem; width: 44px; height: 44px; }
  .hero { min-height: 520px; }
  .hero__inner { padding: 5rem 1.2rem; }
  .hero__text { max-width: none; }
  .message { grid-template-columns: 1fr; padding: 2rem 1.2rem; }
  .why__heading { font-size: 1.4rem; }
  .why__cards { grid-template-columns: 1fr; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .numbers__item {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 1.8rem 1rem;
  }
  .numbers__item:nth-child(odd) { border-left: none; }
  .numbers__item:nth-child(-n+2) { border-top: none; padding-top: 0; }
  .numbers__item:nth-child(n+5) { padding-bottom: 0; }
  .numbers__value { font-size: 2.6rem; }
  .numbers__heading { font-size: 1.6rem; }
  .voice { grid-template-columns: 1fr; }
  .voice__image { position: static; }
  .voice__image img { aspect-ratio: 16/9; }
  .benefits__grid { grid-template-columns: 1fr; }
  .positions__grid { grid-template-columns: 1fr; }
  .entry { grid-template-columns: 1fr; }
  .entry__image { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .persona-modal__options { grid-template-columns: 1fr; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; padding-right: 0; }
  .site-footer__links { justify-content: flex-start; }
}
