:root {
  color-scheme: light;
  --ink: #18201e;
  --muted: #65706c;
  --white: #ffffff;
  --mist: #f2f5f3;
  --line: #d7dfdb;
  --green: #17362f;
  --green-2: #285848;
  --amber: #d39a32;
  --coral: #bd644f;
  --steel: #58707a;
  --shadow: 0 18px 50px rgba(17, 36, 31, 0.12);
  --radius: 6px;
  --container: 1180px;
  font-family: "Noto Sans JP", "Yu Gothic UI", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
dl,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
strong,
b {
  font-weight: 750;
}

h1,
h2,
h3,
p,
dd,
a {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h2 {
  margin-bottom: 24px;
  font-size: 46px;
  line-height: 1.34;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.5;
}

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

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  font-weight: 700;
}

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--green-2);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.14em;
}

.eyebrow.light {
  color: #dce9e3;
}

.mobile-only {
  display: none;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.solid-header,
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(24, 32, 30, 0.1);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  width: min(var(--container), calc(100% - 64px));
  min-height: 82px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.2;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.brand-mark span {
  color: var(--amber);
}

.brand-copy,
.footer-brand div {
  display: grid;
  gap: 4px;
}

.brand-copy strong,
.footer-brand strong {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.brand-copy small,
.footer-brand small {
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.site-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

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

.site-nav .nav-contact {
  margin-left: 8px;
  border-radius: var(--radius);
  background: var(--amber);
  color: #17130d;
  padding-inline: 17px;
}

.site-nav .nav-contact:hover {
  background: #e1ad4c;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 10px;
}

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

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

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

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

/* Home hero */
.hero-home {
  position: relative;
  height: min(760px, calc(100svh - 24px));
  min-height: 660px;
  overflow: hidden;
  background: #17211e;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero-shade {
  background: linear-gradient(90deg, rgba(9, 20, 17, 0.9) 0%, rgba(9, 20, 17, 0.68) 42%, rgba(9, 20, 17, 0.12) 76%);
}

.hero-home-inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 156px;
  padding-bottom: 34px;
}

.hero-home-copy {
  max-width: 720px;
}

.hero-home h1 {
  margin-bottom: 18px;
  font-size: 72px;
  line-height: 1.12;
}

.hero-statement {
  margin-bottom: 18px;
  color: #f0c56e;
  font-size: 27px;
  font-weight: 750;
  line-height: 1.5;
}

.hero-description {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.9;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--amber);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-capabilities span {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  padding: 14px 20px 8px 0;
  font-size: 13px;
  font-weight: 700;
}

.hero-capabilities span + span {
  padding-left: 20px;
}

.hero-capabilities span:last-child {
  border-right: 0;
}

.hero-capabilities b {
  color: #f0c56e;
  font-family: Arial, sans-serif;
  font-size: 11px;
}

/* Shared editorial sections */
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 96px;
  align-items: start;
}

.section-heading h2:last-child,
.section-heading p:last-child,
.intro-copy p:last-child {
  margin-bottom: 0;
}

.section-heading > p:not(.eyebrow) {
  max-width: 460px;
  color: var(--muted);
}

.intro-copy {
  padding-top: 30px;
}

.intro-copy p {
  max-width: 700px;
  color: var(--muted);
}

.lead-copy {
  margin-bottom: 28px;
  color: var(--ink) !important;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.8;
}

/* Home business */
.business-overview {
  border-top: 1px solid var(--line);
  background: var(--mist);
}

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

.business-visual {
  position: relative;
  min-height: 660px;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.business-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(20, 31, 28, 0.84);
  color: var(--white);
  padding: 16px 20px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.section-heading.compact {
  margin-bottom: 44px;
}

.section-heading.compact h2 {
  font-size: 40px;
}

.service-list {
  border-bottom: 1px solid #bcc8c3;
}

.service-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 34px;
  min-height: 100px;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #bcc8c3;
  transition: color 180ms ease, padding-left 180ms ease;
}

.service-row:hover {
  color: var(--green-2);
  padding-left: 8px;
}

.service-number {
  color: var(--coral);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.service-row strong,
.service-row small {
  display: block;
}

.service-row strong {
  font-size: 17px;
}

.service-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.row-arrow {
  color: var(--green-2);
  font-size: 20px;
  text-align: right;
}

/* Process */
.process-section {
  background: var(--green);
  color: var(--white);
}

.section-heading.horizontal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 66px;
}

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

.process-section .section-heading.horizontal > p {
  color: rgba(255, 255, 255, 0.68);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 190px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 32px 28px;
}

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

.process-list span,
.process-list strong,
.process-list small {
  display: block;
}

.process-list span {
  margin-bottom: 26px;
  color: #efc36c;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.process-list strong {
  margin-bottom: 8px;
  font-size: 21px;
}

.process-list small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.7;
}

