:root {
  --ink: #10243a;
  --soft-ink: #26384d;
  --muted: #657386;
  --paper: #f5f7fa;
  --white: #ffffff;
  --line: #d7dee8;
  --cedar: #b9854c;
  --brick: #b45d3a;
  --steel: #1f4f75;
  --sage: #6f8377;
  --shadow: 0 18px 48px rgba(16, 36, 58, 0.14);
  --max: 1120px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.85;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(245, 247, 250, 0.94);
  border-bottom: 1px solid rgba(215, 222, 232, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #0f2740, #0b1a2c);
  border-radius: 4px;
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  background: var(--cedar);
}

.brand-mark::before {
  width: 34px;
  height: 2px;
  rotate: -32deg;
  translate: 0 -7px;
}

.brand-mark::after {
  width: 2px;
  height: 34px;
  translate: -12px 5px;
}

.brand-mark span {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-text strong {
  font-size: 16px;
  line-height: 1.3;
  white-space: nowrap;
}

.brand-text small {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 11px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 25px);
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  content: "";
  background: var(--brick);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  width: 100%;
}

.site-nav .nav-contact {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
}

.site-nav .nav-contact::after {
  content: none;
}

.site-nav .nav-contact.is-current,
.site-nav .nav-contact:hover {
  background: var(--brick);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.nav-toggle span + span {
  margin-top: -12px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brick);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(700px, calc(100svh - var(--header)));
  overflow: hidden;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 25, 43, 0.9) 0%, rgba(15, 40, 65, 0.68) 42%, rgba(15, 40, 65, 0.12) 78%),
    linear-gradient(180deg, rgba(9, 25, 43, 0.08) 0%, rgba(9, 25, 43, 0.28) 100%);
}

.hero-content {
  display: grid;
  align-content: center;
  width: min(100%, var(--max));
  min-height: min(700px, calc(100svh - var(--header)));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 48px);
  color: var(--white);
}

.hero .eyebrow {
  color: #f3c08b;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.14;
  font-weight: 800;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 2;
}

.mobile-break {
  display: none;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--steel);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #153d5d;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.46);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--brick);
  font-weight: 900;
}

.text-link::after {
  margin-left: 9px;
  content: "→";
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 36px), var(--max));
  margin: 28px auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-width: 0;
  padding: clamp(18px, 3vw, 26px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-strip strong {
  display: block;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.35;
}

.section {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 118px) 0;
  scroll-margin-top: calc(var(--header) + 28px);
}

.hero + .section {
  padding-top: clamp(86px, 11vw, 132px);
}

.section-heading {
  display: grid;
  gap: 0;
  margin-bottom: clamp(28px, 5vw, 46px);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.3;
}

.section-topline {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(28px, 5vw, 46px);
}

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

.split-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(28px, 7vw, 78px);
}

.rich-text {
  color: var(--soft-ink);
  font-size: 16.5px;
}

.rich-text p {
  margin-bottom: 20px;
}

.rich-text p:last-child {
  margin-bottom: 0;
}

.image-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(calc(100% - 36px), 1320px);
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.image-band figure {
  position: relative;
  min-height: 320px;
  margin: 0;
  background: var(--ink);
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.image-band figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 12px;
  color: var(--white);
  background: rgba(23, 32, 28, 0.78);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
}

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

.service-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(16, 36, 58, 0.06);
}

.service-grid.compact .service-card {
  min-height: 230px;
}

.service-grid.detail .service-card {
  min-height: 380px;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
  place-items: center;
  color: var(--steel);
  background: #edf4f8;
  border-radius: 4px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-card ul {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 16px;
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 800;
}

.service-card li::before {
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--cedar);
  border-radius: 50%;
}

.dark-section {
  padding: clamp(76px, 10vw, 118px) max(18px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: #0d2238;
}

.dark-section .section-heading {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.dark-section .eyebrow {
  color: #f0b982;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(100%, var(--max));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  overflow: hidden;
}

.approach-grid article {
  min-height: 260px;
  padding: 30px;
  background: #132f4a;
}

.approach-grid span {
  display: block;
  margin-bottom: 34px;
  color: #dba36b;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.approach-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.4;
}

.approach-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  width: 100%;
  margin: 0;
  padding: clamp(56px, 8vw, 94px) max(18px, calc((100% - 1280px) / 2)) clamp(58px, 7vw, 92px);
  background:
    linear-gradient(135deg, rgba(31, 79, 117, 0.1), rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, #edf3f8 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.78);
}

.page-hero::after {
  position: absolute;
  left: max(18px, calc((100% - 1280px) / 2));
  bottom: -2px;
  width: min(240px, calc(100% - 36px));
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--steel), rgba(31, 79, 117, 0));
  border-radius: 999px;
}

.page-hero h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 48px);
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: 17px;
}

