:root {
  --ink: #20201e;
  --ink-soft: #383733;
  --paper: #f8f6f1;
  --paper-2: #f4f2ec;
  --paper-3: #f7f5f2;
  --accent: #8f7650;
  --line: #d9d2c4;
  --white: #fff;
  --font-sans: "Noto Sans JP", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  --font-serif: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  --desktop-content-width: 1240px;
  --desktop-gutter: max(40px, calc((100vw - var(--desktop-content-width)) / 2));
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-subset.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif JP";
  src: url("../fonts/NotoSerifJP-subset.woff2") format("woff2");
  font-display: swap;
}

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

html {
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  overflow-x: clip;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #b58d50;
  outline-offset: 4px;
}

.skip-link,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 999;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  clip: auto;
  color: var(--white);
  background: var(--ink);
}

.site-header {
  position: absolute;
  z-index: 50;
  inset: 0 0 auto;
  height: 80px;
  color: var(--ink);
}

.site-header__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 80px;
  padding-left: 100px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 306px;
}

.brand img {
  width: 306px;
  height: auto;
}

.site-header .brand img {
  filter: brightness(0);
}

.global-nav {
  display: flex;
  align-items: stretch;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}

.global-nav > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  text-align: center;
}

.global-nav__recruit,
.global-nav__contact {
  flex-direction: column;
  gap: 5px;
  width: 140px !important;
  font-size: 15px;
  font-weight: 700;
}

.global-nav__recruit {
  background: rgba(255, 255, 255, 0.92);
}

.global-nav__contact {
  color: var(--white);
  background: var(--ink);
}

.global-nav__recruit span,
.global-nav__contact span {
  font-size: 18px;
  line-height: 1;
}

.menu-button {
  display: none;
}

.menu-button__close,
.global-nav__mobile-home,
.global-nav__mobile-legal {
  display: none;
}

.home-hero {
  position: relative;
  height: 663px;
  overflow: hidden;
  background: #e9e3d8;
}

.home-hero__slides,
.home-hero__slide,
.home-hero__slide picture,
.home-hero__slide img,
.home-hero__shade {
  position: absolute;
  inset: 0;
}

.home-hero__slide {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.home-hero__slide.is-active {
  opacity: 1;
}

.home-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__slide:nth-child(2) img {
  object-position: 58% center;
}

.home-hero__slide:nth-child(3) img {
  object-position: 62% center;
}

.home-hero__slide:nth-child(4) img {
  object-position: 63% center;
}

.home-hero__slide:nth-child(5) img {
  object-position: 66% center;
}

.home-hero__shade {
  background: linear-gradient(133deg, rgba(255, 255, 255, 0.78) 20%, rgba(255, 255, 255, 0) 51%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  width: 760px;
  padding-top: 250px;
  margin-left: 100px;
}

.home-hero__brand {
  display: none;
}

.home-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.25;
}

.home-hero p {
  width: 520px;
  margin: 23px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}

.home-hero__mobile-line {
  display: inline;
}

.section-kicker {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.section-number {
  font-family: var(--font-serif);
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
}

.section-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 214px;
  min-height: 42px;
  padding: 12px 24px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.button--accent {
  min-width: 260px;
  min-height: 50px;
  background: #a1875e;
  border-color: #a1875e;
}

.home-philosophy {
  position: relative;
  display: block;
  min-height: 545px;
  overflow: hidden;
  background: var(--paper-2);
}

.home-philosophy::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: calc(50% + 720px);
  background: var(--ink);
}

.home-philosophy__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 40.2778% 33.75%;
  width: min(100%, 1440px);
  min-height: 545px;
  margin: 0 auto;
}

.home-philosophy__copy {
  padding: 43px 0 0 100px;
}

.home-philosophy h2,
.home-services h2,
.home-works h2,
.home-news h2,
.contact-cta h2,
.lower-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
}

.home-philosophy__copy > p:not(.section-kicker) {
  width: 472px;
  margin: 20px 0 0;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
}

.home-philosophy__copy > .home-philosophy__body {
  margin-top: 0;
}

.home-philosophy .section-button {
  margin-top: 39px;
}

.home-philosophy__image {
  grid-column: 2;
  width: 100%;
  height: 545px;
  margin: 0;
}

.home-philosophy__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-philosophy__panel {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 67.2917%;
  width: 32.7083%;
  min-height: 545px;
  padding: 126px 82px 60px 96px;
  color: var(--white);
  background: transparent;
}

.home-philosophy__panel-shape {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-philosophy__button--mobile {
  display: none;
}

.home-philosophy__panel .section-number {
  position: absolute;
  top: 38px;
  right: 82px;
  opacity: 0.2;
}

.home-philosophy__panel ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-philosophy__panel li {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 18px;
  align-items: start;
}

.home-philosophy__panel span:not(.section-number) {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font-size: 12px;
}

.home-philosophy__panel span:not(.section-number) img {
  width: 18px;
  height: 18px;
}

.home-philosophy__panel strong,
.home-philosophy__panel small {
  display: block;
  grid-column: 2;
}

.home-philosophy__panel strong {
  font-size: 13px;
  line-height: 1.75;
}

.home-philosophy__panel small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.home-services {
  position: relative;
  display: grid;
  grid-template-columns: 580px 760px;
  gap: 0;
  min-height: 575px;
  padding-top: 66px;
  background: linear-gradient(101deg, rgba(217, 210, 196, 0.55) 0 20%, transparent 20.1%), var(--paper-3);
}

.home-services__number {
  position: absolute;
  top: 40px;
  left: 81px;
  color: var(--accent);
  opacity: 0.2;
}

.home-services__copy {
  padding: 24px 40px 0 100px;
}

.home-services__copy > p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.home-services .section-button {
  margin-top: 40px;
}

.home-services__cards {
  display: grid;
  grid-template-columns: repeat(2, 368px);
  gap: 24px;
}

.service-card {
  display: block;
  height: 446px;
  padding: 17px;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-card img {
  width: 332px;
  height: 280px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.service-card p {
  margin: 30px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.service-card span {
  display: block;
}

.home-works {
  position: relative;
  display: grid;
  grid-template-columns: 856px 1fr;
  min-height: 471px;
  padding: 63px 0 62px 48px;
  background: linear-gradient(101deg, transparent 0 84%, rgba(217, 210, 196, 0.55) 84.1%), var(--paper-2);
}

.home-works__stage {
  position: relative;
  display: flex;
  align-items: center;
  width: 808px;
  height: 346px;
}

.top-work-card {
  overflow: hidden;
  color: var(--white);
  background: #1c1c1a;
}

.top-work-card--side {
  width: 348px;
  height: 256px;
  opacity: 0.72;
}

.top-work-card--main {
  position: absolute;
  z-index: 2;
  left: 169px;
  top: 0;
  width: 470px;
  height: 346px;
}

.top-work-card img {
  width: 100%;
  height: 105px;
  object-fit: cover;
}

.top-work-card--main img {
  height: 142px;
}

.top-work-card h3,
.top-work-card p,
.top-work-card a {
  margin-left: 21px;
  margin-right: 21px;
}

.top-work-card--main h3,
.top-work-card--main p,
.top-work-card--main a {
  margin-left: 28px;
  margin-right: 28px;
}

.top-work-card h3 {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
}

.top-work-card--main h3 {
  margin-top: 20px;
  font-size: 20px;
}

.top-work-card p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1.65;
}

.top-work-card--main p {
  font-size: 12px;
}

.top-work-card a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 13px;
  font-size: 13px;
  font-weight: 700;
}

.top-work-card a::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 151px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: #1c1c1a;
  border: 1px solid #a88958;
  border-radius: 50%;
}

.carousel-arrow--prev {
  left: 0;
}

.carousel-arrow--next {
  right: 0;
}

.home-works__copy {
  position: relative;
  padding-top: 19px;
  width: 300px;
}

.home-works__copy > p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.home-works .section-button {
  margin-top: 40px;
}

.home-works__copy .section-number {
  position: absolute;
  right: calc(316px - 33.8vw);
  top: -44px;
  color: var(--accent);
  opacity: 0.2;
}

.home-news {
  position: relative;
  display: grid;
  grid-template-columns: 580px 760px;
  min-height: 409px;
  padding-top: 90px;
  background: linear-gradient(101deg, rgba(217, 210, 196, 0.55) 0 18.5%, transparent 18.6%), #f7f6f3;
}

.home-news__number {
  position: absolute;
  left: 81px;
  top: 40px;
  color: var(--accent);
  opacity: 0.2;
}

.home-news__copy {
  padding-left: 100px;
}

.home-news .section-button {
  margin-top: 20px;
}

.home-news__list {
  padding-top: 2px;
}

.news-row {
  display: grid;
  grid-template-columns: 110px 1fr 24px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
}

.news-row:first-child {
  border-top: 1px solid var(--line);
}

.news-row::after {
  content: "→";
  text-align: right;
}

.news-row time {
  color: var(--accent);
  font-size: 13px;
}

.empty-message {
  margin: 0;
  color: var(--ink-soft);
}

.contact-cta {
  position: relative;
  height: 300px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.contact-cta__image,
.contact-cta__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-cta__image {
  object-fit: cover;
  object-position: bottom center;
}

.contact-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 84%;
}

.contact-cta__shade {
  background: linear-gradient(
    90deg,
    rgba(35, 35, 36, 0.96) 0%,
    rgba(35, 35, 36, 0.9) 30%,
    rgba(35, 35, 36, 0.62) 48%,
    rgba(35, 35, 36, 0.18) 68%,
    rgba(35, 35, 36, 0) 82%
  );
}

.contact-cta__inner {
  position: relative;
  z-index: 2;
  width: 520px;
  padding-top: 42px;
  margin-left: 100px;
}

.contact-cta .eyebrow {
  margin: 0 0 16px;
  color: #a1875e;
  font-weight: 700;
}

.contact-cta p:not(.eyebrow) {
  margin: 14px 0 0;
  line-height: 1.8;
}

.contact-cta .button {
  margin-top: 24px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 464px 500px 1fr;
  min-height: 256px;
  padding: 26px 100px 30px;
  color: var(--white);
  background: #232324;
}

.brand--footer {
  width: 306px;
}

.brand--footer img {
  filter: none;
}

.site-footer__company p {
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
}

.site-footer__company .brand {
  margin-bottom: 52px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 140px);
  gap: 22px 40px;
  align-content: start;
  padding-top: 4px;
  font-size: 14px;
  font-weight: 500;
}

