:root {
  --ink: #111111;
  --ink-2: #27272c;
  --muted: #686872;
  --line: #dedee5;
  --line-dark: #3b3b45;
  --line-soft: rgba(17, 17, 17, 0.1);
  --paper: #ffffff;
  --soft: #f5f5f7;
  --soft-2: #ececf1;
  --purple: #7657ff;
  --purple-soft: #b9adff;
  --dark: #111114;
  --dark-2: #19191f;
  --max: 1320px;
  --side: 48px;
  --radius: 8px;
  --hero: 128px;
  --h2: 64px;
  --h3: 30px;
  --lead: 20px;
  --body: 16px;
  --small: 13px;
  --section-y: 112px;
  --card-pad: 34px;
  --card-shadow: 0 18px 48px rgba(17, 17, 17, 0.055);
  --card-shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Inter", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "Noto Sans JP", system-ui, sans-serif;
  font-size: var(--body);
  line-height: 1.72;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

p,
h1,
h2,
h3,
figure,
dl,
dd,
ul {
  margin: 0;
}

ul {
  padding: 0;
}

.container {
  width: min(100% - (var(--side) * 2), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 var(--side);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.06);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  font-size: 20px;
  font-weight: 820;
  letter-spacing: 0;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  color: var(--ink-2);
  line-height: 1;
}

.nav a {
  display: grid;
  justify-items: start;
  gap: 4px;
  min-width: 86px;
  line-height: 1;
  text-align: left;
}

.nav a span {
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 820;
}

.nav a small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 720;
}

.nav a,
.nav a span,
.nav a small,
.header-contact,
.button {
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.nav a:hover,
.nav a:hover span,
.nav a:hover small {
  color: var(--purple);
}

.header-contact,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 780;
  line-height: 1;
  white-space: nowrap;
}

.header-contact,
.button-primary {
  color: var(--paper);
  background: var(--ink);
}

.button-secondary {
  color: var(--ink);
  background: var(--paper);
}

.header-contact:hover,
.button-primary:hover {
  background: var(--purple);
  border-color: var(--purple);
}

.button-secondary:hover {
  color: var(--purple);
  border-color: var(--purple);
}

.section,
.hero {
  border-bottom: 1px solid var(--line);
}

.section {
  padding: var(--section-y) 0;
}

.hero {
  padding: 40px 0 104px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.72fr);
  gap: 72px;
  align-items: end;
  padding: 28px 0 44px;
}

.eyebrow,
.number-label,
.service-kicker,
dt {
  display: grid;
  gap: 4px;
  align-items: start;
  justify-items: start;
  line-height: 1.15;
  letter-spacing: 0;
}

.eyebrow span,
.number-label span,
.service-kicker span,
dt span {
  color: var(--purple);
  font-size: 13px;
  font-weight: 840;
  line-height: 1.1;
  text-transform: uppercase;
}

.eyebrow small,
.number-label small,
.service-kicker small,
dt small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  line-height: 1.25;
}

.sample-card-dark .number-label small {
  color: rgba(255, 255, 255, 0.68);
}

.eyebrow {
  margin-bottom: 14px;
}

h1 {
  display: grid;
  row-gap: 30px;
  max-width: 1140px;
  font-size: var(--hero);
  font-weight: 860;
  line-height: 1;
  letter-spacing: 0;
}

h1 span {
  display: grid;
  align-items: center;
  line-height: 1;
}

h1 > span {
  opacity: 0;
  transform: translateY(0.22em) skewY(1.4deg);
  animation: heroLineIn 900ms cubic-bezier(0.2, 0.82, 0.18, 1) forwards;
  will-change: transform, opacity;
}

h1 > span:nth-child(1) {
  animation-delay: 80ms;
}

h1 > span:nth-child(2) {
  animation-delay: 220ms;
}

h1 > span:nth-child(3) {
  animation-delay: 360ms;
}

h1 span + span {
  grid-template-columns: 0.68em minmax(0, auto);
  column-gap: 0.12em;
}

h1 span + span::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.68em;
  margin-right: 0;
  content: "×";
  font-size: 0.72em;
  line-height: 1;
  transform: translateY(0.03em);
}

h2 {
  max-width: 940px;
  font-size: var(--h2);
  font-weight: 840;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: var(--h3);
  font-weight: 820;
  line-height: 1.24;
  letter-spacing: 0;
}

.hero-copy {
  display: grid;
  gap: 26px;
  padding-bottom: 0;
  color: var(--ink-2);
  font-size: var(--lead);
  line-height: 1.72;
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeIn 760ms cubic-bezier(0.2, 0.82, 0.18, 1) 620ms forwards;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 16px;
  opacity: 0;
  transform: translateY(22px);
  animation: heroFadeIn 780ms cubic-bezier(0.2, 0.82, 0.18, 1) 760ms forwards;
}