.page-hero img {
  width: 100%;
  height: clamp(320px, 34vw, 460px);
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.photo-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 6vw, 68px);
  align-items: center;
  padding: clamp(62px, 8vw, 96px) max(18px, calc((100% - var(--max)) / 2));
  background: #edf2f6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.photo-feature.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.photo-feature img {
  width: 100%;
  height: clamp(320px, 36vw, 500px);
  object-fit: cover;
  border-radius: 6px;
}

.photo-feature h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.3;
}

.photo-feature p {
  color: var(--soft-ink);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.area-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 7px 13px;
  color: var(--soft-ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.process-list li {
  min-height: 250px;
  padding: 30px 24px;
  background: var(--white);
}

.process-list span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--white);
  background: var(--steel);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.company-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.company-list {
  margin: 0;
}

.company-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}

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

.company-list dt {
  color: var(--muted);
  font-weight: 900;
}

.company-list dd {
  margin: 0;
  color: var(--soft-ink);
}

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

.recruit-grid article {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.recruit-grid h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.45;
}

.recruit-grid p {
  margin: 0;
  color: var(--muted);
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 7vw, 76px);
  align-items: start;
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 100px) 0;
}

.contact-info h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.3;
}

.contact-info p {
  color: var(--soft-ink);
}

.contact-info dl {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.contact-info dl div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-info dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.contact-info dd {
  margin: 4px 0 0;
  color: var(--soft-ink);
}

.contact-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

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

.contact-form span {
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfbf8;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(73, 103, 120, 0.16);
}

.form-button {
  width: fit-content;
  min-width: 160px;
  border: 0;
  cursor: pointer;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--steel);
  font-size: 14px;
  font-weight: 900;
}

.home-contact {
  position: relative;
  padding: clamp(82px, 10vw, 126px) max(18px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(180deg, #f1f5f9 0%, var(--paper) 100%);
  border-top: 1px solid var(--line);
}

.home-contact::before {
  position: absolute;
  top: 0;
  left: max(18px, calc((100% - var(--max)) / 2));
  width: min(260px, calc(100% - 36px));
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--steel), rgba(31, 79, 117, 0));
  border-radius: 999px;
}

.home-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: clamp(30px, 7vw, 82px);
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.home-contact-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.28;
}

.home-contact-copy p:not(.eyebrow) {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: 17px;
}

.home-contact-panel {
  display: grid;
  gap: 24px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.home-contact-panel dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.home-contact-panel dl div {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.home-contact-panel dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.home-contact-panel dt {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-contact-panel dd {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}

.home-contact-panel .button {
  width: 100%;
}

.site-footer {
  display: grid;
  gap: 10px;
  padding: 36px max(18px, calc((100% - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: #081827;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: baseline;
}

.site-footer strong {
  color: var(--white);
  font-size: 18px;
}

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

@media (max-width: 1000px) {
  .service-grid,
  .approach-grid,
  .recruit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero,
  .split-section,
  .photo-feature,
  .photo-feature.reverse,
  .contact-page,
  .home-contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  :root {
    --header: 70px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 12px 18px 24px;
    background: rgba(246, 246, 241, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform 200ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    content: none;
  }

  .site-nav .nav-contact {
    justify-content: center;
    margin-top: 16px;
  }

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

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .image-band {
    grid-template-columns: 1fr;
  }

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

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

  .brand-mark {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

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

  .brand-text small {
    font-size: 10px;
  }

  .hero,
  .hero-content {
    min-height: 74svh;
  }

  .hero-image {
    object-position: 58% center;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(32px, 9.8vw, 37px);
    line-height: 1.18;
  }

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

  .mobile-break {
    display: inline;
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    width: min(calc(100% - 24px), var(--max));
    margin-top: 18px;
  }

  .trust-strip div {
    padding: 16px;
  }

  .trust-strip strong {
    font-size: 17px;
  }

  .section,
  .contact-page {
    width: min(calc(100% - 28px), var(--max));
    padding: 64px 0;
  }

  .page-hero {
    width: 100%;
    padding: 48px 14px 56px;
  }

  .page-hero img,
  .photo-feature img {
    height: 260px;
  }

  .section-heading h2,
  .photo-feature h2,
  .contact-info h2 {
    font-size: 29px;
  }

  .section-topline {
    display: grid;
    align-items: start;
  }

  .home-contact {
    padding: 64px 14px;
  }

  .home-contact::before {
    left: 14px;
    width: min(220px, calc(100% - 28px));
  }

  .home-contact-copy h2 {
    font-size: 30px;
  }

  .home-contact-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .home-contact-panel {
    padding: 22px;
  }

  .service-grid,
  .service-grid.detail,
  .approach-grid,
  .recruit-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .service-grid.detail .service-card,
  .service-grid.compact .service-card,
  .approach-grid article,
  .recruit-grid article,
  .process-list li {
    min-height: auto;
  }

  .image-band {
    width: min(calc(100% - 28px), 1320px);
  }

  .image-band figure,
  .image-band img {
    min-height: 260px;
  }

  .photo-feature,
  .photo-feature.reverse {
    padding-right: 14px;
    padding-left: 14px;
  }

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

  .form-button {
    width: 100%;
  }
}
