:root {
  --ink: #171b24;
  --text: #2b2d31;
  --muted: #73777d;
  --line: #c9c9c9;
  --paper: #f3f3f3;
  --bg: #e9e9e9;
  --white: #fff;
  --danger: #e84545;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:#EEEEEE;
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.8;
}

body::before {
  content: "";
  position: fixed;
  inset: -12% auto auto -18%;
  z-index: 2;
  width: 38vw;
  height: 38vw;
  background: radial-gradient(circle, rgba(255, 255, 255, .68) 0, rgba(255, 255, 255, 0) 66%);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(.92);
  transition: opacity .8s ease, transform 1.2s cubic-bezier(.22, 1, .36, 1);
}

body.is-ready::before {
  opacity: .5;
  transform: translate3d(0, 0, 0) scale(1);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 36px;
  left: 42px;
  right: 42px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.brand-pill {
  display: inline-flex;
  width: 256px;
  height: 56px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  background: var(--ink);
  border-radius: 32px;
  line-height: 1;
  pointer-events: auto;
}

.brand-mark {
  position: relative;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1px;
}

.brand-mark::before,
.footer-brand::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 12px;
  margin-right: 6px;
  background: currentColor;
  clip-path: polygon(0 70%, 44% 0, 58% 20%, 30% 70%, 100% 70%, 100% 100%, 0 100%);
}

.brand-sub {
  margin-top: 3px;
  font-size: 8px;
  opacity: .85;
}

.menu-toggle {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.site-menu {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  background: rgba(23, 27, 36, .94);
  transition: opacity .22s ease, visibility .22s ease;
  pointer-events: auto;
}

.site-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.site-menu__close {
  position: absolute;
  top: 36px;
  right: 42px;
  z-index: 2;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.menu-list {
  display: grid;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.menu-list a {
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
}

.site-main {
  min-height: 80vh;
}

.section,
.page-hero,
.form-page,
.page-content,
.bottom-cta,
.recruit-page-hero,
.philosophy-page__hero,
.philosophy-band,
.philosophy-culture,
.philosophy-principles,
.philosophy-members {
  isolation: isolate;
}

.section .section-inner > *,
.page-hero .section-inner > *,
.form-page > *,
.page-content > *,
.bottom-cta > * ,
.recruit-page-hero .section-inner > *,
.philosophy-page__hero .section-inner > *,
.philosophy-band .section-inner > *,
.philosophy-culture .section-inner > *,
.philosophy-principles .section-inner > *,
.philosophy-members .section-inner > * {
  opacity: 0;
  transform: translate3d(0, 54px, 0) scale(.985);
  transition:
    opacity .75s ease,
    transform 1s cubic-bezier(.22, 1, .36, 1),
    filter .9s ease;
  filter: blur(10px);
}

.section.is-inview .section-inner > *,
.page-hero.is-inview .section-inner > *,
.form-page.is-inview > *,
.page-content.is-inview > *,
.bottom-cta.is-inview > *,
.recruit-page-hero.is-inview .section-inner > *,
.philosophy-page__hero.is-inview .section-inner > *,
.philosophy-band.is-inview .section-inner > *,
.philosophy-culture.is-inview .section-inner > *,
.philosophy-principles.is-inview .section-inner > *,
.philosophy-members.is-inview .section-inner > * {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.section .section-inner > *:nth-child(2),
.page-hero .section-inner > *:nth-child(2),
.recruit-page-hero .section-inner > *:nth-child(2),
.philosophy-page__hero .section-inner > *:nth-child(2),
.philosophy-band .section-inner > *:nth-child(2),
.philosophy-culture .section-inner > *:nth-child(2),
.philosophy-principles .section-inner > *:nth-child(2),
.philosophy-members .section-inner > *:nth-child(2) {
  transition-delay: .08s;
}

.section .section-inner > *:nth-child(3),
.page-hero .section-inner > *:nth-child(3),
.recruit-page-hero .section-inner > *:nth-child(3),
.philosophy-page__hero .section-inner > *:nth-child(3),
.philosophy-band .section-inner > *:nth-child(3),
.philosophy-culture .section-inner > *:nth-child(3),
.philosophy-principles .section-inner > *:nth-child(3),
.philosophy-members .section-inner > *:nth-child(3) {
  transition-delay: .16s;
}

.image-card,
.case-card,
.news-item,
.contact-card,
.member-card,
.recruit-member-card,
.philosophy-principle,
.philosophy-culture__grid article,
.office-slider,
.qa-item,
.office-caption {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(.97);
  filter: blur(8px);
  transition:
    opacity .75s ease,
    transform .95s cubic-bezier(.22, 1, .36, 1),
    filter .9s ease,
    box-shadow .4s ease;
}

.image-card.is-inview,
.case-card.is-inview,
.news-item.is-inview,
.contact-card.is-inview,
.member-card.is-inview,
.recruit-member-card.is-inview,
.philosophy-principle.is-inview,
.philosophy-culture__grid article.is-inview,
.office-slider.is-inview,
.qa-item.is-inview,
.office-caption.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.image-card:hover,
.case-card:hover,
.contact-card:hover,
.member-card:hover,
.recruit-member-card:hover {
  transform: translate3d(0, -8px, 0) scale(1.01);
  box-shadow: 0 22px 50px rgba(23, 27, 36, .12);
}

.hero-title span,
.section h1,
.section h2,
.page-hero h1,
.page-hero h2,
.recruit-page-hero h1,
.philosophy-page__hero h1 {
  text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: text-shadow .6s ease, transform .8s cubic-bezier(.22, 1, .36, 1);
}

body.is-ready .hero-title span,
body.is-ready .section h1,
body.is-ready .section h2,
body.is-ready .page-hero h1,
body.is-ready .page-hero h2,
body.is-ready .recruit-page-hero h1,
body.is-ready .philosophy-page__hero h1 {
  text-shadow: 0 10px 30px rgba(255, 255, 255, .15);
}

.hero-visual__bg2 img,
.mid-visual__bg2 img {
  animation: visualFloat 18s ease-in-out infinite alternate;
}

.hero-visual__overlay img,
.mid-visual__overlay img {
  animation: visualDrift 12s ease-in-out infinite alternate;
}

@keyframes visualFloat {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.04) translate3d(0, -14px, 0);
  }
}

@keyframes visualDrift {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.025) translate3d(12px, -8px, 0);
  }
}

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

  body::before,
  .site-header,
  .section .section-inner > *,
  .page-hero .section-inner > *,
  .form-page > *,
  .page-content > *,
  .bottom-cta > *,
  .recruit-page-hero .section-inner > *,
  .philosophy-page__hero .section-inner > *,
  .philosophy-band .section-inner > *,
  .philosophy-culture .section-inner > *,
  .philosophy-principles .section-inner > *,
  .philosophy-members .section-inner > *,
  .image-card,
  .case-card,
  .news-item,
  .contact-card,
  .member-card,
  .recruit-member-card,
  .philosophy-principle,
  .philosophy-culture__grid article,
  .office-slider,
  .qa-item,
  .logo-cluster img,
  .outcomes-marquee__track,
  .office-caption,
  .hero-visual__bg2 img,
  .mid-visual__bg2 img,
  .hero-visual__overlay img,
  .mid-visual__overlay img {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

.section,
.page-hero {
  position: relative;
  padding: 110px 0;
}

.section-inner {
  width: min(1130px, calc(100% - 80px));
  margin: 0 auto;
}

.narrow {
  width: min(960px, calc(100% - 80px));
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 42px;
}

h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.7;
}

