:root {
  --black: #05070a;
  --ink: #0b0f13;
  --panel: #101419;
  --line: rgba(204, 159, 82, .62);
  --gold: #c89d55;
  --gold-soft: #f1c985;
  --white: #f7f4ee;
  --muted: #9ca3aa;
  --red: #b40016;
  --red-bright: #f51b2d;
  --max: 1180px;
  --hero-scale: 1;
  --font-body: "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  --font-heading: "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  --font-accent: "Cinzel", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(200, 157, 85, .08), transparent 28rem),
    linear-gradient(180deg, #030507 0%, #0a0d10 46%, #05070a 100%);
  color: var(--white);
  font-family: var(--font-body);
  letter-spacing: 0;
}

.page-scale-root {
  min-height: 100vh;
}

html.page-scale-active {
  overflow-x: hidden;
}

html.page-mobile-scale-active {
  overflow-x: hidden;
}

html.page-scale-active body,
html.page-mobile-scale-active body {
  background:
    radial-gradient(circle at 18% 0%, rgba(200, 157, 85, .08), transparent 28rem),
    linear-gradient(180deg, #030507 0%, #0a0d10 46%, #05070a 100%);
}

html.page-scale-active .page-scale-root {
  position: absolute;
  top: 0;
  left: var(--page-offset-x, 0);
  width: 1024px;
  min-height: auto;
  transform: scale(var(--page-scale));
  transform-origin: top left;
}

html.page-mobile-scale-active .page-scale-root {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  min-height: auto;
  transform: scale(var(--page-scale));
  transform-origin: top left;
}

html.page-scale-active .site-header {
  gap: 22px;
  padding-right: 32px;
  padding-left: 32px;
}

html.page-scale-active .brand {
  min-width: 160px;
}

html.page-scale-active .global-nav {
  gap: 18px;
}

html.page-scale-active .header-cta {
  min-width: 108px;
  padding-right: 12px;
  padding-left: 12px;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(200, 157, 85, .22);
  background: rgba(5, 7, 10, .78);
  backdrop-filter: blur(18px);
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 3px;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 10px;
  text-transform: uppercase;
}

.global-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: #d9d3c7;
  font-size: 13px;
}

.global-nav a {
  padding: 8px 0;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  min-height: 46px;
  border: 1px solid var(--line);
  padding: 8px 14px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.header-cta-company {
  border-color: rgba(245, 27, 45, .76);
  background: linear-gradient(135deg, #79000e, #c30718 52%, #340006);
  color: var(--white);
}

.header-cta-worker {
  background: #080a0d;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(200, 157, 85, .62);
  background: rgba(8, 10, 13, .68);
  color: var(--gold-soft);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-overlay {
  display: none;
}

.hero {
  position: relative;
  display: block;
  min-height: calc(78px + (900px * var(--hero-scale)));
  overflow: hidden;
  padding-top: 78px;
  border-bottom: 1px solid var(--line);
  background: var(--black);
}

.hero-stage {
  position: relative;
  left: 50%;
  width: 1440px;
  height: 900px;
  margin-bottom: calc(-900px * (1 - var(--hero-scale)));
  overflow: hidden;
  transform: translateX(-50%) scale(var(--hero-scale));
  transform-origin: top center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: .64;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at 28% 43%, #000 0, transparent 58%);
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 860px;
  padding: 150px 64px 150px 96px;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: .16em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(64px, 6.8vw, 104px);
  line-height: 1.02;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: .01em;
}

h1 span {
  display: block;
}

.hero-indent {
  padding-left: .24em;
}

.hero-title-switch {
  position: relative;
  width: min(760px, calc(100vw - 160px));
  min-height: 2.08em;
}

.title-set {
  position: absolute;
  inset: 0 auto auto 0;
  width: max-content;
  opacity: 0;
  transform: translateY(18px);
  animation: titleSwitch 8s infinite;
}

.title-set span {
  white-space: nowrap;
}

.title-ja {
  animation-delay: 0s;
}

.title-en {
  animation-delay: 4s;
  font-family: var(--font-accent);
  font-size: .72em;
  line-height: 1.08;
  letter-spacing: .015em;
  padding-top: .18em;
}

.title-en em {
  color: var(--red-bright);
  font-style: normal;
  text-shadow: 0 0 24px rgba(245, 27, 45, .28);
}

@keyframes titleSwitch {
  0% {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(4px);
  }
  8%,
  42% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  50%,
  100% {
    opacity: 0;
    transform: translateY(-14px);
    filter: blur(3px);
  }
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 38px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: #c7c9cc;
  font-size: 16px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-width: 220px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 16px 22px;
  font-weight: 700;
  font-size: 14px;
}

.btn::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 18px;
  height: 18px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.btn-primary {
  border-color: rgba(245, 27, 45, .8);
  background: linear-gradient(135deg, #8e0010, #d50b1c 48%, #410006);
  box-shadow: 0 0 28px rgba(180, 0, 22, .24);
}

.btn-worker {
  border-color: rgba(200, 157, 85, .78);
  color: var(--gold-soft);
  background: linear-gradient(135deg, #05070a, #151a20 52%, #05070a);
  box-shadow: 0 0 24px rgba(200, 157, 85, .12);
}

.btn-outline {
  color: var(--gold-soft);
  background: rgba(8, 10, 13, .48);
}

.hero-photo {
  position: absolute;
  z-index: 1;
  inset: 0;
  min-height: auto;
  margin-left: 0;
  clip-path: none;
}

.hero-photo::before,
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-photo::before {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, .98) 0%, rgba(5, 7, 10, .9) 30%, rgba(5, 7, 10, .52) 58%, rgba(5, 7, 10, .18) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, .1), rgba(5, 7, 10, .18));
}

.hero-photo::after {
  display: none;
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  filter: grayscale(1) contrast(1.12) brightness(.78);
  transform: scale(1.04);
  animation: heroSlide 24s infinite;
}

.hero-photo .slide-2 {
  animation-delay: 6s;
}

.hero-photo .slide-3 {
  animation-delay: 12s;
}

.hero-photo .slide-4 {
  animation-delay: 18s;
}

@keyframes heroSlide {
  0% {
    opacity: 0;
    transform: scale(1.04) translateX(12px);
  }
  4%,
  24% {
    opacity: 1;
  }
  30%,
  100% {
    opacity: 0;
    transform: scale(1.09) translateX(-10px);
  }
}

.hero-index {
  position: absolute;
  z-index: 4;
  right: 56px;
  bottom: 72px;
  width: 168px;
  padding: 14px 0;
}

.index-bar {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(241, 201, 133, .05), rgba(241, 201, 133, .24), rgba(241, 201, 133, .05));
}

.index-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(241, 201, 133, .28), transparent);
}

