:root {
  --deep-navy: #061423;
  --navy: #0b2341;
  --ink: #101827;
  --muted: #526071;
  --gold: #b8872d;
  --light-gold: #e1b55d;
  --safety-orange: #d66f1f;
  --sky: #dce8f3;
  --panel: #eef3f8;
  --white: #ffffff;
  --line: #d7dee8;
  --shadow: 0 18px 48px rgba(6, 20, 35, 0.14);
  --radius: 8px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f9fc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--gold);
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: inherit;
}

:focus-visible {
  outline: 3px solid rgba(225, 181, 93, 0.72);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--deep-navy);
  border-radius: 4px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(216, 222, 232, 0.9);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  box-shadow: 0 12px 32px rgba(6, 20, 35, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  min-height: inherit;
  margin-inline: auto;
  gap: 18px;
}

.site-logo {
  display: grid;
  grid-template-columns: 138px auto;
  align-items: center;
  gap: 10px;
  min-width: 308px;
  flex: 0 0 auto;
  color: var(--navy);
}

.site-logo__mark {
  width: 138px;
  height: auto;
  filter: drop-shadow(0 6px 10px rgba(6, 20, 35, 0.13));
}

.site-logo__copy {
  display: grid;
  gap: 1px;
  min-width: 0;
  line-height: 1;
}

.site-logo__name {
  font-size: 1.35rem;
  font-weight: 950;
}

.site-logo__security {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
}

.site-logo__tag {
  color: #667085;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.header-nav a {
  position: relative;
  padding-block: 6px;
}

.header-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.header-nav a:hover::after,
.header-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-nav a[aria-current="page"] {
  color: var(--gold);
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 148px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.btn--primary {
  color: var(--deep-navy);
  background: linear-gradient(180deg, #e6bd64, var(--gold));
  border-color: rgba(184, 135, 45, 0.72);
  box-shadow: 0 12px 24px rgba(184, 135, 45, 0.24);
}

.btn--primary:hover {
  color: var(--deep-navy);
  background: linear-gradient(180deg, #ecca77, #c99c47);
}

.btn--secondary {
  color: var(--white);
  background: rgba(6, 20, 35, 0.54);
  border-color: rgba(225, 181, 93, 0.82);
}

.btn--secondary:hover {
  color: var(--white);
  background: rgba(11, 35, 65, 0.9);
}

.btn--outline {
  color: var(--navy);
  background: transparent;
  border-color: rgba(11, 35, 65, 0.42);
}

.btn--outline:hover {
  color: var(--navy);
  background: rgba(225, 181, 93, 0.12);
  border-color: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(650px, 84vh, 860px);
  color: var(--white);
  overflow: clip;
  background: var(--deep-navy);
}

.hero--sub {
  min-height: clamp(430px, 54vh, 560px);
}

.hero__picture,
.hero__picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__picture img {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 20, 35, 0.98) 0%, rgba(6, 20, 35, 0.88) 38%, rgba(6, 20, 35, 0.34) 70%, rgba(6, 20, 35, 0.12) 100%),
    linear-gradient(180deg, rgba(6, 20, 35, 0.05), rgba(6, 20, 35, 0.54));
}

.hero--services .hero__picture img {
  object-position: 58% center;
}

.hero--company .hero__picture img {
  object-position: 68% center;
}

.hero--contact .hero__picture img {
  object-position: center center;
}

.hero--recruit .hero__picture img {
  object-position: 62% center;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  padding-block: 112px 88px;
}

.hero__content {
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--light-gold);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4,
p {
  margin-block-start: 0;
}

h1,
h2,
h3 {
  color: var(--deep-navy);
  line-height: 1.26;
  text-wrap: balance;
}

.hero h1 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(2.25rem, 4.45vw, 4.55rem);
  line-height: 1.13;
  font-weight: 950;
  word-break: keep-all;
}

.hero__lead {
  max-width: 42em;
  margin: 0 0 30px;
  color: rgba(248, 250, 252, 0.92);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
}