p {
  margin: 0;
}

.section-label {
  margin: 0 0 10px;
  color: rgba(43, 45, 49, .38);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero {
  min-height: 760px;
  padding-top: 260px;
}

.home-intro {
  --hero-progress: 0;
  --hero-overlay-reveal: 0%;
  position: relative;
}

.home-hero {
  overflow: visible;
  padding-bottom: 198px;
}

.hero-visual {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-visual__layer,
.hero-visual__layer img {
  position: absolute;
  inset: 0;
}

.hero-visual__layer {
  width: 100%;
  height: 100%;
}

.hero-visual__layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-visual__bg1 {
  z-index: 4;
  height: 70%;
}

.hero-visual__bg2 {
  z-index: 2;
}

.hero-visual__overlay {
  z-index: 3;
  clip-path: inset(0 calc(100% - var(--hero-overlay-reveal)) 0 0);
  transition: clip-path .32s linear;
  will-change: clip-path;
}

.home-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(233, 233, 233, 0) 0 62%, rgba(233, 233, 233, .48) 82%, var(--bg) 100%); */
  pointer-events: none;
  z-index: 0;
}

.home-intro .section-inner {
  position: relative;
  z-index: 1;
}

.about-section {
  padding-top: 88px;
  padding-bottom: 140px;
}

.hero-grid,
.two-col,
.recruit-page-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.recruit-page-grid h1 {
  font-size: 84px;
  line-height: 1.02;
}

.recruit-page-grid-text {
    font-size: 24px;
    padding-top: 95px;
}
.hero-title {
  margin: 0;
  color: var(--text);
  font-size: 50px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.22;
}

.hero-title span {
  display: inline-block;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 12px 8px;
  background: rgba(255, 255, 255, .96);
  opacity: .18;
  filter: blur(8px);
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 1.15s ease,
    filter 1.15s ease,
    transform 1.2s cubic-bezier(.22, 1, .36, 1),
    text-shadow .6s ease;
}

.hero-title span:last-child {
  margin-bottom: 0;
}

.hero-subtitle {
  margin: 26px 0 0;
  color: #1f232b;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(255, 255, 255, .38);
}

.hero-subtitle span {
  display: block;
  opacity: .18;
  filter: blur(8px);
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 1.15s ease,
    filter 1.15s ease,
    transform 1.2s cubic-bezier(.22, 1, .36, 1),
    text-shadow .6s ease;
}

.hero-subtitle span:last-child {
  margin-bottom: 0;
}

body.is-ready .hero-title span {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

body.is-ready .hero-title span:last-child {
  transition-delay: .18s;
}

body.is-ready .hero-subtitle span {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

body.is-ready .hero-subtitle span:first-child {
  transition-delay: .28s;
}

body.is-ready .hero-subtitle span:last-child {
  transition-delay: .4s;
}

.mini-button,
.dark-button,
.white-button,
.arrow-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 36px;
  font-weight: 800;
}

.mini-button {
  justify-self: end;
  min-width: 272px;
  min-height: 66px;
  padding: 0 34px;
  color: var(--text);
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(43, 45, 49, .32);
  backdrop-filter: blur(8px);
  font-size: 14px;
  letter-spacing: .02em;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.mini-button:hover,
.mini-button:active {
  color: var(--white);
  background: #2A2A2A;
  border-color: #2A2A2A;
}

.dark-button {
  position: relative;
  width: 285px;
  min-height: 68px;
  justify-content: flex-start;
  padding: 0 86px 0 34px;
  color: var(--white);
  background: var(--ink);
  /* border: 1px solid var(--ink); */
  font-size: 15px;
  letter-spacing: .02em;
  margin-top: 180px;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.white-button {
  position: relative;
  min-width: 290px;
  min-height: 68px;
  justify-content: flex-start;
  padding: 0 88px 0 34px;
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
  transition: background-color .2s ease, color .2s ease;
}

.dark-button::after,
.white-button::after {
  content: "\2192";
  position: absolute;
  right: 11px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
  border-radius: 50%;
}

.dark-button::after {
  color: var(--ink);
  background: var(--white);
  transition: background-color .2s ease, color .2s ease;
}

.dark-button:hover,
.dark-button:active {
  color: var(--ink);
  background: var(--white);
  border-color: var(--ink);
  border: 1px solid var(--ink);
}

.dark-button:hover::after,
.dark-button:active::after {
  color: var(--white);
  background: var(--ink);
  
}

.white-button::after {
  color: var(--white);
  background: var(--ink);
  transition: background-color .2s ease, color .2s ease;
}

.white-button:hover,
.white-button:active {
  color: var(--white);
  background: #2A2A2A;
}

.white-button:hover::after,
.white-button:active::after {
  color: #2A2A2A;
  background: var(--white);
}

.about-copy {
  position: relative;
  z-index: 1;
}

.about-copy--lead {
  display: grid;
  /* min-height: 430px; */
}

.about-kicker {
  margin-bottom: 5px;
  color: rgba(43, 45, 49, .55);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}

.about-copy h2 {
  font-size: 62px;
  line-height: 1;
}

.body-copy {
  max-width: 520px;
  margin-left: auto;
  padding-top: 62px;
  font-size: 20px;
}

.body-copy h3 {
  margin-bottom: 30px;
  font-size: 28px;
  line-height: 1.9;
  letter-spacing: .02em;
}

.body-copy p {
  margin-top: 0;
  color: #111;
  font-weight: 500;
  line-height: 2;
  letter-spacing: .02em;
}

.dark-section {
  padding-top: 86px;
  padding-bottom: 96px;
  color: var(--white);
  background: var(--ink);
}

.dark-section h2,
.dark-section h3,
.dark-section .eyebrow {
  color: var(--white);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.business-grid {
  gap: 22px;
  margin-top: 34px;
}

.image-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 26px;
  color: var(--text);
  background: var(--white);
  border-radius: 26px;
}

.business-grid .image-card {
  min-height: 470px;
  padding: 14px 14px 16px;
  border-radius: 18px;
}

.image-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
}

.business-grid .image-card img {
  border-radius: 10px;
}

.image-card h3,
.image-card p {
  padding: 0;
}

.image-card h3 {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

.business-grid .image-card h3 {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: #000;
}

.image-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.business-grid .image-card p {
  margin-top: 14px;
  color: #2C2C2C;
  font-size: 14px;
  line-height: 2.05;
}

.business-card__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  align-self: flex-end;
  font-size: 17px;
  font-weight: 800;
}

.business-grid .business-card__link {
  gap: 8px;
  padding-top: 15px;
  font-size: 15px;
  font-weight: 700;
}

.business-card__link::after {
  content: ">";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 14px;
}

.business-grid .business-card__link::after {
  width: 22px;
  height: 22px;
  background: url("../images/arrow.svg") center / contain no-repeat;
  border-radius: 0;
  font-size: 0;
}

.outcomes-section {
  padding-top: 136px;
  padding-bottom: 128px;
}

.mid-visual-block {
  --mid-visual-reveal: 0%;
  position: relative;
}

.page-visual-block {
  --mid-visual-reveal: 0%;
  position: relative;
}

.page-visual-content {
  position: relative;
  z-index: 1;
}

.mid-visual {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.mid-visual__layer,
.mid-visual__layer img {
  position: absolute;
  inset: 0;
}

.mid-visual__layer {
  width: 100%;
  height: 100%;
}

.mid-visual__layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.mid-visual__bg2 {
  z-index: 1;
}

.mid-visual__overlay {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--mid-visual-reveal)) 0 0);
  transition: clip-path .32s linear;
  will-change: clip-path;
}