.footer-nav a {
  position: relative;
  justify-self: start;
  width: fit-content;
}

.global-nav > a:not(.global-nav__recruit):not(.global-nav__contact)::after,
.footer-nav a::after {
  position: absolute;
  left: 50%;
  height: 2px;
  content: "";
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.global-nav > a:not(.global-nav__recruit):not(.global-nav__contact)::after {
  bottom: 16px;
  width: calc(100% - 24px);
  background: #fff;
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.8),
    0 0 14px rgba(181, 141, 80, 0.55);
}

.footer-nav a::after {
  bottom: -7px;
  width: 100%;
  background: #fff;
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.8),
    0 0 14px rgba(181, 141, 80, 0.55);
}

.global-nav > a:not(.global-nav__recruit):not(.global-nav__contact):focus-visible::after,
.footer-nav a:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  opacity: 1;
}

html.has-ogawa-loader {
  overflow: hidden;
}

html.has-ogawa-loader .site-loader {
  display: grid;
}

.site-loader__stage {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.site-loader__circuit {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.site-loader__path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-loader__path--base {
  stroke: rgba(255, 255, 255, 0.16);
}

.site-loader__path--light {
  stroke: #fff;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.92))
    drop-shadow(0 0 10px rgba(181, 141, 80, 0.62));
}

.site-loader__terminal {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 1;
  width: 1px;
  height: 1px;
}

.site-loader__lamp,
.site-loader__lamp-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform-origin: center;
}

.site-loader__lamp {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 14px rgba(181, 141, 80, 0.9));
  transform: translate(-50%, -50%) scale(0.35);
}

.site-loader__lamp-halo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  transform: translate(-50%, -50%) scale(0.5);
}

.site-loader__brand {
  position: absolute;
  top: 42%;
  left: calc(50% + 46px);
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(306px, calc(50vw - 70px));
  min-height: 64px;
  transform: translateY(-50%);
}

.site-loader__logo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 306px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
}

html.is-ogawa-loader-running .site-loader__path--light {
  animation: ogawa-loader-line var(--loader-duration, 1.5s) var(--loader-delay, 0s) linear both;
}

html.is-ogawa-loader-running .site-loader__lamp,
html.is-ogawa-loader-running .site-loader__lamp-halo {
  animation: ogawa-loader-lamp 0.3s 1.5s ease-out forwards;
}

html.is-ogawa-loader-running .site-loader__logo {
  animation: ogawa-loader-logo 0.3s 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

html.is-ogawa-loader-leaving .site-loader {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes ogawa-loader-line {
  from {
    stroke-dashoffset: 1;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes ogawa-loader-lamp {
  60% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.18);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes ogawa-loader-logo {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 767px) {
  .site-loader__path {
    stroke-width: 3.2;
  }

  .site-loader__brand {
    top: 42%;
    left: calc(50% + 30px);
    width: calc(50vw - 43px);
    min-height: 44px;
  }

  .site-loader__logo {
    width: 100%;
  }
}

.site-footer__legal {
  position: absolute;
  right: 100px;
  bottom: 30px;
  display: flex;
  gap: 22px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.lower-hero {
  position: relative;
  height: 420px;
  margin-top: 80px;
  overflow: hidden;
  color: var(--white);
  background: #232324;
}

.lower-hero__image,
.lower-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lower-hero__image {
  object-fit: cover;
}

.lower-hero__shade {
  background:
    linear-gradient(90deg, rgba(35, 35, 36, 0.9), rgba(35, 35, 36, 0.84) 22%, rgba(35, 35, 36, 0.58) 45%, rgba(35, 35, 36, 0.24) 68%, rgba(35, 35, 36, 0) 84%),
    rgba(32, 32, 30, 0.22);
}

.lower-hero__inner {
  position: relative;
  z-index: 2;
  width: 760px;
  padding-top: 110px;
  margin-left: 100px;
}

.lower-hero .eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
}

.lower-hero h1 {
  color: var(--white);
  font-size: 48px;
  line-height: 1.25;
}

.lower-hero p:not(.eyebrow) {
  margin: 20px 0 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 72px;
  padding-left: 80px;
  color: #716b62;
  background: var(--paper);
  font-size: 13px;
}

.figma-section {
  position: relative;
  display: grid;
  grid-template-columns: 440px 760px;
  gap: 40px;
  padding: 78px 100px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.figma-section--role {
  min-height: 637px;
}

.figma-section--services {
  align-items: start;
}

.figma-section--archive,
.figma-section--document,
.figma-section--form,
.figma-section--links {
  min-height: 420px;
}

.figma-section--dark {
  color: var(--white);
  background: #232324;
}

.figma-section__heading {
  position: relative;
}

.figma-section__number {
  position: absolute;
  top: -36px;
  left: -32px;
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.18;
}

.figma-section__heading h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
}

.figma-section__heading > p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.figma-section__heading--dark > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.75);
}

.figma-section__image--wide {
  width: 760px;
  height: 214px;
  object-fit: cover;
}

.works-detail__main img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 760px;
  margin-inline: auto;
  object-fit: contain;
}

.figma-section__body {
  grid-column: 1 / -1;
  width: 1196px;
  max-width: 100%;
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 2;
}

.figma-section__body p {
  margin: 0 0 14px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 370px);
  gap: 24px 20px;
}