.hero__actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.section-actions--right {
  justify-content: flex-end;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero__badges li,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.25;
  background: rgba(248, 250, 252, 0.12);
  border: 1px solid rgba(225, 181, 93, 0.58);
  border-radius: 999px;
}

.hero__status {
  position: absolute;
  right: 0;
  bottom: 36px;
  display: grid;
  gap: 3px;
  width: min(360px, 34vw);
  padding: 18px 20px;
  color: var(--white);
  background: rgba(6, 20, 35, 0.78);
  border-left: 4px solid var(--gold);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
}

.hero__status span {
  color: var(--light-gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__status strong {
  font-size: 1.02rem;
  line-height: 1.45;
}

.trust-bar {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.trust-bar span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 14px 8px;
  color: var(--deep-navy);
  font-weight: 950;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-bar span:first-child {
  border-left: 1px solid var(--line);
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section--soft {
  background: var(--panel);
}

.section--navy {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(214, 111, 31, 0.16), transparent 30%),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
}

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

.container {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 52px);
}

.section-head--single {
  display: block;
  max-width: 780px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 3.25rem);
}

.section h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.section h3 {
  margin: 0 0 14px;
  font-size: clamp(1.18rem, 2.4vw, 1.55rem);
}

.lead {
  max-width: 44em;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.lead + .lead,
.lead + .note,
.note + .lead {
  margin-top: 14px;
}

.section--navy .lead,
.section--navy p {
  color: rgba(248, 250, 252, 0.82);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.visual-layout--reverse {
  grid-template-columns: minmax(420px, 1.12fr) minmax(0, 0.88fr);
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(160px, 1fr));
  gap: 16px;
}

.image-tile {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--deep-navy);
  box-shadow: var(--shadow);
}

.image-tile--large {
  grid-row: span 2;
  min-height: 490px;
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms ease;
}

.image-tile:hover img,
.card:hover img,
.media-card:hover img {
  transform: scale(1.045);
}

.image-tile::after,
.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6, 20, 35, 0.9));
}

.image-tile figcaption,
.media-card__label {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: var(--white);
}

.image-tile figcaption span,
.media-card__label span {
  display: block;
  margin-bottom: 4px;
  color: var(--light-gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.image-tile figcaption strong,
.media-card__label strong {
  display: block;
  font-size: clamp(1rem, 2vw, 1.4rem);
  line-height: 1.35;
}

.visual-points {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.visual-points li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.visual-points li::before {
  content: "";
  width: 28px;
  height: 28px;
  margin-top: 4px;
  background: linear-gradient(135deg, var(--gold), var(--safety-orange));
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.58);
}

.card,
.feature,
.action-card,
.job-card,
.flow__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(6, 20, 35, 0.07);
}

.card {
  overflow: hidden;
}

.card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 620ms ease;
}

.card__body {
  padding: 24px;
}

.card p,
.feature p,
.flow p,
.faq p,
.job-card p {
  margin: 0;
  color: var(--muted);
}

.feature,
.action-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
}

.feature::before,
.action-card::before,
.card__body::before {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--gold), rgba(214, 111, 31, 0));
}

.feature h2 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.feature__num {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 950;
}

.action-card .section-actions {
  margin-top: auto;
  padding-top: 18px;
}

.media-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--deep-navy);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms ease;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 6vw, 60px);
  color: var(--white);
  background: var(--deep-navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 20, 35, 0.96), rgba(6, 20, 35, 0.62)), var(--cta-image);
  background-position: center;
  background-size: cover;
}