.mid-visual-block .section-inner {
  position: relative;
  z-index: 1;
}

.outcomes-copy {
  display: grid;
}

.outcomes-copy h3 {
  margin-left: 0px;
  font-size: 32px;
  line-height: 1.72;
  margin-top: 156px;
  text-align: center;
}

.logo-cluster {
  display: grid;
  gap: 18px;
}

.logo-cluster img {
  display: block;
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.outcomes-logos {
  width: min(620px, 100%);
  margin-left: auto;
  padding-top: 180px;
  overflow: hidden;
}

.outcomes-marquee {
  position: relative;
  overflow: hidden;
  padding: 6px 0;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 28px, 0);
  transition:
    opacity .8s ease,
    filter .9s ease,
    transform 1s cubic-bezier(.22, 1, .36, 1);
}

.outcomes-section.is-inview .outcomes-marquee {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.outcomes-section.is-inview .outcomes-marquee--secondary {
  transition-delay: .14s;
}

.outcomes-marquee::before,
.outcomes-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}

.outcomes-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(233, 233, 233, 0) 100%);
}

.outcomes-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, rgba(233, 233, 233, 0) 100%);
}

.outcomes-marquee__track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: outcomesMarquee 30s linear infinite;
  will-change: transform;
}

.outcomes-marquee--secondary .outcomes-marquee__track {
  animation-duration: 34s;
  animation-delay: 0s;
}

.outcomes-logo-card {
  display: flex;
  min-width: 150px;
  width: 150px;
  height: 86px;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  background: rgba(255, 255, 255, .52);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.outcomes-logo-card--wide {
  min-width: 190px;
  width: 190px;
}

.outcomes-logo {
  width: 100%;
  max-height: 48px;
  object-fit: contain;
}

@keyframes outcomesMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }
}

.case-grid,
.member-grid,
.job-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.case-card,
.member-card,
.job-card {
  background: rgba(255, 255, 255, .7);
  border-radius: 16px;
}

.case-card {
  padding: 12px;
  border: 1px solid rgba(43, 45, 49, .36);
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(2px);
}

.case-card img,
.job-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 12px;
}

.case-intro p:not(.eyebrow) {
  max-width: 430px;
  margin-top: 34px;
  font-size: 18px;
  line-height: 2;
}

.case-more {
  margin-top: 92px;
}

.case-card__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 6px 6px;
}

.case-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}

.case-card__arrow {
  flex: none;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(43, 45, 49, .58);
  border-radius: 50%;
  font-size: 16px;
}

.news-section {
  padding-top: 102px;
  padding-bottom: 112px;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex-direction: column;
  min-height: 100px;
  padding: 18px 22px;
  color: var(--white);
  background: rgba(43, 43, 43, .98);
  border-radius: 22px;
  font-size: 18px;
  line-height: 1.7;
}

.news-item span {
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
}

.recruit-band {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--ink);
}

.recruit-panel {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 68px;
  align-items: center;
  min-height: 510px;
  color: var(--white);
  padding-top: 70px;
  padding-bottom: 70px;
}

.recruit-panel h2,
.recruit-panel .eyebrow {
  color: var(--white);
}

.recruit-copy .eyebrow {
  margin-bottom: 5px;
}

.recruit-copy > p:not(.eyebrow) {
  margin: 66px 0 184px;
}

.recruit-copy {
  max-width: 390px;
}

.recruit-panel img,
.recruit-page-grid img,
.office-section img {
  width: 100%;
  /* object-fit: cover; */
  object-position: center 8%;
  border-radius: var(--radius);
}

.bottom-cta {
  display: grid;
  gap: 40px;
  place-items: center;
  padding: 90px 20px 96px;
  color: var(--white);
  background: #5d6267;
  text-align: center;
}

.bottom-cta p {
  font-size: 20px;
  font-weight: 800;
}

.cta-button {
  min-width: 272px;
  justify-content: center;
  padding: 0 34px;
}

.cta-button:hover,
.cta-button:active {
  color: var(--white);
  background: #2A2A2A;
}

.cta-button:hover::after,
.cta-button:active::after {
  color: inherit;
  background-color: transparent;
  background: url("../images/cta-plane.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
}

.cta-button::after {
  content: "";
  width: 50x;
  height: 21px;
  background: url("../images/cta-plane.svg") center / contain no-repeat;
  font-size: 0;
}

.footer-logo img {
  width: 50%;
}
@media (min-width: 901px) {
  body {
    font-size: 15px;
  }
  .sp-only {
    display: none;
      
    } 
  .section,
  .page-hero {
    padding: 96px 0 173px 0;
  }

  .section-inner {
    width: min(1180px, calc(100% - 90px));
  }

  .site-header {
    top: 36px;
    left: 42px;
    right: 42px;
  }

  .brand-pill {
    width: 258px;
    height: 54px;
  }

  .menu-toggle {
    width: 56px;
    height: 56px;
  }

  .eyebrow {
    margin-bottom: 5px;
    color: rgba(43, 45, 49, .44);
    font-size: 15px;
    font-weight: 700;
  }

  h1 {
    font-size: 46px;
    line-height: 1.42;
  }

  h2 {
    font-size: 62px;
    line-height: 1.05;
  }

  h3 {
    font-size: 28px;
    line-height: 1.7;
  }

  .hero {
    min-height: 670px;
    padding-top: 480px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: end;
  }

  .two-col {
    gap: 112px;
    align-items: start;
  }

  .mini-button {
    margin-bottom: 8px;
  }

  .dark-section {
    border-radius: 28px 28px 0 0;
  }

  .recruit-band {
    padding: 30px 0;
  }

  .card-grid {
    gap: 26px;
    margin-top: 46px;
  }

  .business-grid {
    gap: 18px;
    margin-top: 50px;
  }

  .business-grid .image-card {
    min-height: 0;
    padding: 25px 25px 24px;
  }

  .image-card h3 {
    margin-top: 20px;
    font-size: 18px;
  }

  .image-card p {
    font-size: 14px;
    line-height: 1.85;
  }

  .logo-cluster img {
    max-height: 60px;
  }

  .case-grid {
    gap: 26px;
  }

  .case-card {
    padding: 16px;
    border-radius: 18px;
  }

  .case-card p {
    font-size: 11px;
  }

  .case-card h3 {
    margin-top: 4px;
    font-size: 19px;
    line-height: 1.6;
  }

  .news-list {
    gap: 16px;
  }

  .recruit-band {
    border-radius: 28px 28px 0 0;
  }

  .recruit-panel p {
    font-size: 18px;
    line-height: 1.8;
  }

  .recruit-members-section .section-inner {
    /* width: min(1280px, calc(100% - 100px)); */
  }

  .site-footer {
    min-height: 84px;
    padding: 0 56px;
  }

}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--paper);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto auto;
  width: min(1130px, calc(100% - 80px));
  column-gap: 48px;
  row-gap: 28px;
  align-items: flex-start;
  margin: 0 auto;
  padding: 36px 58px;
  justify-content: center;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 auto;
  justify-self: center;
}

