@charset "UTF-8";

:root {
  --ink: #10110f;
  --ink-soft: #1b1c19;
  --paper: #f4f1e9;
  --paper-deep: #e7e1d6;
  --white: #fff;
  --signal: #e64b2e;
  --signal-dark: #be321c;
  --muted: #74766f;
  --line: rgba(16, 17, 15, .18);
  --line-light: rgba(255, 255, 255, .2);
  --shell: min(1240px, calc(100vw - 96px));
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header: 84px;
  --section: clamp(88px, 10vw, 156px);
  --type-home-hero: clamp(29px, calc(14.8px + 3.85vw), 70px);
  --type-page-hero: clamp(36px, calc(22.6px + 3.44vw), 72px);
  --type-service-hero: clamp(31px, calc(18.7px + 3.15vw), 64px);
  --type-section-title: clamp(30px, calc(21.8px + 2.1vw), 52px);
  --type-feature-title: clamp(26px, calc(20.8px + 1.34vw), 40px);
  --type-contact-title: clamp(32px, calc(20.9px + 2.85vw), 62px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--signal);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: var(--section);
}

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

.section--warm {
  background: var(--paper-deep);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: skewX(-24deg);
}

.eyebrow--light {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 246px;
  padding: 14px 27px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.4;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.button span {
  font-size: 19px;
  transition: transform .25s var(--ease);
}

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

.button:hover span {
  transform: translateX(5px);
}

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

.button--signal:hover {
  background: var(--signal-dark);
}

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

.button--dark:hover {
  background: var(--signal);
}

.button--outline-light {
  color: var(--white);
  border-color: var(--line-light);
  background: transparent;
}

.button--outline-light:hover {
  border-color: var(--signal);
  background: var(--signal);
}

.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding-block: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.text-link span,
.arrow-link span {
  transition: transform .25s var(--ease);
}

.text-link:hover span,
.arrow-link:hover span {
  transform: translateX(6px);
}

.text-link--light,
.arrow-link--light {
  color: var(--white);
}

.lead-serif {
  margin: 0 0 30px;
  font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
  font-size: clamp(21px, 2.1vw, 31px);
  line-height: 1.65;
}

.note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  background: rgba(16, 17, 15, .94);
  transition: background .3s ease, height .3s ease, transform .3s ease;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(16, 17, 15, .98);
}

.admin-bar .site-header {
  top: var(--admin-offset, 32px);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: stretch;
  padding-left: 34px;
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  align-self: center;
  color: var(--white);
}

.site-brand__mark {
  display: grid;
  width: 35px;
  height: 39px;
  place-items: center;
  color: var(--white);
  background: var(--signal);
  font-family: Arial, sans-serif;
  font-size: 29px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.site-brand__logo {
  display: grid;
  width: 112px;
  height: 34px;
  place-items: center;
  padding: 6px 10px;
  overflow: hidden;
  background: var(--white);
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.site-brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-brand__words {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-brand__words strong {
  font-size: 14px;
  font-style: normal;
  letter-spacing: .1em;
}

.site-brand__words small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .55);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .16em;
}

.site-brand__words i {
  color: rgba(255, 255, 255, .55);
  font-style: normal;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: stretch;
  justify-content: flex-end;
  margin-left: auto;
}

.site-nav__head,
.site-nav__mobile-contact {
  display: none;
}

.site-nav__list {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0 24px;
  list-style: none;
}

.site-nav__list > li {
  position: relative;
  display: flex;
}

.site-nav__list > li > a {
  display: flex;
  align-items: center;
  padding: 0 clamp(10px, 1.3vw, 21px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: color .2s ease;
}

.site-nav__list > li > a:hover,
.site-nav__list > .current-menu-item > a,
.site-nav__list > .current-menu-ancestor > a {
  color: var(--signal);
}

.site-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  width: 300px;
  margin: 0;
  padding: 13px 20px 18px;
  color: var(--white);
  border-top: 2px solid var(--signal);
  background: rgba(16, 17, 15, .98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .3s var(--ease);
}

.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.site-nav .sub-menu li {
  border-bottom: 1px solid var(--line-light);
}

.site-nav .sub-menu a {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
}

.site-nav .sub-menu a::after {
  color: var(--signal);
  content: "→";
}

.site-header__contact {
  display: flex;
  width: 154px;
  flex: 0 0 154px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--signal);
  line-height: 1;
  transition: background .2s ease;
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%);
}

.site-header__contact:hover {
  background: var(--signal-dark);
}

.site-header__contact span {
  font-size: 14px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: .12em;
}

.site-header__contact small {
  margin-top: 8px;
  font-size: 9px;
  letter-spacing: .08em;
}

.menu-toggle,
.nav-scrim {
  display: none;
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.home-hero__slides,
.home-hero__slide,
.home-hero__shade {
  position: absolute;
  inset: 0;
}

.home-hero__slide {
  opacity: 0;
  transform: scale(1.045);
  transition: opacity .9s ease, transform 6s linear;
}

.home-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero__slide:nth-child(2) img {
  object-position: center 38%;
}

.home-hero__shade {
  background:
    linear-gradient(90deg, rgba(10, 11, 9, .86) 0, rgba(10, 11, 9, .44) 50%, rgba(10, 11, 9, .12) 75%),
    linear-gradient(0deg, rgba(10, 11, 9, .5) 0, transparent 40%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: max(720px, 100svh);
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header);
}

.home-hero__kicker {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
}

.home-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
  font-size: var(--type-home-hero);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.26;
  text-wrap: balance;
}

.home-hero h1::after {
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 19px;
  background: var(--signal);
  content: "";
  transform: skewX(-28deg);
  transform-origin: left center;
}

.home-hero h1 span {
  display: inline;
  padding: 0;
}

.home-hero__copy {
  max-width: 680px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 400;
  letter-spacing: .035em;
  line-height: 1.9;
}

.home-hero__copy--mobile {
  display: none;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-top: 34px;
}

.home-hero__actions .button {
  min-width: 226px;
}

.home-hero__actions .text-link {
  gap: 28px;
}

.home-hero__index {
  position: absolute;
  z-index: 3;
  right: 44px;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.home-hero__index i {
  position: relative;
  width: 80px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .4);
}

.home-hero__index i::after {
  position: absolute;
  inset: 0;
  width: 50%;
  background: var(--signal);
  content: "";
  transition: transform .5s var(--ease);
}