/* Regional image */
.region-banner {
  position: relative;
  height: 620px;
  overflow: hidden;
  color: var(--white);
}

.region-banner > img,
.region-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.region-banner > img {
  object-fit: cover;
}

.region-shade {
  background: linear-gradient(90deg, rgba(14, 28, 24, 0.82), rgba(14, 28, 24, 0.2) 68%);
}

.region-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  max-width: var(--container);
  flex-direction: column;
  justify-content: center;
}

.region-content h2 {
  font-size: 54px;
}

.region-content p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

/* Company preview */
.company-preview-grid,
.profile-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 110px;
  align-items: start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 7px;
  font-size: 14px;
  font-weight: 750;
}

.text-link:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.company-facts,
.profile-table,
.operator-list {
  margin-bottom: 0;
  border-top: 1px solid var(--ink);
}

.company-facts div,
.profile-table div,
.operator-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

dd {
  margin: 0;
  font-weight: 650;
}

dd a {
  border-bottom: 1px solid currentColor;
  color: var(--green-2);
}

/* Contact */
.contact-band {
  background: var(--coral);
  color: var(--white);
  padding: 82px 0;
}

.contact-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 64px;
  align-items: center;
}

.contact-band h2 {
  margin-bottom: 8px;
}

.contact-band p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-mail {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  transition: padding 180ms ease;
}

.contact-mail:hover {
  padding-inline: 8px;
}

.contact-mail b {
  font-size: 24px;
}

/* Footer */
.site-footer {
  background: #111816;
  color: var(--white);
  padding: 68px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(180px, 0.6fr) minmax(320px, 1.1fr);
  gap: 48px 64px;
  align-items: start;
}

.brand-mark.inverse {
  color: var(--white);
}

.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-nav a,
.footer-contact,
.copyright {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact p {
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
}

.copyright {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 22px;
  font-family: Arial, sans-serif;
}

/* Image page hero */
.page-hero.image-hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--green);
  color: var(--white);
}

.page-hero.image-hero > img,
.page-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero.image-hero > img {
  object-fit: cover;
  object-position: center 52%;
}

.company-hero.page-hero.image-hero > img {
  object-position: center 48%;
}

