:root {
  --ink: #172d3a;
  --ink-deep: #0f2029;
  --paper: #f7f4ee;
  --paper-2: #ede8df;
  --white: #fff;
  --sand: #d8bd92;
  --sand-light: #eadcc5;
  --green: #4f675f;
  --line: rgba(23, 45, 58, 0.16);
  --shadow: 0 24px 80px rgba(15, 32, 41, 0.14);
  --container: 1240px;
  --sans: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.035em;
  -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;
}

button {
  font: inherit;
}

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

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

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

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

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.mobile-only {
  display: none;
}

.notice-bar {
  position: relative;
  z-index: 110;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink-deep);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.notice-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}

.notice-bar p {
  margin: 0;
}

.notice-bar a {
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 34px;
  right: 0;
  left: 0;
  color: var(--white);
  transition: color 240ms ease, background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  color: var(--ink);
  background: rgba(247, 244, 238, 0.96);
  box-shadow: 0 12px 34px rgba(15, 32, 41, 0.1);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}

.site-header.is-scrolled .site-header__inner {
  min-height: 76px;
}

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

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 25px;
  font-style: italic;
}

.brand__text {
  display: grid;
  gap: 1px;
  line-height: 1.35;
}

.brand__text strong {
  font-family: Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.17em;
}

.brand__text small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12px;
  font-weight: 600;
}

.site-nav > a:not(.site-nav__contact) {
  position: relative;
}

.site-nav > a:not(.site-nav__contact)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 220ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__contact {
  display: grid;
  min-width: 190px;
  padding: 13px 22px;
  color: var(--ink);
  background: var(--sand-light);
  line-height: 1.35;
  transition: color 200ms ease, background 200ms ease;
}

.site-nav__contact span {
  font-size: 9px;
  letter-spacing: 0.12em;
}

.site-nav__contact strong {
  font-family: Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.site-nav__contact:hover,
.site-nav__contact:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: min(900px, calc(100vh - 34px));
  align-items: flex-end;
  color: var(--white);
  background: var(--ink-deep);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center 48%;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 23, 31, 0.8) 0%, rgba(8, 23, 31, 0.46) 45%, rgba(8, 23, 31, 0.08) 75%),
    linear-gradient(0deg, rgba(8, 23, 31, 0.48), transparent 55%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  padding-top: 190px;
  padding-bottom: 86px;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 80px;
}

.hero__eyebrow,
.eyebrow {
  margin: 0 0 24px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--sand-light);
}

.hero__eyebrow::before {
  width: 42px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6.8vw, 96px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.2);
}

.hero h1 em {
  color: var(--sand-light);
  font-style: normal;
}

.hero__lead {
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 2.1;
}

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

.button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 26px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  transition: transform 200ms ease, color 200ms ease, background 200ms ease, border-color 200ms ease;
}

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

.button--light {
  min-width: 230px;
  flex-direction: column;
  gap: 0;
  color: var(--ink);
  background: var(--sand-light);
  line-height: 1.35;
}

.button--light small {
  font-family: Arial, sans-serif;
  font-size: 17px;
  letter-spacing: 0.08em;
}

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

.button--outline {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(4px, 4px);
}

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