.footer-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  font-size: 9px;
  line-height: 1;
}

.footer-policy {
  color: rgba(43, 45, 49, .72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-company {
  max-width: 560px;
  min-width: 0;
  justify-self: center;
  padding-left: 48px;
  border-left: 2px dotted rgba(51, 51, 51, 0.15);
}

.footer-company__list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.footer-company__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
}

.footer-company__item dt,
.footer-company__item dd {
  margin: 0;
}

.footer-company__item dt {
  color: rgba(43, 45, 49, .58);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.footer-company__item dd,
.footer-company__item dd a {
  color: #2b2d31;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  text-decoration: none;
}

.footer-brand {
  font-size: 18px;
  font-weight: 900;
}

.footer-nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 800;
  flex-wrap: wrap;
}

.page-hero {
  padding-top: 150px;
}

.page-hero p {
  max-width: 700px;
  margin-top: 30px;
  font-weight: 800;
}

.contact-hero {
  padding-bottom: 47px;
}

.contact-hero .eyebrow {
  margin-bottom: 6px;
  color: #2a2a2a;
  font-size: 16px;
  font-weight: 700;
}

.contact-hero h1 {
  font-size: 69px;
  font-weight: 700;
  line-height: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  display: grid;
  min-height: 350px;
  align-content: center;
  justify-items: center;
  gap: 34px;
  padding: 34px;
  background: var(--white);
  border-radius: 26px;
  text-align: center;
}

.contact-card h2 {
  min-height: 3.6em;
  font-size: 15px!important;
  line-height: 1.8;
      vertical-align: bottom;
    display: flex;
    align-items: flex-end;
}

.contact-card p {
  min-height: 1.8em;
  font-size: 17px;
  font-weight: 900;
}

.arrow-button {
  position: relative;
  width: min(240px, 100%);
  min-height: 64px;
  justify-content: flex-start;
  padding: 0 72px 0 32px;
  color: var(--white);
  background: #1e1e1f;
  border: 1px solid #1e1e1f;
  font-size: 13px;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.arrow-button::after {
  content: "→";
  position: absolute;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  transition: background-color .2s ease, color .2s ease;
}

.arrow-button:hover,
.arrow-button:active {
  color: #1e1e1f;
  background: var(--white);
  border-color: #1e1e1f;
}

.arrow-button:hover::after,
.arrow-button:active::after {
  color: var(--white);
  background: #1e1e1f;
}

.form-page {
  padding-top: 220px;
}

.form-inner {
  width: min(900px, calc(100% - 96px));
}

.form-page h1 {
  font-size: 46px;
}

.lead {
  max-width: 720px;
  margin: 28px 0 48px;
  font-size: 14px;
  font-weight: 800;
}
.thanks-inner {
  min-height: 48vh;
}

.thanks-actions {
  display: flex;
}

.styled-form {
  display: grid;
  gap: 34px;
}

.form-notice {
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.form-notice--success {
  color: #1d4d2f;
  background: rgba(59, 167, 92, .12);
  border: 1px solid rgba(59, 167, 92, .22);
}

.form-notice--error {
  color: #8a1f1f;
  background: rgba(232, 69, 69, .10);
  border: 1px solid rgba(232, 69, 69, .22);
}

.field,
.field-pair {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.field span,
.field-pair legend {
  font-weight: 900;
}

.field em,
.field-pair em {
  margin-left: 16px;
  color: var(--danger);
  font-size: 12px;
  font-style: normal;
}

.field input,
.field textarea,
.field select,
.field-pair input {
  width: 100%;
  min-height: 48px;
  padding: 0 4px;
  color: var(--text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #a7a7a7;
  border-radius: 0;
  font: inherit;
}

.field textarea {
  min-height: 190px;
  padding: 18px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid #9b9b9b;
}

.field select {
  padding-right: 36px;
  border: 1px solid #9b9b9b;
  background: rgba(255, 255, 255, 1);
  border-radius: 5px;
}

.field-pair {
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
}

.field-pair legend {
  grid-column: 1 / -1;
}

.field-pair label {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: center;
}

.privacy-box {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding-top: 34px;
  border-top: 1px solid rgba(180, 180, 180, .55);
  text-align: center;
  font-weight: 800;
}

.privacy-box label {
  display: inline-flex;
  gap: 16px;
  align-items: center;
}

.submit-button {
  justify-self: center;
  min-width: 270px;
  min-height: 62px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  cursor: pointer;
  font-size: 19px;
  padding-left: 54px;
}

.submit-button span {
  margin-left: 30px;
  width: 18px;
  height: 18px;
  background: url("../images/submit-plane-white.svg") center / contain no-repeat;
}

.modal-close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #2a2a2a;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(42, 42, 42, .18);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.philosophy-hero {
  padding-top: 180px;
}

.philosophy-hero h2 {
  margin-top: 8px;
  font-size: 20px;
}

.history-image {
  width: min(520px, 100%);
  margin: 34px auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 14%;
  border-radius: var(--radius);
}

.statement {
  padding: 92px 0;
  text-align: center;
}

.mission {
  background: rgba(202, 205, 208, .75);
}

.statement p {
  margin-top: 28px;
  font-weight: 800;
}

.philosophy-page {
  position: relative;
  overflow: hidden;
}

.philosophy-page__rail {
  display: none;
}

.philosophy-shell {
  position: relative;
  z-index: 1;
  padding-left: 52px;
  width: min(1180px, calc(100% - 90px));
}

.philosophy-page__hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: 0;
}

.philosophy-page__hero::before,
.philosophy-band::before,
.philosophy-culture::before,
.philosophy-principles::before {
  content: "";
  position: absolute;
  left: max(48px, calc((100vw - 1180px) / 2 + 6px));
  width: 3px;
}

.philosophy-page__hero::before {
  top: 385px;
  bottom: 0;
  background: #222733;
}

.philosophy-page__hero h1 {
  font-size: 84px;
  line-height: 1.02;
}

.philosophy-intro {
  max-width: 940px;
  margin: 56px 0 0 52px;
}

.philosophy-intro h2 {
  font-size: 40px;
  line-height: 1.35;
}

.philosophy-intro p {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.95;
}

.philosophy-history {
  margin-top: 64px;
  padding-left: 52px;
}

.philosophy-history h2 {
  margin-top: 4px;
  font-size: 56px;
  line-height: 1.02;
}

.history-image {
  width: min(940px, 100%);
  margin: 72px auto 0;
  aspect-ratio: 1.96 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}

.philosophy-history__tabs {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 34px;
}

.philosophy-history__tab {
  padding: 0;
  color: rgba(43, 45, 49, .48);
  font-size: 18px;
  font-weight: 700;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color .2s ease;
}

.philosophy-history__tab.is-active,
.philosophy-history__tab[aria-selected="true"] {
  color: #2b2d31;
}

.philosophy-history__divider {
  width: 210px;
  height: 1px;
  margin: 30px auto 0;
  background: rgba(43, 45, 49, .78);
}

.philosophy-history__text {
  max-width: 940px;
  margin: 42px auto 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.95;
}

.philosophy-band {
  position: relative;
  padding: 0;
}

.philosophy-band::before {
  top: 0;
  bottom: 0;
  background: #222733;
}

.philosophy-band__inner {
  /* min-height: 585px; */
  padding-top: 108px;
  padding-left: 52px;
  padding-bottom: 15px;
}

.philosophy-band--mission {
  /* margin-top: 96px;
  background: rgba(206, 206, 206, .84); */
}

.philosophy-band--vision {
  background: transparent;
}

.philosophy-band__inner h2 {
  font-size: 64px;
  line-height: 1;
}

.philosophy-band__inner p {
  max-width: 900px;
  margin: 80px auto 0;
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.9;
}

.philosophy-band__inner--vision {
  min-height: 540px;
}

.philosophy-band__inner--vision p {
  /* margin-top: 192px; */
}

.philosophy-culture {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}

.philosophy-culture::before {
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, .92);
  z-index: 10;
}

.philosophy-culture__inner {
  width: 100%;
  padding: 96px 52px 108px;
  color: var(--white);
  background: var(--ink);
  border-radius: 32px 32px 0 0;
}
.philosophy-culture-inner {
  padding-left: 52px;
}
.philosophy-culture__label {
  color: rgba(255, 255, 255, .48);
}

.philosophy-culture__inner h2 {
  color: var(--white);
  font-size: 60px;
}

.philosophy-culture__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 84px;
  margin-top: 120px;
  align-items: stretch;
}

.philosophy-culture__grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 35px;
}