.figma-section--services > .media-grid + .figma-section__heading {
  grid-column: 1;
  margin-top: 70px;
}

.figma-section--services > .media-grid + .figma-section__heading + .media-grid {
  margin-top: 70px;
}

.media-row {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 20px;
  width: 370px;
  min-height: 136px;
  padding: 17px;
  background: var(--white);
  border: 1px solid var(--line);
}

.media-row img {
  width: 128px;
  height: 82px;
  object-fit: cover;
}

.media-row h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.5;
}

.media-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.figma-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.works-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.works-card__image {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d9d2c4;
}

.works-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-card__body {
  padding: 22px;
}

.works-card__meta {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.works-card h3 {
  margin: 0;
  font-size: 18px;
}

.works-card__body > p {
  color: var(--ink-soft);
  font-size: 13px;
}

.works-card__more {
  display: inline-flex;
  gap: 14px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
}

.works-card__more::after {
  content: "";
  width: 34px;
  height: 1px;
  margin-top: 11px;
  background: currentColor;
}

.news-list,
.text-link-list,
.confirm-list,
.info-list {
  width: 760px;
  max-width: 100%;
}

.news-row {
  grid-template-columns: 110px 114px 1fr 24px;
  min-height: 62px;
}

.news-row__category {
  color: var(--accent);
  font-size: 13px;
}

.news-row strong {
  font-size: 15px;
}

.news-row.is-hidden {
  display: none;
}

.text-link-list {
  border-top: 1px solid var(--line);
}

.text-link-list a {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 16px;
  min-height: 58px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
}

.text-link-list small {
  grid-column: 1;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 400;
}

.text-link-list b {
  grid-column: 2;
  grid-row: 1 / span 2;
  text-align: right;
}

.text-link-list--dark {
  border-color: rgba(255, 255, 255, 0.35);
}

.text-link-list--dark a {
  border-color: rgba(255, 255, 255, 0.35);
}

.text-link-list--dark small {
  color: rgba(255, 255, 255, 0.68);
}

.figma-form,
.entry-content {
  width: 760px;
  max-width: 100%;
}

.entry-content {
  font-size: 15px;
  line-height: 2;
}

.contact-form,
.confirm-list,
.info-list {
  display: grid;
  gap: 0;
}

.form-field {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: start;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.form-field:last-of-type {
  border-bottom: 1px solid var(--line);
}

.form-field label,
.confirm-list dt,
.info-list dt {
  font-weight: 700;
}

.form-field span {
  display: inline-flex;
  margin-left: 8px;
  padding: 2px 8px;
  color: var(--white);
  background: var(--accent);
  font-size: 12px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--white);
}

.form-field textarea {
  min-height: 180px;
  resize: vertical;
}

.form-field--trap {
  position: absolute;
  left: -9999px;
}

.form-check {
  margin: 28px 0;
}

.confirm-list,
.info-list {
  grid-template-columns: 180px 1fr;
  border-top: 1px solid var(--line);
}

.confirm-list dt,
.confirm-list dd,
.info-list dt,
.info-list dd {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.badge {
  display: inline-flex;
  padding: 6px 16px;
  color: var(--white);
  background: var(--accent);
  font-size: 13px;
}

.confirm-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 26px;
}

.button--outline {
  color: var(--ink);
  background: transparent;
}

.figma-section--dark .button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.form-message {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.form-message--error {
  border-color: #b94a48;
  color: #8f1f1d;
}

.map-embed {
  width: 760px;
  min-height: 150px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #efebe2;
}

.map-embed iframe {
  width: 100%;
  height: 150px;
  border: 0;
}

.map-embed__placeholder {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 150px;
  padding: 20px;
  background: repeating-linear-gradient(-18deg, transparent 0 32px, rgba(143, 118, 80, 0.08) 33px 34px);
}

.map-embed__placeholder p {
  margin: 0;
  color: #716b62;
  font-size: 13px;
}

.business-role__heading h2 span {
  display: block;
  white-space: nowrap;
}

.company-message {
  align-items: start;
}

.company-message__image {
  grid-column: 2;
  width: 760px;
  height: 250px;
  object-fit: cover;
  object-position: center;
}

.company-message__body,
.recruit-message__body {
  grid-column: 2;
  width: 760px;
  font-family: var(--font-sans);
  line-height: 1.85;
}

.company-message__body h3 {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.5;
}

.company-message__signature {
  margin-top: 30px !important;
  font-weight: 700;
  text-align: right;
}

.company-profile__content,
.company-access__content,
.recruit-flow__list,
.recruit-requirements__list,
.recruit-application__content {
  grid-column: 2;
  width: 760px;
  max-width: 100%;
}

.security-action {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.security-action img {
  width: 160px;
  height: 112px;
  object-fit: contain;
}

.security-action p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

.company-access {
  min-height: 520px;
}

.company-access__panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.company-access__panels > div {
  min-height: 96px;
  padding: 16px 19px;
  background: #fff;
  border: 1px solid var(--accent);
}

.company-access__panels h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.company-access__panels p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.company-access__external {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  margin-top: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.recruit-message {
  min-height: 360px;
}

.recruit-message__body {
  font-size: 15px;
}

.recruit-flow {
  min-height: 520px;
}

.recruit-flow__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-flow__list li {
  position: relative;
  min-height: 250px;
  padding: 28px 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
}

.recruit-flow__list li > span {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.recruit-flow__list img {
  display: block;
  width: 36px;
  height: 36px;
  margin: 22px auto 18px;
}

.recruit-flow__list h3 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 20px;
}

.recruit-flow__list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.recruit-requirements__list {
  grid-template-columns: 180px 1fr;
}

.recruit-application__content img {
  display: block;
  width: 760px;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
}

.recruit-application__content p {
  margin: 28px 0 24px;
  font-size: 15px;
  line-height: 1.85;
}

.privacy-policy {
  min-height: 965px;
}

.privacy-policy__content {
  grid-column: 2;
  color: #6b6354;
  font-size: 13px;
  line-height: 1.85;
}

.privacy-policy__content section {
  margin-bottom: 22px;
}

.privacy-policy__content h3 {
  margin: 0 0 2px;
  color: #292621;
  font-size: 13px;
}

.privacy-policy__content p,
.privacy-policy__content ul {
  margin: 0;
}

.privacy-policy__content ul {
  padding: 0;
  list-style: none;
}

.privacy-policy__content li::before {
  content: "・";
}

.privacy-policy__contact {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(199, 178, 148, 0.55);
}

.privacy-policy__contact h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.privacy-policy__contact a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 700;
}

.empty-message--dark {
  color: rgba(255, 255, 255, 0.75);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (hover: hover) {
  .global-nav__recruit:hover,
  .global-nav__contact:hover {
    opacity: 0.65;
  }

  .global-nav > a:not(.global-nav__recruit):not(.global-nav__contact):hover::after,
  .footer-nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
  }

  .section-button:hover,
  .button:hover {
    color: var(--ink);
    background: var(--white);
    transform: translateX(2px);
  }

  .service-card:hover img,
  .top-work-card:hover img {
    transform: scale(1.03);
  }

  .service-card img,
  .top-work-card img {
    transition: transform 0.3s ease;
  }
}

@media (max-width: 1100px) {
  .site-header__inner {
    padding-left: 32px;
  }

  .global-nav > a {
    width: 94px;
    font-size: 12px;
  }

  .global-nav__recruit,
  .global-nav__contact {
    width: 108px !important;
  }

  .home-philosophy,
  .home-services,
  .home-works,
  .home-news,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .home-philosophy__copy,
  .home-services__copy,
  .home-news__copy,
  .contact-cta__inner {
    padding-left: 40px;
    margin-left: 0;
  }

  .home-philosophy__image,
  .home-services__cards,
  .home-works__stage,
  .home-works__copy,
  .home-news__list {
    margin-left: 40px;
  }

  .home-philosophy__panel {
    clip-path: none;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .figma-section {
    grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
    gap: 32px;
    padding-right: 40px;
    padding-left: 40px;
  }

  .figma-section__image--wide,
  .company-message__image,
  .company-message__body,
  .recruit-message__body,
  .company-profile__content,
  .company-access__content,
  .recruit-flow__list,
  .recruit-requirements__list,
  .recruit-application__content,
  .recruit-application__content img,
  .privacy-policy__content,
  .media-grid,
  .news-list,
  .text-link-list,
  .figma-form,
  .entry-content,
  .confirm-list,
  .info-list,
  .map-embed {
    width: 100%;
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-row {
    width: 100%;
  }
}

@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header,
  .site-header__inner {
    height: 68px;
  }

  .site-header__inner {
    align-items: center;
    padding: 0 20px;
  }

  .brand,
  .brand img {
    width: 210px;
  }

  .menu-button {
    position: relative;
    z-index: 60;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--white);
    background: var(--ink);
    border: 0;
  }

  .menu-button__lines,
  .menu-button__lines::before,
  .menu-button__lines::after {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
  }

  .menu-button__lines {
    position: relative;
  }

  .menu-button__lines::before,
  .menu-button__lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-button__lines::before {
    top: -6px;
  }

  .menu-button__lines::after {
    top: 6px;
  }

  .global-nav {
    position: fixed;
    inset: 68px 0 auto;
    z-index: 55;
    display: none;
    padding: 16px 20px 24px;
    background: rgba(248, 246, 241, 0.98);
    box-shadow: 0 18px 30px rgba(32, 32, 30, 0.14);
  }

  .global-nav[data-open="true"] {
    display: grid;
  }

  .global-nav > a,
  .global-nav__recruit,
  .global-nav__contact {
    justify-content: flex-start;
    width: 100% !important;
    min-height: 48px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(40, 38, 34, 0.16);
  }

  .global-nav__recruit,
  .global-nav__contact {
    flex-direction: row;
    justify-content: center;
    margin-top: 10px;
  }

  .home-hero {
    height: 640px;
  }

  .home-hero__content {
    width: calc(100% - 40px);
    padding-top: 150px;
    margin-left: 20px;
  }

  .home-hero h1 {
    font-size: 40px;
  }

  .home-hero p {
    width: min(100%, 320px);
    font-size: 14px;
  }

  .home-hero p br {
    display: none;
  }

  .home-philosophy__copy,
  .home-services__copy,
  .home-news__copy,
  .contact-cta__inner,
  .home-philosophy__image,
  .home-services__cards,
  .home-works__stage,
  .home-works__copy,
  .home-news__list {
    width: calc(100% - 40px);
    margin-left: 20px;
    padding-left: 0;
  }

  .home-philosophy__copy {
    padding-top: 72px;
    padding-bottom: 44px;
  }

  .home-philosophy__copy > p:not(.section-kicker) {
    width: 100%;
  }

  .home-philosophy__image {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .home-philosophy__panel {
    min-height: 410px;
    padding: 78px 24px 48px;
  }

  .home-services {
    padding: 76px 0;
  }

  .home-services__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .service-card {
    height: auto;
  }

  .service-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 332 / 220;
  }

  .home-works {
    padding: 70px 0;
  }

  .home-works__stage {
    display: block;
    height: auto;
  }

  .top-work-card--side,
  .carousel-arrow {
    display: none;
  }

  .top-work-card--main {
    position: static;
    width: 100%;
    height: auto;
  }

  .top-work-card--main img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .home-works__copy {
    margin-top: 36px;
  }

  .home-works__copy .section-number,
  .home-services__number,
  .home-news__number {
    left: auto;
    right: 20px;
    font-size: 70px;
  }

  .home-news {
    padding: 74px 0;
  }

  .home-news__list {
    margin-top: 32px;
  }

  .news-row {
    grid-template-columns: 96px 1fr 20px;
  }

  .contact-cta {
    height: 380px;
  }

  .contact-cta__inner {
    width: calc(100% - 40px);
  }

  .site-footer {
    display: block;
    padding: 52px 20px 40px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 36px;
  }

  .site-footer__legal {
    position: static;
    flex-wrap: wrap;
    margin-top: 32px;
  }

  .lower-hero {
    height: 420px;
    margin-top: 68px;
  }

  .lower-hero__inner {
    width: calc(100% - 40px);
    padding-top: 86px;
    margin-left: 20px;
  }

  .lower-hero h1 {
    font-size: 36px;
  }

  .lower-hero p:not(.eyebrow) {
    font-size: 15px;
  }

  .breadcrumb {
    height: 58px;
    padding-left: 20px;
    font-size: 12px;
  }

  .figma-section {
    display: block;
    padding: 70px 20px;
  }

  .figma-section__heading {
    margin-bottom: 34px;
  }

  .figma-section__number {
    top: -42px;
    left: auto;
    right: 0;
    font-size: 70px;
  }

  .figma-section__heading h2 {
    font-size: 29px;
  }

  .figma-section__image--wide,
  .figma-section__body,
  .media-grid,
  .media-row,
  .news-list,
  .text-link-list,
  .figma-form,
  .entry-content,
  .confirm-list,
  .info-list,
  .map-embed {
    width: 100%;
  }

  .figma-section__image--wide {
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 28px;
  }

  .media-grid,
  .figma-card-grid {
    grid-template-columns: 1fr;
  }

  .media-row {
    grid-template-columns: 118px 1fr;
  }

  .media-row img {
    width: 118px;
  }

  .news-row {
    grid-template-columns: 92px 1fr 20px;
    gap: 8px;
    padding: 14px 0;
  }

  .news-row__category {
    grid-column: 2;
  }

  .news-row strong {
    grid-column: 1 / 3;
  }

  .form-field {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .confirm-list,
  .info-list {
    grid-template-columns: 1fr;
  }

  .confirm-list dt,
  .info-list dt {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .confirm-list dd,
  .info-list dd {
    padding-top: 0;
  }

  .confirm-actions {
    justify-content: stretch;
  }

  .confirm-actions .button {
    width: 100%;
  }
}

.lower-hero--kv-company-figma .lower-hero__image,
.lower-hero--kv-news-list-figma .lower-hero__image {
  object-position: center bottom;
}

.status-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  color: #fff;
  background: #222224;
}

.status-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 28%;
  height: 100%;
  background: #292925;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.status-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
  padding-top: 87px;
}

.status-hero .section-kicker {
  margin-bottom: 23px;
}

.status-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1.32;
}

.status-hero p:not(.section-kicker) {
  margin: 24px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}

.status-next {
  display: grid;
  grid-template-columns: 400px 760px;
  gap: 80px;
  min-height: 420px;
  padding: 69px max(40px, calc((100% - 1240px) / 2));
  background: var(--paper);
}

.status-next__copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1.35;
}

.status-next__copy > p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.status-next__copy .section-button {
  margin-top: 40px;
  min-width: 254px;
}

.status-next .text-link-list {
  width: 100%;
}

@media (min-width: 1101px) {
  .home-philosophy__image { grid-column: 2; }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .home-philosophy__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 44%);
  }

  .home-philosophy__copy {
    padding: 56px 36px;
  }

  .home-philosophy__copy > p:not(.section-kicker) {
    width: 100%;
  }

  .home-philosophy__image {
    width: 100%;
    margin-left: 0;
  }

  .home-philosophy__panel {
    position: relative;
    left: auto;
    grid-column: 1 / -1;
    width: 100%;
    min-height: auto;
    padding: 56px max(40px, 10vw);
    background: var(--ink);
  }

  .home-philosophy__panel-shape {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
  }

  .site-header__inner {
    padding-right: 8px;
  }

  .brand,
  .brand img {
    width: 260px;
    max-width: calc(100vw - 88px);
  }

  .home-hero {
    height: 236px;
  }

  .home-hero__content {
    width: calc(100% - 40px);
    padding-top: 33px;
    margin-left: 20px;
  }

  .home-hero__shade {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.8) 58%,
      rgba(255, 255, 255, 0.18) 100%
    );
  }

  .home-hero__brand {
    display: block;
    width: auto !important;
    margin: 0 0 13px !important;
    color: #755a31;
    font-family: var(--font-sans);
    font-size: 10px !important;
    font-weight: 700;
    line-height: 1.2 !important;
  }

  .home-hero h1 {
    font-size: 28px;
    line-height: 1.32;
  }

  .home-hero p:not(.home-hero__brand) {
    width: 225px;
    margin-top: 11px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.75;
  }

  .home-hero__slide:nth-child(2) img {
    object-position: 58% center;
  }

  .home-hero__slide:nth-child(3) img {
    object-position: 64% center;
  }

  .home-hero__slide:nth-child(4) img {
    object-position: 65% center;
  }

  .home-hero__slide:nth-child(5) img {
    object-position: 70% center;
  }

  .global-nav > a:not(.global-nav__recruit):not(.global-nav__contact)::after {
    bottom: 7px;
    width: calc(100% - 28px);
  }

  .home-philosophy {
    display: block;
    min-height: 0;
    padding: 0;
    background: #fff;
  }

  .home-philosophy::after {
    display: none;
  }

  .home-philosophy__inner {
    display: block;
    width: 100%;
    min-height: 0;
  }

  .home-philosophy__copy {
    width: auto;
    margin: 0;
    padding: 65px 20px 0;
  }

  .home-philosophy h2 {
    font-size: 27px;
    line-height: 1.45;
  }

  .home-philosophy__copy > p:not(.section-kicker) {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.85;
  }

  .home-philosophy__copy > .home-philosophy__intro {
    width: calc(100% - 170px);
    min-height: 178px;
    margin-top: 22px;
  }

  .home-philosophy__copy > .home-philosophy__body {
    margin-top: 27px;
  }

  .home-philosophy__image {
    position: absolute;
    top: 191px;
    right: 20px;
    width: 140px;
    height: 180px;
    margin: 0;
    aspect-ratio: auto;
  }

  .home-philosophy__image img {
    object-position: center;
  }

  .home-philosophy__image picture,
  .home-philosophy__image picture img,
  .service-card picture,
  .service-card picture img,
  .top-work-card picture,
  .top-work-card picture img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .home-philosophy__button--desktop {
    display: none;
  }

  .home-philosophy__panel {
    position: static;
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 42px 20px 64px;
    color: var(--ink);
    background: #fff;
  }

  .business-role__heading h2 span {
    white-space: normal;
  }

  .company-message__image,
  .company-message__body,
  .recruit-message__body,
  .company-profile__content,
  .company-access__content,
  .recruit-flow__list,
  .recruit-requirements__list,
  .recruit-application__content,
  .privacy-policy__content {
    width: 100%;
  }

  .company-message__image {
    height: auto;
    margin-bottom: 28px;
    aspect-ratio: 334 / 180;
  }

  .company-message__body h3 {
    font-size: 21px;
  }

  .security-action {
    grid-template-columns: 112px 1fr;
    gap: 18px;
  }

  .security-action img {
    width: 112px;
    height: 84px;
  }

  .company-access__panels,
  .recruit-flow__list {
    grid-template-columns: 1fr;
  }

  .map-embed,
  .map-embed iframe,
  .map-embed__placeholder {
    min-height: 180px;
    height: 180px;
  }

  .map-embed__placeholder {
    flex-direction: column;
    text-align: center;
  }

  .map-embed__placeholder .button {
    width: 100%;
    min-width: 0;
  }

  .recruit-flow__list li {
    min-height: 220px;
  }

  .recruit-requirements__list {
    grid-template-columns: 1fr;
  }

  .recruit-application__content img {
    width: 100%;
    height: auto;
    aspect-ratio: 334 / 180;
  }

  .privacy-policy {
    min-height: 0;
  }

  .privacy-policy__content section {
    margin-bottom: 28px;
  }

  .home-philosophy__panel-shape,
  .home-philosophy__panel .section-number {
    display: none;
  }

  .home-philosophy__panel ul {
    gap: 0;
  }

  .home-philosophy__panel li {
    grid-template-columns: 34px 1fr;
    min-height: 102px;
    padding: 20px 0;
    border-bottom: 1px solid #d9d2c4;
  }

  .home-philosophy__panel span:not(.section-number) {
    border-color: #b18b4f;
  }

  .home-philosophy__panel strong {
    color: var(--ink);
    font-size: 15px;
  }

  .home-philosophy__panel small {
    color: #66635d;
    font-size: 12px;
    line-height: 1.7;
  }

  .home-philosophy__button--mobile {
    display: flex;
    width: 100%;
    margin-top: 20px;
    color: #fff;
    background: #aa8954;
    border-color: #aa8954;
  }

  .lower-hero--kv-company-figma .lower-hero__image,
  .lower-hero--kv-news-list-figma .lower-hero__image {
    object-position: center bottom;
  }

  .status-hero {
    height: auto;
    min-height: 390px;
  }

  .status-hero::after {
    width: 48%;
  }

  .status-hero__inner {
    width: auto;
    padding: 64px 20px;
  }

  .status-hero h1 {
    font-size: 32px;
  }

  .status-hero p:not(.section-kicker) {
    font-size: 15px;
  }

  .status-hero p br {
    display: none;
  }

  .status-next {
    display: block;
    min-height: 0;
    padding: 64px 20px;
  }

  .status-next .text-link-list {
    margin-top: 48px;
  }
}

