:root {
  color-scheme: light;
  --ink: #252525;
  --muted: #5e6068;
  --subtle: #8a8790;
  --line: #e2e5ec;
  --paper: #f5f7fb;
  --warm: #fffdf8;
  --white: #ffffff;
  --red: #d92f2f;
  --green: #007f73;
  --blue: #1f4fa3;
  --gold: #c48a12;
  --brown: #7b5522;
  --navy: #153a5b;
  --charcoal: #17202b;
  --shadow: 0 18px 46px rgba(23, 32, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f4ef 42%, #eef3f5 100%);
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.88;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  overflow-wrap: normal;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 229, 236, 0.92);
  backdrop-filter: blur(16px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 5px;
  content: "";
  background: var(--navy);
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 50%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand span {
  color: var(--charcoal);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav a + a::before {
  margin: 0 clamp(7px, 1vw, 14px);
  color: var(--subtle);
  content: "|";
  font-weight: 400;
}

.nav a:hover {
  color: var(--red);
  border-color: var(--gold);
}

.nav-contact {
  color: var(--charcoal) !important;
  -webkit-text-fill-color: var(--charcoal);
  background: transparent;
}

.nav-contact:link,
.nav-contact:visited,
.nav-contact:hover,
.nav-contact:active {
  color: var(--charcoal) !important;
  -webkit-text-fill-color: var(--charcoal);
}

.nav .nav-contact:hover {
  color: var(--red) !important;
  -webkit-text-fill-color: var(--red);
  background: transparent;
}

.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.language-switch::after {
  position: absolute;
  right: 10px;
  color: var(--navy);
  content: "▾";
  font-size: 10px;
  pointer-events: none;
}

.language-switch select {
  min-width: 66px;
  min-height: 38px;
  padding: 7px 28px 7px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  appearance: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 84px);
  overflow: hidden;
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.16) contrast(1.05);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(20, 22, 26, 0.74) 0%, rgba(20, 22, 26, 0.48) 46%, rgba(20, 22, 26, 0.12) 100%),
    linear-gradient(180deg, rgba(21, 58, 91, 0.12) 0%, rgba(21, 58, 91, 0.34) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(780px, calc(100% - 40px));
  min-height: calc(100svh - 84px);
  margin-left: clamp(20px, 7vw, 96px);
  padding: 84px 0 128px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  width: fit-content;
  margin: 0 0 14px;
  padding: 5px 10px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd166;
  background: rgba(28, 36, 48, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

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

h1,
h2,
h3,
h4,
.brand span,
.nav a,
.button,
.section-kicker,
.eyebrow,
.archive-label,
.quality-number,
.proof-grid article > span,
.mvv-grid span,
.mobile-principles span {
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
}

p,
li,
dd {
  line-break: strict;
  overflow-wrap: break-word;
}

p {
  line-height: 1.82;
}

.nowrap {
  white-space: nowrap;
}

.break-anywhere {
  overflow-wrap: anywhere;
  word-break: break-word;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 700;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(27px, 3.2vw, 44px);
  line-height: 1.32;
  letter-spacing: 0;
  font-weight: 700;
}

h2::after {
  display: block;
  width: 76px;
  height: 6px;
  margin-top: 16px;
  content: "";
  background: linear-gradient(90deg, var(--navy), var(--red), var(--gold));
  border-radius: 999px;
}

.hero h1::after,
.contact h2::after {
  display: none;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.42;
  letter-spacing: 0;
  font-weight: 700;
}

.hero-statement {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.35;
  font-weight: 700;
}

.lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.86;
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 46px;
  max-width: 100%;
  padding: 11px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button.primary {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white);
  background: var(--red);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(217, 47, 47, 0.2);
}

.button.primary:link,
.button.primary:visited,
.button.primary:hover,
.button.primary:active {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white);
}

.button.secondary {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
}

.button.text {
  color: var(--blue);
  background: rgba(31, 79, 163, 0.08);
  border-color: rgba(31, 79, 163, 0.34);
}

.button.text.subtle {
  min-width: 0;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(94, 96, 104, 0.28);
}

.button.text.subtle:hover {
  color: var(--navy);
  border-color: rgba(21, 58, 91, 0.42);
}

.button:hover {
  transform: translateY(-1px);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-more {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.section-more .button {
  flex: 0 1 280px;
  min-width: min(280px, 100%);
}

.intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.intro h2 {
  margin-bottom: 0;
}

.intro p:last-child {
  color: #4d4944;
  font-size: 17px;
  line-height: 2.05;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 30px;
}

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

.mvv,
.works,
.partners {
  width: 100%;
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  padding-left: max(20px, calc((100vw - 1120px) / 2));
}

.mvv,
.partners {
  background:
    linear-gradient(90deg, rgba(21, 58, 91, 0.06) 0%, rgba(255, 255, 255, 0.98) 34%, rgba(21, 58, 91, 0.045) 100%);
}

.mvv-grid,
.quality-grid,
.service-grid,
.trust-grid,
.proof-grid {
  display: grid;
  gap: 20px;
}

.mvv-grid,
.quality-grid,
.proof-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

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

.mvv-grid article,
.quality-grid article,
.service-card,
.trust-grid article,
.proof-grid article {
  border: 1px solid var(--line);
  border-top: 7px solid var(--navy);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 58, 91, 0.055), #ffffff 42%);
  box-shadow: var(--shadow);
}

.mvv-grid article:nth-child(2),
.quality-grid article:nth-child(2),
.proof-grid article:nth-child(2),
.trust-grid article:nth-child(2) {
  border-top-color: var(--navy);
  background: linear-gradient(180deg, rgba(21, 58, 91, 0.045), #ffffff 42%);
}

.mvv-grid article:nth-child(3),
.quality-grid article:nth-child(3),
.proof-grid article:nth-child(3) {
  border-top-color: var(--navy);
  background: linear-gradient(180deg, rgba(21, 58, 91, 0.04), #ffffff 42%);
}

.mvv-grid article {
  min-height: 300px;
  padding: 28px;
}

.mvv-grid-values article {
  min-height: 260px;
}

.mvv-grid span,
.quality-number,
.archive-label,
.proof-grid article > span {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

.mvv-grid span {
  margin-bottom: 26px;
  padding: 4px 9px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
}

.mvv-grid article:nth-child(2) span {
  background: var(--green);
}

.mvv-grid article:nth-child(3) span {
  background: var(--blue);
}

.mvv-grid article:nth-child(4) span {
  background: var(--navy);
}

.mvv-grid p,
.quality-grid p,
.service-card p,
.works-list p,
.company-table dd,
.contact p,
.trust-grid p,
.proof-grid p {
  color: var(--muted);
}

.quality-grid article {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 30px;
  background: var(--white);
}

.quality-grid article::after {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: rgba(31, 79, 163, 0.065);
  content: "QUALITY";
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.quality-grid h3,
.quality-grid p {
  position: relative;
  z-index: 1;
}

.quality-number {
  margin-bottom: 52px;
  padding: 5px 10px;
  color: var(--charcoal);
  background: var(--gold);
  border-radius: 999px;
}

.service-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  align-items: start;
  min-height: 220px;
  padding: 28px;
}

.service-card.logo-wide {
  grid-template-columns: 148px 1fr;
}

.service-grid .service-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.service-card > div:first-child:last-child {
  grid-column: 1 / -1;
}

.service-logo-link {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 8px;
  text-decoration: none;
}

.service-card.logo-wide .service-logo-link {
  width: 148px;
}

.service-logo-link:hover,
.service-logo-link:focus-visible {
  background: rgba(21, 58, 91, 0.055);
}

.service-card img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.service-card.logo-wide img {
  width: 148px;
  height: 84px;
}

.service-card a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-card .service-logo-link {
  text-decoration: none;
}

.archive-card {
  background: linear-gradient(180deg, rgba(196, 138, 18, 0.1), #ffffff 55%);
  box-shadow: none;
}

.archive-card img {
  opacity: 0.68;
}

.archive-label {
  margin-bottom: 6px;
}

.service-card.accent {
  grid-template-columns: 1fr;
  background: var(--navy);
  border-color: transparent;
}

.service-card.accent h3,
.service-card.accent p {
  color: var(--white);
}

.commitment-panel {
  margin-top: 22px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-left: 10px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.teaser-panel {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-left: 10px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.teaser-panel h3 {
  max-width: 780px;
}

.teaser-panel p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.commitment-panel h3 {
  max-width: 820px;
  font-size: clamp(23px, 2.8vw, 34px);
  line-height: 1.34;
}

.commitment-panel > p {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--muted);
}

.mobile-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.mobile-principles article {
  min-height: 190px;
  padding: 22px;
  background: #ffffff;
}

.mobile-principles span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.mobile-principles h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.mobile-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.works {
  background:
    linear-gradient(180deg, #eef3f5 0%, #ffffff 100%);
}

.subpage-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 126px) 0 clamp(48px, 7vw, 84px);
}

.subpage-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 96px);
}

.subpage-hero p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.82;
}

.subpage-actions {
  margin-top: 30px;
}

.subpage-actions .button.primary {
  color: var(--white);
}

.inline-links {
  align-self: end;
}

.inline-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(31, 79, 163, 0.28);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.inline-links a:hover {
  color: var(--red);
  border-color: var(--red);
}

.works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #d7ddea;
}

.works-list p {
  min-height: 116px;
  margin: 0;
  padding: 20px;
  background: var(--white);
  border-left: 4px solid transparent;
  font-weight: 700;
}

.works-list p:nth-child(3n + 1) {
  border-left-color: var(--red);
}

.works-list p:nth-child(3n + 2) {
  border-left-color: var(--green);
}

.works-list p:nth-child(3n) {
  border-left-color: var(--blue);
}

.works-list .works-other {
  grid-column: 3;
}

.proof-grid article {
  min-height: 270px;
  padding: 28px;
  background: var(--white);
}

.proof-grid article > span {
  margin-bottom: 22px;
  color: var(--gold);
}

.archive-panel {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 28px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-left: 8px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.archive-panel img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  opacity: 0.74;
}

.archive-panel p {
  color: var(--muted);
}

.trust-grid article {
  min-height: 260px;
  padding: 30px;
  background: var(--white);
}

.partner-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.partner-list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.trust-grid .note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.advisor-list {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
}

.advisor-list div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.advisor-list dt {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.advisor-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.timeline {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.timeline div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.timeline dt {
  color: var(--red);
  font-weight: 900;
}

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

.company-table {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-table div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.company-table dt {
  color: #3d3934;
  font-weight: 900;
}

.company-table dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.company-table a {
  color: var(--blue);
  font-weight: 800;
}

.company-history {
  margin-top: 48px;
}

.company-history h3 {
  margin-bottom: 18px;
}

.contact {
  display: block;
  width: min(1120px, calc(100% - 40px));
  margin-bottom: 96px;
  padding: clamp(42px, 6vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 58, 91, 0.98), rgba(23, 32, 43, 0.96)),
    var(--navy);
  border-radius: 8px;
}

.contact .section-kicker,
.contact p {
  color: rgba(255, 255, 255, 0.9);
}

.contact h2 {
  max-width: 860px;
}

.contact p {
  max-width: 720px;
  margin-bottom: 28px;
}

.contact .button.primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--charcoal) !important;
  -webkit-text-fill-color: var(--charcoal);
}

.contact .button.primary:link,
.contact .button.primary:visited,
.contact .button.primary:hover,
.contact .button.primary:active {
  color: var(--charcoal) !important;
  -webkit-text-fill-color: var(--charcoal);
}

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

.contact-form-section {
  padding-top: 32px;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.contact-guide {
  position: sticky;
  top: 112px;
  min-width: 0;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 8px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-guide h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  overflow-wrap: anywhere;
  word-break: normal;
}

.contact-guide p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact-guide ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-guide li {
  padding: 10px 0 10px 14px;
  border-left: 4px solid var(--red);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.contact-guide li:nth-child(2n) {
  border-left-color: var(--blue);
}

.contact-guide li:nth-child(3n) {
  border-left-color: var(--green);
}

.contact-flow {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-flow h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.45;
}

.contact-flow ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-flow li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-flow li span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
}

.contact-flow p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.news-section {
  padding-top: 36px;
}

.news-filters,
.cms-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.news-filters button {
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid rgba(21, 58, 91, 0.18);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.news-filters button.is-active {
  color: var(--white);
  background: var(--navy);
}

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

.news-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 7px solid var(--navy);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.news-meta span {
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
}

.news-card h2 {
  margin: 0 0 12px;
  color: var(--charcoal);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.36;
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

.news-card p + p {
  margin-top: 12px;
}

.news-summary {
  color: var(--ink) !important;
  font-weight: 700;
}

.news-empty {
  padding: 24px;
  border: 1px dashed rgba(21, 58, 91, 0.28);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
}

.cms-section .contact-form {
  max-width: none;
}

.cms-check {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--navy);
  font-weight: 900;
}

.cms-check input {
  width: 18px;
  height: 18px;
}

.cms-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cms-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

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

.cms-table th {
  color: var(--navy);
  background: rgba(21, 58, 91, 0.06);
  font-size: 13px;
}

.admin-actions-cell {
  display: flex;
  gap: 8px;
}

.admin-actions-cell button {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(21, 58, 91, 0.2);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.recruit-intro .commitment-panel {
  display: grid;
  gap: 14px;
}

.recruit-intro .commitment-panel p {
  margin: 0;
}

p.section-kicker,
.contact .section-kicker,
.commitment-panel > .section-kicker {
  color: var(--white);
}

.recruit-cta {
  padding-top: 20px;
}

.recruit-cta .contact-guide {
  position: static;
  max-width: 920px;
  margin: 0 auto;
  border-left-color: var(--navy);
}

.recruit-cta .button {
  margin-top: 12px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-top: 7px solid var(--navy);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

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

.form-row label,
.consent-check {
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
}

.form-row label span {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 7px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.4;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cfd5df;
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  line-height: 1.5;
}

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

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31, 79, 163, 0.14);
  outline: none;
}

.consent-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--red);
  flex: 0 0 auto;
}

.consent-check a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.form-actions .button {
  cursor: pointer;
  font-family: inherit;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: #f2eee8;
  background: var(--charcoal);
}

.site-footer p,
.site-footer small {
  margin: 0;
}

.social-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.social-links-top {
  display: flex;
  margin-top: 18px;
}

.social-label {
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  opacity: 0.72;
  white-space: nowrap;
}

.social-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.contact .social-links {
  color: var(--navy);
}

.contact .social-icon {
  border-color: rgba(21, 58, 91, 0.22);
  background: rgba(21, 58, 91, 0.055);
}

.social-icon.is-pending {
  cursor: default;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  font-size: 13px;
  font-weight: 800;
}

.footer-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 12px;
    min-height: 0;
    padding: 12px 16px 10px;
  }

  .site-header > * {
    min-width: 0;
    max-width: 100%;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
    padding: 3px 0 1px;
  }

  .language-switch {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    justify-self: end;
    align-self: center;
  }

  .nav a {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 4px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav .nav-contact {
    color: var(--charcoal) !important;
    -webkit-text-fill-color: var(--charcoal);
    background: transparent;
  }

  h1,
  h2,
  h3,
  h4,
  .button,
  .section-kicker,
  .eyebrow,
  .archive-label,
  .quality-number,
  .proof-grid article > span,
  .mvv-grid span,
  .mobile-principles span {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: 700px;
  }

  .hero-copy {
    align-content: end;
    min-height: 700px;
    margin: 0 auto;
    padding-bottom: 70px;
  }

  .intro,
  .section-heading,
  .mvv-grid,
  .quality-grid,
  .proof-grid,
  .service-grid,
  .trust-grid,
  .mobile-principles,
  .contact-form-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .contact-guide {
    position: static;
  }

  .mvv-grid article,
  .quality-grid article,
  .proof-grid article,
  .service-card,
  .trust-grid article {
    min-height: auto;
  }

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

  .works-list .works-other {
    grid-column: 2;
  }

  .service-grid .service-card:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
    line-height: 1.78;
    overflow-wrap: anywhere;
  }

  p,
  li,
  dd {
    line-height: 1.76;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand span {
    font-size: 16px;
  }

  .nav {
    gap: 0;
    font-size: clamp(10px, 3.2vw, 12px);
  }

  .nav a + a::before {
    margin: 0 clamp(2px, 0.8vw, 5px);
  }

  .language-switch select {
    min-width: 58px;
    min-height: 34px;
    padding: 6px 25px 6px 9px;
  }

  .nowrap {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .brand span,
  .nav a {
    white-space: nowrap;
  }

  h1 {
    font-size: 40px;
    line-height: 1.15;
  }

  h2 {
    font-size: 26px;
    line-height: 1.28;
  }

  h3 {
    font-size: 19px;
    line-height: 1.38;
  }

  h2::after {
    width: 58px;
    height: 5px;
    margin-top: 12px;
  }

  .eyebrow,
  .section-kicker {
    max-width: 100%;
    padding: 4px 9px;
    font-size: 11px;
    white-space: normal;
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    min-height: 620px;
    width: min(100% - 32px, 780px);
    padding-bottom: 48px;
  }

  .hero-statement {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .lead {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.76;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    white-space: normal;
  }

  .hero-actions,
  .subpage-actions {
    width: 100%;
  }

  .section-more {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    width: 100%;
    margin-top: 26px;
  }

  .section-more .button {
    min-width: 0;
  }

  .inline-links {
    width: 100%;
  }

  .inline-links a {
    width: 100%;
    min-height: 46px;
    padding: 11px 16px;
  }

  .section {
    width: min(100% - 32px, 1120px);
    padding: 52px 0;
  }

  .section-heading {
    gap: 10px;
    margin-bottom: 20px;
  }

  .subpage-hero {
    width: min(100% - 32px, 1120px);
    padding: 48px 0 38px;
  }

  .subpage-hero h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  .subpage-hero p:last-child {
    font-size: 15px;
    line-height: 1.76;
  }

  .subpage-actions {
    margin-top: 22px;
  }

  .mvv-grid article,
  .quality-grid article,
  .proof-grid article,
  .service-card,
  .trust-grid article,
  .teaser-panel,
  .commitment-panel {
    padding: 20px;
    box-shadow: none;
  }

  .service-card {
    gap: 16px;
  }

  .service-logo-link {
    width: 72px;
    height: 72px;
  }

  .service-card.logo-wide .service-logo-link {
    width: min(100%, 188px);
    height: 80px;
  }

  .service-card img {
    width: 72px;
    height: 72px;
  }

  .service-card.logo-wide img {
    width: min(100%, 188px);
    height: 80px;
  }

  .service-card p,
  .quality-grid p,
  .proof-grid p,
  .mvv-grid p,
  .trust-grid p,
  .works-list p {
    font-size: 14px;
    line-height: 1.74;
  }

  .commitment-panel {
    border-left-width: 7px;
  }

  .commitment-panel h3 {
    font-size: 22px;
    line-height: 1.34;
  }

  .quality-number {
    margin-bottom: 28px;
  }

  .mobile-principles article {
    min-height: auto;
    padding: 20px;
  }

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

  .archive-panel {
    grid-template-columns: 1fr;
  }

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

  .works-list .works-other {
    grid-column: auto;
  }

  .works-list p {
    min-height: auto;
    padding: 16px 18px;
    border-left-width: 6px;
  }

  .company-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .advisor-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact {
    width: min(100% - 32px, 1120px);
    padding: 32px 22px;
  }

  .contact-form {
    gap: 16px;
    padding: 20px;
  }

  .contact-guide {
    padding: 20px;
    border-left-width: 7px;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .social-links {
    justify-content: flex-start;
  }
}