.philosophy-culture__grid h3 {
  color: var(--white);
  font-size: 32px;
  line-height: 1.45;
  margin: auto;
}

.philosophy-culture__grid span {
  margin: auto;
  color: rgba(255, 255, 255, .92);
  font-size: 48px;
  line-height: 1;
}

.philosophy-culture__grid p {
  color: rgba(255, 255, 255, .92);
  font-size: 18px;
  line-height: 2.05;
  text-align: left;
  /* min-height: 115px; */
}

.philosophy-principles {
  position: relative;
  padding-top: 132px;
  padding-bottom: 122px;
}

.philosophy-principles::before {
  top: 0;
  bottom: 0;
  background: #222733;
}

.philosophy-principles h2 {
  font-size: 68px;
}

.philosophy-principles__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 84px;
  margin-top: 72px;
}

.philosophy-principle {
  display: grid;
  grid-template-columns: 132px 1fr 1.3fr;
  gap: 24px;
  align-items: start;
  min-height: 204px;
  padding: 36px 0 34px;
  border-top: 1px solid rgba(43, 45, 49, .58);
}

.philosophy-principle:last-child {
  border-bottom: 1px solid rgba(43, 45, 49, .58);
}

.philosophy-principle__num {
  color: rgba(43, 45, 49, .08);
  font-size: 98px;
  font-weight: 900;
  line-height: .9;
}

.philosophy-principle h3 {
  margin-top: 47px;
  font-size: 20px;
  line-height: 1.55;
}

.philosophy-principle p {
  margin-top: 6px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.philosophy-principles__list .philosophy-principle:nth-last-child(1):nth-child(odd) {
  grid-column: 1 / 2;
}

.philosophy-members {
  padding-top: 42px;
  padding-bottom: 154px;
}

.philosophy-members h2 {
  font-size: 66px;
}

.philosophy-member-grid {
  gap: 62px 78px;
  margin-top: 58px;
}

.philosophy-member-card {
  grid-template-columns: 208px 1fr;
  gap: 18px;
}

.philosophy-member-card img {
  width: 208px;
  height: 208px;
  border-radius: 12px;
}

.philosophy-member-card__body {
  gap: 12px;
}

.philosophy-member-card__body h3 {
  font-size: 22px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 42px;
}

.three-col article {
  text-align: center;
}

.three-col p {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.principle-list li {
  display: flex;
  gap: 28px;
  align-items: center;
  min-height: 78px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.principle-list span {
  color: #cfd1d3;
  font-size: 35px;
  font-weight: 900;
}

.member-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
}

.member-grid.six {
  grid-template-columns: repeat(3, 1fr);
}

.recruit-section,
.office-section,
.qa-section

{
  padding-top: 0px;
  padding-bottom: 125px;
}

.office-slider-text {
  margin-top: 40px;
  font-size:20px;
  font-weight: bold;
}
.section-inner h2 {
  font-size:48px
}

.recruit-member-grid {
  gap: 78px 62px;
  margin-top: 60px;
}

.member-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px;
}

.member-card img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  object-position: center 16%;
  border-radius: 4px;
}

.member-card h3 {
  margin: 0;
  font-size: 14px;
}

.member-card p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.recruit-member-card {
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.recruit-member-card img {
  width: 182px;
  height: 205px;
  border-radius: 10px;
}

.recruit-member-card__body {
  display: grid;
  gap: 10px;
  align-content: end;
  align-self: end;
}

.recruit-member-card__body h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.recruit-member-card__role,
.recruit-member-card__text {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.55;
}

.recruit-member-card__role {
  font-weight: 700;
}

.recruit-member-card__text {
  font-weight: 500;
}

.recruit-page-hero {
  padding-top: 180px;
}

.qa-list {
  display: grid;
  gap: 12px;
  margin-top: 64px;
}

.qa-list details {
  color: var(--white);
  background: var(--ink);
  border-radius: 23px;
}

.qa-list summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.qa-list p {
  padding: 0 24px 22px;
  color: rgba(255, 255, 255, .8);
}

.office-caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-top: 28px;
}

.office-slider {
  margin-top: 40px;
}

.office-slider__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.office-slider__track {
  position: relative;
  min-height: 560px;
}

.office-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}

.office-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.office-slide img {
  display: block;
  height: 100%;
  border-radius: 22px;
}

.office-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 70px;
  height: 70px;
  padding: 0;
  background-color: rgba(23, 27, 36, 0);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 17px 31px;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.office-slider__arrow--prev {
  left: 24px;
  background-image: url("../images/office-arrow-prev.svg");
}

.office-slider__arrow--next {
  right: 24px;
  background-image: url("../images/office-arrow-next.svg");
}

.office-caption__copy {
  display: grid;
  gap: 10px;
  margin-left: 50px;
}

.office-caption__copy strong {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 10px;
}

.office-caption__copy span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-left: 20px;
}

.office-caption__copy p {
  font-size: 16px;
  line-height: 1.6;
}

.office-caption__count {
  flex: none;
  font-size: 28px;
  /* font-weight: 700; */
  line-height: 1;
}

.job-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
}

.job-card {
  padding: 14px;
}

.job-card__link {
  display: block;
}

.job-card h3 {
  margin: 16px 0 0;
  text-align: center;
  font-size: 14px;
}

.page-content {
  padding-top: 220px;
}

.privacy-policy-inner {
  width: min(960px, calc(100% - 96px));
}

.privacy-policy-inner h1 {
  font-size: 46px;
}

.privacy-policy-body {
  max-width: 900px;
  margin-top: 34px;
}

.privacy-policy-body > p,
.privacy-policy-body > section {
  margin-top: 28px;
}