/* Figma-authoritative component and page layouts. */
.global-nav__recruit span,
.global-nav__contact span {
  display: block;
  width: 38px;
  height: 35px;
}

.global-nav__recruit span img,
.global-nav__contact span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-works__mobile-image {
  display: none;
}

.home-works__carousel-status {
  display: none;
}

.top-work-card {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 470px;
  height: 346px;
  opacity: 1;
  transform-origin: top left;
  transition: transform 350ms ease-out, opacity 350ms ease-out;
  will-change: transform, opacity;
}

.top-work-card[data-carousel-position="left"] {
  transform: translate3d(52px, 45px, 0) scale(0.74);
}

.top-work-card[data-carousel-position="center"] {
  z-index: 2;
  transform: translate3d(169px, 0, 0) scale(1);
}

.top-work-card[data-carousel-position="right"] {
  transform: translate3d(408px, 45px, 0) scale(0.74);
}

.top-work-card[data-carousel-position="hidden"] {
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(169px, 45px, 0) scale(0.74);
  pointer-events: none;
}

.top-work-card[data-carousel-position="left"],
.top-work-card[data-carousel-position="right"] {
  opacity: 0.72;
  pointer-events: none;
}

.top-work-card img,
.top-work-card picture,
.top-work-card picture img {
  display: block;
  width: 100%;
  height: 142px;
  object-fit: cover;
}

