.about-hero {
  padding-top: 80px;
}

.about-hero .page-hero-inner { display: block; }
.about-hero .page-hero-copy,
.about-hero .lead { max-width: none; }

.about-section {
  padding-top: 16px;
}

.about-hero { padding-bottom: 36px; }
.about-hero .lead { margin-bottom: 0; }
.japan-asia { padding-top: 0; padding-bottom: 64px; }
.japan-asia > .container {
  border-top: 1px solid var(--line);
  padding-top: 36px;
}

.about-contact { padding-top: 16px; padding-bottom: 16px; }
.about-contact .cta-block { border: 0; border-radius: 0; box-shadow: none; }
.about-contact .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.japan-asia .split-layout > div { min-width: 0; height: 100%; }
.japan-asia .default-card { padding: 16px 24px; }
.japan-asia .default-card > p { font-size: 18px; line-height: 1.7; margin-bottom: 20px; }
.japan-asia .default-card > p:last-of-type { margin-bottom: 0; }

.default-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.strength-item {
  background: transparent;
  border-radius: 0;
  border: 0;
  border-top: 3px solid var(--brand);
  padding: 24px 0 0;
  box-shadow: none;
}

.strength-icon { display: block; width: 64px; height: 64px; margin-bottom: 18px; object-fit: contain; }
.strength-item p { margin-bottom: 0; }

.strength-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-strong);
}

.location-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-soft);
  border: 0;
  border-radius: 0;
  padding: 16px;
  box-shadow: none;
}

.location-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.about-quote {
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

@media (max-width: 920px) {
  .japan-asia .split-layout > div { height: auto; }
  .split-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .strength-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .strength-grid { grid-template-columns: 1fr; }
}

/* Compact the introduction on desktop while retaining the tablet/mobile layout. */
@media (min-width: 1200px) and (hover: hover) and (pointer: fine) {
  .about-hero {
    padding-top: clamp(20px, 3vh, 40px);
    padding-bottom: clamp(16px, 2vh, 24px);
  }

  .about-hero h1 {
    font-size: clamp(32px, 3vw, 48px);
    margin-bottom: 0;
  }

  .japan-asia { padding-bottom: 24px; }
  .japan-asia > .container { padding-top: 20px; }
  .japan-asia .split-layout { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
  .japan-asia .split-layout > div { height: auto; }
  .japan-asia .default-card { padding: 12px 16px; }
  .japan-asia .default-card > p {
    font-size: clamp(15px, 1.9vh, 18px);
    line-height: 1.55;
    margin-bottom: 14px;
  }
  .japan-asia .default-card > p:not([hidden]):nth-last-child(-n+3) {
    margin-bottom: 0;
  }
  .japan-asia .location-visual { position: relative; min-height: 0; }
  .japan-asia .location-visual img {
    position: absolute;
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    object-fit: contain;
  }
}