.home-hero__index.is-second i::after {
  transform: translateX(100%);
}

.home-hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  transform: rotate(90deg);
  transform-origin: left bottom;
}

.home-hero__scroll i {
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, .6);
}

.signal-strip {
  overflow: hidden;
  color: var(--white);
  background: var(--signal);
  transform: translateZ(0);
}

.signal-strip__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 16px 0;
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: .18em;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.signal-strip__track::after {
  content: "CAR SALES • INSPECTION • MAINTENANCE • DENT REPAIR • BODY & PAINT • COATING • INSURANCE • RENTAL CAR •";
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* About */
.home-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr);
  gap: 11vw;
  align-items: start;
}

.home-about__heading h2,
.section-heading h2,
.services__head h2,
.flow-teaser__head h2,
.news-section__head h2,
.access-preview__info h2,
.page-intro h2,
.service-lead h2,
.service-process h2,
.company-message h2,
.history h2,
.company-profile h2,
.contact-options h2,
.form-layout__aside h2,
.legal aside h2 {
  margin: 0;
  font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
  font-size: var(--type-section-title);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.36;
  max-width: 100%;
  overflow-wrap: anywhere;
  line-break: strict;
  text-wrap: balance;
}

.home-about__body {
  padding-top: 51px;
}

.home-about__body > p:not(.lead-serif) {
  margin: 0 0 36px;
  color: #464842;
}

.home-about__visual {
  position: relative;
  width: min(100%, 1180px);
  margin: 64px auto 0;
}

.home-about__visual > img {
  width: 100%;
  height: min(46vw, 600px);
  object-fit: cover;
}

.home-about__stat {
  position: absolute;
  bottom: -44px;
  left: 0;
  display: flex;
  min-width: 330px;
  min-height: 170px;
  align-items: center;
  gap: 25px;
  padding: 28px 38px;
  color: var(--white);
  background: var(--signal);
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

.home-about__stat strong {
  font-size: 78px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.08em;
  line-height: 1;
}

.home-about__stat sup {
  font-size: 28px;
}

.home-about__stat span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.55;
}

/* Services */
.services {
  margin-top: 65px;
}

.services__head,
.flow-teaser__head,
.news-section__head {
  display: grid;
  grid-template-columns: 1fr minmax(300px, .58fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 80px;
}

.services__head > p,
.flow-teaser__head > p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .68);
}

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

.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--white);
}

.service-card__image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  background: var(--ink-soft);
}

.service-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .45), transparent 45%);
  content: "";
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75);
  transition: filter .5s ease, transform .8s var(--ease);
}

.service-card:hover .service-card__image img {
  filter: saturate(1);
  transform: scale(1.045);
}

.service-card__body {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 115px;
}

.service-card__number {
  color: var(--signal);
  font-size: 13px;
  font-weight: 800;
}

.service-card__body small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.service-card__body h3 {
  margin: 0;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 600;
  letter-spacing: .03em;
}

.service-card__body i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-style: normal;
  transition: color .25s ease, background .25s ease, transform .25s var(--ease);
}

.service-card:hover .service-card__body i {
  color: var(--white);
  background: var(--signal);
  transform: rotate(45deg);
}

.section-end-link {
  display: flex;
  justify-content: center;
  margin-top: 78px;
}

/* Reasons */
.section-heading {
  max-width: 760px;
  margin-bottom: 82px;
}

.section-heading > p:last-child {
  max-width: 520px;
  margin: 29px 0 0;
  color: var(--muted);
}

.section-heading--light > p:last-child {
  color: rgba(255, 255, 255, .62);
}

.reason-list {
  display: grid;
  gap: 126px;
}

.reason {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  column-gap: 38px;
  row-gap: 30px;
  align-items: start;
}

.reason__number {
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: stretch;
  padding-top: 12px;
  color: var(--signal);
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
}

.reason__image {
  grid-column: 2;
  grid-row: 2;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.reason__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason__body {
  grid-column: 2;
  grid-row: 1;
  padding: 0;
}

.reason__body small {
  color: var(--signal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

.reason__body h3 {
  margin: 15px 0 0;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: var(--type-feature-title);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.4;
  text-wrap: balance;
}

.reason__copy {
  grid-column: 2;
  grid-row: 3;
  margin: 0;
  color: #555750;
}

/* Flow teaser */
.flow-teaser__head > p {
  color: var(--muted);
}

.mini-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 0 55px;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.mini-flow li {
  position: relative;
  min-height: 198px;
  padding: 25px 24px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.mini-flow li + li {
  border-left: 1px solid rgba(16, 17, 15, .2);
}

.mini-flow li:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -7px;
  width: 13px;
  height: 13px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  background: var(--paper-deep);
  content: "";
  transform: rotate(45deg);
}

.mini-flow span {
  display: block;
  margin-bottom: 51px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 800;
}

.mini-flow strong,
.mini-flow small {
  display: block;
}

.mini-flow strong {
  margin-bottom: 7px;
  font-size: 16px;
}

.mini-flow small {
  color: var(--muted);
  font-size: 11px;
}

/* People */
.people__grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(380px, .75fr);
  gap: 10vw;
  align-items: center;
}

.people__visual {
  position: relative;
}

.people__visual > img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center 22%;
}

.people__visual > p {
  position: absolute;
  right: -28px;
  bottom: 55px;
  margin: 0;
  padding: 21px 29px;
  color: var(--white);
  background: var(--signal);
  font-size: 22px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: .08em;
  line-height: 1.15;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.people__visual > p span {
  font-size: 9px;
  letter-spacing: .16em;
}

.people__body h2 {
  margin: 0 0 36px;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: var(--type-section-title);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.36;
  text-wrap: balance;
}

.people__body > p:not(.eyebrow, .lead-serif, .people__signature) {
  color: #555750;
}

.people__signature {
  margin: 38px 0;
  font-size: 12px;
}

.people__signature strong {
  margin-left: 12px;
  font-family: "Yu Mincho", serif;
  font-size: 22px;
}

/* News */
.news-section__head {
  align-items: end;
}

.news-section__head h2 {
  font-size: clamp(34px, calc(24.3px + 2.48vw), 60px);
}

.news-section__head > .arrow-link {
  justify-self: end;
}

.news-list {
  border-top: 1px solid var(--line-light);
}

.news-row {
  display: grid;
  grid-template-columns: 115px 100px 1fr 30px;
  gap: 24px;
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid var(--line-light);
  transition: padding .25s var(--ease), background .25s ease;
}

.news-row:hover {
  padding-inline: 14px;
  background: rgba(255, 255, 255, .04);
}

.news-row time,
.news-row > span {
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.news-row > span {
  color: var(--signal);
}

.news-row h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.news-row i {
  font-style: normal;
}

.news-empty {
  padding: 40px 0;
  color: rgba(255, 255, 255, .55);
}

/* Access */
.access-preview__grid,
.access-main__grid {
  display: grid;
  grid-template-columns: minmax(360px, .7fr) minmax(0, 1.2fr);
  gap: 8vw;
  align-items: stretch;
}

.access-preview__info {
  padding-block: 20px;
}

.access-preview__place {
  white-space: nowrap;
}

.access-preview__info dl {
  margin: 45px 0;
  border-top: 1px solid var(--line);
}

.access-preview__info dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.access-preview__info dt,
.access-data dt {
  color: var(--signal);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.access-preview__info dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.access-preview__map,
.access-main__map {
  min-height: 560px;
  overflow: hidden;
  background: #d4d0c7;
}

.access-preview__map iframe,
.access-main__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: none;
}

/* Lower page hero */
.page-hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 11, 9, .86), rgba(10, 11, 9, .26) 70%);
  content: "";
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 600px;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: 160px 76px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Times New Roman", "Yu Mincho", serif;
  max-width: 100%;
  font-size: var(--type-page-hero);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.16;
  overflow-wrap: anywhere;
  line-break: strict;
  text-wrap: balance;
}