.index-bar i {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: right center;
  background: linear-gradient(90deg, var(--red-bright), var(--gold-soft));
  box-shadow: 0 0 18px rgba(245, 27, 45, .32), 0 0 18px rgba(241, 201, 133, .2);
  animation: indexProgress 6s linear infinite;
}

@keyframes indexProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.section-frame {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(78px, 10vw, 130px) clamp(20px, 4vw, 30px);
}

.section-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 56px;
  align-items: end;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.18;
}

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

p {
  color: #bfc3c7;
  line-height: 1.9;
}

.entrance-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.entrance-panel {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .035), transparent),
    var(--panel);
}

.entrance-primary {
  background:
    radial-gradient(circle at 24% 100%, rgba(180, 0, 22, .2), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, .04), transparent),
    #12151a;
}

.panel-no,
.strength-grid span {
  color: var(--gold);
  font-family: var(--font-accent);
}

.entrance-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 38px;
  padding: 0;
  list-style: none;
}

.entrance-panel li,
.spec-list span,
.job-rail span,
.worker-points li,
.trust-grid span {
  border-left: 1px solid var(--line);
  padding-left: 16px;
  color: #e1ddd5;
}

.entrance-panel strong,
.text-link {
  color: var(--gold-soft);
  font-weight: 700;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.strength-grid article {
  min-height: 270px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .04), transparent 60%);
}

.strength-grid article + article {
  border-left: 1px solid rgba(200, 157, 85, .38);
}

.business-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: center;
}

.angled-copy {
  position: relative;
  padding-left: 34px;
}

.angled-copy::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--line);
  transform: skewX(-16deg);
}

.spec-list {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
}

.job-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.job-rail span {
  min-height: 90px;
  display: flex;
  align-items: center;
  background: #0b0f13;
}

.worker-preview {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .65fr);
  gap: 54px;
}

.worker-card {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 157, 85, .1), transparent 18rem),
    rgba(255, 255, 255, .03);
}

.worker-points {
  display: grid;
  gap: 18px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.trust-grid span {
  min-height: 92px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .025);
}

.trust-actions {
  display: flex;
  gap: 28px;
  margin-top: 34px;
}

.news-list {
  margin: 0;
  border-top: 1px solid rgba(200, 157, 85, .42);
}

.news-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(200, 157, 85, .22);
}

.news-list dt {
  color: var(--gold);
  font-family: var(--font-accent);
}

.news-list dd {
  margin: 0;
}

.final-cta {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto clamp(50px, 8vw, 100px);
  overflow: hidden;
  padding: clamp(54px, 8vw, 92px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(180, 0, 22, .22), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(200, 157, 85, .13), transparent 28rem),
    #080b0f;
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta p:not(.eyebrow) {
  max-width: 760px;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 42px clamp(20px, 4vw, 56px);
  border-top: 1px solid rgba(200, 157, 85, .28);
  background: #030507;
  color: #aaa;
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 13px;
}

.corporate-home main {
  overflow: hidden;
}

.corporate-hero {
  min-height: calc(78px + (900px * var(--hero-scale)));
}

.lower-page main {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 8%, rgba(200, 157, 85, .08), transparent 24rem),
    radial-gradient(circle at 12% 58%, rgba(180, 0, 22, .06), transparent 22rem),
    #05070a;
}

