:root {
  --ink: #151817;
  --ink-2: #263332;
  --navy: #263d43;
  --navy-deep: #121b1d;
  --muted: #687471;
  --paper: #f3f5f2;
  --panel: #fffefa;
  --field: #e4e9e4;
  --line: rgba(38, 51, 50, 0.16);
  --brass: #a76f2f;
  --brass-2: #d09a48;
  --shadow: 0 24px 58px rgba(18, 27, 29, 0.14);
  --radius: 6px;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(38, 51, 50, 0.04) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(0deg, rgba(38, 51, 50, 0.032) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(180deg, #f8f9f5 0%, var(--paper) 46%, #ecefeb 100%);
  font-family: var(--sans);
  line-height: 1.8;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(112deg, transparent 0 48%, rgba(167, 111, 47, 0.07) 48% 48.3%, transparent 48.3% 100%),
    repeating-linear-gradient(90deg, transparent 0 11px, rgba(255, 255, 255, 0.3) 11px 12px);
}

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

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

h1,
h2,
h3,
p,
dd,
a,
button {
  margin-top: 0;
  overflow-wrap: anywhere;
}

button {
  font: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 245, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.topbar__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  font-family: var(--sans);
}

.brand-mark {
  display: inline-grid;
  grid-template-columns: 48px auto;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-mark__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-mark__name {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 20px;
  line-height: 1;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  color: #596662;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.topnav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

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

.topnav a:hover::after,
.topnav a.is-active::after {
  width: 100%;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero {
  min-height: calc(100svh - 78px);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(248, 249, 245, 0.97) 0%, rgba(248, 249, 245, 0.9) 42%, rgba(38, 61, 67, 0.18) 72%, rgba(18, 27, 29, 0.46) 100%),
    var(--hero-image, url("hero.jpg")) center / cover;
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(38, 51, 50, 0.052) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(0deg, rgba(38, 51, 50, 0.038) 1px, transparent 1px) 0 0 / 80px 80px;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.44fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: clamp(64px, 9vw, 118px) 0;
}

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.4fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
  padding: clamp(74px, 8vw, 112px) 0 clamp(54px, 7vw, 82px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--brass);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
  font-family: var(--serif);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  font-family: var(--serif);
}

h3 {
  font-weight: 500;
}

.lead,
.hero-copy {
  max-width: 720px;
  color: #2e3b39;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 2;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 6vw, 82px);
}

.page-hero--company::before {
  background:
    linear-gradient(90deg, rgba(248, 249, 245, 0.98) 0%, rgba(248, 249, 245, 0.9) 42%, rgba(248, 249, 245, 0.38) 64%, rgba(18, 27, 29, 0.22) 100%),
    var(--hero-image, url("hero.jpg")) right center / cover;
}

.company-hero {
  align-items: center;
}

.company-hero-panel {
  display: grid;
  gap: 12px;
  align-self: stretch;
}

.company-hero-photo {
  min-height: 260px;
  overflow: hidden;
  background: var(--navy-deep);
  border: 1px solid rgba(255, 254, 250, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.company-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.94;
}

.company-snapshot {
  display: grid;
  gap: 1px;
  overflow: hidden;
  align-self: end;
  background: rgba(255, 254, 250, 0.22);
  border: 1px solid rgba(255, 254, 250, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.company-snapshot div {
  padding: 20px 22px;
  color: var(--panel);
  background: rgba(18, 27, 29, 0.82);
}

.company-snapshot span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-snapshot strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.35;
}

.page-summary,
.hero-card {
  padding: 24px;
  color: var(--panel);
  background: rgba(7, 20, 33, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card img {
  width: 180px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.hero-card p,
.page-summary p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.9;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(18, 27, 29, 0.08);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button--dark {
  color: var(--panel);
  border-color: var(--navy-deep);
  background: var(--navy-deep);
}

.button--ghost {
  color: var(--ink);
  border-color: rgba(38, 51, 50, 0.28);
  background: rgba(255, 254, 250, 0.72);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.metric {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.82);
}

.metric span,
.small-label {
  display: block;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 500;
  line-height: 1.35;
}

section {
  padding: clamp(70px, 10vw, 118px) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 78px);
  margin-bottom: 42px;
}

.section-heading p {
  max-width: 760px;
  margin: 8px 0 0;
  color: #3b4744;
  font-size: 16px;
  line-height: 2;
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.card,
.service-card,
.reason-card,
.flow-step,
.info-card {
  background: rgba(255, 254, 250, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card,
.reason-card,
.flow-step,
.info-card {
  padding: 28px;
}

.grid-4 .service-card,
.grid-4 .flow-step {
  border: 0;
  border-radius: 0;
}

.service-card h3,
.reason-card h3,
.flow-step h3,
.info-card h3 {
  margin: 22px 0 14px;
  font-size: 24px;
  line-height: 1.35;
}

.service-card p,
.reason-card p,
.flow-step p,
.info-card p,
.rich-text p,
.rich-text li {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.95;
}

.photo-card {
  overflow: hidden;
  background: var(--navy-deep);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(7, 11, 18, 0.12);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  opacity: 0.9;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.52fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.dark-band {
  color: var(--panel);
  background:
    linear-gradient(135deg, rgba(18, 27, 29, 0.98), rgba(38, 61, 67, 0.94)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 80px 80px;
}

.dark-band .section-heading p,
.dark-band .eyebrow,
.dark-band .rich-text p {
  color: rgba(255, 255, 255, 0.74);
}

.dark-band .eyebrow::before {
  background: var(--brass-2);
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-grid span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.filter-button.is-active {
  color: var(--panel);
  background: var(--navy);
}

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

.gallery-item {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 0;
  color: var(--panel);
  background: var(--navy-deep);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(7, 11, 18, 0.12);
  cursor: zoom-in;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 260ms ease, opacity 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  background: rgba(7, 20, 33, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
}

.company-profile-section .split {
  align-items: start;
}

.profile-list {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 254, 250, 0.9);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(18, 27, 29, 0.08);
}

.profile-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}

.profile-row dt {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.profile-row dd {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  font-family: var(--serif);
}

.contact-box {
  position: sticky;
  top: 104px;
  padding: 32px;
  color: var(--panel);
  background:
    linear-gradient(135deg, rgba(18, 27, 29, 0.95), rgba(38, 61, 67, 0.78)),
    url("company-02.jpg") center / cover;
  border: 1px solid rgba(200, 135, 44, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-box h3 {
  margin: 12px 0 18px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 500;
  line-height: 1.35;
}

.contact-box p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.9;
}

.map-card {
  overflow: hidden;
  background: rgba(255, 254, 250, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(18, 27, 29, 0.12);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.18) saturate(0.86);
}

.map-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-top: 1px solid var(--line);
}

.map-card__body p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.8;
}

.tel-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 28px;
  line-height: 1;
  font-family: var(--serif);
}

.tel-link::after {
  content: "CALL";
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

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

.next-step-section .button-row {
  margin-top: 28px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.faq-list details,
.bank-details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

.faq-list summary,
.bank-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 0 22px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
}

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

.faq-list summary::after,
.bank-details summary::after {
  content: "+";
  color: var(--brass);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after,
.bank-details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.9;
}

.bank-details {
  margin-top: 26px;
  background: rgba(255, 255, 255, 0.9);
}

.bank-details__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.bank-item {
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
}

.bank-item span {
  display: block;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.bank-item strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
}

.cta {
  padding: clamp(70px, 9vw, 110px) 0;
  color: var(--panel);
  background:
    linear-gradient(90deg, rgba(7, 20, 33, 0.92), rgba(16, 42, 68, 0.62)),
    url("company-01.jpg") center / cover;
  border-top: 0;
}

.cta h2 {
  max-width: 760px;
}

.cta p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--sans);
  line-height: 2;
}

.cta .button--ghost {
  color: var(--panel);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
}

.footer {
  padding: 34px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.footer .site-shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--panel);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(18, 18, 17, 0.82);
  backdrop-filter: blur(12px);
}

.modal.is-open {
  display: grid;
}

.modal__panel {
  position: relative;
  width: min(1040px, 100%);
  max-height: calc(100svh - 48px);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal__panel img {
  width: 100%;
  max-height: calc(100svh - 122px);
  object-fit: contain;
  background: var(--ink);
}

.modal__caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--panel);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--panel);
  background: rgba(7, 20, 33, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
}

@media (max-width: 980px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 18px 0;
  }

  .nav-toggle {
    position: absolute;
    top: 20px;
    right: 0;
    display: grid;
    place-items: center;
    color: var(--panel);
    background: var(--ink);
    border-color: rgba(7, 20, 33, 0.5);
    box-shadow: 0 12px 28px rgba(7, 11, 18, 0.12);
  }

  .topnav {
    display: none;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  body.nav-open .topnav {
    display: grid;
  }

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

  .company-snapshot {
    width: min(100%, 520px);
  }

  .company-hero-photo {
    min-height: 220px;
  }

  .contact-box {
    position: static;
  }

  .grid-4,
  .grid-3,
  .gallery-grid,
  .prep-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 28px, 1180px);
  }

  .brand-mark {
    grid-template-columns: 44px auto;
  }

  .brand-mark__logo {
    width: 44px;
    height: 44px;
  }

  h1 {
    font-size: clamp(42px, 13.5vw, 60px);
    line-break: anywhere;
    word-break: keep-all;
  }

  .hero {
    min-height: auto;
  }

  .hero::before,
  .page-hero::before {
    background:
      linear-gradient(180deg, rgba(248, 249, 245, 0.98) 0%, rgba(248, 249, 245, 0.94) 70%, rgba(38, 61, 67, 0.26) 100%),
      var(--hero-image, url("hero.jpg")) center / cover;
  }

  .hero__inner {
    min-height: auto;
    padding: 58px 0 72px;
  }

  p,
  li,
  dd,
  .lead,
  .hero-copy,
  .page-summary p,
  .section-heading p,
  .service-card p,
  .reason-card p,
  .flow-step p,
  .info-card p,
  .contact-box p {
    max-width: 100%;
    line-break: anywhere;
    word-break: normal;
  }

  .metric-row,
  .grid-4,
  .grid-3,
  .grid-2,
  .gallery-grid,
  .bank-details__content,
  .prep-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .profile-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card,
  .reason-card,
  .flow-step {
    min-height: auto;
  }

  .tel-link {
    font-size: clamp(22px, 7vw, 28px);
  }

  .company-snapshot div {
    padding: 17px 18px;
  }

  .footer .site-shell,
  .modal__caption,
  .map-card__body {
    flex-direction: column;
    align-items: flex-start;
  }
}