.hero-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7.4;
  background: var(--soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  transform: scale(1.015);
  transition:
    opacity 520ms ease,
    transform 680ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-index {
  display: grid;
  gap: 10px;
}

.hero-tab {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 112px;
  padding: 18px;
  color: inherit;
  background: var(--soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  font: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.hero-tab::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--purple);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-tab:hover,
.hero-tab.is-active {
  background: var(--paper);
  border-color: #cfcfda;
}

.hero-tab.is-active::after {
  opacity: 1;
  animation: tabProgress 4600ms linear forwards;
}

.hero-index span {
  color: var(--purple);
  font-size: 12px;
  font-weight: 840;
}

.hero-index strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.hero-index small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.35;
}

.split-head,
.section-head.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.86fr);
  gap: 72px;
  align-items: start;
}

.lead-stack,
.split-head > p,
.section-head > p,
.company-layout p,
.contact-layout p {
  color: var(--muted);
  font-size: var(--lead);
  line-height: 1.76;
}

.lead-stack {
  display: grid;
  gap: 18px;
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 48px;
}

.sample-stack {
  display: grid;
  gap: 18px;
}

.sample-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 56px;
  align-items: center;
  padding: var(--card-pad);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.sample-card-dark {
  color: var(--paper);
  background: var(--dark);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--card-shadow-dark);
}

.sample-media,
.sample-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--soft);
  border-radius: var(--radius);
}

.sample-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sample-stack .sample-card:nth-child(1) .sample-media {
  aspect-ratio: 2.08 / 1;
}

.sample-stack .sample-card:nth-child(3) .sample-media {
  aspect-ratio: 16 / 10;
}

.sample-media-dark {
  background: var(--dark);
}

.sample-copy {
  display: grid;
  gap: 18px;
}

.sample-copy p,
.services-grid p {
  color: var(--muted);
  font-size: var(--body);
  line-height: 1.76;
}

.sample-card-dark .sample-copy p,
.sample-card-dark .plain-list {
  color: #d8d8df;
}

.plain-list {
  display: grid;
  gap: 10px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 740;
  line-height: 1.55;
  list-style: none;
}

.plain-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.plain-list li::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 0.6em;
  background: var(--purple);
  border-radius: 50%;
  content: "";
}