.lower-page main::before,
.lower-page main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.lower-page main::before {
  opacity: .42;
  background-image:
    linear-gradient(rgba(241, 201, 133, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 201, 133, .035) 1px, transparent 1px),
    radial-gradient(circle, rgba(241, 201, 133, .09) 1px, transparent 1.5px);
  background-size: 78px 78px, 78px 78px, 22px 22px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .86) 38%, rgba(0, 0, 0, .28) 100%);
  animation: blueprintDrift 28s linear infinite;
}

.lower-page main::after {
  display: none;
}

@keyframes blueprintDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 78px 78px, 78px 78px, 22px 22px;
  }
}

.sub-hero {
  position: relative;
  min-height: 430px;
  padding-top: 78px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 7, 10, .98) 0%, rgba(5, 7, 10, .86) 42%, rgba(5, 7, 10, .26) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, .1), rgba(5, 7, 10, .42)),
    var(--page-image) center / cover no-repeat,
    var(--black);
}

.sub-hero::before {
  content: "";
  position: absolute;
  inset: 78px 0 0;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.sub-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200, 157, 85, .18) 18%, rgba(241, 201, 133, .92) 48%, rgba(245, 27, 45, .5) 54%, transparent 78%);
  background-size: 220% 100%;
  opacity: .9;
  animation: goldLineSweep 7s linear infinite;
  pointer-events: none;
}

@keyframes goldLineSweep {
  from {
    background-position: 160% 0;
  }
  to {
    background-position: -60% 0;
  }
}

.sub-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: var(--max);
  min-height: 352px;
  margin: 0 auto;
  padding: clamp(54px, 6.5vw, 78px) clamp(20px, 4vw, 30px) 54px;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .45fr);
  gap: 44px;
  align-items: end;
}

.sub-hero-simple .sub-hero-inner {
  grid-template-columns: minmax(0, 1fr);
}

.sub-hero-simple {
  min-height: 360px;
}

.sub-hero-simple .sub-hero-inner {
  min-height: 360px;
  padding-top: 138px;
  padding-bottom: 68px;
}

.sub-hero h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(36px, 3.7vw, 54px);
  line-height: 1.16;
  word-break: keep-all;
  white-space: nowrap;
}

.sub-hero h1 span {
  display: inline;
}

.sub-lead {
  max-width: 660px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: #d7d9dc;
}

.sub-hero-meta {
  border-left: 1px solid rgba(241, 201, 133, .48);
  padding-left: 28px;
}

.sub-hero-meta span {
  display: block;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: .16em;
}

.sub-hero-meta strong {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-size: 19px;
  line-height: 1.55;
}

.lower-section {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(54px, 6.5vw, 82px) clamp(20px, 4vw, 30px);
}

.lower-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(20px, 4vw, 30px);
  width: min(240px, 34vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 201, 133, .72), rgba(245, 27, 45, .48), transparent);
  background-size: 180% 100%;
  opacity: .72;
  animation: localLineSweep 8s linear infinite;
  pointer-events: none;
}

.lower-section:first-child::before {
  display: none;
}

@keyframes localLineSweep {
  from {
    background-position: 130% 0;
  }
  to {
    background-position: -80% 0;
  }
}

.lower-section + .lower-section {
  border-top: 1px solid rgba(200, 157, 85, .22);
}

.page-first-section {
  padding-top: 150px;
}

.lower-heading {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(300px, .58fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.lower-heading h2 {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.lower-card {
  min-height: 220px;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .04), transparent 58%),
    #0c1015;
}

.lower-card strong,
.process-step strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.45;
}

.lower-card .panel-no {
  display: block;
  margin-bottom: 18px;
}

.split-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 44px;
  align-items: start;
}

.detail-panel {
  border: 1px solid var(--line);
  padding: clamp(28px, 3.4vw, 40px);
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 157, 85, .12), transparent 20rem),
    rgba(255, 255, 255, .025);
}

.plain-list,
.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li,
.process-step {
  border-left: 1px solid var(--line);
  padding-left: 18px;
  color: #d8dadd;
  line-height: 1.85;
}

.process-list {
  counter-reset: process;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-step {
  position: relative;
  min-height: 150px;
  border-left: 0;
  padding: 30px 30px 30px 86px;
  background: #090d12;
}

.process-step::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 30px;
  left: 30px;
  color: var(--gold);
  font-family: var(--font-accent);
}

.job-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.job-item {
  min-height: 210px;
  padding: 30px;
  background: #0c1015;
}

.job-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.job-detail-card {
  min-height: 390px;
  padding: clamp(24px, 2.8vw, 32px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .04), transparent 58%),
    #0b1015;
}