.page-hero-shade {
  background: linear-gradient(90deg, rgba(12, 26, 22, 0.84), rgba(12, 26, 22, 0.26) 72%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  max-width: var(--container);
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 70px;
}

.page-hero-content h1,
.policy-hero h1 {
  margin-bottom: 18px;
  font-size: 64px;
  line-height: 1.18;
}

.page-hero-content p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.business-intro {
  background: var(--white);
}

/* Business details */
.services-section {
  border-top: 1px solid var(--line);
}

.service-detail {
  padding: 104px 0;
  background: var(--white);
}

.service-detail.tone-green {
  background: #e8f0ec;
}

.service-detail.tone-warm {
  background: #f4ece7;
}

.service-detail.tone-light {
  background: #edf2f3;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.2fr);
  gap: 110px;
}

.service-title span {
  display: block;
  margin-bottom: 22px;
  color: var(--coral);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-title h2 {
  margin-bottom: 0;
}

.service-body > p:not(.lead-copy) {
  color: var(--muted);
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid rgba(24, 32, 30, 0.5);
  list-style: none;
}

.scope-list li {
  border-bottom: 1px solid rgba(24, 32, 30, 0.18);
  padding: 13px 0;
  font-size: 13px;
  font-weight: 700;
}

.scope-list li::before {
  margin-right: 10px;
  color: var(--coral);
  content: "+";
}

.process-light {
  background: var(--mist);
}

.process-light .section-heading.horizontal > p {
  color: var(--muted);
}

.workflow-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.workflow-line li {
  min-height: 150px;
  border-right: 1px solid var(--line);
  padding: 24px 20px;
}

.workflow-line li:last-child {
  border-right: 0;
}

.workflow-line b,
.workflow-line span {
  display: block;
}

.workflow-line b {
  margin-bottom: 28px;
  color: var(--coral);
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.workflow-line span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

/* Company */
.philosophy-section {
  background: var(--white);
}

.principles-section {
  background: var(--green);
  color: var(--white);
  padding: 94px 0;
}

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

.principles-heading,
.principles-grid article {
  min-height: 250px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 30px;
}

.principles-heading {
  padding-left: 0;
}

.principles-grid article:last-child {
  border-right: 0;
}

.principles-grid article span {
  display: block;
  margin-bottom: 58px;
  color: #efc36c;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.principles-grid article h3 {
  font-size: 20px;
}

.principles-grid article p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.sticky-heading {
  position: sticky;
  top: 122px;
}

.profile-table div {
  grid-template-columns: 170px minmax(0, 1fr);
  padding: 26px 0;
}

.location-strip {
  border-top: 1px solid var(--line);
  background: var(--mist);
  padding: 64px 0;
}

.location-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
}

.location-strip h2,
.location-strip p {
  margin-bottom: 0;
}

.location-strip h2 {
  font-family: Arial, sans-serif;
}

.location-strip-inner > p {
  color: var(--muted);
}

/* Policy */
.policy-hero {
  position: relative;
  height: 450px;
  overflow: hidden;
  background: var(--green);
  color: var(--white);
}

.policy-hero-texture {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(17, 34, 29, 0.92), rgba(17, 34, 29, 0.7)), url("assets/business-studio.webp");
  background-position: center;
  background-size: cover;
}

.policy-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 60px;
}

.policy-hero-inner p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.policy-section {
  background: var(--white);
}

.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  gap: 120px;
  justify-content: center;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 118px;
  border-top: 1px solid var(--ink);
  padding-top: 18px;
}