.hero__side {
  display: grid;
  width: 220px;
  gap: 12px;
  padding: 26px 0 4px 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.hero__side p {
  margin: 0;
  color: var(--sand-light);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
}

.hero__side span {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.8;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  right: 25px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(90deg);
  transform-origin: right bottom;
  color: rgba(255, 255, 255, 0.65);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.28em;
}

.hero__scroll span {
  width: 44px;
  height: 1px;
  background: currentColor;
}

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

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

.fact {
  display: grid;
  min-height: 152px;
  align-content: center;
  padding: 28px 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.fact:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.fact span {
  color: var(--sand);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.fact strong {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.fact small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.section {
  padding: 132px 0;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: 0.025em;
}

.section-heading .eyebrow {
  color: var(--green);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
  gap: 110px;
}

.section-heading__copy {
  padding-top: 46px;
}

.section-heading__copy p {
  margin: 0 0 22px;
  color: #455961;
  font-size: 15px;
  line-height: 2.2;
}

.section-heading--center {
  max-width: 720px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-heading--center > p:last-child {
  margin-top: 20px;
  color: #596b71;
  font-size: 14px;
}

.image-story {
  display: grid;
  margin-top: 86px;
  grid-template-columns: 1.45fr 0.75fr 0.5fr;
  grid-template-rows: 450px 180px;
  gap: 20px;
}

.image-story figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--paper-2);
}

.image-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.image-story figure:hover img {
  transform: scale(1.035);
}

.image-story__main {
  grid-row: 1 / 3;
}

.image-story__main figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 17px 25px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--serif);
  font-size: 13px;
}

.image-story__sub {
  grid-column: 2 / 4;
}

.image-story__sub figcaption {
  position: absolute;
  right: 20px;
  bottom: 14px;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.26em;
}

.image-story__note {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: start;
  padding: 28px 34px;
  color: var(--white);
  background: var(--green);
}

.image-story__note span {
  color: var(--sand-light);
  font-family: Georgia, serif;
  font-size: 22px;
}

.image-story__note p {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.9;
}

.support {
  background: var(--paper-2);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(23, 45, 58, 0.12);
}

.support-card {
  position: relative;
  display: grid;
  min-height: 370px;
  align-content: start;
  padding: 46px 50px;
  background: var(--paper);
  transition: color 300ms ease, background 300ms ease;
}

.support-card:not(.support-card--image):hover {
  color: var(--white);
  background: var(--ink);
}

.support-card__number {
  margin-bottom: 34px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 21px;
}

.support-card:hover .support-card__number {
  color: var(--sand-light);
}

.support-card__en {
  margin: 0 0 6px;
  color: #738087;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.26em;
}

.support-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
}

.support-card > p:not(.support-card__en),
.support-card > div > p:not(.support-card__en) {
  max-width: 450px;
  margin: 20px 0 0;
  color: #59686d;
  font-size: 14px;
  line-height: 2;
}

.support-card:not(.support-card--image):hover > p:not(.support-card__en) {
  color: rgba(255, 255, 255, 0.72);
}

.support-card__arrow {
  position: absolute;
  right: 42px;
  bottom: 36px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 220ms ease, border-color 220ms ease;
}

.support-card:hover .support-card__arrow {
  transform: translate(4px, -4px);
  border-color: rgba(255, 255, 255, 0.4);
}

.support-card--image {
  overflow: hidden;
  min-height: 430px;
  align-content: end;
  padding: 0;
  color: var(--white);
}

.support-card--image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(8, 23, 31, 0.9), rgba(8, 23, 31, 0.05) 74%);
}

.support-card--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.support-card--image:hover img {
  transform: scale(1.04);
}

.support-card--image > div {
  position: relative;
  z-index: 2;
  padding: 44px 50px;
}

.support-card--image .support-card__number,
.support-card--image .support-card__en,
.support-card--image > div > p:not(.support-card__en) {
  color: var(--white);
}

.support-card--image .support-card__number {
  display: block;
  margin-bottom: 14px;
}

.support-card--image > div > p:not(.support-card__en) {
  color: rgba(255, 255, 255, 0.76);
}

.support__note {
  margin: 24px 0 0;
  color: #6b787d;
  font-size: 11px;
  text-align: right;
}

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

.flow .eyebrow {
  color: var(--sand);
}

.flow .section-heading__copy p {
  color: rgba(255, 255, 255, 0.72);
}

.flow-list {
  display: grid;
  margin: 72px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.flow-list li {
  min-height: 330px;
  padding: 42px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.flow-list li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.flow-list span {
  display: block;
  margin-bottom: 42px;
  color: var(--sand);
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.flow-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.7;
}

.flow-list p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 2;
}

.promise {
  padding-bottom: 150px;
}

.promise__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: 100px;
}