.job-detail-card h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 23px;
  line-height: 1.4;
}

.job-detail-card p {
  min-height: 86px;
  margin-bottom: 22px;
  color: #cfd3d7;
  line-height: 1.85;
}

.job-detail-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.job-detail-card dt {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
}

.job-detail-card dd {
  margin: -6px 0 0;
  color: #d8dadd;
  line-height: 1.75;
}

.practical-page .sub-lead {
  max-width: 760px;
}

.practical-page .lower-heading {
  align-items: start;
}

.practical-page .lower-heading p:not(.eyebrow) {
  max-width: 540px;
  color: #c9cdd1;
  line-height: 1.9;
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.practical-card {
  min-height: 230px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .04), transparent 62%),
    #0b1015;
}

.practical-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 19px;
  line-height: 1.45;
}

.practical-card p,
.faq-list p,
.two-column-panel p {
  color: #cfd3d7;
  line-height: 1.9;
}

.info-table,
.mini-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid rgba(200, 157, 85, .5);
}

.info-table th,
.info-table td,
.mini-table th,
.mini-table td {
  border-bottom: 1px solid rgba(200, 157, 85, .24);
  padding: 22px 0;
  text-align: left;
  vertical-align: top;
  line-height: 1.85;
}

.info-table th {
  width: 230px;
  padding-right: 28px;
  color: var(--gold-soft);
  font-size: 18px;
}

.mini-table {
  min-width: 0;
}

.mini-table th {
  width: 138px;
  padding-right: 22px;
  color: var(--gold-soft);
  font-size: 15px;
  white-space: nowrap;
}

.info-table td,
.mini-table td {
  color: #d5d7da;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 48px;
  padding-left: 24px;
  color: #d8dadd;
  line-height: 1.75;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: .78em;
  left: 0;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  background: rgba(180, 0, 22, .38);
  transform: rotate(45deg);
}

.request-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.request-detail-grid article {
  min-height: 245px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .04), transparent 60%),
    #0b1015;
}

.request-detail-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 16px;
}

.request-detail-grid h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.4;
}

.request-detail-grid p {
  color: #d3d6da;
  line-height: 1.85;
}

.request-list {
  display: grid;
  border-top: 1px solid rgba(200, 157, 85, .48);
}

.request-list article {
  display: grid;
  grid-template-columns: 70px minmax(150px, 210px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(200, 157, 85, .26);
}

.request-list span {
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 17px;
  line-height: 1.6;
}

.request-list h3 {
  margin: 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.55;
}

.request-list p {
  margin: 0;
  color: #d3d6da;
  line-height: 1.75;
}

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

.compact-process .process-step {
  min-height: 230px;
  padding: 72px 24px 26px;
}

.compact-process .process-step::before {
  top: 26px;
  left: 24px;
}

.flow-timeline {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(200, 157, 85, .48);
  background: transparent;
}

.flow-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 1px;
  background: linear-gradient(180deg, rgba(200, 157, 85, .15), rgba(241, 201, 133, .78), rgba(200, 157, 85, .15));
}

.flow-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  min-height: auto;
  padding: 26px 0;
  border-bottom: 1px solid rgba(200, 157, 85, .24);
}

.flow-timeline li > div {
  display: grid;
  grid-template-columns: minmax(160px, 190px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.flow-timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -7px;
  z-index: 1;
  width: 11px;
  height: 11px;
  border-right: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  background: #070b10;
  transform: rotate(45deg);
}

.flow-timeline span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0;
  border: 1px solid var(--gold);
  background: #080c11;
  color: var(--gold-soft);
  font-family: var(--font-accent);
  font-size: 15px;
}

.flow-timeline h3 {
  margin: 7px 0 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.45;
}

.flow-timeline p {
  margin: 7px 0 0;
  color: #d3d6da;
  line-height: 1.8;
}

.faq-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-list details {
  background: #090d12;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 24px 58px 24px 28px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.6;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 28px;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 26px;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: -8px 28px 26px;
  max-width: 900px;
}

.two-column-panel,
.trust-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.two-column-panel article,
.trust-links a {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 64%),
    #0b1015;
}

.two-column-panel article {
  padding: clamp(28px, 3.2vw, 38px);
}

.two-column-panel h3 {
  margin: 8px 0 22px;
  font-size: 24px;
}

.panel-label {
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: .18em;
}

.trust-links a {
  min-height: 138px;
  padding: 28px;
}

.trust-links strong,
.trust-links span {
  display: block;
}

.trust-links strong {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 18px;
}

.trust-links span {
  color: #c9cdd1;
  line-height: 1.75;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid rgba(200, 157, 85, .42);
}

.company-table th,
.company-table td {
  border-bottom: 1px solid rgba(200, 157, 85, .24);
  padding: 22px 0;
  text-align: left;
  vertical-align: top;
}

.company-table th {
  width: 210px;
  color: var(--gold);
  font-weight: 700;
}