.cta-panel--contact::before {
  background:
    linear-gradient(90deg, rgba(6, 20, 35, 0.96), rgba(6, 20, 35, 0.62)),
    url("../images/subpage/company-contact-hero.webp");
  background-position: center;
  background-size: cover;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel .lead {
  color: rgba(248, 250, 252, 0.82);
}

.brand-panel {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
  border: 1px solid rgba(184, 135, 45, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-lockup {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(6, 20, 35, 0.04), rgba(225, 181, 93, 0.12)),
    var(--white);
  border: 1px solid rgba(184, 135, 45, 0.24);
  border-radius: var(--radius);
}

.brand-lockup img {
  width: min(100%, 310px);
}

.case-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.case-list li {
  padding: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.case-list strong {
  display: block;
  color: var(--navy);
  line-height: 1.5;
}

.case-list small {
  color: var(--muted);
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: flow;
}

.flow__item {
  position: relative;
  padding: 24px;
}

.flow__item::before {
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 950;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(6, 20, 35, 0.05);
}

.info-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

.info-table th {
  width: 190px;
  color: var(--navy);
  background: #f2f5f9;
}

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

.job-card {
  padding: 24px;
}

.job-card dl {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 8px 16px;
  margin: 18px 0 0;
}

.job-card dt {
  color: var(--navy);
  font-weight: 900;
}

.job-card dd {
  margin: 0;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq summary {
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.faq p {
  margin-top: 12px;
}

.form-shell {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(6, 20, 35, 0.06);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label,
.check-field {
  color: var(--navy);
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: #f7f9fc;
  border: 1px solid #cfd7e3;
  border-radius: 4px;
}

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

.required {
  color: #9a5d0a;
  font-size: 0.82em;
}

.field-error {
  min-height: 1.35em;
  color: #a43d27;
  font-size: 0.86rem;
}

.is-invalid input,
.is-invalid select,
.is-invalid textarea {
  border-color: #a43d27;
  background: #fff8f6;
}

.check-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-field input {
  width: 20px;
  height: 20px;
  margin-top: 0.35em;
  flex: 0 0 auto;
}

.form-status {
  min-height: 1.5em;
  color: var(--navy);
  font-weight: 900;
}

.note {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 58px 0 96px;
  color: rgba(248, 250, 252, 0.78);
  background:
    linear-gradient(180deg, rgba(6, 20, 35, 0.96), var(--deep-navy)),
    var(--deep-navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) repeat(3, minmax(140px, 0.6fr));
  gap: 30px;
}

.footer-brand {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 148px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.footer-brand strong,
.footer-brand span,
.footer-brand small {
  display: block;
  line-height: 1;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 950;
}

.footer-brand span {
  margin-top: 3px;
  color: var(--light-gold);
  font-weight: 950;
}

.footer-brand small {
  margin-top: 7px;
  color: rgba(248, 250, 252, 0.62);
  font-size: 0.62rem;
  font-weight: 800;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.copyright {
  margin: 36px 0 0;
  color: rgba(248, 250, 252, 0.62);
  font-size: 0.86rem;
}

.mobile-fixed-cta {
  position: fixed;
  z-index: 90;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(6, 20, 35, 0.18);
}

.mobile-fixed-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 0;
  padding: 8px 6px;
  color: var(--deep-navy);
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow-wrap: anywhere;
}

.mobile-fixed-cta a:nth-child(2) {
  background: var(--gold);
  border-color: var(--gold);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 560ms ease, transform 560ms ease;
}

.motion-ready .reveal:not(.is-visible) {
  opacity: 1;
  transform: translateY(18px);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.045);
  }
}

.motion-ready .hero__picture img {
  animation: heroZoom 18s ease-out both;
}

@media (max-width: 1120px) {
  .header-nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .header-actions .btn {
    min-width: 132px;
    padding-inline: 15px;
  }

  .site-logo {
    grid-template-columns: 118px auto;
    min-width: 270px;
  }

  .site-logo__mark {
    width: 118px;
  }

  .site-logo__name {
    font-size: 1.18rem;
  }
}

@media (max-width: 1024px) {
  .grid--4,
  .flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head,
  .split,
  .visual-layout,
  .visual-layout--reverse,
  .brand-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand-lockup {
    max-width: 360px;
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    width: min(100% - 22px, 1180px);
    gap: 10px;
  }

  .site-logo {
    grid-template-columns: 100px auto;
    min-width: 232px;
    gap: 8px;
  }

  .site-logo__mark {
    width: 100px;
  }

  .site-logo__name {
    font-size: 1rem;
  }

  .site-logo__security {
    font-size: 0.66rem;
  }

  .site-logo__tag {
    font-size: 0.44rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .header-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 14px 16px 18px;
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 44px rgba(6, 20, 35, 0.13);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .header-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-nav a {
    min-height: 48px;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero--sub {
    min-height: 500px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(6, 20, 35, 0.94) 0%, rgba(6, 20, 35, 0.75) 46%, rgba(6, 20, 35, 0.42) 100%),
      linear-gradient(90deg, rgba(6, 20, 35, 0.56), rgba(6, 20, 35, 0.12));
  }

  .hero--home::before {
    background:
      linear-gradient(180deg, rgba(6, 20, 35, 1) 0%, rgba(6, 20, 35, 0.98) 42%, rgba(6, 20, 35, 0.64) 64%, rgba(6, 20, 35, 0.12) 100%),
      linear-gradient(90deg, rgba(6, 20, 35, 0.76) 0%, rgba(6, 20, 35, 0.34) 58%, rgba(6, 20, 35, 0.02) 100%);
  }

  .hero--home {
    min-height: 760px;
    background: var(--deep-navy);
  }

  .hero--home .hero__picture {
    top: auto;
    bottom: 0;
    height: 48%;
    overflow: hidden;
  }

  .hero--home .hero__picture img {
    object-position: 64% center;
    transform: none;
  }

  .hero__inner {
    width: min(100% - 28px, 1180px);
    padding-block: 74px 128px;
    align-self: start;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.9rem);
    line-height: 1.15;
  }

  .hero__lead {
    max-width: min(100%, 24em);
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .hero__badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 360px;
  }

  .hero__badges li {
    justify-content: center;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero__status {
    display: none;
  }

  .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .trust-bar span {
    min-height: 58px;
    border: 1px solid var(--line);
  }

  .image-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .image-tile,
  .image-tile--large {
    min-height: 290px;
    grid-row: auto;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .case-list,
  .flow,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .job-card dl {
    grid-template-columns: 1fr;
  }

  .mobile-fixed-cta {
    display: grid;
    right: 6px;
    left: 6px;
    width: calc(100vw - 12px);
    max-width: calc(100vw - 12px);
    gap: 6px;
    padding: 6px;
  }

  .mobile-fixed-cta a {
    min-height: 42px;
    padding: 6px 2px;
    font-size: 0.72rem;
  }

  .site-footer {
    padding-bottom: 112px;
  }
}

@media (max-width: 430px) {
  .header-inner {
    gap: 8px;
  }

  .site-logo {
    grid-template-columns: 86px auto;
    min-width: 202px;
    gap: 7px;
  }

  .site-logo__mark {
    width: 86px;
  }

  .site-logo__name {
    font-size: 0.92rem;
  }

  .site-logo__security {
    font-size: 0.6rem;
  }

  .site-logo__tag {
    display: none;
  }

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

  .hero {
    min-height: 720px;
  }

  .hero--home {
    min-height: 760px;
  }

  .hero--sub {
    min-height: 470px;
  }

  .hero h1 {
    font-size: clamp(1.82rem, 9vw, 2.34rem);
  }

  .hero__lead {
    font-size: 0.96rem;
  }

  .hero__badges {
    max-width: 344px;
  }

  .hero__badges li {
    font-size: 0.8rem;
    padding-inline: 9px;
  }

  .section {
    padding-block: 56px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .card__body,
  .feature,
  .action-card,
  .flow__item,
  .job-card,
  .form-shell {
    padding: 18px;
  }

  .btn {
    width: 100%;
  }

  .footer-brand {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .footer-brand img {
    width: 118px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .motion-ready .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}