.privacy-policy-body p {
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.privacy-policy-body h2 {
  font-size: 28px;
  line-height: 1.5;
}

.privacy-policy-body ol {
  margin: 18px 0 0;
  padding-left: 1.6em;
}

.privacy-policy-body li {
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

@media (max-width: 900px) {

  body {
    background:
      linear-gradient(135deg, transparent 0 18%, rgba(255, 255, 255, .78) 18.1% 21.4%, transparent 21.5% 100%),
      linear-gradient(135deg, transparent 0 49%, rgba(255, 255, 255, .5) 49.1% 52.2%, transparent 52.3% 100%),
      linear-gradient(135deg, transparent 0 77%, rgba(255, 255, 255, .54) 77.1% 80.1%, transparent 80.2% 100%),
      var(--bg);
  }

  .hero-visual__bg1 {
    z-index: 4;
    height: 48%;
  }
  .site-header {
    top: 14px;
    left: 14px;
    right: 14px;
  }

  .brand-pill {
    width: 190px;
    height: 41px;
  }

  .brand-mark {
    font-size: 12px;
  }

  .brand-mark::before,
  .footer-brand::before {
    width: 15px;
    height: 9px;
  }

  .brand-sub {
    font-size: 6px;
  }

  .menu-toggle {
    width: 41px;
    height: 41px;
    gap: 4px;
  }

  .menu-toggle span {
    width: 13px;
  }

  .site-menu__close {
    top: 14px;
    right: 14px;
    width: 41px;
    height: 41px;
    font-size: 22px;
  }

  .section,
  .page-hero {
    padding: 62px 0;
  }

  .section-inner,
  .narrow,
  .form-inner {
    width: min(100% - 42px, 620px);
  }

  .hero {
    min-height: 670px;
    padding-top: 320px;
  }

  .home-hero {
    overflow: hidden;
    padding-bottom: 108px;
  }

  .home-intro::after {
    /* background:
      linear-gradient(90deg, rgba(233, 233, 233, .88) 0 44%, rgba(233, 233, 233, .12) 72%, rgba(233, 233, 233, 0) 100%),
      linear-gradient(180deg, rgba(233, 233, 233, 0) 0 68%, rgba(233, 233, 233, .45) 84%, var(--bg) 100%); */
  }

  .hero-visual__layer img {
    object-position: right top;
  }

  h1 {
    font-size: 38px;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-subtitle {
    margin-top: 22px;
    font-size: 18px;
  }

  h2,
  .form-page h1 {
    font-size: 28px;
  }

  .hero-grid,
  .two-col,
  .recruit-page-grid,
  .recruit-panel {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .mini-button {
    justify-self: start;
    min-width: 214px;
    min-height: 56px;
    font-size: 12px;
    margin-top: 60px;
  }

  .about-section {
    padding-top: 0px;
    padding-bottom: 84px;
  }

  .about-section .two-col {
    gap: 0;
  }

  .about-copy--lead {
    display: contents;
    min-height: 0;
    gap: 0;
  }

  .about-kicker {
    order: 1;
    margin-bottom: 2px;
    font-size: 15px;
    line-height: 1.4;
  }

  .about-copy h2 {
    order: 2;
    font-size: 48px;
  }

  .body-copy {
    order: 3;
    max-width: 100%;
    margin-left: 0;
    padding-top: 50px;
    font-size: 13px;
    text-align: center;
  }

  .body-copy h3 {
    margin-bottom: 50px;
    font-size: 20px;
    line-height: 1.7;
  }
  .dark-button { 
    width: 30%;
  }
  .body-copy p {
    text-align: left;
  }

  .about-copy--lead .dark-button {
    order: 4;
    justify-self: end;
    align-self: flex-start;
    min-width: auto;
    min-height: auto;
    margin-top: 24px;
    margin-left: auto;
    padding: 0 34px 0 0;
    color: var(--text);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
  }

  .about-copy--lead .dark-button::after {
    content: "";
    right: 0;
    width: 22px;
    height: 22px;
    background: url("../images/arrow.svg") center / contain no-repeat;
    font-size: 0;
  }

  .card-grid,
  .contact-grid,
  .three-col,
  .principle-list,
  .member-grid,
  .member-grid.six,
  .job-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .dark-section {
    border-radius: 0;
  }

  .dark-section,
  .outcomes-section,
  .case-section,
  .news-section {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .image-card {
    min-height: 0;
    padding: 20px;
    border-radius: 22px;
  }

  .business-grid {
    gap: 30px;
    margin-top: 26px;
  }

  .business-grid .image-card {
    padding: 20px;
    border-radius: 18px;
    min-height: 370px;
  }

  .image-card h3 {
    margin-top: 18px;
    font-size: 16px;
  }

  .image-card p {
    font-size: 12px;
  }

  .business-card__link {
    margin-top: 18px;
    font-size: 14px;
  }

  .business-grid .image-card h3 {
    margin-top: 12px;
    font-size: 16px;
  }

  .business-grid .image-card p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.85;
  }

  .business-grid .business-card__link {
    margin-top: 10px;
    font-size: 12px;
  }

  .outcomes-copy {
    gap: 0px;
  }

  .outcomes-copy h3 {
    margin-left: 0;
    font-size: 28px;
    line-height: 1.8;
    margin-top: 52px;
    text-align: center;
  }

  .mid-visual__layer img {
    object-position: right top;
  }

  .outcomes-logos {
    width: min(100%, 420px);
    margin-left: 0;
    padding-top: 0;
  }

  .outcomes-marquee {
    padding: 4px 0;
  }

  .outcomes-marquee::before,
  .outcomes-marquee::after {
    width: 28px;
  }

  .outcomes-marquee__track {
    display: flex;
    width: max-content;
    gap: 12px;
    animation-duration: 24s;
    will-change: transform;
  }

  .outcomes-marquee--secondary .outcomes-marquee__track {
    animation-duration: 28s;
  }

  .outcomes-logo-card {
    min-width: 120px;
    width: 120px;
    height: 68px;
    padding: 12px 16px;
    border-radius: 14px;
  }

  .outcomes-logo-card--wide {
    min-width: 156px;
    width: 156px;
  }

  .logo-cluster {
    gap: 12px;
    margin-top: 48px;
  }

  .case-intro p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 13px;
  }

  .case-more {
    display: none;
  }

  .case-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(268px, 74vw);
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overflow-y: visible;
    margin-top: 26px;
    padding-right: 18vw;
    margin-top: 35px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .case-grid::-webkit-scrollbar {
    display: none;
  }

  .case-card {
    scroll-snap-align: start;
    padding-bottom: 36px;
  }

  .case-card:nth-child(n + 2) {
    opacity: .72;
    filter: blur(2px);
  }

  .case-card__arrow {
    background: #ffff;
  }

  .case-card__body {
    padding: 21px 2px 2px;
  }

  .case-card h3 {
    font-size: 14px;
  }

  .news-item {
    min-height: 0;
    gap: 8px;
    padding: 16px 18px;
    font-size: 14px;
  }

  .news-item span {
    font-size: 16px;
  }

  .office-slider {
    margin-top: 28px;
  }

  .office-slider__track {
    min-height: 120px;
  }
  .office-caption__copy {
    margin-left: 0px;
  }

  .office-slider__arrow {
    width: 44px;
    height: 44px;
    background-size: 11px 20px;
  }

  .office-slider__arrow--prev {
    left: 12px;
  }

  .office-slider__arrow--next {
    right: 12px;
  }

  .office-caption {
    flex-direction: column;
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 12px;
  }

  .office-caption__copy strong {
    font-size: 24px;
  }

  .office-caption__copy span,
  .office-caption__copy p {
    font-size: 13px;
  }

  .office-caption__count {
    align-self: flex-end;
    margin-top: -6px;
    font-size: 14px;
    text-align: right;
  }

  .recruit-panel {
    /* gap: 22px; */
    min-height: 0;
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .recruit-band {
    padding: 0;
  }

  .recruit-copy {
    max-width: none;
    display: contents;
  }

  .recruit-copy .eyebrow {
    order: 1;
    margin-bottom: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, .72);
  }

  .recruit-panel h2 {
    order: 2;
    font-size: 24px;
    line-height: 1;
  }

  .recruit-copy > p:not(.eyebrow),
  .recruit-panel p {
    order: 3;
    margin: 18px 0 30px;
    font-size: 13px;
    line-height: 1.8;
  }

  .recruit-panel img {
    order: 4;
    /* aspect-ratio: 1.41 / 1; */
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
  }

  .dark-button,
  .white-button {
    min-width: 220px;
    min-height: 52px;
    padding: 0 70px 0 24px;
    font-size: 12px;
  }

  .dark-button::after,
  .white-button::after {
    right: 8px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .recruit-panel .white-button {
    order: 5;
    min-width: 220px;
    min-height: 50px;
    justify-content: center;
    padding: 0 40px 0 18px;
    margin: 40px auto 0;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
  }

  .recruit-panel .white-button::after {
    right: 4px;
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .bottom-cta {
    gap: 24px;
    padding: 64px 20px 70px;
  }

  .bottom-cta p {
    font-size: 14px;
    line-height: 1.9;
  }

  .contact-card {
    min-height: 244px;
    gap: 18px;
    border: 1px solid #8b8b8b;
    border-radius: 18px;
  }

  .contact-card h2 {
    font-size: 16px;
  }

  .page-hero,
  .form-page,
  .recruit-page-hero,
  .philosophy-hero,
  .page-content {
    padding-top: 96px;
  }

  .page-hero p,
  .lead {
    margin-top: 22px;
    font-size: 13px;
  }

  .recruit-page-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .recruit-page-grid > div {
    display: contents;
  }

  .recruit-page-grid .section-label {
    order: 1;
  }

  .recruit-page-grid h1 {
    line-height: 1.04;
    order: 2;
	  font-size: 34px!important;
  }

  .recruit-page-grid img {
    order: 3;
    margin-top: 18px;
  }

  .recruit-page-grid-text {
    order: 4;
    margin-top: 18px;
    padding-top: 0;
    font-size: 14px;
    line-height: 1.85;
  }

  .field-pair {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .privacy-policy-inner {
    width: min(100% - 48px, 620px);
  }

  .privacy-policy-inner h1 {
    font-size: 28px;
  }

  .privacy-policy-body {
    margin-top: 20px;
  }

  .privacy-policy-body > p,
  .privacy-policy-body > section {
    margin-top: 20px;
  }

  .privacy-policy-body p,
  .privacy-policy-body li {
    font-size: 13px;
    line-height: 1.9;
  }

  .privacy-policy-body h2 {
    font-size: 18px;
    line-height: 1.7;
  }

  .field-pair label {
    grid-template-columns: 30px 1fr;
  }

  .submit-button {
    min-width: 220px;
  }

  .member-card {
    grid-template-columns: 112px 1fr;
  }

  .member-card img {
    width: 112px;
    height: 112px;
  }

  .recruit-section {
    padding-top: 54px;
  }

  .recruit-member-grid,
  .member-grid.six.recruit-member-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 22px;
  }

  .recruit-member-card {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: start;
    width: 100%;
    padding: 0;
  }

  .recruit-member-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .recruit-member-card img {
    width: 140px;
    height: 142px;
    border-radius: 8px;
  }

  .recruit-member-card:nth-child(odd) img,
  .recruit-member-card:nth-child(even) img {
    flex: 0 0 140px;
  }

  .recruit-member-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 6px;
    padding-top: 0;
    align-content: start;
  }

  .recruit-member-card:nth-child(odd) .recruit-member-card__body {
    text-align: left;
  }

  .recruit-member-card:nth-child(even) .recruit-member-card__body {
    text-align: right;
  }

  .recruit-member-card__body h3 {
    font-size: 20px;
    line-height: 1.6;
  }

  .recruit-member-card__role,
  .recruit-member-card__text {
    font-size: 10px;
    line-height: 1.6;
  }

  .philosophy-page__rail {
    display: none;
  }

  .philosophy-shell {
    width: min(100% - 24px, 620px);
    margin-left: 0;
    padding-left: 48px;
  }

  .philosophy-page__hero {
    padding-top: 106px;
    padding-bottom: 38px;
  }

  .philosophy-page__hero::before,
  .philosophy-band::before,
  .philosophy-culture::before,
  .philosophy-principles::before {
    left: 27px;
    width: 2px;
  }

  .philosophy-page__hero::before {
    top: 182px;
  }

  .philosophy-page__hero h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  .philosophy-intro {
    margin: 24px 0 0;
  }

  .philosophy-intro h2 {
    font-size: 21px;
    line-height: 1.45;
  }

  .philosophy-intro p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 2;
  }

  .philosophy-history {
    margin-top: 22px;
    padding-left: 0px;
  }

  .philosophy-history h2 {
    margin-top: 2px;
    font-size: 32px;
  }

  .history-image {
    width: 100%;
    margin-top: 18px;
    border-radius: 12px;
  }

  .philosophy-history__tabs {
    gap: 18px;
    margin-top: 14px;
  }

  .philosophy-history__tab {
    font-size: 12px;
    white-space: nowrap;
  }

  .philosophy-history__divider {
    width: 84px;
    margin-top: 18px;
  }

  .philosophy-history__text {
    margin-top: 14px;
    font-size: 12px;
    line-height: 2;
  }

  .philosophy-band__inner {
    min-height: 0;
    padding-top: 26px;
    padding-bottom: 34px;
    padding-left: 48px;
  }

  .philosophy-band--mission {
    margin-top: 0px;
    background: none;
  }

  .philosophy-band__inner h2 {
    font-size: 32px;
    line-height: 1.05;
  }

  .philosophy-band__inner p,
  .philosophy-band__inner--vision p {
    margin: 22px 0 0;
    text-align: left;
    font-size: 13px;
    line-height: 1.9;
  }

  .philosophy-band__inner--vision {
    min-height: 0;
  }

  .philosophy-culture__inner {
    width: 100%;
    /* margin-left: -24px; */
    padding: 28px 0 54px;
    border-radius: 22px 22px 0 0;
  }

  .philosophy-culture__label {
    padding-left: 0px;
    font-size: 12px;
    line-height: 1.2;
  }

  .philosophy-culture__inner h2 {
    padding-left: 0px;
    font-size: 32px;
    line-height: 1.08;
  }
  .philosophy-culture-inner {
    padding-left: 26px;
  }
  .philosophy-culture__grid {
    grid-template-columns: 1fr;
    gap: 74px;
    margin-top: 66px;
  }

  .philosophy-culture__grid article {
    gap: 11px;
    padding: 0 8px;
    text-align: center;
  }

  .philosophy-culture__grid h3 {
    font-size: 20px;
    line-height: 1.65;
  }

  .philosophy-culture__grid span {
    font-size: 24px;
    line-height: 1;
  }

  .philosophy-culture__grid p {
    font-size: 16px;
    line-height: 2;
  }

  .philosophy-principles {
    padding-top: 32px;
    padding-bottom: 44px;
  }

  .philosophy-principles .philosophy-shell {
    width: 100%;
    padding-left: 0;
  }

  .philosophy-principles .section-label,
  .philosophy-principles h2,
  .philosophy-members h2 {
    padding-left: 42px;
    font-size: 12px;
    line-height: 1.08;
  }

  .philosophy-principles-h2 {
    font-size: 32px!important;
  }
  .philosophy-principles__list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 22px;
  }

  .philosophy-culture {
    padding-top: 0;
    padding-bottom: 0;

  }

  .philosophy-principle {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 0;
    padding: 20px 0 18px;
    border-top: 0;
  }

  .philosophy-principle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background: rgba(43, 45, 49, .48);
  }

  .philosophy-principle:first-child::before {
    display: none;
  }

  .philosophy-principle:last-child {
    border-bottom: 0;
  }

  .philosophy-principle:last-child::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 0;
    height: 1px;
    background: rgba(43, 45, 49, .48);
  }

  .philosophy-principle__num {
    position: absolute;
    z-index: 0;
    top: 4px;
    left: -6px;
    color: rgba(43, 45, 49, .08);
    font-size: 80px;
    font-weight: 900;
    line-height: .78;
    letter-spacing: -.06em;
  }
  .philosophy-shell h2{
    
  }

  .philosophy-principle h3 {
    position: relative;
    z-index: 1;
    flex: 0 0 115px;
    margin: 18px 0 0 56px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.6;
  }

  .philosophy-principle p {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    margin: 14px 0 0 0;
    font-size: 12px;
    line-height: 1.95;
    padding-right: 40px;
  }

  .philosophy-members {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .philosophy-member-grid,
  .member-grid.six.recruit-member-grid.philosophy-member-grid {
    gap: 28px;
    margin-top: 22px;
  }

  .philosophy-member-card {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: start;
    padding: 0;
    width: 100%;
  }

  .philosophy-member-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .philosophy-member-card:nth-child(n + 4) {
    display: none;
  }

  .philosophy-member-card img {
    width: 140px;
    height: 142px;
    border-radius: 8px;
  }

  .philosophy-member-card:nth-child(odd) img {
    flex: 0 0 140px;
    justify-self: auto;
  }

  .philosophy-member-card:nth-child(odd) .philosophy-member-card__body {
    flex: 1 1 auto;
    text-align: left;
  }

  .philosophy-member-card:nth-child(even) img {
    flex: 0 0 140px;
    justify-self: auto;
  }

  .philosophy-member-card:nth-child(even) .philosophy-member-card__body {
    flex: 1 1 auto;
    text-align: right;
    align-self: end;
    margin-top: 0;
  }

  .philosophy-member-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding-top: 0;
    gap: 6px;
    align-content: start;
  }

  .philosophy-member-card__body h3 {
    font-size: 20px;
    line-height: 1.6;
  }

  .philosophy-member-card .recruit-member-card__role,
  .philosophy-member-card .recruit-member-card__text {
    font-size: 10px;
    line-height: 1.6;
  }

  .page-template-page-philosophy .bottom-cta {
    gap: 18px;
    padding: 46px 20px 48px;
  }

  .page-template-page-philosophy .bottom-cta p {
    font-size: 10px;
    line-height: 2;
  }

  .page-template-page-philosophy .bottom-cta .cta-button {
    min-width: 165px;
    min-height: 36px;
    padding: 0 18px;
    color: #fff;
    background: #2a2a2a;
    font-size: 9px;
  }

  .page-template-page-philosophy .bottom-cta .cta-button::after {
    width: 14px;
    height: 14px;
  }

  .site-footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 22px 150px;
  }

  .footer-brand-block {
    order: 1;
    gap: 10px;
  }

  .footer-link-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    overflow-x: auto;
  }

  .footer-policy {
    flex: 0 0 auto;
    font-size: 10px;
    white-space: nowrap;
  }

  .footer-nav {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
  }

  .footer-company {
    order: 3;
    max-width: none;
    padding-left: 0;
    border-left: 0;
    border-top: 2px dotted rgba(51, 51, 51, 0.15);
    padding-top: 27px;
}
  }

  .footer-company__list {
    gap: 12px;
  }

  .footer-company__item {
    grid-template-columns: 82px 1fr;
    gap: 14px;
  }

  .footer-company__item dt {
    font-size: 11px;
    line-height: 1.7;
  }

  .footer-company__item dd,
  .footer-company__item dd a {
    font-size: 12px;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }

  .footer-nav a {
    color: rgba(43, 45, 49, .72);
    line-height: 1.4;
    text-decoration: none;
    width: fit-content;
    white-space: nowrap;
  }

  .news-list {
    margin-top: 18px;
  }
  .contact-hero h1{
    font-size: 48px;
  }
  .philosophy-members {
    padding-left: 0px!important;
  }
  .philosophy-members-shell{
    padding-left: 20px;
  }
  .philosophy-members-shell h2 {
    padding-left: 0px;
    font-size: 32px !important;
  }
  .recruit-page-grid h1 {
    font-size: 84px;
    line-height: 1.04;
  }
  .recruit-section h2,
  .office-section h2,
  .qa-section h2,
  .job-section h2
   {
    font-size: 32px;

  }
  .office-slider-text {
    font-size: 13px;
  }
  .outcomes-logo {
    max-height: 36px;
  }
}