.map-embed {
  overflow: hidden;
  border: 1px solid rgba(200, 157, 85, .38);
  background: #090d12;
  aspect-ratio: 16 / 7;
}

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

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr);
  gap: 42px;
  align-items: start;
}

.form-panel {
  border: 1px solid var(--line);
  padding: clamp(28px, 3.4vw, 40px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 58%),
    #090d12;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(200, 157, 85, .22);
}

.form-row label {
  color: #e9e4da;
  font-weight: 700;
  line-height: 1.7;
}

.required {
  display: inline-block;
  margin-left: 8px;
  color: var(--red-bright);
  font-size: 12px;
  font-family: var(--font-accent);
  letter-spacing: .08em;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(200, 157, 85, .38);
  border-radius: 0;
  padding: 13px 15px;
  background: rgba(255, 255, 255, .045);
  color: var(--white);
  font: inherit;
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(216, 218, 221, .42);
}

.check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #d8dadd;
  line-height: 1.8;
}

.check-row input {
  width: auto;
  margin-top: .45em;
}

.check-row a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-note {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}

.form-side {
  display: grid;
  gap: 18px;
}

.form-side h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.28;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1fr);
  gap: 34px;
  width: 100%;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: flex-end;
}

.footer-nav a {
  color: #d8d0c1;
  font-size: 13px;
}

.footer-nav a:hover {
  color: var(--gold-soft);
}

.policy-page {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 150px clamp(20px, 4vw, 30px) 100px;
}

.policy-page h1 {
  margin-bottom: 42px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(200, 157, 85, .36);
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.25;
}

.policy-page h2 {
  margin: 44px 0 14px;
  font-size: 22px;
  line-height: 1.6;
}

.policy-page p,
.policy-page li,
.policy-page dd {
  color: #d4d7da;
  font-size: 15px;
  line-height: 2.05;
}

.policy-page ul {
  margin: 16px 0 0;
  padding-left: 1.4em;
}

.policy-page dl {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 0 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(200, 157, 85, .28);
}

.policy-page dt,
.policy-page dd {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(200, 157, 85, .2);
}

.policy-page dt {
  color: var(--gold);
  font-weight: 700;
}

.home-directory,
.home-statement,
.home-overview,
.home-news,
.home-service,
.home-reason {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 96px) clamp(20px, 4vw, 30px);
}

.compact-news {
  padding-top: clamp(34px, 4.6vw, 54px);
  padding-bottom: clamp(34px, 4.5vw, 52px);
  border-bottom: 1px solid rgba(200, 157, 85, .22);
}

.home-section-title {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .58fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 26px;
}

.home-section-title h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.3vw, 46px);
}

.home-section-title > p,
.home-section-title .text-link {
  justify-self: end;
}

.compact-news .news-list {
  border-top: 1px solid rgba(200, 157, 85, .46);
}

.compact-news .news-list div {
  grid-template-columns: 160px minmax(0, 1fr);
}

.home-service {
  padding-top: clamp(58px, 7vw, 84px);
  padding-bottom: clamp(60px, 7vw, 86px);
}

.service-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-panel {
  position: relative;
  min-height: 330px;
  padding: clamp(32px, 4vw, 48px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 58%),
    #0b1015;
}

.service-company {
  background:
    radial-gradient(circle at 0% 100%, rgba(180, 0, 22, .22), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, .045), transparent 58%),
    #10141a;
}

.service-panel span,
.reason-strip span {
  display: block;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: .16em;
}

.service-panel h3 {
  margin: 24px 0 18px;
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 42px);
}

.service-panel p {
  max-width: 440px;
  color: #d3d6da;
  line-height: 1.9;
}

.service-panel strong {
  position: absolute;
  left: clamp(32px, 4vw, 48px);
  bottom: clamp(30px, 4vw, 44px);
  color: var(--gold-soft);
}

.home-reason {
  padding-top: 0;
}

.reason-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(200, 157, 85, .42);
  border-bottom: 1px solid rgba(200, 157, 85, .28);
}

.reason-strip article {
  min-height: 180px;
  padding: 26px 30px 30px;
  border-left: 1px solid rgba(200, 157, 85, .24);
}

.reason-strip article:first-child {
  border-left: 0;
}

.reason-strip strong {
  display: block;
  margin: 18px 0 12px;
  color: var(--white);
  font-size: 19px;
}

.reason-strip p {
  color: #cfd3d7;
  line-height: 1.8;
}

.home-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0;
  border: 1px solid var(--line);
  background: var(--line);
  padding: 0;
}

.directory-panel {
  position: relative;
  min-height: 360px;
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .04), transparent 56%),
    #0d1116;
}

.directory-main {
  background:
    radial-gradient(circle at 18% 100%, rgba(180, 0, 22, .22), transparent 21rem),
    linear-gradient(145deg, rgba(255, 255, 255, .05), transparent 56%),
    #10141a;
}