.top-work-card h3,
.top-work-card p,
.top-work-card a {
  margin-right: 28px;
  margin-left: 28px;
}

.top-work-card h3 {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.75;
}

.top-work-card p {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.75;
}

.top-work-card a {
  margin-top: 20px;
}

.carousel-arrow img {
  width: 20px;
  height: 20px;
}

.home-works__stage--static {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 23px 48px;
}

.home-works__stage--static .carousel-arrow {
  display: none;
}

.home-works__stage--static:has(.top-work-card:only-of-type) {
  grid-template-columns: 470px;
  justify-content: center;
}

.top-work-card[data-carousel-position="static"] {
  position: relative;
  width: 100%;
  height: 300px;
  opacity: 1;
  transform: none;
}

.home-works__empty {
  align-self: center;
  justify-self: center;
  margin: 0;
  color: var(--ink-soft);
}

.business-role__media {
  display: contents;
}

.business-role__body p {
  margin: 0;
}

.company-message {
  grid-template-columns: 480px 680px;
  column-gap: 80px;
  row-gap: 0;
  min-height: 695px;
  padding: 70px 100px 24px;
}

.company-message .figma-section__heading {
  margin-top: 20px;
}

.company-message__image {
  grid-column: 2;
  width: 680px;
  height: 189px;
  object-position: center;
}