@media (max-width: 430px) {
  body {
    font-size: 14px;
  }

  .section-label {
    margin: 0 0 0px;
  }

  .hero-title {
    font-size: 30px;
    text-align: center;
    line-height: 1;
  }

  .hero-subtitle {
    margin-top: 18px;
    font-size: 15px;
    text-align: center;
    line-height: 1.7;
  }

  .menu-list a {
    font-size: 22px;
  }

  .contact-card {
    padding: 28px 18px;
  }

  .arrow-button {
    min-height: 46px;
    padding-left: 22px;
    font-size: 11px;
    width: min(212px, 100%);
  }

  .arrow-button::after {
    width: 28px;
    height: 28px;
  }

  .hero-title span {
    padding: 5px 10px 7px;
  }

  .about-copy h2,
  .recruit-panel h2,
  .dark-section h2,
  .outcomes-section h2,
  .case-section h2,
  .news-section h2 {
    font-size: 44px;
  }

  .mini-button {
    min-width: 214px;
    min-height: 54px;
    margin: auto;
    margin-top: 160px;
  }

  .news-item {
    font-size: 12px;
  }

  .cta-button {
    min-width: 238px;
  }
  .contact-cards {
    padding-top:0px
  }
  .contact-hero .eyebrow {
    font-size: 15px;
    margin-bottom: 0px;
  }
}