.promise__visual {
  position: relative;
  min-height: 720px;
}

.promise__visual > img {
  width: 88%;
  height: 650px;
  object-fit: cover;
}

.promise__visual::before {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 78%;
  height: 80%;
  content: "";
  background: var(--sand-light);
}

.promise__visual-label {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 280px;
  padding: 34px 38px;
  color: var(--white);
  background: var(--ink);
}

.promise__visual-label span {
  display: block;
  margin-bottom: 18px;
  color: var(--sand);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
}

.promise__visual-label strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.65;
}

.promise-list {
  display: grid;
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.promise-list li {
  display: grid;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 60px 1fr;
  gap: 18px;
}

.promise-list li > span {
  padding-top: 4px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

.promise-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.promise-list p {
  margin: 9px 0 0;
  color: #59696f;
  font-size: 13px;
  line-height: 1.9;
}

.local-banner {
  position: relative;
  display: grid;
  min-height: 640px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

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

.local-banner > img {
  object-fit: cover;
  object-position: center;
}

.local-banner__shade {
  background: linear-gradient(90deg, rgba(10, 28, 38, 0.84), rgba(10, 28, 38, 0.36));
}

.local-banner__content {
  position: relative;
  z-index: 2;
}

.local-banner__content .eyebrow {
  color: var(--sand-light);
}

.local-banner h2 {
  margin: 0 0 40px;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.45;
}

.faq {
  background: var(--paper-2);
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: 100px;
}

.faq__layout .section-heading {
  position: sticky;
  top: 120px;
}

.faq__intro {
  margin: 32px 0 0;
  color: #5b6b71;
  font-size: 13px;
  line-height: 2.1;
}

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

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

.faq-list summary {
  position: relative;
  padding: 30px 64px 30px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.7;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 18px;
  height: 1px;
  content: "";
  background: var(--ink);
  transition: transform 200ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  margin: -6px 64px 30px 0;
  color: #526269;
  font-size: 13px;
  line-height: 2.05;
}

.faq-list details p a {
  border-bottom: 1px solid currentColor;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.company {
  background: var(--white);
}

.company__heading {
  align-items: end;
  margin-bottom: 68px;
}

.company__heading > p {
  margin: 0 0 10px;
  color: #5d6d73;
  font-size: 14px;
  line-height: 2.1;
}

.company-photos {
  display: grid;
  overflow: hidden;
  margin-bottom: 76px;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  background: var(--paper-2);
}

.company-photos__lead {
  display: grid;
  align-content: center;
  padding: 34px 42px;
  background:
    linear-gradient(rgba(23, 45, 58, 0.94), rgba(23, 45, 58, 0.94)),
    radial-gradient(circle at top right, var(--sand), transparent 55%);
  color: var(--white);
}

.company-photos__lead span {
  margin-bottom: 12px;
  color: var(--sand);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.company-photos__lead strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}

.company-photos__lead small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
}

.company-photos figure {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  margin: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.company-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.company-photos figure:hover img {
  transform: scale(1.035);
}

.company-photos figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 14px;
  color: var(--white);
  background: rgba(15, 32, 41, 0.84);
  font-size: 10px;
}

.company__layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(480px, 1.12fr);
  gap: 80px;
}

.company__details {
  min-width: 0;
}

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

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

.company-table dt {
  color: #738087;
  font-size: 11px;
  font-weight: 700;
}

.company-table dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
}

.company-table dd a {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.registry-links {
  display: grid;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  gap: 8px;
}

.registry-links p {
  margin: 0 0 4px;
  color: #738087;
  font-size: 10px;
  font-weight: 700;
}

.registry-links a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
}

.company__map {
  overflow: hidden;
  align-self: start;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.company__map iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
  filter: saturate(0.78) contrast(0.96);
}

.company__map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  color: var(--white);
  background: var(--ink);
}

.company__map-footer div {
  display: grid;
}