.company-message__body {
  grid-column: 1 / -1;
  width: 1236px;
  max-width: 100%;
  margin-top: 0;
  line-height: 1.8;
}

.company-message__body h3 {
  margin: 0 0 20px;
}

.company-message__body p {
  margin: 0;
}

.company-profile {
  display: block;
  min-height: 704px;
  padding: 90px 100px 0;
}

.company-profile__content {
  display: grid;
  grid-template-columns: 760px 480px;
  width: 1240px;
  max-width: none;
  margin-top: 62px;
}

.company-profile .info-list {
  grid-template-columns: 180px 580px;
  width: 760px;
  height: 322px;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--accent);
}

.company-profile .info-list dt,
.company-profile .info-list dd {
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 0 16px;
  border: 0;
  border-bottom: 2px solid var(--accent);
  font-size: 14px;
  line-height: 21px;
}

.company-profile .info-list dt {
  padding-right: 8px;
}

.company-profile .info-list dt:nth-last-of-type(1),
.company-profile .info-list dd:last-child {
  border-bottom: 0;
}

.company-profile .security-action {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  height: 322px;
  margin: 0;
  padding: 30px 24px;
  border: 2px solid var(--accent);
  border-left: 0;
  text-align: center;
}

.company-profile .security-action img {
  width: 192px;
  height: 192px;
}

.company-profile .security-action p {
  font-size: 14px;
  line-height: 1.45;
}

@media (min-width: 901px) and (max-width: 1100px) {
  .company-message {
    grid-template-columns: minmax(260px, 38%) minmax(0, 1fr);
    column-gap: 32px;
    padding-right: 40px;
    padding-left: 40px;
  }

  .company-message__image {
    grid-column: 2;
    width: 100%;
  }

  .company-message__body {
    grid-column: 1 / -1;
    width: 100%;
  }

  .company-profile {
    padding-right: 40px;
    padding-left: 40px;
  }

  .company-profile__content {
    grid-template-columns: minmax(0, 62%) minmax(0, 38%);
    width: 100%;
    max-width: 100%;
  }

  .company-profile .info-list {
    grid-template-columns: minmax(130px, 24%) minmax(0, 1fr);
    width: 100%;
  }

  .company-profile .security-action {
    width: 100%;
  }
}

.company-access__external {
  justify-content: center;
  margin-top: 18px;
  color: var(--white);
}

.recruit-flow__list {
  grid-template-columns: repeat(3, 238px);
  gap: 23px;
}

.recruit-flow__list li {
  min-height: 250px;
  padding: 22px;
  text-align: left;
}

.recruit-flow__list img {
  margin: 15px 0 18px;
}

.recruit-requirements__list {
  grid-template-columns: 170px 1fr;
  gap: 8px 0;
  border: 0;
}

.recruit-requirements__list dt,
.recruit-requirements__list dd {
  min-height: 50px;
  padding: 14px 18px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  line-height: 20px;
}

.recruit-requirements__list dt {
  border-left: 1px solid var(--line);
}

.recruit-requirements__list dd {
  border-right: 1px solid var(--line);
}

@media (min-width: 1101px) {
  .home-philosophy::after {
    display: none;
  }

  .home-philosophy__panel {
    left: calc(50% + 249px);
    width: max(471px, calc(50vw - 249px));
    background: var(--ink);
    clip-path: polygon(70px 0, 100% 0, 100% 100%, 0 100%);
  }
}