.sample-video {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  aspect-ratio: 16 / 9;
  padding: 14px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.video-screen {
  position: relative;
  overflow: hidden;
  min-height: 0;
  background: #050507;
  border-radius: calc(var(--radius) - 2px);
}

.video-screen::after {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  content: "";
  pointer-events: none;
  opacity: 0;
}

.video-player {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-caption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 2;
  display: block;
  color: var(--paper);
}

.video-caption strong {
  font-size: 15px;
}

.services {
  background: var(--soft);
}

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

.services-grid article {
  display: grid;
  align-content: start;
  min-height: 280px;
  gap: 18px;
  padding: var(--card-pad);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.process-step {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 154px;
  padding: 24px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-right: 1px solid var(--line);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.process-step:last-child {
  border-right: 0;
}

.process-step:hover,
.process-step.is-active {
  background: var(--soft);
}

.process-step.is-active {
  color: var(--purple);
}

.process-index {
  color: var(--purple);
  font-size: 13px;
  font-weight: 840;
  line-height: 1;
}

.process-name {
  display: grid;
  gap: 6px;
}

.process-name span {
  color: var(--ink);
  font-size: 19px;
  font-weight: 840;
  line-height: 1.12;
}

.process-name small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.25;
}

.process-step.is-active .process-name span,
.process-step.is-active .process-name small {
  color: var(--purple);
}

.process-detail {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 16px;
  padding: 26px var(--card-pad);
  background: var(--soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.process-detail p {
  color: var(--ink-2);
  font-size: var(--lead);
  font-weight: 620;
  line-height: 1.72;
}

.company-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 72px;
  align-items: stretch;
}

.contact-intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}

.company-intro {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  min-height: 100%;
}

.company-aside {
  display: grid;
  gap: 14px;
  min-height: 100%;
}

.contact-layout h2 {
  max-width: 820px;
  font-size: 58px;
  line-height: 1.18;
  text-wrap: balance;
}

.company-data {
  height: 100%;
  padding: var(--card-pad);
  background: var(--soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.company-data div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.company-data div:first-child {
  padding-top: 0;
}

.company-data div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.company-map {
  overflow: hidden;
  min-height: 320px;
  background: var(--soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.company-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

dd {
  margin-top: 8px;
  color: var(--ink-2);
  font-size: var(--body);
  line-height: 1.7;
}

dd a,
.contact-meta a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.contact {
  background: var(--soft);
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.contact-meta div {
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 22px;
}

.contact-meta div + div {
  border-left: 1px solid var(--line);
}

.contact-meta dd {
  margin-top: 0;
  font-size: 17px;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: var(--card-pad);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.2;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #d4d4dc;
  border-radius: var(--radius);
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(118, 87, 255, 0.24);
  border-color: var(--purple);
}

.model-stack {
  padding: 64px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.model-stack-layout {
  display: grid;
  gap: 34px;
}

.model-stack-head {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: 48px;
  align-items: start;
}

.model-stack h2 {
  max-width: 560px;
  color: var(--muted);
  font-size: var(--lead);
  font-weight: 680;
  line-height: 1.55;
  letter-spacing: 0;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 22px 30px;
  list-style: none;
}

.model-grid li {
  min-height: 118px;
  padding: 0;
}

.model-link {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  color: inherit;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.model-link:hover {
  transform: translateY(-2px);
}

.model-logo {
  display: inline-grid;
  place-items: center;
  width: 132px;
  height: 58px;
}

.model-logo img {
  display: block;
  width: auto;
  max-width: 116px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.model-link strong {
  color: #74747d;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
  transition: color 180ms ease;
}

.model-link small {
  color: #8f8f98;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: color 180ms ease;
}

.model-link:hover strong {
  color: var(--ink);
}

.model-link:hover small {
  color: #74747d;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px var(--side);
  color: var(--muted);
  font-size: 13px;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 820;
}

@keyframes progressPulse {
  from {
    width: 48%;
  }

  to {
    width: 78%;
  }
}

@keyframes tabProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: translateY(0.22em) skewY(1.4deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) skewY(0);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  h1 > span,
  .hero-copy,
  .hero-showcase {
    opacity: 1;
    transform: none;
    animation-delay: 0ms !important;
  }

  .hero-slide {
    transition: none;
  }

  .hero-tab.is-active::after {
    animation: none;
    transform: scaleX(1);
  }
}

@media (max-width: 1080px) {
  :root {
    --side: 32px;
    --hero: 88px;
    --h2: 52px;
    --h3: 28px;
    --lead: 18px;
    --section-y: 88px;
    --card-pad: 28px;
  }

  .hero-layout,
  .hero-showcase,
  .split-head,
  .section-head.split-head,
  .sample-card,
  .company-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .model-stack-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

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

  .process-step {
    border-bottom: 1px solid var(--line);
  }

  .process-step:nth-child(3n) {
    border-right: 0;
  }

  .process-step:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --side: 20px;
    --hero: clamp(42px, 8.6vw, 52px);
    --h2: 40px;
    --h3: 24px;
    --lead: 17px;
    --body: 15px;
    --section-y: 68px;
    --card-pad: 20px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
  }

  .nav {
    display: none;
  }

  .wordmark {
    font-size: 18px;
  }

  .header-contact {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 64px;
  }

  .hero-layout {
    gap: 34px;
    padding-top: 22px;
    padding-bottom: 34px;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    row-gap: 12px;
    line-height: 1;
    overflow: hidden;
  }

  h1 span {
    min-width: 0;
    line-height: 1;
  }

  h1 span + span {
    grid-template-columns: 0.52em minmax(0, 1fr);
    column-gap: 0.12em;
  }

  h1 span + span::before {
    width: 0.52em;
    font-size: 0.64em;
  }

  .hero-copy {
    gap: 22px;
    font-size: 16px;
    line-height: 1.78;
  }

  .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .button {
    min-width: 0;
    padding-inline: 12px;
    font-size: 13px;
  }

  .contact-layout h2 {
    font-size: var(--h2);
    line-height: 1.2;
  }

  .contact-meta {
    grid-template-columns: 1fr;
  }

  .contact-meta div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-image {
    aspect-ratio: 16 / 10;
  }

  .hero-slide {
    object-fit: cover;
    object-position: center;
  }

  .hero-index,
  .services-grid,
  .process-grid,
  .model-grid {
    grid-template-columns: 1fr;
  }

  .model-grid li,
  .model-grid li:nth-child(4n),
  .model-grid li:nth-child(-n + 4) {
    min-height: 82px;
  }

  .model-link {
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: start;
    column-gap: 14px;
  }

  .model-link small {
    grid-column: 2;
    text-align: left;
  }

  .model-logo {
    width: 108px;
    height: 50px;
  }

  .model-logo img {
    max-width: 96px;
    max-height: 36px;
  }

  .sample-card,
  .company-data,
  .contact-form {
    padding: var(--card-pad);
  }

  .sample-media,
  .sample-video {
    aspect-ratio: 16 / 10;
  }

  .sample-stack .sample-card:nth-child(1) .sample-media,
  .sample-video {
    aspect-ratio: 16 / 9;
  }

  .sample-stack .sample-card:nth-child(3) .sample-media {
    aspect-ratio: 16 / 10;
  }

  .company-map {
    min-height: 260px;
  }

  .video-caption {
    right: 16px;
    bottom: 14px;
    left: 16px;
    display: grid;
    gap: 4px;
  }

  .process-detail {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-step,
  .process-step:nth-child(3n),
  .process-step:nth-last-child(-n + 3) {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  :root {
    --side: 16px;
    --hero: clamp(38px, 11.2vw, 44px);
    --h2: 34px;
    --h3: 22px;
    --lead: 16px;
    --section-y: 60px;
    --card-pad: 18px;
  }

  .header-contact {
    display: none;
  }

  .button {
    width: 100%;
  }

  .button-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  :root {
    --hero: 36px;
  }

  .wordmark {
    font-size: 17px;
  }
}
