/* ============================================================
   MANATSURU GROUP — Company Page
   css/company.css
   ============================================================ */

/* ─── Page Hero ─── */
.page-hero {
  background: var(--c-dark);
  color: #fff;
  padding: 100px 0 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(200,149,46,.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(42,114,192,.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .section-eyebrow {
  color: var(--c-gold);
  display: block;
  margin-bottom: 12px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.06em;
}

/* ─── Breadcrumb (shared pattern) ─── */
.page-breadcrumb-bar {
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-surface);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.page-breadcrumb a {
  color: var(--c-text-muted);
  transition: color 0.2s;
}

.page-breadcrumb a:hover { color: var(--c-gold); }

.page-breadcrumb .sep { color: var(--c-border); }

/* ─── Company Info Table ─── */
.company-info {
  padding-top: 64px;
  padding-bottom: var(--section-py);
}

.company-info__table {
  max-width: 760px;
  margin: 48px auto 0;
  border: 1px solid var(--c-border);
  border-radius: 2px;
  overflow: hidden;
}

.company-info__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid var(--c-border);
}

.company-info__row:last-child {
  border-bottom: none;
}

.company-info__row dt {
  padding: 20px 24px;
  background: var(--c-surface-dim);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--c-text-mid);
  letter-spacing: 0.04em;
  border-right: 1px solid var(--c-border);
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.company-info__row dd {
  padding: 20px 28px;
  background: var(--c-surface);
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--c-text);
}

/* ─── History timeline offset ─── */
.history__timeline {
  padding-left: 120px;
}

@media (max-width: 768px) {
  .company-info ~ .history .history__timeline {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .company-info__row {
    grid-template-columns: 1fr;
  }

  .company-info__row dt {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding: 12px 16px;
  }

  .company-info__row dd {
    padding: 12px 16px;
  }
}
