
.philosophy__headline {
  margin: var(--space-2) 0 var(--space-5);
  font-family: var(--font-sans);
  font-size: var(--fs-h1);
  font-weight: var(--fw-heading);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.philosophy__lead {
  max-width: 720px;
  margin-bottom: var(--space-7);
  color: var(--color-muted);
  line-height: 2.1;
}

.access__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-6);
  align-items: start;
}

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

.access__name {
  margin-bottom: var(--space-3);
  font-family: var(--font-sans);
  font-size: var(--fs-h3);
  font-weight: var(--fw-heading);
}

.access__info p { margin-bottom: var(--space-3); }

.access__map {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.access__map-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.message__body,
.message__body p {
  margin-bottom: var(--space-4);
  line-height: 2.2;
}

.message__sign {
  margin-top: var(--space-6);
  text-align: right;
  color: var(--color-muted);
  font-size: var(--fs-xs);
  line-height: 1.9;
}

.message__sign-title {
  display: block;
  margin-top: var(--space-2);
  color: var(--color-muted);
  font-size: var(--fs-xs);
}

.message__sign-name {
  display: block;
  margin-top: var(--space-1);
  font-family: var(--font-sans);
  font-weight: var(--fw-heading);
  color: var(--color-ink-strong);
}

.message__sign-name .ceo-name {
  height: 1.5em;
  vertical-align: middle;
}

.offices {
  max-width: 620px;
  margin: 0 auto var(--space-7);
}

.offices__map {
  display: block;
  width: 100%;
  height: auto;
}

.profile-visual {
  margin: 0 0 var(--space-6);
  overflow: hidden;
}

.profile-visual img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 35%;
}

@media (max-width: 768px) {
  .profile-visual img { height: 180px; }
}

.history {
  margin-top: var(--space-7);
  border-left: 2px solid var(--color-line);
}

.history__item {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: var(--space-6);
  padding: var(--space-6) 0 var(--space-6) var(--space-6);
  position: relative;
}

.history__item + .history__item { border-top: 1px solid var(--color-line); }

.history__item::before {
  content: "";
  position: absolute;
  top: calc(var(--space-6) + 0.55em);
  left: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-orange);
}

.history__year {
  font-family: var(--font-en);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--color-orange-dark, var(--color-orange));
  letter-spacing: 0.02em;
}

.history__title {
  font-family: var(--font-sans);
  font-size: var(--fs-h4);
  font-weight: var(--fw-heading-s);
}

.history__text {
  margin-top: var(--space-2);
  font-size: var(--fs-small);
  line-height: 1.9;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .history__item {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-2);
    padding-left: var(--space-5);
  }
}