.company__map-footer span {
  color: var(--sand);
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.company__map-footer strong {
  font-size: 13px;
}

.company__map-footer a {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-family: Arial, sans-serif;
  font-size: 11px;
}

.contact {
  padding: 110px 0;
  color: var(--white);
  background: var(--green);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}

.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 500;
  line-height: 1.4;
}

.contact__inner > div > p:last-child {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

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

.contact__phone {
  display: grid;
  min-width: 390px;
  padding: 42px 48px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.contact__phone:hover,
.contact__phone:focus-visible {
  transform: translateY(-4px);
  color: var(--ink);
  background: var(--white);
}

.contact__phone span,
.contact__phone small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.contact__phone strong {
  margin: 6px 0 2px;
  font-family: Arial, sans-serif;
  font-size: 34px;
  letter-spacing: 0.04em;
}

.site-footer {
  padding: 74px 0 26px;
  color: var(--white);
  background: var(--ink-deep);
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 64px;
}

.brand--footer .brand__mark {
  color: var(--sand-light);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 16px 44px;
  font-size: 12px;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.site-footer__bottom p {
  margin: 0;
}

.mobile-call {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
  background: var(--paper-2);
}

.error-card {
  width: min(100%, 720px);
  padding: 72px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.error-card h1 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.45;
}

.error-card p:not(.eyebrow) {
  margin: 0 0 30px;
  color: #5c6b71;
}

@keyframes hero-arrive {
  from {
    transform: scale(1.08);
    opacity: 0.4;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 20px;
  }

  .site-nav__contact {
    min-width: 170px;
    padding-inline: 16px;
  }

  .hero__inner {
    gap: 40px;
  }

  .section-heading--split {
    gap: 60px;
  }

  .promise__grid {
    gap: 60px;
  }

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

  .flow-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .flow-list li:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .faq__layout {
    gap: 60px;
  }

  .company__layout {
    gap: 48px;
  }
}

@media (max-width: 959px) {
  .container {
    width: min(calc(100% - 44px), var(--container));
  }

  .site-header__inner {
    min-height: 78px;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 12px 8px;
    border: 0;
    color: currentColor;
    background: transparent;
    gap: 5px;
  }

  .menu-button > span:not(.visually-hidden) {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 200ms ease, opacity 200ms ease;
  }

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

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

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

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: grid;
    align-content: center;
    padding: 110px 40px 60px;
    transform: translateX(100%);
    color: var(--white);
    background: var(--ink-deep);
    font-size: 18px;
    opacity: 0;
    transition: transform 300ms ease, opacity 300ms ease;
  }

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

  .site-nav__contact {
    width: 100%;
    margin-top: 16px;
  }

  .site-header.is-scrolled .menu-button[aria-expanded="true"] {
    color: var(--white);
  }

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

  .hero__side {
    display: none;
  }

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

  .fact {
    min-height: 124px;
    padding-inline: 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .section-heading--split,
  .company__layout,
  .promise__grid,
  .contact__inner,
  .faq__layout {
    grid-template-columns: 1fr;
  }

  .section-heading__copy {
    padding-top: 0;
  }

  .image-story {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 420px 220px;
  }

  .image-story__main {
    grid-row: 1;
  }

  .image-story__sub {
    grid-column: 2;
  }

  .image-story__note {
    grid-column: 1 / 3;
  }

  .promise__visual {
    min-height: 650px;
  }

  .promise__content {
    max-width: 680px;
  }

  .faq__layout .section-heading {
    position: static;
  }

  .company__layout {
    gap: 60px;
  }

  .company-photos {
    grid-template-columns: 1fr 1fr;
  }

  .company-photos__lead {
    grid-column: 1 / 3;
    min-height: 200px;
  }

  .contact__phone {
    min-width: 0;
    width: min(100%, 520px);
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 68px;
    font-size: 15px;
  }

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

  .mobile-only {
    display: initial;
  }

  .notice-bar {
    display: none;
  }

  .site-header,
  .site-header.is-scrolled {
    top: 0;
  }

  .site-header__inner,
  .site-header.is-scrolled .site-header__inner {
    min-height: 72px;
  }

  .brand {
    gap: 10px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .brand__text strong {
    font-size: 11px;
  }

  .brand__text small {
    font-size: 8px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(8, 23, 31, 0.84), rgba(8, 23, 31, 0.2)),
      linear-gradient(0deg, rgba(8, 23, 31, 0.7), transparent 62%);
  }

  .hero__inner {
    padding-top: 130px;
    padding-bottom: 64px;
  }

  .hero__eyebrow,
  .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 40px);
    line-height: 1.32;
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 13px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

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

  .hero__scroll {
    display: none;
  }

  .fact {
    min-height: 112px;
  }

  .fact strong {
    font-size: 18px;
  }

  .section {
    padding: 90px 0;
  }

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

  .section-heading--split {
    gap: 32px;
  }

  .section-heading__copy p {
    font-size: 13px;
    line-height: 2;
  }

  .section-heading--center {
    margin-bottom: 48px;
  }

  .image-story {
    margin-top: 52px;
    grid-template-columns: 1fr;
    grid-template-rows: 420px 260px auto;
  }

  .image-story__main,
  .image-story__sub,
  .image-story__note {
    grid-column: 1;
    grid-row: auto;
  }

  .image-story__main figcaption {
    padding: 12px 15px;
    font-size: 10px;
  }

  .image-story__note {
    grid-template-columns: 45px 1fr;
    padding: 22px;
  }

  .image-story__note p {
    font-size: 15px;
  }

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

  .support-card {
    min-height: 320px;
    padding: 36px 26px;
  }

  .support-card--image {
    min-height: 430px;
    padding: 0;
  }

  .support-card--image > div {
    padding: 32px 26px;
  }

  .support-card h3 {
    font-size: 25px;
  }

  .support-card__arrow {
    right: 24px;
    bottom: 28px;
  }

  .support__note {
    text-align: left;
  }

  .flow-list {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }

  .flow-list li,
  .flow-list li:first-child,
  .flow-list li:nth-child(3) {
    min-height: 0;
    padding: 32px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .flow-list span {
    margin-bottom: 18px;
  }

  .promise__grid {
    gap: 58px;
  }

  .promise__visual {
    min-height: 470px;
  }

  .promise__visual > img {
    width: 92%;
    height: 430px;
  }

  .promise__visual-label {
    width: 220px;
    padding: 24px;
  }

  .promise__visual-label strong {
    font-size: 18px;
  }

  .promise-list li {
    grid-template-columns: 40px 1fr;
  }

  .local-banner {
    min-height: 560px;
  }

  .local-banner h2 {
    font-size: 38px;
  }

  .faq-list summary {
    padding: 24px 46px 24px 0;
    font-size: 17px;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .company__heading {
    margin-bottom: 46px;
  }

  .company-photos {
    margin-bottom: 54px;
    grid-template-columns: 1fr;
  }

  .company-photos__lead {
    grid-column: 1;
  }

  .company-photos figure {
    min-height: 250px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

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

  .company__map iframe {
    height: 340px;
  }

  .company__map-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact {
    padding: 82px 0;
  }

  .contact__inner {
    gap: 42px;
  }

  .contact h2 {
    font-size: 38px;
  }

  .contact__phone {
    padding: 30px 24px;
  }

  .contact__phone strong {
    font-size: 27px;
  }

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

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

  .site-footer__nav {
    width: 100%;
    margin-top: 20px;
  }

  .mobile-call {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--ink);
    background: var(--sand-light);
    box-shadow: 0 10px 36px rgba(15, 32, 41, 0.24);
  }

  .mobile-call span {
    font-size: 11px;
    font-weight: 700;
  }

  .mobile-call strong {
    font-family: Arial, sans-serif;
    font-size: 17px;
    letter-spacing: 0.04em;
  }

  .error-card {
    padding: 44px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