.directory-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(24px, 2.6vw, 38px);
}

.directory-panel p:not(.eyebrow) {
  min-height: 108px;
}

.directory-panel strong {
  position: absolute;
  left: clamp(28px, 4vw, 46px);
  bottom: clamp(28px, 4vw, 42px);
  color: var(--gold-soft);
}

.home-statement {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .7fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: end;
  border-bottom: 1px solid rgba(200, 157, 85, .28);
}

.home-statement h2 {
  max-width: 760px;
}

.home-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding-top: 0;
  background: var(--line);
}

.overview-block {
  min-height: 300px;
  padding: clamp(30px, 4vw, 46px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 58%),
    #090d12;
}

.overview-trust {
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 157, 85, .12), transparent 20rem),
    #0f1318;
}

.overview-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.overview-list li {
  border-bottom: 1px solid rgba(200, 157, 85, .22);
  padding: 0 0 14px 18px;
  color: #e1ddd5;
}

.home-news:not(.compact-news) {
  padding-top: clamp(72px, 9vw, 116px);
}

.corporate-final {
  margin-top: clamp(26px, 4vw, 54px);
}

html.page-scale-active h1 {
  font-size: 72px;
}

html.page-scale-active h2 {
  font-size: 43px;
}

html.page-scale-active .section-frame {
  padding: 102px 30px;
}

html.page-scale-active .entrance-panel,
html.page-scale-active .worker-card {
  padding: 51px;
}

html.page-scale-active .final-cta {
  margin-bottom: 82px;
  padding: 82px;
}

html.page-scale-active .site-footer {
  padding: 42px 41px;
}

html.page-scale-active .sub-hero-inner {
  padding: 67px 30px 54px;
}

html.page-scale-active .sub-hero h1 {
  font-size: 38px;
}

html.page-scale-active .lower-section {
  padding: 67px 30px;
}

html.page-scale-active .lower-section::before {
  left: 30px;
  width: 240px;
}

html.page-scale-active .lower-page main::after {
  width: 430px;
}

html.page-scale-active .lower-card {
  padding: 31px;
}

html.page-scale-active .detail-panel,
html.page-scale-active .form-panel {
  padding: 35px;
}

html.page-scale-active .job-detail-card {
  padding: 29px;
}

html.page-scale-active .two-column-panel article {
  padding: 33px;
}

html.page-scale-active .form-side h2 {
  font-size: 30px;
  line-height: 1.34;
}

html.page-scale-active .policy-page {
  padding-right: 30px;
  padding-left: 30px;
}

html.page-scale-active .policy-page h1 {
  font-size: 43px;
}

html.page-scale-active .home-directory,
html.page-scale-active .home-statement,
html.page-scale-active .home-overview,
html.page-scale-active .home-news,
html.page-scale-active .home-service,
html.page-scale-active .home-reason {
  padding: 82px 30px;
}

html.page-scale-active .compact-news {
  padding-top: 47px;
  padding-bottom: 46px;
}

html.page-scale-active .home-section-title h2 {
  font-size: 34px;
}

html.page-scale-active .home-service {
  padding-top: 72px;
  padding-bottom: 72px;
}

html.page-scale-active .service-panel {
  padding: 41px;
}

html.page-scale-active .service-panel h3 {
  font-size: 33px;
}

html.page-scale-active .service-panel strong {
  left: 41px;
  bottom: 41px;
}

html.page-scale-active .directory-panel {
  padding: 41px;
}

html.page-scale-active .directory-panel h2 {
  font-size: 27px;
}

html.page-scale-active .directory-panel strong {
  left: 41px;
  bottom: 41px;
}

html.page-scale-active .home-statement {
  gap: 61px;
}

html.page-scale-active .overview-block {
  padding: 41px;
}

html.page-scale-active .home-news:not(.compact-news) {
  padding-top: 92px;
}

html.page-scale-active .corporate-final {
  margin-top: 41px;
}