.page-hero__lead {
  max-width: 650px;
  margin: 26px 0 0;
  font-size: 16px;
  letter-spacing: .04em;
}

.page-hero__number {
  position: absolute;
  right: 0;
  bottom: -54px;
  color: rgba(255, 255, 255, .1);
  font-size: 210px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.breadcrumbs {
  display: flex;
  overflow: hidden;
  gap: 12px;
  align-items: center;
  padding-block: 20px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  white-space: nowrap;
}

.breadcrumbs span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-intro__grid,
.service-lead__grid,
.service-process__grid,
.company-profile__grid,
.price-note__grid,
.bring-list__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  gap: 10vw;
}

.page-intro__grid > div:last-child > p:not(.lead-serif),
.service-lead__grid > div:last-child > p:not(.lead-serif) {
  color: #555750;
}

/* Service index */
.service-index__list {
  border-top: 1px solid var(--line-light);
}

.service-index__row {
  display: grid;
  grid-template-columns: 60px 240px 1fr 48px;
  gap: 35px;
  align-items: center;
  min-height: 215px;
  border-bottom: 1px solid var(--line-light);
  transition: background .25s ease, padding .3s var(--ease);
}

.service-index__row:hover {
  padding-inline: 20px;
  background: rgba(255, 255, 255, .04);
}

.service-index__number {
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
}

.service-index__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-index__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7);
  transition: transform .6s var(--ease), filter .4s ease;
}

.service-index__row:hover img {
  filter: saturate(1);
  transform: scale(1.04);
}

.service-index__text small {
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.service-index__text h2 {
  margin: 8px 0 12px;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.3;
}

.service-index__text p {
  margin: 0;
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
}

.service-index__row > i {
  font-size: 23px;
  font-style: normal;
}

.info-panel {
  padding: clamp(30px, 5vw, 58px);
  border-left: 3px solid var(--signal);
  background: var(--white);
}

.info-panel h3 {
  margin: 0 0 20px;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 28px;
  font-weight: 500;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 36px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li::before {
  position: absolute;
  top: .75em;
  left: 0;
  width: 11px;
  height: 2px;
  background: var(--signal);
  content: "";
  transform: skewX(-25deg);
}

.check-list--large {
  gap: 23px;
  margin-top: 0;
}

/* Service detail */
.service-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.service-hero__media,
.service-hero__shade {
  position: absolute;
  inset: 0;
}

.service-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero__shade {
  background: linear-gradient(90deg, rgba(10, 11, 9, .86), rgba(10, 11, 9, .12) 80%), linear-gradient(0deg, rgba(10, 11, 9, .45), transparent 50%);
}

.service-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 720px;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: 170px 78px;
}

.service-hero__number {
  position: absolute;
  top: 155px;
  right: 0;
  color: rgba(255, 255, 255, .17);
  font-size: 190px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.service-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Times New Roman", "Yu Mincho", serif;
  max-width: 100%;
  font-size: var(--type-service-hero);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.22;
  overflow-wrap: anywhere;
  line-break: strict;
  text-wrap: balance;
}

.service-hero__term {
  display: inline-block;
  white-space: nowrap;
}

.service-hero__inner > p:last-child {
  max-width: 620px;
  margin: 25px 0 0;
  font-size: 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 8px 13px;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
}

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

.point-card {
  position: relative;
  min-height: 310px;
  padding: 38px;
  border-top: 3px solid var(--signal);
  background: var(--white);
}

.point-card > span {
  display: block;
  margin-bottom: 55px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
}

.point-card h3 {
  margin: 0 0 18px;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.45;
}

.point-card p {
  margin: 0;
  color: #5d5f58;
  font-size: 14px;
}

.service-process__grid {
  align-items: start;
}

.service-process__grid > div > p:not(.eyebrow) {
  max-width: 480px;
  color: var(--muted);
}

.service-process__grid .arrow-link {
  margin-top: 22px;
}

.compact-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.compact-steps li {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.compact-steps span {
  color: var(--signal);
  font-size: 11px;
  font-weight: 800;
}

.compact-steps strong {
  font-size: 15px;
}

.compact-steps small {
  color: var(--muted);
  font-size: 11px;
}

.service-pager,
.post-navigation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 130px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.service-pager > a,
.post-navigation > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 4vw;
  transition: color .2s ease, background .2s ease;
}

.service-pager > a:hover,
.post-navigation > a:hover {
  color: var(--white);
  background: var(--signal);
}

.service-pager > a:nth-child(2),
.post-navigation > a:nth-child(2) {
  align-items: center;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.service-pager > a:last-child,
.post-navigation > a:last-child {
  align-items: flex-end;
  text-align: right;
}

.service-pager small,
.post-navigation small {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .14em;
}

/* Company */
.company-message__grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(340px, .58fr);
  gap: 10vw;
  align-items: center;
}

.company-message__copy > p:not(.eyebrow, .lead-serif) {
  color: #555750;
}

.company-message__portrait {
  position: relative;
}

.company-message__portrait::before {
  position: absolute;
  z-index: -1;
  top: 42px;
  right: -34px;
  width: 70%;
  height: 92%;
  background: var(--signal);
  content: "";
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.company-message__portrait img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center 20%;
}

.signature {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  margin-top: 42px;
}

.signature small {
  font-size: 11px;
}

.signature strong {
  font-family: "Yu Mincho", serif;
  font-size: 28px;
  font-weight: 500;
}

.company-message__interview-link {
  max-width: 100%;
  min-height: 44px;
  margin-top: 22px;
}

.philosophy > .shell {
  display: grid;
}

.philosophy__statement {
  display: grid;
  grid-template-columns: 90px minmax(320px, .75fr) minmax(300px, .55fr);
  gap: 5vw;
  align-items: start;
  padding: 64px 0;
  border-top: 1px solid var(--line-light);
}

.philosophy__statement:last-child {
  border-bottom: 1px solid var(--line-light);
}

.philosophy__statement > span {
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
}

.philosophy__statement h2 {
  margin: 0;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(29px, calc(21.2px + 2vw), 50px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.38;
  text-wrap: balance;
}

.philosophy__statement p {
  margin: 0;
  color: rgba(255, 255, 255, .6);
}

.history__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  gap: 9vw;
  align-items: center;
}

.history__image {
  position: relative;
}

.history__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 75, 46, .12), transparent);
  content: "";
}