.policy-nav > p {
  margin-bottom: 18px;
  color: var(--coral);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.policy-nav nav {
  display: grid;
}

.policy-nav a {
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  color: var(--muted);
  font-size: 12px;
}

.policy-nav a:hover {
  color: var(--coral);
}

.policy-content {
  min-width: 0;
}

.policy-intro {
  padding-bottom: 72px;
}

.policy-intro h2 {
  font-size: 38px;
}

.policy-intro p,
.policy-content section > p,
.policy-content li {
  color: var(--muted);
}

.policy-content > section {
  position: relative;
  padding: 56px 0 62px 86px;
  border-top: 1px solid var(--line);
}

.policy-number {
  position: absolute;
  top: 60px;
  left: 0;
  color: var(--coral);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.policy-content section h2 {
  margin-bottom: 24px;
  font-size: 27px;
}

.policy-content ul {
  margin-bottom: 0;
  padding-left: 1.25em;
}

.policy-content li {
  margin-bottom: 7px;
}

.operator-list {
  margin-top: 36px;
}

/* Reveal motion */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1060px) {
  h2 {
    font-size: 40px;
  }

  .site-nav a {
    padding-inline: 8px;
    font-size: 13px;
  }

  .business-layout {
    gap: 52px;
  }

  .business-visual {
    min-height: 600px;
  }

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

  .principles-heading {
    grid-column: 1 / -1;
    min-height: auto;
    border-right: 0;
    padding: 0 0 42px;
  }
}

@media (max-width: 900px) {
  .container,
  .header-inner {
    width: min(100% - 40px, var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-auto-rows: min-content;
    align-content: start;
    gap: 0;
    transform: translateX(100%);
    background: var(--white);
    color: var(--ink);
    padding: 34px 20px;
    opacity: 0;
    visibility: hidden;
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    padding: 12px 6px;
    font-size: 16px;
  }

  .site-nav a:not(.nav-contact)::after {
    display: none;
  }

  .site-nav .nav-contact {
    justify-content: center;
    margin: 24px 0 0;
    border: 0;
  }

  .hero-home {
    height: min(740px, calc(100svh - 18px));
    min-height: 650px;
  }

  .hero-home-inner {
    padding-top: 132px;
  }

  .hero-home h1 {
    font-size: 54px;
  }

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

  .editorial-grid,
  .business-layout,
  .company-preview-grid,
  .profile-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .business-visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .section-heading.horizontal {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .region-banner {
    height: 540px;
  }

  .region-content h2 {
    font-size: 48px;
  }

  .contact-band-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .service-detail {
    padding: 82px 0;
  }

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

  .workflow-line li {
    border-bottom: 1px solid var(--line);
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principles-grid article {
    min-height: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
    padding: 34px 0;
  }

  .principles-grid article span {
    margin-bottom: 20px;
  }

  .sticky-heading {
    position: static;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .policy-nav {
    position: static;
  }

  .policy-nav nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .container,
  .header-inner {
    width: calc(100% - 32px);
  }

  h2 {
    font-size: 31px;
  }

  .section {
    padding: 70px 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 19px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

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

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: initial;
  }

  .hero-home {
    height: min(710px, calc(100svh - 10px));
    min-height: 640px;
  }

  .hero-media {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(9, 20, 17, 0.94), rgba(9, 20, 17, 0.56) 88%);
  }

  .hero-home-inner {
    padding-top: 116px;
    padding-bottom: 20px;
  }

  .hero-home h1 {
    margin-bottom: 14px;
    font-size: 40px;
  }

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

  .hero-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 24px;
  }

  .button {
    min-height: 48px;
    gap: 18px;
    padding-inline: 15px;
    font-size: 13px;
  }

  .hero-capabilities {
    max-width: none;
  }

  .hero-capabilities span {
    min-height: 56px;
    display: grid;
    gap: 1px;
    align-content: center;
    padding: 9px 8px 4px 0;
    font-size: 10px;
    line-height: 1.35;
  }

  .hero-capabilities span + span {
    padding-left: 9px;
  }

  .lead-copy {
    font-size: 18px;
  }

  .business-layout {
    gap: 54px;
  }

  .business-visual {
    aspect-ratio: 4 / 3;
  }

  .section-heading.compact h2 {
    font-size: 31px;
  }

  .service-row {
    grid-template-columns: 28px minmax(0, 1fr) 24px;
    min-height: 90px;
    gap: 10px;
  }

  .service-row strong {
    font-size: 15px;
  }

  .process-section {
    padding-bottom: 52px;
  }

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

  .process-list li,
  .process-list li:nth-child(2) {
    min-height: 0;
    border-right: 0;
    padding: 24px 0;
  }

  .process-list span {
    margin-bottom: 10px;
  }

  .region-banner {
    height: 500px;
  }

  .region-banner > img {
    object-position: 58% center;
  }

  .region-content h2 {
    font-size: 38px;
  }

  .company-facts div,
  .profile-table div,
  .operator-list div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 19px 0;
  }

  .contact-band {
    padding: 64px 0;
  }

  .contact-mail {
    min-height: 68px;
    font-size: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }

  .copyright {
    margin-top: 4px;
  }

  .page-hero.image-hero {
    height: 500px;
  }

  .page-hero.image-hero > img {
    object-position: 52% center;
  }

  .company-hero.page-hero.image-hero > img {
    object-position: 58% center;
  }

  .page-hero-content {
    padding-bottom: 48px;
  }

  .page-hero-content h1,
  .policy-hero h1 {
    font-size: 42px;
  }

  .page-hero-content p:last-child {
    font-size: 15px;
  }

  .service-detail {
    padding: 68px 0;
  }

  .service-detail-grid {
    gap: 30px;
  }

  .scope-list {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .workflow-line {
    grid-template-columns: 1fr;
  }

  .workflow-line li {
    min-height: 0;
    border-right: 0;
    padding: 18px 0;
  }

  .workflow-line b {
    margin-bottom: 6px;
  }

  .principles-section {
    padding: 70px 0;
  }

  .location-strip-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .policy-hero {
    height: 400px;
  }

  .policy-nav nav {
    grid-template-columns: 1fr;
  }

  .policy-content > section {
    padding: 72px 0 52px;
  }

  .policy-number {
    top: 42px;
  }

  .policy-content section h2 {
    font-size: 23px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