@media (max-width: 900px) {
  .site-header,
  .site-header__inner {
    height: 64px;
  }

  .site-header__inner {
    padding: 0 8px 0 20px;
  }

  .menu-button {
    width: 48px;
    height: 48px;
  }

  .global-nav {
    inset: 64px 0 auto;
  }

  .global-nav__recruit span,
  .global-nav__contact span {
    width: 28px;
    height: 28px;
  }

  .lower-hero {
    height: 240px;
    margin-top: 0;
  }

  .lower-hero__inner {
    width: calc(100% - 40px);
    padding-top: 57px;
    margin-left: 20px;
  }

  .lower-hero .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .lower-hero h1 {
    font-size: 32px;
  }

  .lower-hero p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.65;
  }

  .breadcrumb {
    height: 46px;
    padding-left: 20px;
    font-size: 11px;
  }

  .business-role {
    min-height: 1116px;
    padding: 64px 20px;
  }

  .business-role__media {
    display: block;
  }

  .business-role .figma-section__heading {
    margin-bottom: 20px;
  }

  .business-role .figma-section__image--wide {
    float: right;
    width: 140px;
    height: 180px;
    margin: 0 0 20px 16px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .business-role__body {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.85;
  }

  .business-role__body p {
    display: inline;
  }

  .business-role__body p:last-child {
    display: block;
    clear: both;
    margin-top: 14px;
  }

  .business-role__body::after {
    content: "";
    display: block;
    clear: both;
  }

  .home-works {
    display: flex;
    flex-direction: column;
    min-height: 1107px;
    padding: 64px 20px;
  }

  .home-works__stage {
    order: 2;
    display: block;
    position: relative;
    width: 100%;
    height: 430px;
    margin: 0;
    overflow: visible;
    touch-action: pan-y;
  }

  .home-works__mobile-image {
    display: none;
  }

  .top-work-card,
  .top-work-card[data-carousel-position] {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: calc(100% - 30px);
    height: 404px;
    padding: 0 0 18px;
    overflow: hidden;
    color: var(--white);
    background: #1c1c1a;
    border: 0;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(calc(100% + 14px), 0, 0);
    transition: transform 350ms ease-out, opacity 350ms ease-out;
    pointer-events: none;
  }

  .top-work-card[data-carousel-position="center"],
  .top-work-card[data-carousel-position="static"] {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transform: translate3d(15px, 0, 0);
    pointer-events: auto;
  }

  .top-work-card[data-carousel-position="right"] {
    z-index: 1;
    opacity: 0.72;
    visibility: visible;
    transform: translate3d(calc(100% + 15px), 0, 0);
  }

  .top-work-card[data-carousel-position="left"] {
    z-index: 1;
    opacity: 0.72;
    visibility: visible;
    transform: translate3d(calc(-100% + 15px), 0, 0);
  }

  .top-work-card img,
  .top-work-card picture,
  .top-work-card picture img {
    display: block;
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .top-work-card h3,
  .top-work-card p,
  .top-work-card a {
    margin-right: 18px;
    margin-left: 18px;
  }

  .top-work-card h3 {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.6;
  }

  .top-work-card p {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.7;
  }

  .top-work-card a {
    margin-top: auto;
    padding-top: 10px;
    font-size: 13px;
  }

  .carousel-arrow {
    top: 72px;
    display: grid;
    width: 44px;
    height: 44px;
  }

  .carousel-arrow--prev {
    left: 23px;
  }

  .carousel-arrow--next {
    right: 23px;
  }

  .home-works__stage--static[data-works-carousel] .carousel-arrow {
    display: grid;
  }

  .home-works__carousel-status {
    position: absolute;
    right: 15px;
    bottom: 0;
    display: flex;
    gap: 4px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
  }

  .home-works__copy {
    order: 1;
    margin: 0 0 36px;
  }

  .company-message,
  .company-profile {
    display: block;
    min-height: 0;
    padding: 64px 20px;
  }

  .company-message .figma-section__heading,
  .company-profile .figma-section__heading {
    margin: 0 0 14px;
  }

  .company-message__image {
    width: 100%;
    height: 180px;
    margin: 14px 0;
    aspect-ratio: auto;
  }

  .company-message__body {
    width: 100%;
    font-size: 13px;
    line-height: 1.85;
  }

  .company-message__body > p:not(.company-message__closing):not(.company-message__signature) {
    display: inline;
  }

  .company-message__closing {
    display: block;
    margin-top: 14px !important;
  }

  .company-message__body h3 {
    margin-bottom: 14px;
    font-size: 22px;
  }

  .company-message__signature {
    margin-top: 14px !important;
  }

  .company-profile__content {
    display: block;
    width: 100%;
    margin-top: 0;
  }

  .company-profile .info-list {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    border: 0;
  }

  .company-profile .info-list dt,
  .company-profile .info-list dd {
    min-height: 0;
    padding: 0;
    border: 0;
  }

  .company-profile .info-list dt {
    padding-top: 14px;
    color: var(--accent);
    font-size: 11px;
  }

  .company-profile .info-list dd {
    min-height: 52px;
    padding-top: 4px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

  .company-profile .security-action {
    display: grid;
    grid-template-columns: 1fr 104px;
    gap: 12px;
    height: 112px;
    margin-top: 14px;
    padding: 0;
    border: 0;
    text-align: left;
  }

  .company-profile .security-action img {
    grid-column: 2;
    grid-row: 1;
    width: 104px;
    height: 104px;
  }

  .company-profile .security-action p {
    grid-column: 1;
    grid-row: 1;
    font-size: 11px;
    line-height: 1.7;
  }

  .company-access {
    padding: 64px 20px;
  }

  .company-access__external {
    width: 100%;
    margin-top: 18px;
  }

  .recruit-flow__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .recruit-flow__list li {
    min-height: 159px;
    padding: 18px;
  }

  .recruit-flow__list img {
    margin: 0 0 8px;
  }

  .recruit-requirements__list {
    display: block;
  }

  .recruit-requirements__list dt,
  .recruit-requirements__list dd {
    min-height: 0;
    padding: 0;
    border: 0;
  }

  .recruit-requirements__list dt {
    padding-top: 12px;
    color: var(--accent);
    font-size: 11px;
  }

  .recruit-requirements__list dd {
    min-height: 44px;
    padding: 3px 0 12px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    line-height: 1.65;
  }
}

/* Canonical mobile corrections verified at 320-430px. */
@media (max-width: 900px) {
  .site-header,
  .site-header__inner {
    height: 64px;
  }

  .site-header__inner {
    gap: 8px;
    padding: 0 8px 0 20px;
  }

  .site-header .brand,
  .site-header .brand img {
    flex: 0 1 220px;
    width: 220px;
    max-width: calc(100vw - 100px);
  }

  .site-header .brand,
  .site-footer .brand {
    min-height: 44px;
  }

  .menu-button {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .menu-button__close {
    display: none;
    width: 24px;
    height: 24px;
  }

  body.menu-open .menu-button__lines {
    display: none;
  }

  body.menu-open .menu-button__close {
    display: block;
  }

  .global-nav {
    position: fixed;
    inset: 64px 0 0;
    z-index: 55;
    display: none;
    min-height: calc(100vh - 64px);
    min-height: calc(100dvh - 64px);
    padding: 41px 20px 24px;
    overflow-y: auto;
    color: var(--white);
    background: #1f1f1f;
    box-shadow: none;
  }

  .global-nav[data-open="true"] {
    display: block;
  }

  .global-nav__mobile-home {
    display: flex;
  }

  .global-nav > a,
  .global-nav__recruit,
  .global-nav__contact {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100% !important;
    min-height: 58px;
    margin: 0;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 0;
    border-bottom: 1px solid #595959;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
  }

  .global-nav__recruit > span,
  .global-nav__contact > span {
    display: none;
  }

  .global-nav > a::after,
  .global-nav > a:not(.global-nav__recruit):not(.global-nav__contact)::after,
  .global-nav__recruit::after,
  .global-nav__contact::after {
    position: static;
    display: block;
    width: 24px;
    height: auto;
    content: "→";
    color: #9e8052;
    background: none;
    box-shadow: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    text-align: right;
    transform: none;
    transition: none;
  }

  .global-nav__mobile-legal {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    height: 44px;
  }

  .global-nav__mobile-legal a {
    display: flex;
    align-items: center;
    min-height: 44px;
    color: #b3b3b3;
    font-size: 12px;
    line-height: 1.7;
  }

  .home-services__copy {
    padding-right: 0;
  }

  .home-services h2 span {
    display: block;
    white-space: nowrap;
  }

  .home-services h2 span:nth-child(2),
  .home-services h2 span:nth-child(3) {
    display: inline;
  }

  .section-button,
  .button {
    min-height: 48px;
  }

  .breadcrumb a {
    display: inline-flex;
    align-items: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 6px;
    margin-left: -6px;
  }

  .footer-nav a,
  .site-footer__legal a,
  .site-footer__company a[href^="tel:"] {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .footer-nav {
    row-gap: 2px;
  }

  .site-footer__company p {
    display: flex;
    align-items: center;
    min-height: 32px;
  }

  .site-footer {
    padding: 40px 20px 32px;
  }

  .site-footer__company .brand {
    margin-bottom: 24px;
  }

  .site-footer__company a[href^="tel:"] {
    margin-block: -6px;
  }

  .footer-nav {
    margin-top: 28px;
  }

  .site-footer__legal {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 8px 22px;
    align-items: center;
    margin-top: 24px;
  }

  .site-footer__legal a {
    grid-row: 1;
  }

  .site-footer__legal small {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .footer-nav a::after {
    bottom: 4px;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    font-size: 16px;
  }

  .form-check {
    margin: 24px 0;
  }

  .form-check label {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    min-height: 44px;
    line-height: 1.6;
  }

  .form-check__text {
    min-width: 0;
  }

  .company-profile .info-list a[href^="tel:"] {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .form-check input[type="checkbox"] {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin: 0 8px 0 0;
  }

  .company-profile .info-list dt,
  .recruit-requirements__list dt {
    font-size: 12px;
  }

  .company-profile .security-action {
    min-height: 112px;
    height: auto;
  }

  .company-profile .security-action p {
    font-size: 12px;
  }

  .confirm-list dd,
  .entry-content,
  .news-row strong,
  .works-card h3 {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 359px) {
  .home-services__copy {
    width: calc(100% - 40px);
    padding-right: 0;
  }

  .home-services h2 {
    font-size: 29px;
    line-height: 1.4;
  }

  .home-works h2 {
    font-size: 31px;
  }

  .home-services h2 span,
  .home-services h2 span:nth-child(2),
  .home-services h2 span:nth-child(3) {
    display: block;
  }

  .business-role .figma-section__image--wide {
    width: 112px;
    margin-left: 12px;
  }

  .media-row {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
  }

  .media-row img {
    width: 104px;
  }

  .media-row h3 {
    font-size: 15px;
    text-wrap: balance;
  }

  .lower-hero--kv-privacy-figma .lower-hero__inner {
    padding-top: 48px;
  }

  .form-check__text {
    font-size: 14px;
    text-wrap: balance;
  }
}

/* Canonical Philosophy media flow after moving the image beside its copy. */
.home-philosophy__media > p {
  width: 472px;
  margin: 20px 0 0;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
}

.home-philosophy__media > .home-philosophy__body {
  margin-top: 0;
}

@media (min-width: 1101px) {
  .home-philosophy__image {
    position: absolute;
    top: 0;
    left: 40.2778%;
    grid-column: auto;
    width: 33.75%;
    height: 545px;
    margin: 0;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .home-philosophy__copy {
    grid-column: 1;
    min-height: 545px;
  }

  .home-philosophy__image {
    position: absolute;
    top: 0;
    right: 0;
    grid-column: auto;
    width: 44%;
    height: 545px;
    margin: 0;
  }
}

@media (max-width: 900px) {
  .home-hero h1,
  .lower-hero h1,
  .status-hero h1 {
    font-size: 24px;
    line-height: 1.4;
  }

  .home-philosophy h2,
  .home-services h2,
  .home-works h2,
  .home-news h2,
  .contact-cta h2,
  .figma-section__heading h2,
  .status-next__copy h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .company-message__body h3,
  .media-row h3,
  .works-card h3,
  .recruit-flow__list h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  .section-kicker,
  .lower-hero .eyebrow {
    font-size: 12px;
  }

  .figma-section__heading > p:not(.section-kicker),
  .figma-section__body,
  .entry-content,
  .privacy-policy__content,
  .home-services__copy > p:not(.section-kicker),
  .home-works__copy > p:not(.section-kicker),
  .home-works__empty,
  .empty-message,
  .status-hero p:not(.section-kicker),
  .status-next__copy > p:not(.section-kicker),
  .contact-cta p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.8;
  }

  .form-field input,
  .form-field textarea,
  .form-field select,
  .global-nav > a {
    font-size: 16px;
  }

  .home-hero__content {
    width: 240px;
  }

  .home-hero__shade {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.68) 34%,
      rgba(255, 255, 255, 0.16) 58%,
      rgba(255, 255, 255, 0) 74%
    );
  }

  .home-hero p:not(.home-hero__brand) {
    width: 215px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.7;
  }

  .home-hero__mobile-line {
    display: block;
  }

  .lower-hero p:not(.eyebrow) {
    width: 230px;
    max-width: 100%;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.7;
    text-wrap: balance;
  }

  .contact-cta__image img {
    object-position: 80% center;
  }

  .form-check__text a {
    color: var(--accent);
    text-decoration-line: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }

  .home-philosophy__media {
    margin-top: 22px;
  }

  .home-philosophy__media::after {
    display: block;
    clear: both;
    content: "";
  }

  .home-philosophy__media > p {
    display: inline;
    width: auto;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
  }

  .home-philosophy__media > .home-philosophy__intro {
    min-height: 0;
    margin: 0;
  }

  .home-philosophy__media > .home-philosophy__intro::after {
    content: " ";
  }

  .home-philosophy__media > .home-philosophy__body {
    margin: 0;
  }

  .home-philosophy__media > .home-philosophy__body br {
    display: none;
  }

  .home-philosophy__image {
    position: static;
    float: right;
    width: 140px;
    height: 180px;
    margin: 0 0 20px 16px;
  }

  .home-philosophy__panel .section-number {
    position: absolute;
    top: 40px;
    right: 20px;
    left: auto;
    z-index: 2;
    display: block;
    color: var(--accent);
    font-size: 64px;
    opacity: 0.2;
  }

  .home-services {
    min-height: 0;
    padding-bottom: 76px;
  }

  .service-card {
    height: auto;
    min-height: 0;
  }

  .service-card picture {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 332 / 220;
  }

  .service-card picture img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .figma-section--services > .media-grid + .figma-section__heading {
    margin-top: 64px;
  }

  .figma-section--services > .media-grid + .figma-section__heading + .media-grid {
    margin-top: 0;
  }

  .home-works {
    position: relative;
    min-height: 0;
    height: auto;
    padding: 64px 20px;
    overflow: hidden;
    background: var(--paper-2);
  }

  .home-works::before {
    position: absolute;
    z-index: 0;
    inset: 0 0 0 auto;
    width: 28%;
    content: "";
    background: rgba(217, 210, 196, 0.55);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    pointer-events: none;
  }

  .home-works > * {
    position: relative;
    z-index: 1;
  }

  .home-works__copy {
    width: 100%;
    margin: 0 0 28px;
  }

  .home-works__copy .section-number {
    top: -24px;
    right: 0;
    left: auto;
    font-size: 64px;
  }

  .home-services__number,
  .home-news__number {
    font-size: 64px;
  }

  .home-works__stage,
  .home-works__stage--static {
    width: 100%;
    min-height: 0;
    height: 430px;
    padding: 0;
    margin: 0;
  }

  .home-works__stage:has(.home-works__empty) {
    height: auto;
  }

  .home-works__stage--static {
    display: block;
  }

  .home-works__empty {
    display: flex;
    align-items: center;
    min-height: 64px;
    padding: 12px 0;
    margin: 0;
  }

  .recruit-flow__list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 0;
    padding: 16px 14px;
    text-align: center;
  }

  .recruit-flow__list li > span {
    width: 100%;
    text-align: center;
  }

  .recruit-flow__list img {
    margin: 6px auto;
  }

  .recruit-flow__list h3,
  .recruit-flow__list p {
    width: 100%;
    text-align: center;
  }

  .recruit-flow__list h3 {
    margin-bottom: 6px;
  }

  .recruit-requirements__list dt {
    padding: 12px 14px 0;
  }

  .recruit-requirements__list dd {
    padding: 3px 14px 12px;
    overflow-wrap: anywhere;
  }

  .contact-cta {
    height: auto;
    min-height: 280px;
  }

  .contact-cta__inner {
    width: calc(100% - 40px);
    min-height: 280px;
    padding: 36px 0;
    margin-left: 20px;
  }

  .contact-cta h2 {
    width: min(270px, 82%);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
  }

  .contact-cta .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 500;
  }

  .contact-cta p:not(.eyebrow) {
    width: min(250px, 78%);
    margin-top: 8px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
  }

  .contact-cta .button {
    min-height: 48px;
    margin-top: 18px;
  }
}

@media (min-width: 1320px) {
  .site-header__inner {
    padding-left: var(--desktop-gutter);
  }

  .home-hero__content,
  .lower-hero__inner,
  .contact-cta__inner {
    margin-left: var(--desktop-gutter);
  }

  .breadcrumb {
    padding-right: calc(var(--desktop-gutter) - 20px);
    padding-left: calc(var(--desktop-gutter) - 20px);
  }

  .figma-section {
    padding-right: var(--desktop-gutter);
    padding-left: var(--desktop-gutter);
  }

  .site-footer {
    padding-right: var(--desktop-gutter);
    padding-left: var(--desktop-gutter);
  }

  .site-footer__legal {
    right: var(--desktop-gutter);
  }
}

@media (min-width: 1320px) {
  .home-services,
  .home-news {
    grid-template-columns: calc(var(--desktop-gutter) + 480px) 760px minmax(0, 1fr);
  }

  .home-services__copy,
  .home-news__copy {
    padding-left: var(--desktop-gutter);
  }

  .home-services__number,
  .home-news__number {
    left: calc(var(--desktop-gutter) - 19px);
  }
}

@media (min-width: 1440px) {
  .home-works {
    grid-template-columns: 856px minmax(0, 536px);
    padding-right: calc(var(--desktop-gutter) - 100px);
    padding-left: calc(var(--desktop-gutter) - 52px);
  }

  .home-works__copy .section-number {
    right: -171px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .home-hero__slide {
    opacity: 0;
  }

  .home-hero__slide:first-child {
    opacity: 1;
  }

  .site-loader {
    display: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