.history__image img {
  width: 100%;
  filter: sepia(.18) contrast(.95);
}

.history__body > p:not(.eyebrow) {
  color: #555750;
}

.history__year {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 45px;
}

.history__year strong {
  font-size: 17px;
  font-style: italic;
}

.history__year i {
  flex: 1;
  height: 2px;
  background: var(--signal);
}

.data-table {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.data-table > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.data-table dt {
  color: var(--signal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.data-table dd {
  margin: 0;
  font-size: 14px;
}

.data-table small {
  color: var(--muted);
}

/* Flow full */
.full-flow__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.full-flow__item {
  display: grid;
  grid-template-columns: 80px 150px 1fr;
  gap: 36px;
  align-items: start;
  padding: 55px 0;
  border-top: 1px solid var(--line);
}

.full-flow__item:last-child {
  border-bottom: 1px solid var(--line);
}

.full-flow__number {
  color: var(--signal);
  font-size: 48px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.06em;
  line-height: 1;
}

.full-flow__label {
  padding-top: 9px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.full-flow__body {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(300px, 1fr);
  gap: 6vw;
}

.full-flow__body h2 {
  margin: 0;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 31px;
  font-weight: 500;
}

.full-flow__body p {
  margin: 0;
  color: #555750;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, .42fr) minmax(0, 1fr);
  gap: 9vw;
  align-items: start;
}

.faq-layout__aside {
  position: sticky;
  top: calc(var(--header) + 40px);
}

.faq-layout__aside h2 {
  margin: 0 0 25px;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(32px, 3.4vw, 47px);
  font-weight: 500;
  line-height: 1.4;
}

.faq-layout__aside > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-layout__aside .button {
  margin-top: 25px;
}

.accordion {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  gap: 20px;
  align-items: center;
  min-height: 112px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary > span,
.faq-item__answer > span {
  color: var(--signal);
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
}

.faq-item summary strong {
  font-size: 16px;
}

.faq-item summary i {
  position: relative;
  width: 28px;
  height: 28px;
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item__answer {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 0 48px 38px 0;
}

.faq-item__answer p {
  margin: 0;
  color: #555750;
}

/* Access detail */
.access-main__info {
  padding: 35px 0;
}

.access-main__info h2 {
  margin: 0;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(34px, calc(28.8px + 1.33vw), 48px);
  font-weight: 500;
  text-wrap: balance;
}

.access-data {
  margin: 42px 0 25px;
  border-top: 1px solid var(--ink);
}

.access-data > div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 25px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.access-data dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.access-main__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 35px;
}

/* Contact form */
.contact-options__intro {
  margin-bottom: 65px;
}

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

.contact-option {
  position: relative;
  display: grid;
  min-height: 285px;
  padding: 40px 46px;
  color: var(--white);
  background: var(--ink);
  transition: background .25s ease, transform .3s var(--ease);
}

.contact-option:hover {
  background: var(--signal);
  transform: translateY(-5px);
}

.contact-option--line {
  background: #176b4d;
}

.contact-option small {
  font-size: 11px;
}

.contact-option > span {
  align-self: end;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: .18em;
}

.contact-option strong {
  font-size: clamp(30px, 4vw, 55px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.2;
}

.contact-option p {
  margin: 3px 0 0;
  font-size: 12px;
}

.contact-option i {
  position: absolute;
  right: 35px;
  bottom: 33px;
  font-size: 24px;
  font-style: normal;
}

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

.form-layout__aside {
  position: sticky;
  top: calc(var(--header) + 40px);
}

.form-layout__aside > p:not(.eyebrow) {
  color: var(--muted);
}

.form-layout__aside ul {
  display: grid;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.form-layout__aside li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
}

.form-layout__aside li span {
  margin-right: 16px;
  color: var(--signal);
  font-size: 9px;
  font-weight: 800;
}

.contact-form-wrap {
  padding: clamp(35px, 6vw, 72px);
  background: var(--white);
}

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

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

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

.form-field > span {
  font-size: 12px;
  font-weight: 700;
}

.form-field b {
  margin-left: 8px;
  padding: 3px 6px;
  color: var(--white);
  background: var(--signal);
  font-size: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 56px;
  padding: 13px 16px;
  border: 1px solid #d2d0ca;
  border-radius: 0;
  background: #faf9f6;
  font-size: 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--signal);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(230, 75, 46, .15);
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
}

.form-consent input {
  width: 19px;
  height: 19px;
  margin: 3px 0 0;
  accent-color: var(--signal);
}

.form-consent a {
  color: var(--signal);
  border-bottom: 1px solid;
}

.form-submit {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px;
  color: var(--white);
  border: 0;
  background: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: background .25s ease;
}

.form-submit:hover {
  background: var(--signal);
}

.form-submit i {
  font-size: 20px;
  font-style: normal;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

.form-notice {
  margin-bottom: 35px;
  padding: 23px 26px;
  border-left: 4px solid var(--signal);
  background: #f4eee9;
}

.form-notice--success {
  border-color: #176b4d;
  background: #e9f4ee;
}

.form-notice strong {
  display: block;
  margin-bottom: 4px;
}

.form-notice p {
  margin: 0;
  font-size: 13px;
}

/* Legal / generic content */
.legal__layout {
  display: grid;
  grid-template-columns: minmax(260px, .4fr) minmax(0, 1fr);
  gap: 9vw;
  align-items: start;
}

.legal aside {
  position: sticky;
  top: calc(var(--header) + 40px);
}

.legal__body {
  max-width: 800px;
}

.legal__body > p:first-child {
  margin-top: 0;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.legal__body section {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.legal__body h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.legal__body p {
  margin: 0;
  color: #555750;
}

.legal__date {
  margin-top: 35px !important;
  font-size: 12px;
}

.entry-content-wrap {
  background: var(--white);
}

.entry-content {
  width: min(760px, 100%);
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2 {
  margin: 2.4em 0 .9em;
  padding-bottom: .45em;
  border-bottom: 2px solid var(--ink);
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.45;
  overflow-wrap: anywhere;
  line-break: strict;
  text-wrap: balance;
}

.entry-content h3 {
  margin: 2.1em 0 .8em;
  padding-left: 17px;
  border-left: 3px solid var(--signal);
  font-size: 21px;
  overflow-wrap: anywhere;
  line-break: strict;
  text-wrap: balance;
}

.entry-content p,
.entry-content li {
  color: #444640;
  line-height: 2;
}

.entry-content a {
  color: var(--signal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content .media-article__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, 480px);
  min-height: 62px;
  margin-top: 24px;
  padding: 17px 22px;
  color: var(--white);
  background: var(--signal);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
  text-decoration: none;
  transition: background .25s var(--ease);
}

.entry-content .media-article__link:hover {
  color: var(--white);
  background: var(--signal-dark);
}

.entry-content .media-article__link:focus-visible {
  outline-offset: 4px;
}

.entry-content .media-article__link span {
  flex: 0 0 auto;
  font-size: 18px;
}

.entry-content .media-article__note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.entry-content img {
  margin-block: 35px;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 14px 16px;
  border: 1px solid var(--line);
  text-align: left;
}

.entry-content th {
  color: var(--white);
  background: var(--ink);
}

/* Archive / post */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 65px;
}

.category-filter a {
  min-width: 100px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: center;
}

.category-filter a:hover,
.category-filter a.is-active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 65px 30px;
}

.post-card__image {
  display: block;
  aspect-ratio: 1.91 / 1;
  overflow: hidden;
  background: #d8d4cb;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.post-card:hover .post-card__image img {
  transform: scale(1.04);
}

.post-card__meta {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.post-card__meta span {
  color: var(--signal);
}

.post-card h2 {
  margin: 12px 0 14px;
  font-size: 17px;
  line-height: 1.65;
}

.post-card > p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.post-card .arrow-link {
  font-size: 9px;
}

.navigation.pagination {
  margin-top: 75px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
}

.page-numbers.current,
.page-numbers:hover {
  color: var(--white);
  border-color: var(--signal);
  background: var(--signal);
}

.single-hero {
  padding: calc(var(--header) + 100px) 0 85px;
  color: var(--white);
  background: var(--ink);
}

.single-hero__inner {
  width: min(980px, var(--shell));
}

.single-hero__meta {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.single-hero__meta span {
  color: var(--signal);
}

.single-hero h1 {
  margin: 0;
  font-family: "Times New Roman", "Yu Mincho", serif;
  max-width: 100%;
  font-size: clamp(30px, calc(21.8px + 2.1vw), 52px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.45;
  overflow-wrap: anywhere;
  line-break: strict;
  text-wrap: balance;
}

.single__featured {
  width: min(1100px, var(--shell));
  margin-top: 55px;
}

.single__featured img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.single__layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 1fr);
  gap: 7vw;
  align-items: start;
  padding-block: 90px var(--section);
}

.single__aside {
  position: sticky;
  top: calc(var(--header) + 35px);
  padding: 28px;
  color: var(--white);
  background: var(--ink);
}

.single__aside > p {
  margin: 0 0 18px;
  color: var(--signal);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.single__aside h2 {
  margin: 0 0 25px;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.single__aside .button {
  min-width: 0;
  width: 100%;
}

/* Contact band + footer */
.contact-stage {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-deep);
}

.contact-stage__backdrop {
  position: absolute;
  inset: 0;
  opacity: .2;
  background: url("../images/hero-garage.webp") center / cover;
  filter: grayscale(1);
}

.contact-stage__backdrop::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--paper-deep) 0%, rgba(231, 225, 214, .94) 48%, rgba(231, 225, 214, .7) 100%);
  content: "";
}

.contact-stage__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(90px, 10vw, 150px);
}

.contact-stage h2 {
  margin: 0;
  font-family: "Times New Roman", "Yu Mincho", serif;
  max-width: 100%;
  font-size: var(--type-contact-title);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.28;
  overflow-wrap: anywhere;
  line-break: strict;
  text-wrap: balance;
}

.contact-stage .eyebrow {
  color: var(--signal);
}

.contact-stage__inner > p:not(.eyebrow) {
  margin: 30px 0 48px;
  color: rgba(16, 17, 15, .7);
}

.contact-stage__actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 22px 55px rgba(16, 17, 15, .1);
}

.contact-action {
  position: relative;
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 34px;
  background: rgba(255, 255, 255, .82);
  transition: filter .25s ease;
}

.contact-action + .contact-action {
  border-left: 0;
}

.contact-action:hover {
  filter: brightness(.92);
}

.contact-action small {
  margin-bottom: 10px;
  color: rgba(16, 17, 15, .55);
  font-size: 9px;
  letter-spacing: .12em;
}

.contact-action strong {
  font-size: clamp(25px, 2.7vw, 38px);
  line-height: 1.2;
}

.contact-action span {
  margin-top: 8px;
  font-size: 10px;
}

.contact-action--line {
  color: var(--white);
  background: #176b4d;
}

.contact-action--form {
  color: var(--white);
  background: var(--signal);
}

.contact-action--line small,
.contact-action--form small {
  color: rgba(255, 255, 255, .7);
}

.site-footer {
  padding: 85px 0 26px;
  color: var(--white);
  border-top: 4px solid var(--signal);
  background: #141510;
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line-light);
}

.site-brand--footer .site-brand__mark {
  width: 47px;
  height: 53px;
  font-size: 39px;
}

.site-brand--footer .site-brand__logo {
  width: 190px;
  height: 52px;
  padding: 8px 16px;
}

.site-brand--footer .site-brand__words strong {
  font-size: 18px;
}

.site-footer__address {
  text-align: right;
}

.site-footer__address p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  padding: 50px 0 65px;
}

.footer-nav,
.site-footer .site-nav__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 16px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a,
.site-footer .site-nav__list a,
.site-footer__external a {
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  font-weight: 600;
}

.footer-nav a:hover,
.site-footer .site-nav__list a:hover,
.site-footer__external a:hover {
  color: var(--signal);
}

.site-footer__external {
  display: grid;
  gap: 13px;
  justify-items: end;
}

.site-footer__bottom {
  display: flex;
  gap: 28px;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, .38);
  font-size: 9px;
  letter-spacing: .08em;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom .to-top {
  margin-left: auto;
  color: var(--white);
}

.mobile-quick {
  display: none;
}

.error-page {
  display: grid;
  min-height: 78svh;
  place-items: center;
  padding: calc(var(--header) + 80px) 0 90px;
  color: var(--white);
  background: var(--ink);
}

.error-page h1 {
  margin: 0 0 25px;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(42px, calc(26.4px + 4vw), 84px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.1;
  text-wrap: balance;
}

/* Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .8s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 56px, 980px);
  }

  .site-nav__list {
    padding-inline: 10px;
  }

  .site-nav__list > li > a {
    padding-inline: 10px;
    font-size: 12px;
  }

  .site-header__contact {
    width: 135px;
    flex-basis: 135px;
  }

  .reason {
    grid-template-columns: 55px minmax(0, 1fr);
  }

  .service-index__row {
    grid-template-columns: 45px 190px 1fr 35px;
    gap: 24px;
  }
}

@media (max-width: 980px) {
  :root {
    --header: 68px;
  }

  html {
    overflow-x: clip;
  }

  body {
    overflow-x: clip;
  }

  body.is-nav-open {
    position: fixed;
    top: var(--nav-scroll-offset, 0);
    right: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
  }

  .site-header {
    height: var(--header);
    border-bottom: 2px solid var(--signal);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header__inner {
    justify-content: space-between;
    padding: 0 13px 0 18px;
  }

  .site-brand {
    min-height: 44px;
  }

  .site-brand__mark {
    width: 30px;
    height: 34px;
    font-size: 25px;
  }

  .site-brand__logo {
    width: 94px;
    height: 29px;
    padding: 5px 8px;
  }

  .site-brand__words strong {
    font-size: 11px;
  }

  .site-brand__words small {
    display: none;
  }

  .site-header__contact {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 52px;
    height: 100%;
    place-content: center;
    padding: 0;
    color: var(--white);
    border: 0;
    background: transparent;
    cursor: pointer;
  }

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

  .menu-toggle b {
    display: block;
    margin-top: 4px;
    font-size: 7px;
    letter-spacing: .13em;
  }

  .site-nav {
    position: fixed;
    z-index: 1002;
    inset: var(--header) 0 0;
    display: block;
    overflow-y: auto;
    padding: 25px 22px 110px;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity .3s ease, transform .45s var(--ease);
  }

  .admin-bar .site-nav {
    top: calc(var(--header) + var(--admin-offset, 32px));
  }

  .is-nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    color: rgba(255, 255, 255, .45);
    border-bottom: 1px solid var(--line-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
  }

  .site-nav__close {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    color: var(--white);
    border: 1px solid var(--line-light);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    font-size: 23px;
  }

  .site-nav__close:focus-visible {
    border-color: var(--signal);
    border-width: 2px;
    outline: none;
  }

  .site-nav__list {
    display: block;
    padding: 13px 0;
  }

  .site-nav__list > li {
    display: block;
    border-bottom: 1px solid var(--line-light);
  }

  .site-nav__list > li > a {
    min-height: 60px;
    padding: 0 4px;
    font-family: "Times New Roman", "Yu Mincho", serif;
    font-size: 20px;
    font-weight: 500;
  }

  .site-nav .sub-menu {
    position: static;
    width: auto;
    padding: 0 0 13px 18px;
    border-top: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav .sub-menu li {
    border: 0;
  }

  .site-nav .sub-menu a {
    min-height: 44px;
    gap: 8px;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    white-space: nowrap;
  }

  .site-nav .sub-menu a::after {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .site-nav__mobile-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 19px;
  }

  .site-nav__mobile-contact a {
    display: grid;
    min-height: 54px;
    place-items: center;
    padding: 10px;
    color: var(--white);
    background: var(--signal);
    font-size: 12px;
    font-weight: 700;
  }

  .site-nav__mobile-contact a:last-child {
    background: #176b4d;
  }
}

@media (min-width: 921px) and (max-width: 960px) {
  .full-flow__body {
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
  }
}

@media (max-width: 920px) {
  :root {
    --shell: min(100% - 40px, 760px);
    --section: clamp(76px, 13vw, 112px);
  }

  html {
    scroll-padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
    font-size: 15px;
  }

  .mobile-quick {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: calc(64px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .18);
  }

  .mobile-quick a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--line-light);
    line-height: 1;
  }

  .mobile-quick a:nth-child(1) {
    background: #176b4d;
  }

  .mobile-quick a:nth-child(2) {
    background: var(--ink);
  }

  .mobile-quick a:nth-child(3) {
    background: var(--signal);
  }

  .mobile-quick b {
    font-size: 11px;
    letter-spacing: .12em;
  }

  .mobile-quick span {
    margin-top: 6px;
    font-size: 9px;
  }

  .home-hero,
  .home-hero__content {
    min-height: max(650px, 92svh);
  }

  .home-hero__content {
    justify-content: flex-end;
    padding-bottom: 82px;
  }

  .home-hero__kicker,
  .home-hero__copy--desktop,
  .home-hero__actions .button {
    display: none;
  }

  .home-hero__copy--mobile {
    display: block;
  }

  .home-hero__shade {
    background: linear-gradient(0deg, rgba(10, 11, 9, .88) 0, rgba(10, 11, 9, .42) 62%, rgba(10, 11, 9, .18));
  }

  .home-hero h1 {
    line-height: 1.32;
  }

  .home-hero__copy {
    font-size: 13px;
    line-height: 1.8;
  }

  .home-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    margin-top: 22px;
  }

  .home-hero__actions .text-link {
    width: min(100%, 240px);
    min-height: 52px;
    gap: 20px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .5);
  }

  .home-hero__index {
    right: 20px;
    bottom: 20px;
  }

  .home-hero__scroll {
    display: none;
  }

  .home-about__grid,
  .services__head,
  .flow-teaser__head,
  .people__grid,
  .access-preview__grid,
  .page-intro__grid,
  .service-lead__grid,
  .service-process__grid,
  .company-profile__grid,
  .company-message__grid,
  .history__grid,
  .price-note__grid,
  .bring-list__grid,
  .access-main__grid,
  .faq-layout,
  .form-layout,
  .legal__layout,
  .single__layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .home-about__visual {
    margin-top: 70px;
  }

  .home-about__visual > img {
    width: calc(100% - 24px);
    height: min(75vw, 520px);
  }

  .home-about__stat {
    bottom: -35px;
    min-width: 270px;
    min-height: 130px;
  }

  .home-about__stat strong {
    font-size: 60px;
  }

  .service-grid {
    gap: 52px 20px;
  }

  .reason-list {
    gap: 85px;
  }

  .reason {
    grid-template-columns: 45px 1fr;
    gap: 20px;
  }

  .reason__image {
    grid-column: 2;
    grid-row: 2;
  }

  .reason__number {
    grid-column: 1;
    grid-row: 1 / span 3;
  }

  .reason__body {
    grid-column: 2;
    grid-row: 1;
  }

  .reason__copy {
    grid-column: 2;
    grid-row: 3;
  }

  .mini-flow {
    grid-template-columns: 1fr;
  }

  .mini-flow li {
    display: grid;
    min-height: 92px;
    grid-template-columns: 44px 1fr;
    align-items: center;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .mini-flow li:first-child {
    border-top: 1px solid var(--ink);
  }

  .mini-flow li + li {
    border-left: 0;
  }

  .mini-flow li::after {
    display: none;
  }

  .mini-flow span {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .people__visual {
    width: calc(100% - 30px);
  }

  .people__visual > p {
    right: -30px;
  }

  .news-section__head {
    grid-template-columns: 1fr auto;
    gap: 20px;
  }

  .news-row {
    grid-template-columns: 90px 76px 1fr 20px;
    gap: 12px;
  }

  .access-preview__map,
  .access-main__map {
    min-height: 480px;
  }

  .page-hero,
  .page-hero__inner {
    min-height: 510px;
  }

  .page-hero__inner {
    padding-block: 130px 58px;
  }

  .page-hero__number {
    font-size: 145px;
  }

  .service-index__row {
    grid-template-columns: 38px 150px 1fr 24px;
    gap: 17px;
  }

  .service-hero,
  .service-hero__inner {
    min-height: 600px;
  }

  .service-hero__number {
    top: 125px;
    font-size: 140px;
  }

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

  .point-card {
    min-height: 0;
  }

  .point-card > span {
    margin-bottom: 35px;
  }

  .philosophy__statement {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

  .philosophy__statement p {
    grid-column: 2;
  }

  .full-flow__body {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .faq-layout__aside,
  .form-layout__aside,
  .legal aside,
  .single__aside {
    position: static;
  }

  .contact-options__grid {
    grid-template-columns: 1fr;
  }

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

  .single__layout {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 60px;
  }

  .single__content {
    width: 100%;
    min-width: 0;
  }

  .single__aside {
    display: none;
  }

  .contact-stage__actions {
    grid-template-columns: 1fr;
  }

  .contact-action {
    min-height: 120px;
  }

  .contact-action + .contact-action {
    border-top: 0;
    border-left: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__external {
    justify-items: start;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: var(--admin-offset, 46px);
  }

  .admin-bar .site-nav {
    top: calc(var(--header) + var(--admin-offset, 46px));
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 36px);
    --section: 78px;
  }

  body {
    font-size: 15px;
    line-height: 1.8;
  }

  .button {
    width: 100%;
    min-height: 56px;
    min-width: 0;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  .home-hero,
  .home-hero__content {
    min-height: max(640px, 88svh);
  }

  .home-hero__slide img {
    object-position: 61% center;
  }

  .home-hero__slide:nth-child(2) img {
    object-position: 58% center;
  }

  .home-hero__content {
    padding-bottom: 60px;
  }

  .home-hero__kicker {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .home-hero h1 {
    line-height: 1.38;
  }

  .home-hero h1::after {
    width: 48px;
    height: 2px;
    margin-top: 14px;
  }

  .home-hero__copy {
    margin-top: 16px;
  }

  .home-hero__copy br {
    display: none;
  }

  .home-hero__copy--mobile br {
    display: block;
  }

  .home-hero__actions {
    margin-top: 24px;
  }

  .home-hero__actions .button {
    width: min(100%, 286px);
  }

  .home-hero__index {
    display: none;
  }

  .signal-strip__track {
    padding-block: 12px;
    font-size: 10px;
  }

  .home-about__grid {
    gap: 38px;
  }

  .home-about__visual {
    width: calc(100% + 18px);
    margin-left: -18px;
  }

  .home-about__visual > img {
    width: 100%;
    height: 72vw;
  }

  .home-about__stat {
    right: -18px;
    bottom: -28px;
    left: auto;
    min-width: 225px;
    min-height: 105px;
    gap: 15px;
    padding: 20px 25px;
  }

  .home-about__stat strong {
    font-size: 47px;
  }

  .home-about__stat span {
    font-size: 8px;
  }

  .services {
    margin-top: 30px;
  }

  .services__head,
  .flow-teaser__head {
    display: block;
    margin-bottom: 48px;
  }

  .services__head > p,
  .flow-teaser__head > p {
    margin-top: 28px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .service-card__image {
    width: calc(100% + 36px);
    margin-left: -18px;
  }

  .service-card__body {
    min-height: 100px;
    gap: 15px;
  }

  .service-card__body h3 {
    font-size: 17px;
  }

  .reason {
    grid-template-columns: 30px 1fr;
    gap: 14px;
  }

  .reason__number {
    grid-row: 1;
  }

  .reason__image {
    width: 100%;
  }

  .reason__body {
    min-width: 0;
    grid-row: 1;
  }

  .reason__image {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .reason__copy {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .people__grid {
    gap: 76px;
  }

  .people__visual {
    width: calc(100% - 18px);
  }

  .people__visual > p {
    right: -18px;
    bottom: 25px;
    font-size: 17px;
  }

  .news-section__head {
    display: block;
  }

  .news-section__head > .arrow-link {
    margin-top: 24px;
  }

  .news-row {
    grid-template-columns: 76px 1fr 18px;
    min-height: 115px;
    padding-block: 18px;
  }

  .news-row > span {
    display: none;
  }

  .news-row h3 {
    font-size: 13px;
  }

  .access-preview__map,
  .access-main__map {
    width: calc(100% + 36px);
    min-height: 390px;
    margin-left: -18px;
  }

  .page-hero,
  .page-hero__inner {
    min-height: 460px;
  }

  .page-hero__inner {
    padding-block: 120px 45px;
  }

  .page-hero__lead {
    font-size: 13px;
  }

  .page-hero__number {
    right: 0;
    bottom: -25px;
    font-size: 100px;
  }

  .breadcrumbs {
    width: calc(100% - 30px);
    padding-block: 15px;
  }

  .service-index__row {
    grid-template-columns: 34px 1fr 28px;
    gap: 12px;
    min-height: 0;
    padding: 28px 0;
  }

  .service-index__row:hover {
    padding-inline: 0;
  }

  .service-index__image {
    grid-column: 2 / 4;
    grid-row: 1;
    aspect-ratio: 16 / 9;
  }

  .service-index__number {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: stretch;
    padding-top: 5px;
    border-right: 1px solid var(--line-light);
  }

  .service-index__text {
    grid-column: 2;
    grid-row: 2;
  }

  .service-index__text h2 {
    font-size: 24px;
  }

  .service-index__text p {
    display: none;
  }

  .service-index__row > i {
    grid-column: 3;
    grid-row: 2;
  }

  .price-note__grid,
  .page-intro__grid,
  .service-lead__grid,
  .service-process__grid,
  .company-profile__grid,
  .company-message__grid,
  .history__grid,
  .bring-list__grid {
    gap: 38px;
  }

  .info-panel {
    padding: 28px 23px;
  }

  .service-hero,
  .service-hero__inner {
    min-height: 550px;
  }

  .service-hero__inner {
    padding-block: 125px 45px;
  }

  .service-hero--sales .service-hero__media img {
    object-position: 25% center;
  }

  .service-hero__number {
    top: 100px;
    font-size: 100px;
  }

  .service-hero__inner > p:last-child {
    font-size: 13px;
  }

  .point-card {
    padding: 30px 25px;
  }

  .compact-steps li {
    grid-template-columns: 38px 1fr;
    padding: 15px 0;
  }

  .compact-steps small {
    grid-column: 2;
  }

  .service-pager,
  .post-navigation {
    grid-template-columns: 1fr 74px 1fr;
    min-height: 105px;
  }

  .service-pager > a,
  .post-navigation > a {
    padding: 15px 13px;
    font-size: 10px;
  }

  .service-pager > a:nth-child(2),
  .post-navigation > a:nth-child(2) {
    text-align: center;
  }

  .company-message__portrait {
    width: calc(100% - 18px);
  }

  .company-message__portrait::before {
    right: -18px;
  }

  .philosophy__statement {
    padding: 43px 0;
  }

  .history__image {
    width: calc(100% + 36px);
    margin-left: -18px;
  }

  .data-table > div {
    grid-template-columns: 95px 1fr;
    gap: 18px;
  }

  .full-flow__item {
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 38px 0;
  }

  .full-flow__number {
    grid-row: 1 / 3;
    font-size: 37px;
  }

  .full-flow__label {
    padding-top: 0;
  }

  .full-flow__body {
    grid-column: 2;
  }

  .full-flow__body h2 {
    font-size: 25px;
  }

  .faq-layout {
    gap: 50px;
  }

  .faq-item summary {
    grid-template-columns: 32px 1fr 24px;
    gap: 11px;
    min-height: 96px;
  }

  .faq-item summary strong {
    font-size: 14px;
  }

  .faq-item__answer {
    grid-template-columns: 32px 1fr;
    gap: 11px;
    padding-right: 0;
  }

  .access-data > div {
    grid-template-columns: 80px 1fr;
  }

  .contact-option {
    min-height: 235px;
    padding: 30px 26px;
  }

  .contact-form-wrap {
    width: calc(100% + 36px);
    margin-left: -18px;
    padding: 38px 18px;
  }

  .form-field-row {
    grid-template-columns: 1fr;
  }

  .legal__layout {
    gap: 42px;
  }

  .entry-content-wrap {
    overflow: hidden;
  }

  .entry-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .post-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .post-card__image {
    width: calc(100% + 36px);
    margin-left: -18px;
  }

  .single-hero {
    padding-block: calc(var(--header) + 60px) 55px;
  }

  .single-hero h1 {
    font-size: clamp(20px, 5.6vw, 22px);
    line-height: 1.7;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: auto-phrase;
    text-wrap: pretty;
  }

  .single__featured {
    width: 100%;
    margin-top: 0;
  }

  .single__layout {
    padding-block: 58px 85px;
  }

  .contact-stage__inner > p:not(.eyebrow) br {
    display: none;
  }

  .contact-stage h2 br {
    display: none;
  }

  .contact-action {
    min-height: 105px;
    padding: 20px 22px;
  }

  .site-footer {
    padding-top: 70px;
  }

  .site-footer__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__address {
    text-align: left;
  }

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

  .site-footer__bottom {
    flex-wrap: wrap;
  }

  .site-footer__bottom .to-top {
    margin-left: 0;
  }
}

@media (max-width: 920px) and (max-height: 640px) {
  .home-hero,
  .home-hero__content {
    min-height: 100svh;
  }

  .home-hero__content {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 920px) and (max-height: 430px) and (orientation: landscape) {
  .home-hero__kicker,
  .home-hero__copy,
  .home-hero__index {
    display: none;
  }

  .home-hero h1 {
    font-size: clamp(29px, 5vw, 34px);
    line-height: 1.2;
  }

  .home-hero h1::after {
    margin-top: 10px;
  }

  .home-hero__actions {
    align-items: center;
    flex-direction: row;
    gap: 22px;
    margin-top: 12px;
  }

  .home-hero__actions .button {
    width: auto;
    min-width: 210px;
    min-height: 50px;
    padding-block: 10px;
  }
}

@media (max-width: 360px) {
  .service-card__body {
    gap: 10px;
  }

  .service-card__body h3 {
    font-size: 16px;
    letter-spacing: 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
