/* Shared presentation for the independent corporate pages. */
.corporate-page-main {
  padding-top: 4.5rem;
}

.corporate-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(184, 152, 90, 0.2), transparent 28%),
    linear-gradient(145deg, var(--color-bg-dark), #12365f);
}

.corporate-page-hero::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -14rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(184, 152, 90, 0.2);
  border-radius: 50%;
}

.corporate-page-hero .container {
  position: relative;
  z-index: 1;
}

.corporate-page-kicker {
  margin-bottom: 1rem;
  color: #d8c59a;
  font-family: var(--font-sans-en);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.corporate-page-title {
  max-width: 900px;
  color: #fff;
  font-family: var(--font-serif-ja);
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.corporate-page-lead {
  max-width: 780px;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 2;
}

.corporate-page-main > .section:first-of-type {
  padding-top: clamp(4.5rem, 8vw, 7rem);
}

.corporate-page-main .section-head {
  margin-bottom: 3rem;
}

.corporate-page-main .footer-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
}

.nav-main a[aria-current='page']::after {
  left: 0;
  width: 100%;
}

/* Standalone corporate pages must remain readable even when a full-page capture
   does not advance IntersectionObserver scroll positions. */
.corporate-page-main .fade-in {
  opacity: 1;
  transform: none;
}

.entry-choice-grid,
.entry-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.entry-choice-grid .entry-card {
  margin: 0;
}

.entry-next-section {
  background: var(--color-bg-subtle);
}

.entry-route-card {
  display: flex;
  min-height: 190px;
  padding: 2.25rem;
  border: 1px solid var(--color-border-light);
  color: var(--color-text);
  background: #fff;
  flex-direction: column;
  justify-content: space-between;
}

.entry-route-card-primary {
  color: #fff;
  background: var(--color-bg-dark);
}

.entry-route-label {
  color: var(--color-accent-dark);
  font-family: var(--font-sans-en);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.entry-route-card-primary .entry-route-label {
  color: #d8c59a;
}

.entry-route-card strong {
  font-family: var(--font-serif-ja);
  font-size: 1.35rem;
  font-weight: 500;
}

.entry-route-card > span:last-child {
  font-size: 0.84rem;
}

@media (max-width: 768px) {
  .corporate-page-main {
    padding-top: 3.75rem;
  }

  .corporate-page-hero {
    padding-top: 4.5rem;
  }

  .entry-choice-grid,
  .entry-route-grid {
    grid-template-columns: 1fr;
  }

  .entry-route-card {
    min-height: 165px;
    padding: 1.75rem;
  }
}