@media (max-width: 1120px) and (min-width: 641px) {
  h1 {
    font-size: clamp(52px, 7vw, 78px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lower-page main::before,
  .sub-hero::after,
  .lower-section::before {
    animation: none;
  }
}

html.page-scale-active .sub-hero-inner,
html.page-scale-active .lower-heading {
  grid-template-columns: 1fr;
}

html.page-scale-active .sub-hero-inner {
  min-height: 480px;
  gap: 30px;
  padding-top: 92px;
}

html.page-scale-active .sub-hero-meta {
  max-width: 720px;
}

html.page-scale-active .sub-hero-simple {
  min-height: 340px;
}

html.page-scale-active .sub-hero-simple .sub-hero-inner {
  min-height: 340px;
  padding-top: 78px;
  padding-bottom: 46px;
}

html.page-scale-active .practical-grid,
html.page-scale-active .job-detail-grid,
html.page-scale-active .request-detail-grid,
html.page-scale-active .compact-process {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

html.page-scale-active .compact-process .process-step {
  min-height: 190px;
}

html.page-scale-active .flow-timeline li {
  min-height: auto;
  padding: 24px 0;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
  }

  .global-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 110;
  }

  .site-header.menu-open {
    z-index: 100;
  }

  .menu-overlay {
    position: fixed;
    z-index: 70;
    inset: 0;
    display: block;
    pointer-events: none;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: opacity .28s ease, background .28s ease;
  }

  .menu-lock .menu-overlay {
    pointer-events: auto;
    background: rgba(0, 0, 0, .48);
    opacity: 1;
  }

  .site-header.menu-open .global-nav {
    display: grid;
    position: fixed;
    z-index: 105;
    top: 84px;
    left: 16px;
    right: 16px;
    grid-template-columns: 1fr;
    gap: 0;
    width: auto;
    padding: 18px 22px 12px;
    border: 1px solid rgba(200, 157, 85, .52);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .045), transparent 55%),
      rgba(6, 9, 13, .96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
    backdrop-filter: blur(18px);
    font-size: 15px;
    animation: menuFloatIn .28s ease both;
  }

  .site-header.menu-open .global-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(200, 157, 85, .16);
  }

  .site-header.menu-open .header-actions {
    display: grid;
    position: fixed;
    z-index: 105;
    top: 382px;
    left: 16px;
    right: 16px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: auto;
    padding: 12px;
    border: 1px solid rgba(200, 157, 85, .42);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 58%),
      rgba(6, 9, 13, .96);
    box-shadow: 0 18px 54px rgba(0, 0, 0, .42);
    backdrop-filter: blur(18px);
    animation: menuFloatIn .28s ease both;
  }

  .site-header.menu-open .header-cta {
    width: 100%;
  }

  .menu-lock {
    overscroll-behavior: contain;
  }

  @keyframes menuFloatIn {
    from {
      opacity: 0;
      transform: translateY(-10px) scale(.985);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .hero {
    min-height: 100svh;
    padding-top: 78px;
  }

  .hero-stage {
    display: grid;
    min-height: calc(100svh - 78px);
    left: auto;
    width: auto;
    height: auto;
    overflow: hidden;
    transform: none;
  }

  .hero-copy {
    max-width: 680px;
    padding-top: 116px;
    padding-bottom: 42px;
  }
}

@media (max-width: 1120px) and (min-width: 961px) {
  .sub-hero-inner,
  .lower-heading {
    grid-template-columns: 1fr;
  }

  .sub-hero-inner {
    min-height: 480px;
    gap: 30px;
    padding-top: 92px;
  }

  .sub-hero-meta {
    max-width: 720px;
  }

  .sub-hero-simple {
    min-height: 340px;
  }

  .sub-hero-simple .sub-hero-inner {
    min-height: 340px;
    padding-top: 78px;
    padding-bottom: 46px;
  }

  .practical-grid,
  .job-detail-grid,
  .request-detail-grid,
  .compact-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compact-process .process-step {
    min-height: 190px;
  }

  .flow-timeline li {
    min-height: auto;
    padding: 24px 0;
  }
}

@media (max-width: 960px) {
  .sub-hero-inner,
  .lower-heading,
  .split-detail,
  .form-layout,
  .card-grid,
  .job-list,
  .job-detail-grid,
  .practical-grid,
  .request-detail-grid,
  .flow-timeline,
  .compact-process,
  .two-column-panel,
  .trust-links,
  .home-directory,
  .home-statement,
  .home-overview {
    grid-template-columns: 1fr;
  }

  .sub-hero-inner {
    min-height: 420px;
    padding-top: 82px;
  }

  .sub-hero-meta {
    max-width: 520px;
  }

  .desktop-line {
    display: none;
  }

  .tablet-line {
    display: block;
  }

  .hero-photo {
    position: absolute;
    inset: 0;
    min-height: auto;
    margin-left: 0;
    clip-path: none;
  }

  .hero-index {
    display: none;
  }

  .entrance-grid,
  .strength-grid,
  .business-preview,
  .worker-preview,
  .trust-grid,
  .home-section-title,
  .service-panels,
  .reason-strip {
    grid-template-columns: 1fr;
  }

  .home-section-title > p,
  .home-section-title .text-link {
    justify-self: start;
  }

  .reason-strip article,
  .reason-strip article:first-child {
    border-left: 0;
    border-top: 1px solid rgba(200, 157, 85, .24);
  }

  .reason-strip article:first-child {
    border-top: 0;
  }

  .strength-grid article + article {
    border-top: 1px solid rgba(200, 157, 85, .38);
    border-left: 0;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

@media (max-width: 640px) {
  .site-header {
    position: fixed;
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 9px;
  }

  .header-cta {
    min-height: 44px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero {
    padding-top: 74px;
  }

  .hero-stage {
    min-height: calc(100svh - 74px);
  }

  .hero-copy {
    min-height: calc(100svh - 74px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 96px 20px 42px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: clamp(44px, 12vw, 52px);
    line-height: 1.08;
    word-break: keep-all;
  }

  .hero-title-switch {
    width: 100%;
  }

  .title-set {
    width: 100%;
  }

  .title-set span {
    white-space: normal;
  }

  .hero-indent {
    padding-left: .14em;
  }

  .title-en {
    font-size: .68em;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 10px;
    letter-spacing: .11em;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.95;
  }

  .hero-actions,
  .trust-actions,
  .site-footer {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-photo {
    min-height: auto;
    overflow: hidden;
  }

  .hero-photo::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 10, .86) 0%, rgba(5, 7, 10, .48) 36%, rgba(5, 7, 10, .4) 62%, rgba(5, 7, 10, .94) 100%),
      linear-gradient(90deg, rgba(5, 7, 10, .97) 0%, rgba(5, 7, 10, .76) 40%, rgba(5, 7, 10, .12) 100%);
  }

  .hero-photo img {
    object-position: 82% center;
    filter: grayscale(1) contrast(1.08) brightness(.96);
    animation-name: heroSlideMobile;
    animation-duration: 24s;
    animation-timing-function: linear;
    will-change: opacity, transform;
  }

  .hero-photo .slide-1 {
    object-position: 84% center;
  }

  .hero-photo .slide-2,
  .hero-photo .slide-3,
  .hero-photo .slide-4 {
    object-position: 80% center;
  }

  .hero-photo .slide-2 {
    animation-delay: 6s;
  }

  .hero-photo .slide-3 {
    animation-delay: 12s;
  }

  .hero-photo .slide-4 {
    animation-delay: 18s;
  }

  @keyframes heroSlideMobile {
    0% {
      opacity: 0;
      transform: translate3d(18px, 0, 0) scale(1.075);
    }
    5% {
      opacity: 1;
      transform: translate3d(10px, 0, 0) scale(1.08);
    }
    20% {
      opacity: 1;
      transform: translate3d(-16px, 0, 0) scale(1.095);
    }
    25% {
      opacity: 1;
      transform: translate3d(-20px, 0, 0) scale(1.098);
    }
    30%,
    100% {
      opacity: 0;
      transform: translate3d(-24px, 0, 0) scale(1.1);
    }
  }

  .sub-hero {
    min-height: auto;
  }

  .sub-hero-inner {
    gap: 28px;
    max-width: 100%;
    min-width: 0;
    padding: 104px 20px 54px;
  }

  .lower-page main::after {
    display: none;
  }

  .sub-hero {
    background:
      linear-gradient(90deg, rgba(5, 7, 10, .96) 0%, rgba(5, 7, 10, .82) 52%, rgba(5, 7, 10, .34) 100%),
      linear-gradient(180deg, rgba(5, 7, 10, .36), rgba(5, 7, 10, .76)),
      var(--page-image) var(--page-image-mobile-position, 78% center) / cover no-repeat,
      var(--black);
  }

  .sub-hero-inner > * {
    min-width: 0;
  }

  .sub-hero h1 {
    font-size: clamp(32px, 8.9vw, 38px);
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
    line-height: 1.2;
  }

  .sub-hero-meta {
    max-width: 100%;
    padding-left: 18px;
  }

  .sub-hero-meta strong {
    font-size: 16px;
  }

  .policy-page h1 {
    font-size: clamp(28px, 8.4vw, 38px);
    word-break: normal;
    overflow-wrap: anywhere;
    line-height: 1.35;
  }

  .lower-card,
  .job-item,
  .process-step {
    min-height: auto;
  }

  .process-step {
    padding-left: 72px;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: auto;
    padding: 14px 0;
  }

  .form-row,
  .footer-main,
  .policy-page dl {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .entrance-panel ul,
  .job-rail {
    grid-template-columns: 1fr;
  }

  .news-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .info-table th,
  .info-table td,
  .mini-table th,
  .mini-table td {
    display: block;
    width: auto;
    padding: 14px 0;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .request-list article {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px 18px;
  }

  .request-list p {
    grid-column: 2;
  }

  .flow-timeline::before {
    left: 23px;
  }

  .flow-timeline li {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 8px 18px;
  }

  .flow-timeline li > div {
    grid-column: 2;
    display: block;
  }

  .flow-timeline li:not(:last-child)::after {
    left: 18px;
  }

  .compact-news,
  .home-service,
  .home-reason {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .home-section-title {
    gap: 14px;
    margin-bottom: 22px;
  }

  .service-panel {
    min-height: auto;
    padding: 28px 24px;
  }

  .service-panel h3 {
    margin: 18px 0 12px;
    font-size: 28px;
  }

  .service-panel p {
    margin-bottom: 22px;
  }

  .service-panel strong {
    position: static;
  }

  .reason-strip article {
    min-height: auto;
    padding: 22px 0;
  }

  .reason-strip strong {
    margin: 12px 0 8px;
  }
}
